Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Services / Monitoring / system / Diagnosticts / PerformanceCounterPermissionAttribute.cs / 1305376 / PerformanceCounterPermissionAttribute.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Diagnostics { using System.ComponentModel; using System.Security; using System.Security.Permissions; [ AttributeUsage(AttributeTargets.Method | AttributeTargets.Constructor | AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Assembly | AttributeTargets.Event, AllowMultiple = true, Inherited = false ), Serializable() ] public class PerformanceCounterPermissionAttribute : CodeAccessSecurityAttribute { private string categoryName; private string machineName; private PerformanceCounterPermissionAccess permissionAccess; public PerformanceCounterPermissionAttribute(SecurityAction action) : base(action) { this.categoryName = "*"; this.machineName = "."; this.permissionAccess = PerformanceCounterPermissionAccess.Write; } public string CategoryName { get { return this.categoryName; } set { if (value == null) throw new ArgumentNullException("value"); this.categoryName = value; } } public string MachineName { get { return this.machineName; } set { if (!SyntaxCheck.CheckMachineName(value)) throw new ArgumentException(SR.GetString(SR.InvalidProperty, "MachineName", value)); this.machineName = value; } } public PerformanceCounterPermissionAccess PermissionAccess { get { return this.permissionAccess; } set { this.permissionAccess = value; } } public override IPermission CreatePermission() { if (Unrestricted) return new PerformanceCounterPermission(PermissionState.Unrestricted); return new PerformanceCounterPermission(this.PermissionAccess, this.MachineName, this.CategoryName); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ParserOptions.cs
- XmlSchemaSequence.cs
- StreamingContext.cs
- TextServicesDisplayAttributePropertyRanges.cs
- UIElementCollection.cs
- HtmlControl.cs
- XmlSerializerNamespaces.cs
- Command.cs
- ColumnResizeAdorner.cs
- XmlSchemaAttribute.cs
- RawStylusInput.cs
- XmlSchemaComplexType.cs
- SqlDataSource.cs
- SafeNativeMethods.cs
- LogPolicy.cs
- BinaryObjectInfo.cs
- IPGlobalProperties.cs
- formatter.cs
- UnsafeNativeMethods.cs
- NamespaceDecl.cs
- RowSpanVector.cs
- OlePropertyStructs.cs
- SettingsProperty.cs
- CmsInterop.cs
- PerformanceCounterNameAttribute.cs
- PerformanceCounterTraceRecord.cs
- ListView.cs
- PermissionRequestEvidence.cs
- IsolatedStorageFilePermission.cs
- TiffBitmapEncoder.cs
- QilIterator.cs
- PriorityRange.cs
- BamlLocalizationDictionary.cs
- MemoryFailPoint.cs
- DefaultValidator.cs
- DynamicPropertyReader.cs
- DesignerDataSourceView.cs
- ObjectDataSourceStatusEventArgs.cs
- GregorianCalendar.cs
- CodeBlockBuilder.cs
- xmlsaver.cs
- StyleHelper.cs
- SignatureHelper.cs
- BaseAsyncResult.cs
- SizeIndependentAnimationStorage.cs
- QilIterator.cs
- HuffModule.cs
- KoreanCalendar.cs
- DependencyPropertyAttribute.cs
- ClientSettingsSection.cs
- GenerateTemporaryAssemblyTask.cs
- RuntimeHelpers.cs
- UIElement.cs
- brushes.cs
- WebHeaderCollection.cs
- CacheMemory.cs
- WebServiceParameterData.cs
- ResourceAttributes.cs
- MenuItemStyleCollection.cs
- PartialArray.cs
- EncodingInfo.cs
- SafeFileMappingHandle.cs
- HiddenField.cs
- SmiEventSink_DeferedProcessing.cs
- HttpPostedFile.cs
- EntityType.cs
- XPathNode.cs
- BamlResourceContent.cs
- LogLogRecord.cs
- TypeSource.cs
- Models.cs
- ReadWriteSpinLock.cs
- OrderedDictionaryStateHelper.cs
- ByteViewer.cs
- TableProviderWrapper.cs
- HtmlImageAdapter.cs
- FocusWithinProperty.cs
- CompiledQuery.cs
- EventPrivateKey.cs
- ProtectedUri.cs
- ToolBarOverflowPanel.cs
- XmlNamespaceManager.cs
- XPathNodeList.cs
- NamespaceEmitter.cs
- PenLineCapValidation.cs
- Tablet.cs
- HtmlProps.cs
- SimpleBitVector32.cs
- ToolStripDropDownButton.cs
- COM2ICategorizePropertiesHandler.cs
- BinaryUtilClasses.cs
- XmlElementElement.cs
- Span.cs
- ReadOnlyState.cs
- WebReference.cs
- DiscoveryDocumentLinksPattern.cs
- XamlGridLengthSerializer.cs
- EntitySetDataBindingList.cs
- StrokeNode.cs
- PatternMatcher.cs