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.String

    The identifier of the property type.

  • serializedValue
    Type: System.String

    A string representation of the value to build.

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.

See Also

Reference

Microsoft.SharePoint.JSGrid Namespace