ParticleCloudMakePostRequestWithoutAuthAsync Method |
Makes the post request without authentication asynchronous to the particle cloud.
Namespace: ParticleAssembly: Particle (in Particle.dll) Version: 0.8.5.14 (0.8.5.14)
Syntaxpublic virtual Task<RequestResponse> MakePostRequestWithoutAuthAsync(
string method,
params KeyValuePair<string, string>[] arguments
)
Public Overridable Function MakePostRequestWithoutAuthAsync (
method As String,
ParamArray arguments As KeyValuePair(Of String, String)()
) As Task(Of RequestResponse)
public:
virtual Task<RequestResponse^>^ MakePostRequestWithoutAuthAsync(
String^ method,
... array<KeyValuePair<String^, String^>>^ arguments
)
abstract MakePostRequestWithoutAuthAsync :
method : string *
arguments : KeyValuePair<string, string>[] -> Task<RequestResponse>
override MakePostRequestWithoutAuthAsync :
method : string *
arguments : KeyValuePair<string, string>[] -> Task<RequestResponse>
Parameters
- method
- Type: SystemString
The method. - arguments
- Type: System.Collections.GenericKeyValuePairString, String
The arguments.
Return Value
Type:
TaskRequestResponseThe Results of the request
See Also