Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / xsp / System / Web / Configuration / TagMapInfo.cs / 5 / 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; [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] 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; [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] 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
- Set.cs
- ProtocolsConfiguration.cs
- ExpressionWriter.cs
- PreviewPrintController.cs
- DesignerAttribute.cs
- ControlCollection.cs
- BorderGapMaskConverter.cs
- TreeViewEvent.cs
- DateTimeUtil.cs
- SQLRoleProvider.cs
- TransactionScope.cs
- TraceShell.cs
- OpenTypeLayoutCache.cs
- SimpleRecyclingCache.cs
- MachineKey.cs
- XmlDocumentFragment.cs
- XmlArrayItemAttributes.cs
- WebServiceTypeData.cs
- PowerStatus.cs
- MetadataCollection.cs
- TextOnlyOutput.cs
- ObjectStateFormatter.cs
- TextRangeSerialization.cs
- TypeDescriptionProviderAttribute.cs
- CompositeActivityTypeDescriptorProvider.cs
- X509Certificate2.cs
- ElementHostAutomationPeer.cs
- LinqDataSourceContextData.cs
- ListItemCollection.cs
- DataGridViewComboBoxColumn.cs
- HtmlObjectListAdapter.cs
- SearchForVirtualItemEventArgs.cs
- ToolboxItemAttribute.cs
- Compiler.cs
- TraceSwitch.cs
- QilScopedVisitor.cs
- DisplayMemberTemplateSelector.cs
- DynamicDocumentPaginator.cs
- ZipIOZip64EndOfCentralDirectoryBlock.cs
- SkinIDTypeConverter.cs
- RedistVersionInfo.cs
- TextHidden.cs
- SHA384CryptoServiceProvider.cs
- AsyncCompletedEventArgs.cs
- FileUtil.cs
- TransportSecurityProtocol.cs
- NavigatorInput.cs
- WindowsFormsEditorServiceHelper.cs
- FileDialogCustomPlacesCollection.cs
- Type.cs
- EnumConverter.cs
- XmlArrayItemAttributes.cs
- DisplayNameAttribute.cs
- BaseCAMarshaler.cs
- ForeignKeyFactory.cs
- ActiveXMessageFormatter.cs
- ScrollBarAutomationPeer.cs
- TimerEventSubscription.cs
- SizeConverter.cs
- XmlUtf8RawTextWriter.cs
- AttributeData.cs
- SecurityAppliedMessage.cs
- AQNBuilder.cs
- Clock.cs
- EditorBrowsableAttribute.cs
- TextDecoration.cs
- ExpressionsCollectionConverter.cs
- DataGridViewHitTestInfo.cs
- ImageAttributes.cs
- localization.cs
- RSAPKCS1SignatureFormatter.cs
- EntityContainerAssociationSet.cs
- MoveSizeWinEventHandler.cs
- UnsafeNativeMethods.cs
- HexParser.cs
- ConstraintStruct.cs
- PrintPreviewGraphics.cs
- WaitForChangedResult.cs
- AssemblyEvidenceFactory.cs
- CollectionTraceRecord.cs
- XhtmlBasicTextBoxAdapter.cs
- OutputCacheProfile.cs
- FontStyle.cs
- SerializerDescriptor.cs
- BooleanSwitch.cs
- DataGridViewComboBoxCell.cs
- TranslateTransform.cs
- ExpressionNormalizer.cs
- CmsInterop.cs
- SQLChars.cs
- MultipleViewProviderWrapper.cs
- NumericUpDownAcceleration.cs
- EntityContainerRelationshipSet.cs
- ProtectedUri.cs
- BamlLocalizer.cs
- SoundPlayerAction.cs
- SRDisplayNameAttribute.cs
- Vector3DCollection.cs
- SBCSCodePageEncoding.cs
- TypeBinaryExpression.cs