Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / Configuration / TransformerInfo.cs / 1305376 / 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;
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 | ConfigurationPropertyOptions.IsTypeStringTransformationRequired);
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
- DependencyObjectProvider.cs
- ProfilePropertySettingsCollection.cs
- HttpServerProtocol.cs
- BitmapEffectGeneralTransform.cs
- SecurityKeyType.cs
- ClientSettingsSection.cs
- BindingOperations.cs
- ErrorRuntimeConfig.cs
- ToolStripDesignerAvailabilityAttribute.cs
- DataGridLinkButton.cs
- FormViewModeEventArgs.cs
- SmtpMail.cs
- SafeHandles.cs
- SignedXml.cs
- HandledMouseEvent.cs
- TextElement.cs
- XmlSchemaCompilationSettings.cs
- SpotLight.cs
- RIPEMD160Managed.cs
- UpDownBase.cs
- DataGridViewSortCompareEventArgs.cs
- DeviceContexts.cs
- ComboBoxDesigner.cs
- VariableAction.cs
- SecurityContext.cs
- ToolStripItemCollection.cs
- MatrixCamera.cs
- SqlCacheDependency.cs
- TypographyProperties.cs
- SizeConverter.cs
- filewebresponse.cs
- KernelTypeValidation.cs
- XmlTypeAttribute.cs
- SqlCharStream.cs
- SkipStoryboardToFill.cs
- _HeaderInfo.cs
- MissingManifestResourceException.cs
- TextBoxBase.cs
- VScrollBar.cs
- WebRequestModuleElementCollection.cs
- TraceUtils.cs
- HostedImpersonationContext.cs
- XmlSchemaExternal.cs
- InstalledVoice.cs
- CategoryEditor.cs
- PermissionAttributes.cs
- PropertyItemInternal.cs
- BinaryKeyIdentifierClause.cs
- GeneralTransform3D.cs
- TargetFrameworkAttribute.cs
- WebPartDisplayModeCollection.cs
- TraceContext.cs
- SHA512.cs
- BooleanConverter.cs
- Point3DIndependentAnimationStorage.cs
- Parser.cs
- ReliableMessagingVersion.cs
- ProxyManager.cs
- ClientUrlResolverWrapper.cs
- Label.cs
- Reference.cs
- Marshal.cs
- VisualBrush.cs
- ExtensionDataObject.cs
- GridViewRow.cs
- RelatedPropertyManager.cs
- ToolStripItemRenderEventArgs.cs
- DataSourceControlBuilder.cs
- ChannelEndpointElementCollection.cs
- BinaryMessageEncodingBindingElement.cs
- NavigationCommands.cs
- SqlTypesSchemaImporter.cs
- EncodingStreamWrapper.cs
- ErrorTableItemStyle.cs
- Int16KeyFrameCollection.cs
- _NetRes.cs
- FieldAccessException.cs
- WebPartEventArgs.cs
- IgnoreFlushAndCloseStream.cs
- CodeAttributeDeclarationCollection.cs
- SecurityProtocolFactory.cs
- EFDataModelProvider.cs
- XmlEntityReference.cs
- DSACryptoServiceProvider.cs
- FlowDocumentReader.cs
- DataGridViewCellStyleContentChangedEventArgs.cs
- SystemIcmpV4Statistics.cs
- InkCanvasFeedbackAdorner.cs
- HtmlElementCollection.cs
- GenericWebPart.cs
- SqlClientWrapperSmiStream.cs
- DockProviderWrapper.cs
- SqlConnectionFactory.cs
- IisTraceWebEventProvider.cs
- BitmapEffect.cs
- XmlRawWriterWrapper.cs
- MediaCommands.cs
- StrongNameKeyPair.cs
- SaveRecipientRequest.cs
- ClientScriptManager.cs