public ExchangeClient(string hostname, IChannelCredentialsProvider provider)
        {
            var creds = provider.GetCredentials();

            this.hostname = hostname;
            this.username = creds.Claim;
            this.password = creds.Evidence;
        }
示例#2
0
        public ExchangeClient(string hostname, IChannelCredentialsProvider provider)
        {
            var creds = provider.GetCredentials();

            this.hostname = hostname;
            this.username = creds.Claim;
            this.password = creds.Evidence;
        }