1 implementation of IChannelCredentials
System.ServiceModel (1)
System\ServiceModel\ComIntegration\ChannelCredentials.cs (1)
22internal class ChannelCredentials : IChannelCredentials, IDisposable
15 references to IChannelCredentials
System.ServiceModel (15)
System\ServiceModel\ComIntegration\ChannelCredentials.cs (12)
57void IChannelCredentials.SetWindowsCredential(string domain, string userName, string password, int impersonationLevel, bool allowNtlm) 88void IChannelCredentials.SetUserNameCredential(string userName, string password) 104void IChannelCredentials.SetServiceCertificateAuthentication(string storeLocation, string revocationMode, string certificationValidationMode) 128void IChannelCredentials.SetClientCertificateFromStore(string storeLocation, string storeName, string findType, object findValue) 146void IChannelCredentials.SetClientCertificateFromStoreByName(string subjectName, string storeLocation, string storeName) 148((IChannelCredentials)this).SetClientCertificateFromStore(storeLocation, storeName, X509CertificateInitiatorClientCredential.DefaultFindType.ToString("G"), subjectName); 152void IChannelCredentials.SetClientCertificateFromFile(string fileName, string password, string keyStorageFlags) 178void IChannelCredentials.SetDefaultServiceCertificateFromStore(string storeLocation, string storeName, string findType, object findValue) 196void IChannelCredentials.SetDefaultServiceCertificateFromStoreByName(string subjectName, string storeLocation, string storeName) 198((IChannelCredentials)this).SetDefaultServiceCertificateFromStore(storeLocation, storeName, X509CertificateInitiatorClientCredential.DefaultFindType.ToString("G"), subjectName); 201void IChannelCredentials.SetDefaultServiceCertificateFromFile(string fileName, string password, string keyStorageFlags) 227void IChannelCredentials.SetIssuedToken(string localIssuerAddres, string localIssuerBindingType, string localIssuerBinding)
System\ServiceModel\ComIntegration\ProxyManager.cs (3)
26(riid == typeof(IChannelCredentials).GUID) 64else if (riid == typeof(IChannelCredentials).GUID) 163riid = typeof(IChannelCredentials).GUID;