 | DictionarySerializationContextIsRawSerializationPossible Method |
Checks if a value of the specified type can be serialized directly or has to converted to a dictionary first.
If it can be serialized directly, no type information has to be stored to deserialize the value.
Namespace: Slash.Serialization.DictionaryAssembly: Slash.Serialization (in Slash.Serialization.dll) Version: 1.0.6018.40176
Syntaxpublic bool IsRawSerializationPossible(
Type type
)
Public Function IsRawSerializationPossible (
type As Type
) As Boolean
public:
bool IsRawSerializationPossible(
Type^ type
)
member IsRawSerializationPossible :
type : Type -> bool
Parameters
- type
- Type: SystemType
Type to check.
Return Value
Type:
BooleanTrue if the type can be serialized directly; otherwise, false.
See Also