Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / Configuration / TagMapInfo.cs / 1305376 / TagMapInfo.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.IO; using System.Text; using System.Web.Util; using System.Web.UI; using System.Web.Compilation; using System.Threading; using System.Web.Configuration; using System.Security.Permissions; public sealed class TagMapInfo : ConfigurationElement { private static ConfigurationPropertyCollection _properties; private static readonly ConfigurationProperty _propTagTypeName = new ConfigurationProperty("tagType", typeof(string), null, null, StdValidatorsAndConverters.NonEmptyStringValidator, ConfigurationPropertyOptions.IsRequired | ConfigurationPropertyOptions.IsKey); private static readonly ConfigurationProperty _propMappedTagTypeName = new ConfigurationProperty("mappedTagType", typeof(string), null, null, StdValidatorsAndConverters.NonEmptyStringValidator, ConfigurationPropertyOptions.IsRequired); static TagMapInfo() { _properties = new ConfigurationPropertyCollection(); _properties.Add(_propTagTypeName); _properties.Add(_propMappedTagTypeName); } internal TagMapInfo() { } public TagMapInfo(String tagTypeName, String mappedTagTypeName) : this() { TagType = tagTypeName; MappedTagType = mappedTagTypeName; } public override bool Equals(object o) { TagMapInfo tm = o as TagMapInfo; return StringUtil.Equals(TagType, tm.TagType) && StringUtil.Equals(MappedTagType, tm.MappedTagType); } public override int GetHashCode() { return TagType.GetHashCode() ^ MappedTagType.GetHashCode(); } protected override ConfigurationPropertyCollection Properties { get { return _properties; } } [ConfigurationProperty("mappedTagType")] [StringValidator(MinLength = 1)] public string MappedTagType { get { return (string)base[_propMappedTagTypeName]; } set { base[_propMappedTagTypeName] = value; } } [ConfigurationProperty("tagType", IsRequired = true, IsKey = true, DefaultValue = "")] [StringValidator(MinLength = 1)] public string TagType { get { return (string)base[_propTagTypeName]; } set { base[_propTagTypeName] = value; } } void Verify() { if (String.IsNullOrEmpty(TagType)) { throw new ConfigurationErrorsException( SR.GetString( SR.Config_base_required_attribute_missing, "tagType")); } if (String.IsNullOrEmpty(MappedTagType)) { throw new ConfigurationErrorsException( SR.GetString( SR.Config_base_required_attribute_missing, "mappedTagType")); } } protected override bool SerializeElement(XmlWriter writer, bool serializeCollectionKey) { Verify(); return base.SerializeElement(writer, serializeCollectionKey); } } } // 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.IO; using System.Text; using System.Web.Util; using System.Web.UI; using System.Web.Compilation; using System.Threading; using System.Web.Configuration; using System.Security.Permissions; public sealed class TagMapInfo : ConfigurationElement { private static ConfigurationPropertyCollection _properties; private static readonly ConfigurationProperty _propTagTypeName = new ConfigurationProperty("tagType", typeof(string), null, null, StdValidatorsAndConverters.NonEmptyStringValidator, ConfigurationPropertyOptions.IsRequired | ConfigurationPropertyOptions.IsKey); private static readonly ConfigurationProperty _propMappedTagTypeName = new ConfigurationProperty("mappedTagType", typeof(string), null, null, StdValidatorsAndConverters.NonEmptyStringValidator, ConfigurationPropertyOptions.IsRequired); static TagMapInfo() { _properties = new ConfigurationPropertyCollection(); _properties.Add(_propTagTypeName); _properties.Add(_propMappedTagTypeName); } internal TagMapInfo() { } public TagMapInfo(String tagTypeName, String mappedTagTypeName) : this() { TagType = tagTypeName; MappedTagType = mappedTagTypeName; } public override bool Equals(object o) { TagMapInfo tm = o as TagMapInfo; return StringUtil.Equals(TagType, tm.TagType) && StringUtil.Equals(MappedTagType, tm.MappedTagType); } public override int GetHashCode() { return TagType.GetHashCode() ^ MappedTagType.GetHashCode(); } protected override ConfigurationPropertyCollection Properties { get { return _properties; } } [ConfigurationProperty("mappedTagType")] [StringValidator(MinLength = 1)] public string MappedTagType { get { return (string)base[_propMappedTagTypeName]; } set { base[_propMappedTagTypeName] = value; } } [ConfigurationProperty("tagType", IsRequired = true, IsKey = true, DefaultValue = "")] [StringValidator(MinLength = 1)] public string TagType { get { return (string)base[_propTagTypeName]; } set { base[_propTagTypeName] = value; } } void Verify() { if (String.IsNullOrEmpty(TagType)) { throw new ConfigurationErrorsException( SR.GetString( SR.Config_base_required_attribute_missing, "tagType")); } if (String.IsNullOrEmpty(MappedTagType)) { throw new ConfigurationErrorsException( SR.GetString( SR.Config_base_required_attribute_missing, "mappedTagType")); } } protected override bool SerializeElement(XmlWriter writer, bool serializeCollectionKey) { Verify(); return base.SerializeElement(writer, serializeCollectionKey); } } } // 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
- ManifestResourceInfo.cs
- HuffmanTree.cs
- DockPattern.cs
- DrawingCollection.cs
- TabControl.cs
- SqlBinder.cs
- SessionPageStateSection.cs
- DataListItemEventArgs.cs
- InputProcessorProfilesLoader.cs
- KeyValueConfigurationCollection.cs
- TraceContext.cs
- WriteableBitmap.cs
- EntityDataSourceEntityTypeFilterItem.cs
- FontWeightConverter.cs
- WithStatement.cs
- Mappings.cs
- RegistryPermission.cs
- EditCommandColumn.cs
- DataServices.cs
- CatalogZoneBase.cs
- RelationshipEndMember.cs
- HatchBrush.cs
- SchemaNamespaceManager.cs
- WaitHandle.cs
- _HTTPDateParse.cs
- SingleAnimationUsingKeyFrames.cs
- CodeLabeledStatement.cs
- ParsedRoute.cs
- CombinedGeometry.cs
- CompilerErrorCollection.cs
- MSHTMLHost.cs
- PresentationTraceSources.cs
- AssemblyNameProxy.cs
- TdsParserSafeHandles.cs
- ToolStripLocationCancelEventArgs.cs
- TextPointerBase.cs
- XmlConvert.cs
- UnsafeNativeMethods.cs
- RectAnimationClockResource.cs
- BamlRecordHelper.cs
- XamlPointCollectionSerializer.cs
- EnumConverter.cs
- SplineKeyFrames.cs
- KeyToListMap.cs
- CharEntityEncoderFallback.cs
- XmlValidatingReaderImpl.cs
- Int32CollectionValueSerializer.cs
- Listbox.cs
- mongolianshape.cs
- HttpCookieCollection.cs
- UniformGrid.cs
- JoinCqlBlock.cs
- StringAnimationUsingKeyFrames.cs
- SourceFilter.cs
- ImageField.cs
- SiteMap.cs
- DataAdapter.cs
- MappingSource.cs
- keycontainerpermission.cs
- WebRequestModulesSection.cs
- TemplatedMailWebEventProvider.cs
- VisualBrush.cs
- BitmapEncoder.cs
- XmlImplementation.cs
- WhitespaceReader.cs
- XmlNodeChangedEventArgs.cs
- Propagator.ExtentPlaceholderCreator.cs
- DrawingContextWalker.cs
- ChangeNode.cs
- NameTable.cs
- DispatcherExceptionEventArgs.cs
- Switch.cs
- OpenTypeLayout.cs
- Filter.cs
- InvokeBinder.cs
- WindowsListView.cs
- DiagnosticTrace.cs
- NameTable.cs
- ForEachAction.cs
- SocketElement.cs
- OletxTransactionManager.cs
- EmptyImpersonationContext.cs
- Misc.cs
- ProfileSettings.cs
- X509IssuerSerialKeyIdentifierClause.cs
- StoreItemCollection.Loader.cs
- EventPrivateKey.cs
- OleDbParameter.cs
- UnsafeNativeMethodsCLR.cs
- SystemWebCachingSectionGroup.cs
- KnownIds.cs
- StaticExtensionConverter.cs
- DataSourceControlBuilder.cs
- DataServiceHost.cs
- BuildProviderAppliesToAttribute.cs
- TextHintingModeValidation.cs
- SmiXetterAccessMap.cs
- CardSpaceSelector.cs
- DataViewSetting.cs
- TextTreeRootTextBlock.cs