| ParametersForRequestToken Method |
[This is preliminary documentation and is subject to change.]
Creates an instance of
Parameters for Request Token requests.
Namespace: OAuthAssembly: OAuth.Core (in OAuth.Core.dll) Version: 1.0.5795.41329
Syntax public static Parameters ForRequestToken(
Consumer credentials,
Callback method,
Signature algorithm,
Nonce generator,
Timestamp provider = null
)
Public Shared Function ForRequestToken (
credentials As Consumer,
method As Callback,
algorithm As Signature,
generator As Nonce,
Optional provider As Timestamp = Nothing
) As Parameters
public:
static Parameters^ ForRequestToken(
Consumer^ credentials,
Callback^ method,
Signature^ algorithm,
Nonce^ generator,
Timestamp^ provider = nullptr
)
static member ForRequestToken :
credentials : Consumer *
method : Callback *
algorithm : Signature *
generator : Nonce *
?provider : Timestamp
(* Defaults:
let _provider = defaultArg provider null
*)
-> Parameters
Parameters
- credentials
- Type: OAuthConsumer
Consumer credentials. - method
- Type: OAuthCallback
Callback. - 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