Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Services / Monitoring / system / Diagnosticts / EventSourceCreationData.cs / 1305376 / EventSourceCreationData.cs
using System.Security; using System.Security.Permissions; namespace System.Diagnostics { public class EventSourceCreationData { private string _logName = "Application"; private string _machineName = "."; private string _source; private string _messageResourceFile; private string _parameterResourceFile; private string _categoryResourceFile; private int _categoryCount; private EventSourceCreationData() {} public EventSourceCreationData(string source, string logName) { _source = source; _logName = logName; } internal EventSourceCreationData(string source, string logName, string machineName) { _source = source; _logName = logName; _machineName = machineName; } private EventSourceCreationData(string source, string logName, string machineName, string messageResourceFile, string parameterResourceFile, string categoryResourceFile, short categoryCount) { _source = source; _logName = logName; _machineName = machineName; _messageResourceFile = messageResourceFile; _parameterResourceFile = parameterResourceFile; _categoryResourceFile = categoryResourceFile; CategoryCount = categoryCount; } public string LogName { get { return _logName; } set { _logName = value; } } public string MachineName { get { return _machineName; } set { _machineName = value; } } public string Source { get { return _source; } set { _source = value; } } public string MessageResourceFile { get { return _messageResourceFile; } set { _messageResourceFile = value; } } public string ParameterResourceFile { get { return _parameterResourceFile; } set { _parameterResourceFile = value; } } public string CategoryResourceFile { get { return _categoryResourceFile; } set { _categoryResourceFile = value; } } public int CategoryCount { get { return _categoryCount; } set { if (value > UInt16.MaxValue || value < 0) throw new ArgumentOutOfRangeException("value"); _categoryCount = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- PrivilegedConfigurationManager.cs
- GCHandleCookieTable.cs
- Msmq4PoisonHandler.cs
- PrtCap_Builder.cs
- HeaderPanel.cs
- XmlResolver.cs
- Nodes.cs
- SpecialFolderEnumConverter.cs
- UserControl.cs
- TextTreeUndo.cs
- MulticastOption.cs
- OracleConnectionStringBuilder.cs
- SmtpSpecifiedPickupDirectoryElement.cs
- CircleHotSpot.cs
- XmlILOptimizerVisitor.cs
- TraceShell.cs
- RegistryKey.cs
- NamespaceTable.cs
- ServiceEndpointElement.cs
- RightsManagementEncryptionTransform.cs
- RtfControls.cs
- FilterUserControlBase.cs
- PageTheme.cs
- InfoCardCryptoHelper.cs
- InstanceDataCollectionCollection.cs
- TableDetailsRow.cs
- SafeNativeMethods.cs
- MultipartIdentifier.cs
- CharEntityEncoderFallback.cs
- CodeRemoveEventStatement.cs
- ContextStaticAttribute.cs
- DefaultMemberAttribute.cs
- ListViewItem.cs
- WebBrowserSiteBase.cs
- EditorPart.cs
- EntryPointNotFoundException.cs
- StringSorter.cs
- TreeView.cs
- AttributeUsageAttribute.cs
- documentation.cs
- TextDecoration.cs
- XmlDocumentSerializer.cs
- Permission.cs
- DataGridViewColumnConverter.cs
- RequestSecurityTokenForRemoteTokenFactory.cs
- SmiRequestExecutor.cs
- GlobalAllocSafeHandle.cs
- SerTrace.cs
- SpotLight.cs
- SelectionUIHandler.cs
- EditableRegion.cs
- RichTextBox.cs
- OneOf.cs
- RTTypeWrapper.cs
- ExpressionBindings.cs
- CustomAttributeSerializer.cs
- UInt64Storage.cs
- _SingleItemRequestCache.cs
- CSharpCodeProvider.cs
- DropSource.cs
- SqlClientWrapperSmiStream.cs
- MsmqInputChannelListenerBase.cs
- Condition.cs
- PrintPreviewDialog.cs
- SqlDataSourceCache.cs
- RoleManagerModule.cs
- Transform3DCollection.cs
- LowerCaseStringConverter.cs
- InputMethodStateChangeEventArgs.cs
- WindowsScroll.cs
- ModuleBuilder.cs
- StateMachine.cs
- ValidatorCompatibilityHelper.cs
- TableNameAttribute.cs
- AutomationPatternInfo.cs
- COMException.cs
- ReflectionServiceProvider.cs
- SevenBitStream.cs
- CategoryList.cs
- ByteStreamGeometryContext.cs
- DesignerTextWriter.cs
- PersonalizationProvider.cs
- KeyFrames.cs
- WindowAutomationPeer.cs
- RootBuilder.cs
- MediaTimeline.cs
- ExportException.cs
- GrammarBuilderBase.cs
- PropertyEmitterBase.cs
- FileNotFoundException.cs
- FontStretchConverter.cs
- ParameterCollection.cs
- RuleRef.cs
- WindowsBrush.cs
- RequestQueryParser.cs
- DataFormat.cs
- ResourcePool.cs
- AdornerLayer.cs
- SqlLiftIndependentRowExpressions.cs
- DrawingCollection.cs