你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
AsAzureDataplaneClient.CallPostAsync 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.
Overloads
CallPostAsync(String, HttpContent) |
Calls SendRequestAsync() for a POST using the default BaseUri and a blank correlationId. |
CallPostAsync(Uri, String, HttpContent) |
Calls SendRequestAsync() for a POST using a blank correlationId. |
CallPostAsync(Uri, String, Guid, HttpContent) |
Calls SendRequestAsync() for a POST. |
CallPostAsync(String, HttpContent)
Calls SendRequestAsync() for a POST using the default BaseUri and a blank correlationId.
public System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> CallPostAsync (string requestUrl, System.Net.Http.HttpContent content = default);
abstract member CallPostAsync : string * System.Net.Http.HttpContent -> System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage>
override this.CallPostAsync : string * System.Net.Http.HttpContent -> System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage>
Public Function CallPostAsync (requestUrl As String, Optional content As HttpContent = Nothing) As Task(Of HttpResponseMessage)
Parameters
- requestUrl
- String
- content
- HttpContent
The content to post (optional).
Returns
The http response message.
Implements
Applies to
CallPostAsync(Uri, String, HttpContent)
Calls SendRequestAsync() for a POST using a blank correlationId.
public System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> CallPostAsync (Uri baseUri, string requestUrl, System.Net.Http.HttpContent content = default);
abstract member CallPostAsync : Uri * string * System.Net.Http.HttpContent -> System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage>
override this.CallPostAsync : Uri * string * System.Net.Http.HttpContent -> System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage>
Public Function CallPostAsync (baseUri As Uri, requestUrl As String, Optional content As HttpContent = Nothing) As Task(Of HttpResponseMessage)
Parameters
- baseUri
- Uri
- requestUrl
- String
- content
- HttpContent
The content to post (optional).
Returns
The http response message.
Implements
Applies to
CallPostAsync(Uri, String, Guid, HttpContent)
Calls SendRequestAsync() for a POST.
public System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> CallPostAsync (Uri baseUri, string requestUrl, Guid correlationId, System.Net.Http.HttpContent content = default);
abstract member CallPostAsync : Uri * string * Guid * System.Net.Http.HttpContent -> System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage>
override this.CallPostAsync : Uri * string * Guid * System.Net.Http.HttpContent -> System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage>
Public Function CallPostAsync (baseUri As Uri, requestUrl As String, correlationId As Guid, Optional content As HttpContent = Nothing) As Task(Of HttpResponseMessage)
Parameters
- baseUri
- Uri
- requestUrl
- String
- correlationId
- Guid
The CorrelationId
- content
- HttpContent
The content to post (optional).
Returns
The http response message.