Click or drag to resize
SignerSign Method (String, Uri, String, String, Signature, IEnumerableKeyValuePairString, String)

[This is preliminary documentation and is subject to change.]

Signs parameters.

Namespace: OAuth
Assembly: OAuth.Core (in OAuth.Core.dll) Version: 1.0.5795.41329
Syntax
public string Sign(
	string httpMethod,
	Uri requestUri,
	string consumerSecret,
	string tokenSecret,
	Signature algorithm,
	IEnumerable<KeyValuePair<string, string>> parameters
)

Parameters

httpMethod
Type: SystemString
HTTP method.
requestUri
Type: SystemUri
Request URI.
consumerSecret
Type: SystemString
Consumer secret.
tokenSecret
Type: SystemString
Token secret.
algorithm
Type: OAuthSignature
Signature algorithm.
parameters
Type: System.Collections.GenericIEnumerableKeyValuePairString, String
Unsigned parameters.

Return Value

Type: String
Signature string.
See Also