C# 클래스 LtiLibrary.Core.OAuth.OAuthRequest

상속: IOAuthRequest
파일 보기 프로젝트 열기: andyfmiller/LtiLibrary

Private Properties

프로퍼티 타입 설명

공개 메소드들

메소드 설명
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

메소드 상세

GenerateSignature() 공개 메소드

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.
리턴 string

GenerateSignature() 공개 메소드

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.
리턴 string

OAuthRequest() 공개 메소드

public OAuthRequest ( ) : System
리턴 System