Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Coerces an object into an SPItemKey object.
Namespace: Microsoft.SharePoint.WorkflowActions
Assembly: Microsoft.SharePoint.WorkflowActions (in Microsoft.SharePoint.WorkflowActions.dll)
Syntax
'Declaration
Public Shared Function ToSPItemKeyExceptNull ( _
context As WorkflowContext, _
val As Object _
) As SPItemKey
'Usage
Dim context As WorkflowContext
Dim val As Object
Dim returnValue As SPItemKey
returnValue = Helper.ToSPItemKeyExceptNull(context, _
val)
public static SPItemKey ToSPItemKeyExceptNull(
WorkflowContext context,
Object val
)
Parameters
context
Type: Microsoft.SharePoint.WorkflowActions.WorkflowContextA WorkflowContext object that contains properties that are associated with the active workflow instance.
val
Type: System.ObjectA Object.
Return Value
Type: Microsoft.SharePoint.Workflow.SPItemKey
The list item.
Remarks
If the value supplied as the val parameter is a SPItemKey, the SPItemKey is returned. If the value is an Integer or String, the ToSPItemKeyExceptNull method attempts to coerce it into an SPItemKey. Otherwise, a CoercionException is thrown.