SerializationInfo.FullTypeName Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the full name of the Type to serialize.
public:
property System::String ^ FullTypeName { System::String ^ get(); void set(System::String ^ value); };
public string FullTypeName { get; set; }
member this.FullTypeName : string with get, set
Public Property FullTypeName As String
Property Value
The full name of the type to serialize.
Exceptions
The value this property is set to is null
.
Remarks
The FullTypeName is the same as what would be returned by calling the FullName on Type. This is the type name the formatter uses when serializing type information for this object.
Users who are changing the type to serialize (for example, to send a proxy for a particular type) will want to set the value of this property.
Caution
Do not use this property during deserialization because the value of this property is undefined.