Use this type to configure the settings for serialization. More...
Public Member Functions | |
SerializationOptions | SerializationFormatter (Type formatterType) |
Sets the serialization formatter type used by CSLA .NET for all explicit object serialization (such as cloning, n-level undo, etc). More... | |
SerializationOptions | MobileWriter< T > () |
Sets type of the writer that is used to write data to serialization stream in SerializationFormatterFactory.GetFormatter(). More... | |
SerializationOptions | MobileReader< T > () |
Sets type of the writer that is used to read data to serialization stream in SerializationFormatterFactory.GetFormatter(). More... | |
Use this type to configure the settings for serialization.
Definition at line 16 of file SerializationOptions.cs.
SerializationOptions Csla.Configuration.SerializationOptions.MobileReader< T > | ( | ) |
Sets type of the writer that is used to read data to serialization stream in SerializationFormatterFactory.GetFormatter().
T | : | ICslaReader |
Definition at line 44 of file SerializationOptions.cs.
SerializationOptions Csla.Configuration.SerializationOptions.MobileWriter< T > | ( | ) |
Sets type of the writer that is used to write data to serialization stream in SerializationFormatterFactory.GetFormatter().
T | : | ICslaWriter |
Definition at line 34 of file SerializationOptions.cs.
SerializationOptions Csla.Configuration.SerializationOptions.SerializationFormatter | ( | Type | formatterType | ) |
Sets the serialization formatter type used by CSLA .NET for all explicit object serialization (such as cloning, n-level undo, etc).
Default is MobileFormatter.
formatterType | Serialization formatter type. |
Definition at line 24 of file SerializationOptions.cs.