/// <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;
 }
 /// <summary>
 ///     Initializes a new instance of the <see cref="CspAncestorSourceList" /> class.
 /// </summary>
 public CspAncestorSourceList()
 {
     mSchemes = new List<string>();
     mHosts = new HostSourceCollection();
     mIsNone = false;
 }