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

Computes the signature of a request passing the specified arguments.

Namespace:  Facebook
Assembly:  Facebook (in Facebook.dll) Version: 0.2009.4.13 (0.2009.4.13)

Syntax

C#
internal static string ComputeSignature(
	string secret,
	IDictionary<string, Object> arguments
)
Visual Basic (Declaration)
Friend Shared Function ComputeSignature ( _
	secret As String, _
	arguments As IDictionary(Of String, Object) _
) As String
Visual C++
internal:
static String^ ComputeSignature(
	String^ secret, 
	IDictionary<String^, Object^>^ arguments
)

Parameters

secret
Type: System..::.String
The application secret.
arguments
Type: System.Collections.Generic..::.IDictionary<(Of <(String, Object>)>)
The list of arguments being passed into the method request.

Return Value

A String containing a request signature generated according to the documentation provided by Facebook in the article How Facebook Authenticates Your Application.

See Also

FacebookRequest Class
Facebook Namespace