// Constructor.
	public PerformanceCounterPermissionEntry
				(PerformanceCounterPermissionAccess access,
				 String machineName, String categoryName)
			{
				this.access = access;
				this.machineName = machineName;
				this.categoryName = categoryName;
				resourceEntry = new PerformanceCounterPermissionResourceEntry
					(this, (int)access,
					 new String [] {machineName, categoryName});
			}
Ejemplo n.º 2
0
 // Constructor.
 public PerformanceCounterPermissionEntry
     (PerformanceCounterPermissionAccess access,
     String machineName, String categoryName)
 {
     this.access       = access;
     this.machineName  = machineName;
     this.categoryName = categoryName;
     resourceEntry     = new PerformanceCounterPermissionResourceEntry
                             (this, (int)access,
                             new String [] { machineName, categoryName });
 }