Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / xsp / System / Web / Configuration / EventMappingSettings.cs / 5 / 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; [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] 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); 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; [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] 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); 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
- CompiledRegexRunnerFactory.cs
- CodeObjectCreateExpression.cs
- ContainerControl.cs
- PagedDataSource.cs
- LoginUtil.cs
- DateTimeFormatInfoScanner.cs
- MonthChangedEventArgs.cs
- AnnotationResource.cs
- RijndaelManaged.cs
- XmlDeclaration.cs
- DataTemplateKey.cs
- ConfigurationStrings.cs
- ClosableStream.cs
- IntegerFacetDescriptionElement.cs
- DataGridViewColumnCollection.cs
- TransformPattern.cs
- TableRowGroup.cs
- InputBuffer.cs
- DrawingContextDrawingContextWalker.cs
- ToolboxItemSnapLineBehavior.cs
- ProjectionNode.cs
- FileInfo.cs
- ConfigurationValue.cs
- DiagnosticTrace.cs
- Size3D.cs
- ChtmlImageAdapter.cs
- InfoCardX509Validator.cs
- DocumentSchemaValidator.cs
- XmlText.cs
- Main.cs
- DataSourceCache.cs
- Metadata.cs
- APCustomTypeDescriptor.cs
- WSFederationHttpBindingElement.cs
- SerializationObjectManager.cs
- AstNode.cs
- BufferBuilder.cs
- WindowsGraphics.cs
- XmlSchemaComplexType.cs
- HwndSource.cs
- BCLDebug.cs
- WebPartsPersonalizationAuthorization.cs
- ExtensibleClassFactory.cs
- AuthorizationSection.cs
- XmlSerializerVersionAttribute.cs
- PingOptions.cs
- DefaultValueTypeConverter.cs
- BrowserCapabilitiesCompiler.cs
- DivideByZeroException.cs
- TextTrailingCharacterEllipsis.cs
- NamedPipeHostedTransportConfiguration.cs
- Int16Animation.cs
- DialogWindow.cs
- Debugger.cs
- TransactionManager.cs
- Pen.cs
- MLangCodePageEncoding.cs
- FontSizeConverter.cs
- Subtree.cs
- SqlBinder.cs
- WebPartAuthorizationEventArgs.cs
- TogglePattern.cs
- XmlSchemaException.cs
- Globals.cs
- DbExpressionBuilder.cs
- TabControlEvent.cs
- VSWCFServiceContractGenerator.cs
- DesignerAttribute.cs
- RtType.cs
- DataGridBoolColumn.cs
- LabelLiteral.cs
- BooleanConverter.cs
- Msec.cs
- DefaultBinder.cs
- ContextQuery.cs
- ToolStripKeyboardHandlingService.cs
- UnsafeNativeMethodsMilCoreApi.cs
- RepeatEnumerable.cs
- PresentationSource.cs
- BackgroundWorker.cs
- Route.cs
- RuntimeConfigLKG.cs
- PerfService.cs
- LingerOption.cs
- MetadataCache.cs
- InheritanceContextChangedEventManager.cs
- RoutedEvent.cs
- IteratorDescriptor.cs
- _UncName.cs
- DataSet.cs
- GeneralTransform3DGroup.cs
- DiscoveryServiceExtension.cs
- CssStyleCollection.cs
- UriSectionReader.cs
- HtmlInputImage.cs
- ToolStripComboBox.cs
- BindingListCollectionView.cs
- RoleGroup.cs
- QuarticEase.cs
- TreeView.cs