Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / Configuration / EventMappingSettings.cs / 2 / 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; } } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DecimalStorage.cs
- SafeNativeMethodsOther.cs
- TiffBitmapDecoder.cs
- IndentedTextWriter.cs
- FilteredXmlReader.cs
- ExpressionWriter.cs
- PropertyMapper.cs
- XpsSerializationException.cs
- PerformanceCounterPermissionAttribute.cs
- DynamicPropertyHolder.cs
- DecoderExceptionFallback.cs
- CssTextWriter.cs
- BevelBitmapEffect.cs
- PointAnimationUsingKeyFrames.cs
- ProcessInputEventArgs.cs
- RectAnimationBase.cs
- KeysConverter.cs
- CollectionBase.cs
- IpcManager.cs
- OdbcDataReader.cs
- WorkflowDurableInstance.cs
- SqlReferenceCollection.cs
- ClientConfigPaths.cs
- BamlLocalizabilityResolver.cs
- WebBrowserProgressChangedEventHandler.cs
- UIElementPropertyUndoUnit.cs
- StrokeCollection2.cs
- ColumnHeaderCollectionEditor.cs
- BooleanToVisibilityConverter.cs
- TargetControlTypeAttribute.cs
- AtlasWeb.Designer.cs
- SmiGettersStream.cs
- DrawingGroup.cs
- DeviceContext.cs
- SwitchElementsCollection.cs
- securitycriticaldataClass.cs
- Model3D.cs
- UnsafeNativeMethodsMilCoreApi.cs
- OutputCacheSettings.cs
- AppearanceEditorPart.cs
- SmuggledIUnknown.cs
- OutputCache.cs
- UserInitiatedNavigationPermission.cs
- WebBrowserSiteBase.cs
- ProcessingInstructionAction.cs
- X509SecurityTokenAuthenticator.cs
- ScrollableControlDesigner.cs
- MethodBuilderInstantiation.cs
- TreeViewAutomationPeer.cs
- JsonGlobals.cs
- Cursor.cs
- MessageAction.cs
- NativeMethodsOther.cs
- ProgressBar.cs
- SetterBase.cs
- DataList.cs
- DataGridViewTextBoxCell.cs
- CacheAxisQuery.cs
- SevenBitStream.cs
- RegisteredArrayDeclaration.cs
- SizeLimitedCache.cs
- DirectoryLocalQuery.cs
- MultilineStringConverter.cs
- KeyTimeConverter.cs
- RSAOAEPKeyExchangeDeformatter.cs
- ObjectListCommandEventArgs.cs
- tabpagecollectioneditor.cs
- RegistrationServices.cs
- PropertyInformation.cs
- ProfessionalColors.cs
- BitmapCache.cs
- ThreadExceptionDialog.cs
- keycontainerpermission.cs
- figurelength.cs
- ImageConverter.cs
- CellRelation.cs
- EpmSourcePathSegment.cs
- RawKeyboardInputReport.cs
- Hash.cs
- MethodExpr.cs
- RSAOAEPKeyExchangeDeformatter.cs
- Comparer.cs
- Restrictions.cs
- TreeViewItemAutomationPeer.cs
- TextSelectionHelper.cs
- RijndaelCryptoServiceProvider.cs
- Effect.cs
- SafeEventLogWriteHandle.cs
- SqlProvider.cs
- TextWriter.cs
- ScrollItemPattern.cs
- ApplicationServiceManager.cs
- ArraySegment.cs
- TypefaceMap.cs
- Image.cs
- HttpWebRequestElement.cs
- TextEditor.cs
- IgnoreSection.cs
- TransformedBitmap.cs
- RIPEMD160.cs