ContextAttribute.Name Property

Definition

Gets the name of the context attribute.

This API supports the product infrastructure and is not intended to be used directly from your code.

public:
 virtual property System::String ^ Name { System::String ^ get(); };
public virtual string Name { get; }
public virtual string Name { [System.Security.SecurityCritical] get; }
member this.Name : string
[<get: System.Security.SecurityCritical>]
member this.Name : string
Public Overridable ReadOnly Property Name As String

Property Value

The name of the context attribute.

Implements

Attributes

Remarks

Default implementation of this property provides AttributeName as the property name.

Notes to Inheritors

The current property must not be overridden in any user derived class. The current Equals(Object) and GetHashCode() method implementations depend on the default functionality. If you wish to provide advanced behavior for a class extending the ContextAttribute and override the Name property, you have to also override the default implementation of the Equals(Object) and GetHashCode() methods.

Applies to