Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / xsp / System / Web / Configuration / EventMappingSettings.cs / 1 / 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
- PageDeviceFont.cs
- ScriptRegistrationManager.cs
- ParameterEditorUserControl.cs
- ResourceDescriptionAttribute.cs
- BuildProvider.cs
- BaseParagraph.cs
- PageBuildProvider.cs
- UpdatePanelTrigger.cs
- ImageDrawing.cs
- IntSecurity.cs
- EUCJPEncoding.cs
- LinqDataSourceEditData.cs
- TypeTypeConverter.cs
- ResourceSet.cs
- AssemblyResourceLoader.cs
- ButtonChrome.cs
- NameValueFileSectionHandler.cs
- BasicDesignerLoader.cs
- PrintEvent.cs
- SourceLineInfo.cs
- DataTrigger.cs
- CodeIterationStatement.cs
- MarkupCompilePass1.cs
- RelationshipEndMember.cs
- TableLayoutPanelCellPosition.cs
- IncrementalReadDecoders.cs
- RotationValidation.cs
- FormsAuthenticationUserCollection.cs
- EdmError.cs
- PassportIdentity.cs
- PerfCounters.cs
- SslStream.cs
- VideoDrawing.cs
- MethodExpr.cs
- CursorConverter.cs
- TextBoxBase.cs
- altserialization.cs
- AnnotationService.cs
- XmlObjectSerializerReadContextComplexJson.cs
- SizeFConverter.cs
- SqlDataSource.cs
- TextSelectionHelper.cs
- ResXResourceWriter.cs
- ResourceDisplayNameAttribute.cs
- PrintingPermission.cs
- Int32Animation.cs
- Italic.cs
- DesignerView.cs
- DependencyPropertyValueSerializer.cs
- IndexerNameAttribute.cs
- QuerySettings.cs
- KerberosSecurityTokenAuthenticator.cs
- ContainerUtilities.cs
- SystemColors.cs
- DrawingContext.cs
- VisualStyleInformation.cs
- dtdvalidator.cs
- RelationshipType.cs
- ToolboxItemFilterAttribute.cs
- CrossAppDomainChannel.cs
- LineServicesRun.cs
- WindowsEditBoxRange.cs
- ConfigXmlSignificantWhitespace.cs
- ListBoxItemWrapperAutomationPeer.cs
- RegexInterpreter.cs
- BooleanKeyFrameCollection.cs
- Transform.cs
- RadialGradientBrush.cs
- SqlParameter.cs
- ListItemParagraph.cs
- CodeTypeReferenceExpression.cs
- LightweightCodeGenerator.cs
- CodeDOMUtility.cs
- WsdlParser.cs
- WebPartManagerDesigner.cs
- ObjectViewQueryResultData.cs
- ActivityExecutorOperation.cs
- CommonObjectSecurity.cs
- DelegatingConfigHost.cs
- TdsValueSetter.cs
- ConfigXmlCDataSection.cs
- BufferedWebEventProvider.cs
- Block.cs
- EncryptedReference.cs
- WmpBitmapEncoder.cs
- FtpRequestCacheValidator.cs
- CryptoApi.cs
- CultureSpecificStringDictionary.cs
- SetUserPreferenceRequest.cs
- XamlReaderHelper.cs
- SimpleRecyclingCache.cs
- UIElementAutomationPeer.cs
- HitTestParameters.cs
- SchemaTypeEmitter.cs
- Point3DKeyFrameCollection.cs
- Models.cs
- HttpProtocolImporter.cs
- GeometryDrawing.cs
- MetadataUtil.cs
- ResourceManagerWrapper.cs