Yammer.Net Documented Class Library
GenerateSignatureBase Method (url, consumerKey, token, tokenSecret, httpMethod, timeStamp, nonce, signatureType, normalizedUrl, normalizedRequestParameters)
NamespacesOAuthOAuthBaseGenerateSignatureBase(Uri, String, String, String, String, String, String, String, String%, String%)
Generate the signature base that is used to produce the signature
Declaration Syntax
C#Visual BasicVisual C++
public string GenerateSignatureBase(
	Uri url,
	string consumerKey,
	string token,
	string tokenSecret,
	string httpMethod,
	string timeStamp,
	string nonce,
	string signatureType,
	out string normalizedUrl,
	out string normalizedRequestParameters
)
Public Function GenerateSignatureBase ( _
	url As Uri, _
	consumerKey As String, _
	token As String, _
	tokenSecret As String, _
	httpMethod As String, _
	timeStamp As String, _
	nonce As String, _
	signatureType As String, _
	<OutAttribute> ByRef normalizedUrl As String, _
	<OutAttribute> ByRef normalizedRequestParameters As String _
) As String
public:
String^ GenerateSignatureBase(
	Uri^ url, 
	String^ consumerKey, 
	String^ token, 
	String^ tokenSecret, 
	String^ httpMethod, 
	String^ timeStamp, 
	String^ nonce, 
	String^ signatureType, 
	[OutAttribute] String^% normalizedUrl, 
	[OutAttribute] String^% normalizedRequestParameters
)
Parameters
url (Uri)
The full url that needs to be signed including its non OAuth url parameters
consumerKey (String)
The consumer key
token (String)
The token, if available. If not available pass null or an empty string
tokenSecret (String)
The token secret, if available. If not available pass null or an empty string
httpMethod (String)
The http method used. Must be a valid HTTP method verb (POST,GET,PUT, etc)
timeStamp (String)
nonce (String)
signatureType (String)
The signature type. To use the default values use OAuthBase.SignatureTypes.
normalizedUrl ( String %)
normalizedRequestParameters ( String %)
Return Value
The signature base

Assembly: oAuth (Module: oAuth) Version: 1.0.0.0 (1.0.0.0)