Amazon.SecurityToken.SAML.SAMLAuthenticationController.SAMLAuthenticationController C# (CSharp) Метод

SAMLAuthenticationController() публичный Метод

Instantiates the controller to use the specified instances to perform authentication and response parsing.
public SAMLAuthenticationController ( IAuthenticationController authenticationController, IAuthenticationResponseParser responseParser, WebProxy proxySettings ) : System
authenticationController IAuthenticationController /// Handler that will be called to perform authentication. ///
responseParser IAuthenticationResponseParser /// Handler that will be called to parse successful authentication responses ///
proxySettings System.Net.WebProxy /// Null or proxy settings that should be used when communicating with the authentication endpoint. ///
Результат System
        public SAMLAuthenticationController(IAuthenticationController authenticationController, 
                                            IAuthenticationResponseParser responseParser,
                                            WebProxy proxySettings)
        {
            if (authenticationController == null)
                throw new ArgumentNullException("authenticationController");
            if (responseParser == null)
                throw new ArgumentNullException("responseParser");

            AuthenticationController = authenticationController;
            ResponseParser = responseParser;
            ProxySettings = proxySettings;
        }

Same methods

SAMLAuthenticationController::SAMLAuthenticationController ( ) : System
SAMLAuthenticationController::SAMLAuthenticationController ( WebProxy proxySettings ) : System