ObjectBuilderFromSerialized delegate
Builds an object from a serialized value and property type identifier.
Namespace: Microsoft.SharePoint.JSGrid
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Syntax
'Declaration
Public Delegate Function ObjectBuilderFromSerialized ( _
propTypeId As String, _
serializedValue As String, _
<OutAttribute> ByRef createdObject As Object _
) As Boolean
'Usage
Dim instance As New ObjectBuilderFromSerialized(AddressOf HandlerMethod)
public delegate bool ObjectBuilderFromSerialized(
string propTypeId,
string serializedValue,
out Object createdObject
)
Parameters
propTypeId
Type: System.StringThe identifier of the property type.
serializedValue
Type: System.StringA string representation of the value to build.
createdObject
Type: System.ObjectThe deserialized object.
Return value
Type: System.Boolean
true if serialization was successful; otherwise false.
Remarks
This delegate takes the object to be built as a reference parameter of type System.Object.