Collection class that derives from ArrayList. It provides the minimally required functionality to add instances of typed classes and obtain typed elements through a custom indexer.
Inheritance: System.Collections.ArrayList
コード例 #1
0
ファイル: TimeStamp.cs プロジェクト: ylepikhov/dssnet
 /// <summary>
 /// Default constructor
 /// </summary>
 public TimeStamp()
 {
     this.canonicalizationMethod = new CanonicalizationMethod();
     this.hashDataInfoCollection = new HashDataInfoCollection();
     this.encapsulatedTimeStamp  = new EncapsulatedPKIData("EncapsulatedTimeStamp");
     this.xmlTimeStamp           = null;
 }
コード例 #2
0
        /// <summary>
        /// Default constructor
        /// </summary>
        public TimeStamp(string prefix, string namespaceUri)
        {
            this.hashDataInfoCollection = new HashDataInfoCollection();
            this.encapsulatedTimeStamp  = new EncapsulatedPKIData("EncapsulatedTimeStamp");
            this.xmlTimeStamp           = null;

            this.prefix       = prefix;
            this.namespaceUri = namespaceUri;
        }
コード例 #3
0
 /// <summary>
 /// Default constructor
 /// </summary>
 public TimeStamp()
 {
     this.hashDataInfoCollection = new HashDataInfoCollection();
     this.encapsulatedTimeStamp  = new EncapsulatedPKIData("EncapsulatedTimeStamp");
     this.xmlTimeStamp           = null;
 }
コード例 #4
0
ファイル: TimeStamp.cs プロジェクト: versh23/Xades
		/// <summary>
		/// Default constructor
		/// </summary>
		public TimeStamp()
		{
			this.hashDataInfoCollection = new HashDataInfoCollection();
			this.encapsulatedTimeStamp = new EncapsulatedPKIData("EncapsulatedTimeStamp");
			this.xmlTimeStamp = null;
		}
コード例 #5
0
ファイル: TimeStamp.cs プロジェクト: Gianluigi/dssnet
		/// <summary>
		/// Default constructor
		/// </summary>
		public TimeStamp()
		{
            this.canonicalizationMethod = new CanonicalizationMethod();
			this.hashDataInfoCollection = new HashDataInfoCollection();
			this.encapsulatedTimeStamp = new EncapsulatedPKIData("EncapsulatedTimeStamp");
			this.xmlTimeStamp = null;
		}