TagPrefixInfo.Assembly Property

Definition

Gets or sets the name of the assembly containing the control implementation.

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

Property Value

The name of the assembly (without an extension). The default is an empty string.

Attributes

Examples

The following code example shows how to use the Assembly property. This code example is part of a larger example provided for the PagesSection class.

Remarks

This property specifies the assembly in which the control resides. It applies only to a custom control and is not required if the control is in the application code directory.

Applies to

See also