Syncfusion.Grouping.Windows
The Syncfusion namespace contains classes that defines the value and reference data types, events and event handlers, interfaces, attributes and processing the exceptions.
This class holds the name of the Syncfusion.Grouping.Windows assembly and provides a helper
routine that helps with resolving types when loading a serialization stream and when
the framework probes for assemblies by reflection.
The full name of this assembly without version information: "Syncfusion.Grouping.Windows"
A reference to the for the Grouping assembly.
The root namespace of this assembly. Used internally for locating resources within the assembly.
This delegate helps with resolving types and can be used as a eventhandler
for a event.
The source of the event.
The event data with information about the type.
A reference to the assembly where the type is located.
Use this handler when reading back types from a serialization stread
saved with an earlier version of this assembly.
public static GroupingModel LoadSoap(Stream s)
{
try
{
AppDomain.CurrentDomain.AssemblyResolve += new ResolveEventHandler(GroupingBaseAssembly.AssemblyResolver);
SoapFormatter b = new SoapFormatter();
b.AssemblyFormat = FormatterAssemblyStyle.Simple;
GroupingModel t = b.Deserialize(s) as GroupingModel;
t.Modified = false;
return t;
}
finally
{
AppDomain.CurrentDomain.AssemblyResolve -= new ResolveEventHandler(GroupingBaseAssembly.AssemblyResolver);
}
}
The Syncfusion.Windows.Forms.Grid.Grouping namespace contains classes that implements the Essential GridGroupingControl and its events and event handlers, interfaces, attributes and processing the exceptions.