NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

TypeConverter.GetPersistInfo (Object)

Retrieves the PersistInfo object for the given value. This object describes the given value as persisted information, which can be saved to disk or moved. This information can later be reconstructed by passing the PersistInfo to GetValue.

[Visual Basic]
Overloads Public Function GetPersistInfo( _
   ByVal value As Object _
) As PersistInfo
[C#]
public PersistInfo GetPersistInfo(
   object value
);
[C++]
public: PersistInfo* GetPersistInfo(
   Object* value
);
[JScript]
public function GetPersistInfo(
   value : Object
) : PersistInfo;

Parameters

value
The object to persist.

Return Value

The PersistInfo representing the persisted state of the given object.

See Also

TypeConverter Class | TypeConverter Members | System.ComponentModel Namespace | TypeConverter.GetPersistInfo Overload List | PersistInfo | TBD