/// <summary>
 ///     Initializes a new instance of the <see cref="CspSourceList" /> class.
 /// </summary>
 public CspSourceList()
 {
     mSchemes  = new List <string>();
     mKeywords = new List <SourceListKeyword>();
     mHosts    = new HostSourceCollection();
     mIsNone   = false;
 }
Beispiel #2
0
 /// <summary>
 ///     Initializes a new instance of the <see cref="CspAncestorSourceList" /> class.
 /// </summary>
 public CspAncestorSourceList()
 {
     mSchemes = new List <string>();
     mHosts   = new HostSourceCollection();
     mIsNone  = false;
 }