Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / xsp / System / Web / Configuration / TransformerInfo.cs / 5 / TransformerInfo.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Configuration { using System; using System.Configuration; using System.Collections; using System.Collections.Specialized; using System.Security.Principal; using System.Web; using System.Web.Compilation; using System.Web.Configuration; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Web.Util; using System.Xml; using System.Security.Permissions; [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class TransformerInfo : 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), null, null, StdValidatorsAndConverters.NonEmptyStringValidator, ConfigurationPropertyOptions.IsRequired); static TransformerInfo() { _properties = new ConfigurationPropertyCollection(); _properties.Add(_propName); _properties.Add(_propType); } internal TransformerInfo() { } public TransformerInfo(string name, string type) : this() { Name = name; Type = type; } [ConfigurationProperty("name", IsRequired = true, DefaultValue = "", IsKey = true)] [StringValidator(MinLength = 1)] public string Name { get { return (string)base[_propName]; } set { base[_propName] = value; } } ///protected override ConfigurationPropertyCollection Properties { get { return _properties; } } [ConfigurationProperty("type", IsRequired = true, DefaultValue = "")] [StringValidator(MinLength = 1)] public string Type { get { return (string)base[_propType]; } set { base[_propType] = value; } } /// public override bool Equals(object o) { if (o == this) { return true; } TransformerInfo ti = o as TransformerInfo; return StringUtil.Equals(Name, ti.Name) && StringUtil.Equals(Type, ti.Type); } /// public override int GetHashCode() { return Name.GetHashCode() ^ Type.GetHashCode(); } } } // 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.Configuration; using System.Collections; using System.Collections.Specialized; using System.Security.Principal; using System.Web; using System.Web.Compilation; using System.Web.Configuration; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Web.Util; using System.Xml; using System.Security.Permissions; [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class TransformerInfo : 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), null, null, StdValidatorsAndConverters.NonEmptyStringValidator, ConfigurationPropertyOptions.IsRequired); static TransformerInfo() { _properties = new ConfigurationPropertyCollection(); _properties.Add(_propName); _properties.Add(_propType); } internal TransformerInfo() { } public TransformerInfo(string name, string type) : this() { Name = name; Type = type; } [ConfigurationProperty("name", IsRequired = true, DefaultValue = "", IsKey = true)] [StringValidator(MinLength = 1)] public string Name { get { return (string)base[_propName]; } set { base[_propName] = value; } } ///protected override ConfigurationPropertyCollection Properties { get { return _properties; } } [ConfigurationProperty("type", IsRequired = true, DefaultValue = "")] [StringValidator(MinLength = 1)] public string Type { get { return (string)base[_propType]; } set { base[_propType] = value; } } /// public override bool Equals(object o) { if (o == this) { return true; } TransformerInfo ti = o as TransformerInfo; return StringUtil.Equals(Name, ti.Name) && StringUtil.Equals(Type, ti.Type); } /// public override int GetHashCode() { return Name.GetHashCode() ^ Type.GetHashCode(); } } } // 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
- StrongName.cs
- InvalidProgramException.cs
- ChangeDirector.cs
- PinnedBufferMemoryStream.cs
- BindingMemberInfo.cs
- SafeProcessHandle.cs
- SocketAddress.cs
- ModifierKeysConverter.cs
- BinaryParser.cs
- ChildTable.cs
- StringBuilder.cs
- XmlQueryContext.cs
- Or.cs
- HttpListener.cs
- DataContractSerializerSection.cs
- GridViewEditEventArgs.cs
- XsdValidatingReader.cs
- WindowsGraphics2.cs
- NetStream.cs
- HitTestFilterBehavior.cs
- LocalizationParserHooks.cs
- SqlNodeAnnotation.cs
- _LazyAsyncResult.cs
- WebPartZone.cs
- MediaContextNotificationWindow.cs
- TemplateControlParser.cs
- FixedSOMLineRanges.cs
- TableItemPatternIdentifiers.cs
- AnimatedTypeHelpers.cs
- TypedDatasetGenerator.cs
- ResourceDictionaryCollection.cs
- Section.cs
- AppLevelCompilationSectionCache.cs
- XamlTreeBuilder.cs
- SpotLight.cs
- ConsumerConnectionPoint.cs
- DummyDataSource.cs
- SubMenuStyleCollection.cs
- ErrorHandler.cs
- VSDExceptions.cs
- HitTestFilterBehavior.cs
- TextTreeInsertUndoUnit.cs
- PopupControlService.cs
- SystemIPAddressInformation.cs
- TableColumn.cs
- HitTestParameters.cs
- StylusDownEventArgs.cs
- XPathNodeHelper.cs
- ChangeInterceptorAttribute.cs
- QueryConverter.cs
- HttpCacheVaryByContentEncodings.cs
- ApplicationFileParser.cs
- ISFTagAndGuidCache.cs
- SpeechSeg.cs
- DependentList.cs
- EntityContainer.cs
- BinaryConverter.cs
- SoapMessage.cs
- InitializeCorrelation.cs
- DES.cs
- EventSinkHelperWriter.cs
- ArrayTypeMismatchException.cs
- PageSettings.cs
- ToolBarButton.cs
- GridProviderWrapper.cs
- StringWriter.cs
- ClassDataContract.cs
- ApplicationGesture.cs
- GroupLabel.cs
- BasicAsyncResult.cs
- BuilderPropertyEntry.cs
- StackSpiller.Generated.cs
- MetadataFile.cs
- HyperLinkColumn.cs
- PathSegmentCollection.cs
- ProvidersHelper.cs
- BindingMAnagerBase.cs
- SiteMapNode.cs
- RegistrySecurity.cs
- IRCollection.cs
- CellRelation.cs
- MimeXmlImporter.cs
- WebPartMenu.cs
- GeneralTransform3DGroup.cs
- DBConnection.cs
- TypeValidationEventArgs.cs
- ReadOnlyDataSource.cs
- FileStream.cs
- ParallelForEach.cs
- SchemaInfo.cs
- StringComparer.cs
- PathFigure.cs
- DrawingContextDrawingContextWalker.cs
- WindowsFormsDesignerOptionService.cs
- MetadataSection.cs
- CreateParams.cs
- ReaderWriterLock.cs
- PtsCache.cs
- XmlSchemaAttribute.cs
- XPathNavigatorReader.cs