ClientRuntimeContext.CastTo<T> method
Casts a specified client object to its derived type.
Namespace: Microsoft.SharePoint.Client
Assembly: Microsoft.SharePoint.Client.Runtime (in Microsoft.SharePoint.Client.Runtime.dll)
Syntax
'Declaration
Public Function CastTo(Of T As ClientObject) ( _
obj As ClientObject _
) As T
'Usage
Dim instance As ClientRuntimeContext
Dim obj As ClientObject
Dim returnValue As T
returnValue = instance.CastTo(obj)
public T CastTo<T>(
ClientObject obj
)
where T : ClientObject
Type parameters
- T
The derived type of the specified client object.
Parameters
obj
Type: Microsoft.SharePoint.Client.ClientObjectThe ClientObject object that represents the client object that needs to be cast to its derived type.
Return value
Type: T
An object of a generic type.