JsonRpcResult.GetResult<T> Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the value of the Result, taking into account any possible type coercion.
public virtual T GetResult<T> ();
abstract member GetResult : unit -> 'T
override this.GetResult : unit -> 'T
Public Overridable Function GetResult(Of T) () As T
Type Parameters
Returns
T
The result.
Remarks
Derived types may override this method in order to deserialize the Result such that it can be assignable to T
.