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
- IntegerValidator.cs
- SpellerStatusTable.cs
- BamlResourceDeserializer.cs
- TextElementAutomationPeer.cs
- DrawListViewItemEventArgs.cs
- FormatSettings.cs
- SoapParser.cs
- SrgsText.cs
- SctClaimDictionary.cs
- HttpResponseInternalWrapper.cs
- XslVisitor.cs
- PathTooLongException.cs
- EventMap.cs
- MulticastIPAddressInformationCollection.cs
- FormattedTextSymbols.cs
- CustomErrorCollection.cs
- MgmtConfigurationRecord.cs
- ListBase.cs
- CodeFieldReferenceExpression.cs
- AttachedPropertyBrowsableAttribute.cs
- QueryPageSettingsEventArgs.cs
- DecimalAnimationUsingKeyFrames.cs
- PointLightBase.cs
- XmlAttributeProperties.cs
- WCFBuildProvider.cs
- MasterPage.cs
- SystemInformation.cs
- DebugInfo.cs
- DbConnectionClosed.cs
- UrlMapping.cs
- EventSource.cs
- BaseEntityWrapper.cs
- ProjectionCamera.cs
- SelectionPattern.cs
- SingleConverter.cs
- NonceCache.cs
- TypeHelper.cs
- FontStretchConverter.cs
- DataGridViewLayoutData.cs
- TerminateDesigner.cs
- ProcessInfo.cs
- OdbcTransaction.cs
- BrowserCapabilitiesFactoryBase.cs
- MatrixAnimationBase.cs
- baseshape.cs
- RelatedView.cs
- Rfc2898DeriveBytes.cs
- SqlParameterCollection.cs
- HwndSubclass.cs
- MediaTimeline.cs
- BitStack.cs
- DnsEndPoint.cs
- IDQuery.cs
- TaiwanCalendar.cs
- QilCloneVisitor.cs
- CertificateManager.cs
- SingleResultAttribute.cs
- DisposableCollectionWrapper.cs
- Html32TextWriter.cs
- MissingMethodException.cs
- BamlRecordHelper.cs
- NativeMethods.cs
- UniqueID.cs
- SystemColors.cs
- EndpointInfo.cs
- CookielessHelper.cs
- SafeTimerHandle.cs
- RuntimeConfigurationRecord.cs
- TrackingMemoryStream.cs
- GrammarBuilderRuleRef.cs
- TypedReference.cs
- UnmanagedBitmapWrapper.cs
- XmlTypeMapping.cs
- TimeoutValidationAttribute.cs
- CacheDict.cs
- AudioException.cs
- FrameworkPropertyMetadata.cs
- glyphs.cs
- SecurityMessageProperty.cs
- AppDomainAttributes.cs
- CompiledQueryCacheEntry.cs
- NullableLongMinMaxAggregationOperator.cs
- CompilerLocalReference.cs
- DictionaryEntry.cs
- SolidBrush.cs
- QueryStringParameter.cs
- FontUnitConverter.cs
- XmlTextReaderImplHelpers.cs
- MediaContextNotificationWindow.cs
- HtmlToClrEventProxy.cs
- ClientCultureInfo.cs
- _SslState.cs
- SafeIUnknown.cs
- QilInvokeEarlyBound.cs
- ProfileSettings.cs
- PageHandlerFactory.cs
- LogExtentCollection.cs
- PixelFormats.cs
- DependencyObjectProvider.cs
- FrameworkContextData.cs