scripts
This commit is contained in:
@@ -0,0 +1,184 @@
|
||||
using System;
|
||||
using System.Security;
|
||||
using System.Security.Permissions;
|
||||
|
||||
namespace System.Net
|
||||
{
|
||||
/// <summary>Specifies permission to access Internet resources. This class cannot be inherited.</summary>
|
||||
// Token: 0x0200026C RID: 620
|
||||
[AttributeUsage(AttributeTargets.Assembly | AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Constructor | AttributeTargets.Method, AllowMultiple = true, Inherited = false)]
|
||||
[Serializable]
|
||||
public sealed class WebPermissionAttribute : CodeAccessSecurityAttribute
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Net.WebPermissionAttribute" /> class with a value that specifies the security actions that can be performed on this class.</summary>
|
||||
/// <param name="action">One of the <see cref="T:System.Security.Permissions.SecurityAction" /> values. </param>
|
||||
/// <exception cref="T:System.ArgumentException">
|
||||
/// <paramref name="action" /> is not a valid <see cref="T:System.Security.Permissions.SecurityAction" /> value. </exception>
|
||||
// Token: 0x060016E1 RID: 5857 RVA: 0x0004D2CC File Offset: 0x0004B4CC
|
||||
public WebPermissionAttribute(SecurityAction action)
|
||||
: base(action)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the URI string accepted by the current <see cref="T:System.Net.WebPermissionAttribute" />.</summary>
|
||||
/// <returns>A string containing the URI accepted by the current <see cref="T:System.Net.WebPermissionAttribute" />.</returns>
|
||||
/// <exception cref="T:System.ArgumentException">
|
||||
/// <see cref="P:System.Net.WebPermissionAttribute.Accept" /> is not null when you attempt to set the value. If you wish to specify more than one Accept URI, use an additional attribute declaration statement. </exception>
|
||||
// Token: 0x1700074A RID: 1866
|
||||
// (get) Token: 0x060016E2 RID: 5858 RVA: 0x0004D2D8 File Offset: 0x0004B4D8
|
||||
// (set) Token: 0x060016E3 RID: 5859 RVA: 0x0004D2F8 File Offset: 0x0004B4F8
|
||||
public string Accept
|
||||
{
|
||||
get
|
||||
{
|
||||
if (this.m_accept == null)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
return (this.m_accept as WebPermissionInfo).Info;
|
||||
}
|
||||
set
|
||||
{
|
||||
if (this.m_accept != null)
|
||||
{
|
||||
this.AlreadySet("Accept", "Accept");
|
||||
}
|
||||
this.m_accept = new WebPermissionInfo(WebPermissionInfoType.InfoString, value);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets a regular expression pattern that describes the URI accepted by the current <see cref="T:System.Net.WebPermissionAttribute" />.</summary>
|
||||
/// <returns>A string containing a regular expression pattern that describes the URI accepted by the current <see cref="T:System.Net.WebPermissionAttribute" />. This string must be escaped according to the rules for encoding a <see cref="T:System.Text.RegularExpressions.Regex" /> constructor string.</returns>
|
||||
/// <exception cref="T:System.ArgumentException">
|
||||
/// <see cref="P:System.Net.WebPermissionAttribute.AcceptPattern" /> is not null when you attempt to set the value. If you wish to specify more than one Accept URI, use an additional attribute declaration statement. </exception>
|
||||
/// <PermissionSet>
|
||||
/// <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
|
||||
/// <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence" />
|
||||
/// </PermissionSet>
|
||||
// Token: 0x1700074B RID: 1867
|
||||
// (get) Token: 0x060016E4 RID: 5860 RVA: 0x0004D330 File Offset: 0x0004B530
|
||||
// (set) Token: 0x060016E5 RID: 5861 RVA: 0x0004D350 File Offset: 0x0004B550
|
||||
public string AcceptPattern
|
||||
{
|
||||
get
|
||||
{
|
||||
if (this.m_accept == null)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
return (this.m_accept as WebPermissionInfo).Info;
|
||||
}
|
||||
set
|
||||
{
|
||||
if (this.m_accept != null)
|
||||
{
|
||||
this.AlreadySet("Accept", "AcceptPattern");
|
||||
}
|
||||
if (value == null)
|
||||
{
|
||||
throw new ArgumentNullException("AcceptPattern");
|
||||
}
|
||||
this.m_accept = new WebPermissionInfo(WebPermissionInfoType.InfoUnexecutedRegex, value);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the URI connection string controlled by the current <see cref="T:System.Net.WebPermissionAttribute" />.</summary>
|
||||
/// <returns>A string containing the URI connection controlled by the current <see cref="T:System.Net.WebPermissionAttribute" />.</returns>
|
||||
/// <exception cref="T:System.ArgumentException">
|
||||
/// <see cref="P:System.Net.WebPermissionAttribute.Connect" /> is not null when you attempt to set the value. If you wish to specify more than one Connect URI, use an additional attribute declaration statement. </exception>
|
||||
// Token: 0x1700074C RID: 1868
|
||||
// (get) Token: 0x060016E6 RID: 5862 RVA: 0x0004D38C File Offset: 0x0004B58C
|
||||
// (set) Token: 0x060016E7 RID: 5863 RVA: 0x0004D3AC File Offset: 0x0004B5AC
|
||||
public string Connect
|
||||
{
|
||||
get
|
||||
{
|
||||
if (this.m_connect == null)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
return (this.m_connect as WebPermissionInfo).Info;
|
||||
}
|
||||
set
|
||||
{
|
||||
if (this.m_connect != null)
|
||||
{
|
||||
this.AlreadySet("Connect", "Connect");
|
||||
}
|
||||
this.m_connect = new WebPermissionInfo(WebPermissionInfoType.InfoString, value);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets a regular expression pattern that describes the URI connection controlled by the current <see cref="T:System.Net.WebPermissionAttribute" />.</summary>
|
||||
/// <returns>A string containing a regular expression pattern that describes the URI connection controlled by this <see cref="T:System.Net.WebPermissionAttribute" />.</returns>
|
||||
/// <exception cref="T:System.ArgumentException">
|
||||
/// <see cref="P:System.Net.WebPermissionAttribute.ConnectPattern" /> is not null when you attempt to set the value. If you wish to specify more than one connect URI, use an additional attribute declaration statement. </exception>
|
||||
/// <PermissionSet>
|
||||
/// <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
|
||||
/// <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="ControlEvidence" />
|
||||
/// </PermissionSet>
|
||||
// Token: 0x1700074D RID: 1869
|
||||
// (get) Token: 0x060016E8 RID: 5864 RVA: 0x0004D3E4 File Offset: 0x0004B5E4
|
||||
// (set) Token: 0x060016E9 RID: 5865 RVA: 0x0004D404 File Offset: 0x0004B604
|
||||
public string ConnectPattern
|
||||
{
|
||||
get
|
||||
{
|
||||
if (this.m_connect == null)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
return (this.m_connect as WebPermissionInfo).Info;
|
||||
}
|
||||
set
|
||||
{
|
||||
if (this.m_connect != null)
|
||||
{
|
||||
this.AlreadySet("Connect", "ConnectConnectPattern");
|
||||
}
|
||||
if (value == null)
|
||||
{
|
||||
throw new ArgumentNullException("ConnectPattern");
|
||||
}
|
||||
this.m_connect = new WebPermissionInfo(WebPermissionInfoType.InfoUnexecutedRegex, value);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Creates and returns a new instance of the <see cref="T:System.Net.WebPermission" /> class.</summary>
|
||||
/// <returns>A <see cref="T:System.Net.WebPermission" /> corresponding to the security declaration.</returns>
|
||||
/// <PermissionSet>
|
||||
/// <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
/// </PermissionSet>
|
||||
// Token: 0x060016EA RID: 5866 RVA: 0x0004D440 File Offset: 0x0004B640
|
||||
public override IPermission CreatePermission()
|
||||
{
|
||||
if (base.Unrestricted)
|
||||
{
|
||||
return new WebPermission(PermissionState.Unrestricted);
|
||||
}
|
||||
WebPermission webPermission = new WebPermission();
|
||||
if (this.m_accept != null)
|
||||
{
|
||||
webPermission.AddPermission(NetworkAccess.Accept, (WebPermissionInfo)this.m_accept);
|
||||
}
|
||||
if (this.m_connect != null)
|
||||
{
|
||||
webPermission.AddPermission(NetworkAccess.Connect, (WebPermissionInfo)this.m_connect);
|
||||
}
|
||||
return webPermission;
|
||||
}
|
||||
|
||||
// Token: 0x060016EB RID: 5867 RVA: 0x0004D4A8 File Offset: 0x0004B6A8
|
||||
internal void AlreadySet(string parameter, string property)
|
||||
{
|
||||
string text = global::Locale.GetText("The parameter '{0}' can be set only once.");
|
||||
throw new ArgumentException(string.Format(text, parameter), property);
|
||||
}
|
||||
|
||||
// Token: 0x0400127C RID: 4732
|
||||
private object m_accept;
|
||||
|
||||
// Token: 0x0400127D RID: 4733
|
||||
private object m_connect;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user