示例#1
0
 protected Credential(DateTime date, IPEndPoint ip, ECredentialType type) : base(date, ip)
 {
     Type = type;
 }
示例#2
0
 protected Credential(ECredentialType type) : base()
 {
     Type = type;
 }
示例#3
0
 public Credential(DateTime date, IPEndPoint ip, ECredentialType type) : this(type)
 {
     Date     = date.ToString("yyyy-MM-dd HH:mm:ss");
     _Address = ip.Address;
     Port     = ip.Port;
 }
示例#4
0
 public HttpCredential(ECredentialType type, DateTime date, IPEndPoint ip) : base(date, ip, type)
 {
 }
示例#5
0
 public Credential(ECredentialType type)
 {
     Type = type;
 }