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