Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / Configuration / EventMappingSettings.cs / 1305376 / EventMappingSettings.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Configuration { using System; using System.Xml; using System.Configuration; using System.Collections.Specialized; using System.Collections; using System.Globalization; using System.IO; using System.Text; using System.ComponentModel; using System.Web.Hosting; using System.Web.Util; using System.Web.Configuration; using System.Web.Management; using System.Web.Compilation; using System.Security.Permissions; public sealed class EventMappingSettings : ConfigurationElement { private static ConfigurationPropertyCollection _properties; private static readonly ConfigurationProperty _propName = new ConfigurationProperty("name", typeof(string), null, null, StdValidatorsAndConverters.NonEmptyStringValidator, ConfigurationPropertyOptions.IsRequired | ConfigurationPropertyOptions.IsKey); private static readonly ConfigurationProperty _propType = new ConfigurationProperty("type", typeof(string), String.Empty, ConfigurationPropertyOptions.IsRequired | ConfigurationPropertyOptions.IsTypeStringTransformationRequired); private static readonly ConfigurationProperty _propStartEventCode = new ConfigurationProperty("startEventCode", typeof(int), 0, null, StdValidatorsAndConverters.PositiveIntegerValidator, ConfigurationPropertyOptions.None); private static readonly ConfigurationProperty _propEndEventCode = new ConfigurationProperty("endEventCode", typeof(int), int.MaxValue, null, StdValidatorsAndConverters.PositiveIntegerValidator, ConfigurationPropertyOptions.None); Type _type; // The real type internal Type RealType { get { Debug.Assert(_type != null, "_type != null"); return _type; } set { _type = value; } } static EventMappingSettings() { // Property initialization _properties = new ConfigurationPropertyCollection(); _properties.Add(_propName); _properties.Add(_propType); _properties.Add(_propStartEventCode); _properties.Add(_propEndEventCode); } internal EventMappingSettings() { } public EventMappingSettings(String name, String type, int startEventCode, int endEventCode) : this() { Name = name; Type = type; StartEventCode = startEventCode; EndEventCode = endEventCode; } public EventMappingSettings(String name, String type) : this() // Do not call the constructor which sets the event codes { // or the values will be persisted as it the user set them Name = name; Type = type; } protected override ConfigurationPropertyCollection Properties { get { return _properties; } } [ConfigurationProperty("name", IsRequired = true, IsKey = true, DefaultValue = "")] public String Name { get { return (string)base[_propName]; } set { base[_propName] = value; } } [ConfigurationProperty("type", IsRequired = true, DefaultValue = "")] public String Type { get { return (string)base[_propType]; } set { base[_propType] = value; } } [ConfigurationProperty("startEventCode", DefaultValue = 0)] [IntegerValidator(MinValue = 0)] public int StartEventCode { get { return (int)base[_propStartEventCode]; } set { base[_propStartEventCode] = value; } } [ConfigurationProperty("endEventCode", DefaultValue = int.MaxValue)] [IntegerValidator(MinValue = 0)] public int EndEventCode { get { return (int)base[_propEndEventCode]; } set { base[_propEndEventCode] = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Configuration { using System; using System.Xml; using System.Configuration; using System.Collections.Specialized; using System.Collections; using System.Globalization; using System.IO; using System.Text; using System.ComponentModel; using System.Web.Hosting; using System.Web.Util; using System.Web.Configuration; using System.Web.Management; using System.Web.Compilation; using System.Security.Permissions; public sealed class EventMappingSettings : ConfigurationElement { private static ConfigurationPropertyCollection _properties; private static readonly ConfigurationProperty _propName = new ConfigurationProperty("name", typeof(string), null, null, StdValidatorsAndConverters.NonEmptyStringValidator, ConfigurationPropertyOptions.IsRequired | ConfigurationPropertyOptions.IsKey); private static readonly ConfigurationProperty _propType = new ConfigurationProperty("type", typeof(string), String.Empty, ConfigurationPropertyOptions.IsRequired | ConfigurationPropertyOptions.IsTypeStringTransformationRequired); private static readonly ConfigurationProperty _propStartEventCode = new ConfigurationProperty("startEventCode", typeof(int), 0, null, StdValidatorsAndConverters.PositiveIntegerValidator, ConfigurationPropertyOptions.None); private static readonly ConfigurationProperty _propEndEventCode = new ConfigurationProperty("endEventCode", typeof(int), int.MaxValue, null, StdValidatorsAndConverters.PositiveIntegerValidator, ConfigurationPropertyOptions.None); Type _type; // The real type internal Type RealType { get { Debug.Assert(_type != null, "_type != null"); return _type; } set { _type = value; } } static EventMappingSettings() { // Property initialization _properties = new ConfigurationPropertyCollection(); _properties.Add(_propName); _properties.Add(_propType); _properties.Add(_propStartEventCode); _properties.Add(_propEndEventCode); } internal EventMappingSettings() { } public EventMappingSettings(String name, String type, int startEventCode, int endEventCode) : this() { Name = name; Type = type; StartEventCode = startEventCode; EndEventCode = endEventCode; } public EventMappingSettings(String name, String type) : this() // Do not call the constructor which sets the event codes { // or the values will be persisted as it the user set them Name = name; Type = type; } protected override ConfigurationPropertyCollection Properties { get { return _properties; } } [ConfigurationProperty("name", IsRequired = true, IsKey = true, DefaultValue = "")] public String Name { get { return (string)base[_propName]; } set { base[_propName] = value; } } [ConfigurationProperty("type", IsRequired = true, DefaultValue = "")] public String Type { get { return (string)base[_propType]; } set { base[_propType] = value; } } [ConfigurationProperty("startEventCode", DefaultValue = 0)] [IntegerValidator(MinValue = 0)] public int StartEventCode { get { return (int)base[_propStartEventCode]; } set { base[_propStartEventCode] = value; } } [ConfigurationProperty("endEventCode", DefaultValue = int.MaxValue)] [IntegerValidator(MinValue = 0)] public int EndEventCode { get { return (int)base[_propEndEventCode]; } set { base[_propEndEventCode] = value; } } } } // 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
- XPathCompileException.cs
- HttpCacheVaryByContentEncodings.cs
- Faults.cs
- FixedNode.cs
- SizeAnimationBase.cs
- MappingItemCollection.cs
- CodeTypeOfExpression.cs
- _UriSyntax.cs
- RenderData.cs
- DoubleLink.cs
- xmlglyphRunInfo.cs
- ReaderWriterLockWrapper.cs
- EventDescriptor.cs
- ButtonStandardAdapter.cs
- FileStream.cs
- ReflectPropertyDescriptor.cs
- HttpException.cs
- RecordsAffectedEventArgs.cs
- CodeObjectCreateExpression.cs
- ObjectStateFormatter.cs
- StyleXamlTreeBuilder.cs
- PrimitiveList.cs
- TextDpi.cs
- NativeCppClassAttribute.cs
- Domain.cs
- JavaScriptObjectDeserializer.cs
- URLAttribute.cs
- ConstructorNeedsTagAttribute.cs
- MemberPathMap.cs
- QilFactory.cs
- MaterialCollection.cs
- NaturalLanguageHyphenator.cs
- DateTimeConstantAttribute.cs
- WindowsEditBox.cs
- HTMLTextWriter.cs
- CompilerState.cs
- Convert.cs
- HtmlAnchor.cs
- UnsafeNativeMethodsPenimc.cs
- HitTestDrawingContextWalker.cs
- FamilyTypefaceCollection.cs
- PresentationSource.cs
- CatalogZone.cs
- HttpApplicationFactory.cs
- DisplayMemberTemplateSelector.cs
- UnionCodeGroup.cs
- TrackingQuery.cs
- Math.cs
- ChunkedMemoryStream.cs
- SHA384.cs
- PrintingPermissionAttribute.cs
- ReflectPropertyDescriptor.cs
- VectorCollectionValueSerializer.cs
- ByeOperationCD1AsyncResult.cs
- XPathParser.cs
- TableAutomationPeer.cs
- StrokeIntersection.cs
- SocketPermission.cs
- CodeParameterDeclarationExpressionCollection.cs
- RawUIStateInputReport.cs
- PermissionListSet.cs
- __ConsoleStream.cs
- Schema.cs
- TrackPointCollection.cs
- MouseOverProperty.cs
- EdmProviderManifest.cs
- MulticastDelegate.cs
- HMACRIPEMD160.cs
- BooleanAnimationBase.cs
- URI.cs
- CompiledQuery.cs
- DataServiceKeyAttribute.cs
- PasswordBox.cs
- ExpressionContext.cs
- FtpCachePolicyElement.cs
- GPStream.cs
- TextServicesLoader.cs
- ArraySortHelper.cs
- EnumBuilder.cs
- KeyValueConfigurationCollection.cs
- DropDownButton.cs
- PlaceHolder.cs
- DBCSCodePageEncoding.cs
- PairComparer.cs
- WebBrowsableAttribute.cs
- CallbackValidator.cs
- LogicalTreeHelper.cs
- BitmapFrame.cs
- ToolStripDropDownClosedEventArgs.cs
- GenericAuthenticationEventArgs.cs
- Attributes.cs
- GraphicsPath.cs
- RegexEditorDialog.cs
- AuthenticateEventArgs.cs
- ObjectDataSourceChooseTypePanel.cs
- PreProcessInputEventArgs.cs
- RoleGroupCollection.cs
- ColorPalette.cs
- LoadGrammarCompletedEventArgs.cs
- PriorityBinding.cs