SLRequest.PerformRequestAsync 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.
Makes the request and calls the provided handler
when the request completes.
public virtual System.Threading.Tasks.Task<Social.SLRequestResult> PerformRequestAsync ();
abstract member PerformRequestAsync : unit -> System.Threading.Tasks.Task<Social.SLRequestResult>
override this.PerformRequestAsync : unit -> System.Threading.Tasks.Task<Social.SLRequestResult>
Returns
A task that represents the asynchronous PerformRequest operation. The value of the TResult parameter is of type System.Action<Foundation.NSData,Foundation.NSHttpUrlResponse,Foundation.NSError>.
Remarks
The PerformRequestAsync method is suitable to be used with C# async by returning control to the caller with a Task representing the operation.
To be added.