FsPickler


Pickler

Namespace: MBrace.FsPickler
Attributes:
[<AbstractClass>]

Base pickler type.

Instance members

Instance memberDescription
x.ImplementationType
Signature: Type
Modifiers: abstract

The underlying type that this pickler implements.

CompiledName: get_ImplementationType

x.IsCacheByRef
Signature: bool
Modifiers: abstract

Specifies if pickled objects are to be cached by reference.

CompiledName: get_IsCacheByRef

x.IsCloneableOnly
Signature: bool
Modifiers: abstract

Specifies that pickler provides logic only for object cloning/visiting/hashing and that type is not otherwise serializable.

CompiledName: get_IsCloneableOnly

x.IsOfFixedSize
Signature: bool

Specifies if instances of this type are of fixed size.

CompiledName: get_IsOfFixedSize

x.IsOpenHierarchy
Signature: bool

Specifies if objects graphs of this type can contain open hierarchies.

CompiledName: get_IsOpenHierarchy

x.IsRecursiveType
Signature: bool

Specifies if instances of this type can be cyclic objects.

CompiledName: get_IsRecursiveType

x.Kind
Signature: Kind

Pickler type classification

CompiledName: get_Kind

x.PicklerInfo
Signature: PicklerInfo
Modifiers: abstract

Pickler generation metadata.

CompiledName: get_PicklerInfo

x.Type
Signature: Type

Type of values serialized by this pickler.

CompiledName: get_Type

x.UseWithSubtypes
Signature: bool
Modifiers: abstract

Specifies if this pickler can be applied to proper subtypes.

CompiledName: get_UseWithSubtypes

Fork me on GitHub