An OAuth Consumer for .NET 2.0
GetAuthParameters Method (uri, method, requestorId, arguments, format)
NamespacesExtremeSwank.OAuthOAuthClientGetAuthParameters(Uri, String, String, NameValueCollection, AuthenticationMethod)
Get a string containing the Authentication parameters that should be passed in the authentication request. Compatible with Two-Legged OAuth authentication.
Declaration Syntax
C#Visual BasicVisual C++
public string GetAuthParameters(
	Uri uri,
	string method,
	string requestorId,
	NameValueCollection arguments,
	AuthenticationMethod format
)
Public Function GetAuthParameters ( _
	uri As Uri, _
	method As String, _
	requestorId As String, _
	arguments As NameValueCollection, _
	format As AuthenticationMethod _
) As String
public:
String^ GetAuthParameters(
	Uri^ uri, 
	String^ method, 
	String^ requestorId, 
	NameValueCollection^ arguments, 
	AuthenticationMethod format
)
Parameters
uri (Uri)
URL for the request.
method (String)
HTTP Request method.
requestorId (String)
User account ID.
arguments (NameValueCollection)
All non-query arguments that will be included in the request.
format (AuthenticationMethod)
Format of the authentication request data.
Return Value
String containing the OAuth authentication parameters.
Remarks
Not for the faint of heart. For most situations, use GetCredentials() and pass the output to the WebRequest.Credentials property.

Assembly: ExtremeSwank.OAuth (Module: ExtremeSwank.OAuth) Version: 1.2.0.0 (1.2.0.0)