Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / Services / Monitoring / system / Diagnosticts / EventSourceCreationData.cs / 1 / 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. 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
- InvokeGenerator.cs
- CqlLexer.cs
- MatrixAnimationUsingPath.cs
- cookiecontainer.cs
- RichTextBoxConstants.cs
- Point3DKeyFrameCollection.cs
- TreeNodeBindingCollection.cs
- FormattedTextSymbols.cs
- NotifyInputEventArgs.cs
- BufferBuilder.cs
- QueuePathEditor.cs
- SelectedDatesCollection.cs
- EmptyQuery.cs
- RawMouseInputReport.cs
- ProgressBarAutomationPeer.cs
- ThemeInfoAttribute.cs
- XMLDiffLoader.cs
- EntityParameterCollection.cs
- MarginCollapsingState.cs
- Mouse.cs
- ModelPropertyImpl.cs
- SendMessageContent.cs
- MappingSource.cs
- CookieParameter.cs
- Span.cs
- CounterCreationData.cs
- MachineKeySection.cs
- NumberFormatInfo.cs
- SafeProcessHandle.cs
- RealizedColumnsBlock.cs
- TraceHandlerErrorFormatter.cs
- DoubleStorage.cs
- TextParagraph.cs
- SqlBooleanMismatchVisitor.cs
- StateMachine.cs
- DeploymentSectionCache.cs
- QuaternionAnimationUsingKeyFrames.cs
- SelfIssuedAuthAsymmetricKey.cs
- SQLChars.cs
- ExtendedPropertyCollection.cs
- mongolianshape.cs
- CacheEntry.cs
- WebBrowserNavigatedEventHandler.cs
- JulianCalendar.cs
- AspNetSynchronizationContext.cs
- PersonalizableAttribute.cs
- ExecutedRoutedEventArgs.cs
- Wildcard.cs
- StylusShape.cs
- Rect3D.cs
- InternalsVisibleToAttribute.cs
- MorphHelper.cs
- StagingAreaInputItem.cs
- Focus.cs
- Transactions.cs
- DoubleConverter.cs
- ContextBase.cs
- sitestring.cs
- ClientUtils.cs
- UIAgentInitializationException.cs
- WebBrowserSiteBase.cs
- PublisherIdentityPermission.cs
- GlobalProxySelection.cs
- MarkupCompilePass1.cs
- ZipIOExtraFieldPaddingElement.cs
- SymmetricAlgorithm.cs
- _SecureChannel.cs
- StaticExtension.cs
- HttpClientCertificate.cs
- Options.cs
- PeerHopCountAttribute.cs
- HandledEventArgs.cs
- AstTree.cs
- LookupBindingPropertiesAttribute.cs
- ScriptResourceHandler.cs
- BaseHashHelper.cs
- DataRelationCollection.cs
- Utils.cs
- FormatConvertedBitmap.cs
- BamlCollectionHolder.cs
- ResourceProviderFactory.cs
- CompilerError.cs
- ProxyGenerationError.cs
- MessageSecurityOverTcpElement.cs
- StringUtil.cs
- ErrorProvider.cs
- CacheEntry.cs
- XmlMemberMapping.cs
- SecurityPermission.cs
- _UriSyntax.cs
- RelOps.cs
- HotSpotCollectionEditor.cs
- ImageListImage.cs
- TraceSwitch.cs
- DBSqlParserColumn.cs
- SqlClientFactory.cs
- DrawingImage.cs
- WebPartEditorOkVerb.cs
- CreateParams.cs
- SafeReadContext.cs