mscorlib(4.0.0.0) API with additions
X509ChainStatus.cs
2 {
4  public struct X509ChainStatus
5  {
6  private X509ChainStatusFlags m_status;
7 
8  private string m_statusInformation;
9 
13  {
14  get
15  {
16  return m_status;
17  }
18  set
19  {
20  m_status = value;
21  }
22  }
23 
26  public string StatusInformation
27  {
28  get
29  {
30  if (m_statusInformation == null)
31  {
32  return string.Empty;
33  }
34  return m_statusInformation;
35  }
36  set
37  {
38  m_statusInformation = value;
39  }
40  }
41  }
42 }
Provides a simple structure for storing X509 chain status and error information.
string StatusInformation
Specifies a description of the P:System.Security.Cryptography.X509Certificates.X509Chain....
X509ChainStatusFlags
Defines the status of an X509 chain.
X509ChainStatusFlags Status
Specifies the status of the X509 chain.