C# Class LtiLibrary.Core.OAuth.OAuthRequest

Inheritance: IOAuthRequest
Afficher le fichier Open project: andyfmiller/LtiLibrary

Private Properties

Свойство Type Description

Méthodes publiques

Méthode Description
GenerateSignature ( NameValueCollection parameters, string consumerSecret ) : string

Calculate the OAuth Signature for this request using custom parameters.

This is typically used by Tool Consumers that perform custom parameter substitution prior to signing the request.

GenerateSignature ( string consumerSecret ) : string

Calculate the OAuth Signature for this request using the parameters in the request.

This is typically used by Tool Providers to verify the incoming request signature.

OAuthRequest ( ) : System

Method Details

GenerateSignature() public méthode

Calculate the OAuth Signature for this request using custom parameters.
This is typically used by Tool Consumers that perform custom parameter substitution prior to signing the request.
public GenerateSignature ( NameValueCollection parameters, string consumerSecret ) : string
parameters System.Collections.Specialized.NameValueCollection The set of parameters to be included in the signature.
consumerSecret string The OAuth Consumer Secret to use.
Résultat string

GenerateSignature() public méthode

Calculate the OAuth Signature for this request using the parameters in the request.
This is typically used by Tool Providers to verify the incoming request signature.
public GenerateSignature ( string consumerSecret ) : string
consumerSecret string The OAuth Consumer Secret to use.
Résultat string

OAuthRequest() public méthode

public OAuthRequest ( ) : System
Résultat System