// Token: 0x06000F75 RID: 3957 RVA: 0x0003F204 File Offset: 0x0003D404
        protected override OperationStatusCode TestUserCanLogonWithCurrentSettings(SmtpAddress email, string userName, SecureString password)
        {
            EasAuthenticationParameters authenticationParameters = new EasAuthenticationParameters(new NetworkCredential(userName, password), email.Local, email.Domain, string.IsNullOrEmpty(this.EndpointAddressOverride) ? null : this.EndpointAddressOverride);
            IEasConnection easConnection = EasConnection.CreateInstance(this.connectionParameters, authenticationParameters, this.deviceParameters);

            return(easConnection.TestLogon());
        }
 internal EasConnectionWrapper(IEasConnection easConnection)
 {
     ArgumentValidator.ThrowIfNull("easConnection", easConnection);
     this.wrappedObject = easConnection;
 }