ResourcePermissionBase.TagNames Property

Definition

Gets or sets an array of strings that identify the resource you are protecting.

protected:
 property cli::array <System::String ^> ^ TagNames { cli::array <System::String ^> ^ get(); void set(cli::array <System::String ^> ^ value); };
protected string[] TagNames { get; set; }
member this.TagNames : string[] with get, set
Protected Property TagNames As String()

Property Value

String[]

An array of strings that identify the resource you are trying to protect.

Exceptions

The property value is null.

The length of the array is 0.

Notes to Inheritors

When you inherit from ResourcePermissionBase, you must set this property. For an example of an implementation of this class, see PerformanceCounterPermission. In PerformanceCounterPermission, the TagNames property is set privately to "Machine" and "Category".

Applies to