TrustSection.OriginUrl Property

Definition

Specifies the URL of origin for an application.

public:
 property System::String ^ OriginUrl { System::String ^ get(); void set(System::String ^ value); };
[System.Configuration.ConfigurationProperty("originUrl", DefaultValue="")]
public string OriginUrl { get; set; }
[<System.Configuration.ConfigurationProperty("originUrl", DefaultValue="")>]
member this.OriginUrl : string with get, set
Public Property OriginUrl As String

Property Value

A well-formed HTTP URL or an empty string (""). The default is an empty string.

Attributes

Examples

The following code example demonstrates how to use the OriginUrl property. This code example is part of a larger example provided for the TrustSection class.

// Display OriginUrl property
Console.WriteLine("Origin Url: {0}", configSection.OriginUrl);
' Display OriginUrl property.
Console.WriteLine("Origin Url: {0}", configSection.OriginUrl)

Remarks

The OriginUrl property specifies the URL of origin for an application. If present, this can be used for some permissions, such as those associated with the WebRequest class. This enables you to specify a single URL that is used to create permission through a WebPermission instance. This permission then grants ASP.NET code that has partial trust the right to make HTTP calls (for example, a Web service call) to that URL. The value must be a well-formed HTTP URL.

Applies to