'Declaration
Public Shared Function DecodeExtensionObject( _ ByVal context As ISystemContext, _ ByVal targetType As Type, _ ByVal extension As ExtensionObject, _ ByVal throwOnError As Boolean _ ) As Object
'Usage
Dim context As ISystemContext Dim targetType As Type Dim extension As ExtensionObject Dim throwOnError As Boolean Dim value As Object value = BaseVariableState.DecodeExtensionObject(context, targetType, extension, throwOnError)
public static object DecodeExtensionObject( ISystemContext context, Type targetType, ExtensionObject extension, bool throwOnError )
public: static Object^ DecodeExtensionObject( ISystemContext^ context, Type^ targetType, ExtensionObject^ extension, bool throwOnError )
Parameters
- context
- The context (uses ServiceMessageContext.GlobalContext if null).
- targetType
- The type that the ExtensionObject must be converted to.
- extension
- The ExtensionObject to convert.
- throwOnError
- Whether to throw an exception on error.
Return Value
The decoded instance. Null on error.