DotNetOpenAuth.OAuth2.ChannelElements.OAuth2AuthorizationServerChannel.OAuth2AuthorizationServerChannel C# (CSharp) Method

OAuth2AuthorizationServerChannel() protected method

Initializes a new instance of the OAuth2AuthorizationServerChannel class.
protected OAuth2AuthorizationServerChannel ( IAuthorizationServer authorizationServer ) : System
authorizationServer IAuthorizationServer The authorization server.
return System
		protected internal OAuth2AuthorizationServerChannel(IAuthorizationServer authorizationServer)
			: base(MessageTypes, InitializeBindingElements(authorizationServer)) {
			Requires.NotNull(authorizationServer, "authorizationServer");
			this.AuthorizationServer = authorizationServer;
		}