WebSiteProperties.Extender Property (String)

 

Provides internal-only access to Web site properties.

Namespace:   VsWebSite
Assembly:  VsWebSite.Interop (in VsWebSite.Interop.dll)

Syntax

object this[
    string ExtenderName
] { get; }
property Object^ default[
    String^ ExtenderName
] {
    Object^ get(String^ ExtenderName);
}
abstract Extender : 
        ExtenderName:string -> Object with get
ReadOnly Property Extender (
    ExtenderName As String
) As Object

Parameters

Property Value

Type: System.Object

An extender object.

Remarks

External components can access these properties through the properties collection for the appropriate Visual Studio automation object. (That is, WebSiteProperties, WebFileProperties, and WebFolderProperties for Web site projects). The property names for the members of this type can be used as an indexer into the properties collection.

The Extender property returns null if no extender object is available.

The CATID used for obtaining the extender is provided by the object's ExtenderCATID property.

Examples

For an example of reading and setting late-bound properties, see WebSiteProperties.

See Also

EnvDTE80
Extender
WebSiteProperties
VsWebSite Namespace
Referencing Automation Assemblies and the DTE2 Object

Return to top