1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Security.Cryptography.X509Certificates;
- namespace SuperSocket.SocketBase.Config
- {
-
-
-
- public interface ICertificateConfig
- {
-
-
-
- string FilePath { get; }
-
-
-
- string Password { get; }
-
-
-
-
-
-
- string StoreName { get; }
-
-
-
- string Thumbprint { get; }
-
-
-
-
-
-
- StoreLocation StoreLocation { get; }
-
-
-
-
-
-
- bool ClientCertificateRequired { get; }
-
-
-
- X509KeyStorageFlags KeyStorageFlags { get; }
- }
- }
|