System.Security.Policy.Url.Copy C# (CSharp) Method

Copy() public method

public Copy ( ) : object
return object
        public object Copy() { return null; }
        public IPermission CreateIdentityPermission(Evidence evidence) { return default(IPermission); }

Usage Example

Esempio n. 1
0
		internal UrlMembershipCondition (Url url, string userUrl)
		{
			// as the Url object has already been validated there's no
			// need to restart the whole process by converting to string
			this.url = (Url) url.Copy ();
			this.userUrl = userUrl;
		}
All Usage Examples Of System.Security.Policy.Url::Copy