| ParametersForRoutine Method |
[This is preliminary documentation and is subject to change.]
Creates an instance of
Parameters for routine requests.
Namespace: OAuthAssembly: OAuth.Core (in OAuth.Core.dll) Version: 1.0.5795.41329
Syntax public static Parameters ForRoutine(
Consumer credentials,
Access token,
Signature algorithm,
Nonce generator,
Timestamp provider = null
)
Public Shared Function ForRoutine (
credentials As Consumer,
token As Access,
algorithm As Signature,
generator As Nonce,
Optional provider As Timestamp = Nothing
) As Parameters
public:
static Parameters^ ForRoutine(
Consumer^ credentials,
Access^ token,
Signature^ algorithm,
Nonce^ generator,
Timestamp^ provider = nullptr
)
static member ForRoutine :
credentials : Consumer *
token : Access *
algorithm : Signature *
generator : Nonce *
?provider : Timestamp
(* Defaults:
let _provider = defaultArg provider null
*)
-> Parameters
Parameters
- credentials
- Type: OAuthConsumer
Consumer credentials. - token
- Type: OAuthAccess
Token. - algorithm
- Type: OAuthSignature
Signature algorithm. - generator
- Type: OAuthNonce
Nonce generator. - provider (Optional)
- Type: OAuthTimestamp
Timestamp provider.
Return Value
Type:
ParametersAn instance of
Parameters.
See Also