'Declaration
<CanBeNullAttribute()> Public Function GetValue( _ ByVal input As Object, _ ByRef value As Object _ ) As Exception
'Usage
Dim instance As CommonPoint Dim input As Object Dim value As Object Dim value As Exception value = instance.GetValue(input, value)
[CanBeNull()] public: Exception^ GetValue( Object^ input, [Out] Object^ value )
Parameters
- input
- The input retrieved.
The value of this parameter can be
null
(Nothing
in Visual Basic). - value
- The value to be stored.
The value of this parameter can be
null
(Nothing
in Visual Basic).
Return Value
Returns a
null
reference if successful. Otherwise, returns an exception object with information about the failure.
This method can return null
(Nothing
in Visual Basic).