123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Security.Cryptography.X509Certificates;
- namespace SuperSocket.SocketBase.Config
- {
-
-
-
- [Serializable]
- public class CertificateConfig : ICertificateConfig
- {
- #region ICertificateConfig Members
-
-
-
- public string FilePath { get; set; }
-
-
-
- public string Password { get; set; }
-
-
-
-
-
-
- public string StoreName { get; set; }
-
-
-
-
-
-
- public StoreLocation StoreLocation { get; set; }
-
-
-
- public string Thumbprint { get; set; }
-
-
-
-
-
-
- public bool ClientCertificateRequired { get; set; }
-
-
-
- public X509KeyStorageFlags KeyStorageFlags { get; set; }
- #endregion
- }
- }
|