ResourcePermissionBase.TagNames Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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".