/// <summary>Initializes a new instance of the <see cref="T:System.Security.NamedPermissionSet" /> class with the specified name in either an unrestricted or a fully restricted state.</summary>
 /// <param name="name">The name for the new named permission set. </param>
 /// <param name="state">One of the <see cref="T:System.Security.Permissions.PermissionState" /> values. </param>
 /// <exception cref="T:System.ArgumentException">The <paramref name="name" /> parameter is <see langword="null" /> or is an empty string (""). </exception>
 // Token: 0x06001CAA RID: 7338 RVA: 0x000621EA File Offset: 0x000603EA
 public NamedPermissionSet(string name, PermissionState state) : base(state)
 {
     NamedPermissionSet.CheckName(name);
     this.m_name = name;
 }
 /// <summary>Initializes a new instance of the <see cref="T:System.Security.NamedPermissionSet" /> class with the specified name from a permission set.</summary>
 /// <param name="name">The name for the named permission set. </param>
 /// <param name="permSet">The permission set from which to take the value of the new named permission set. </param>
 /// <exception cref="T:System.ArgumentException">The <paramref name="name" /> parameter is <see langword="null" /> or is an empty string (""). </exception>
 // Token: 0x06001CAB RID: 7339 RVA: 0x00062200 File Offset: 0x00060400
 public NamedPermissionSet(string name, PermissionSet permSet) : base(permSet)
 {
     NamedPermissionSet.CheckName(name);
     this.m_name = name;
 }
 /// <summary>Initializes a new, empty instance of the <see cref="T:System.Security.NamedPermissionSet" /> class with the specified name.</summary>
 /// <param name="name">The name for the new named permission set. </param>
 /// <exception cref="T:System.ArgumentException">The <paramref name="name" /> parameter is <see langword="null" /> or is an empty string (""). </exception>
 // Token: 0x06001CA9 RID: 7337 RVA: 0x000621D5 File Offset: 0x000603D5
 public NamedPermissionSet(string name)
 {
     NamedPermissionSet.CheckName(name);
     this.m_name = name;
 }