Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / xsp / System / Web / Configuration / TransformerInfo.cs / 1 / 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
- XmlSchemaNotation.cs
- ChangeProcessor.cs
- TransformProviderWrapper.cs
- Parser.cs
- Color.cs
- WebProxyScriptElement.cs
- SecurityToken.cs
- ItemContainerGenerator.cs
- EDesignUtil.cs
- StorageEntitySetMapping.cs
- MouseBinding.cs
- InputLanguageManager.cs
- XmlSchemaGroup.cs
- ColorBuilder.cs
- SQLChars.cs
- SystemColors.cs
- EntityKey.cs
- PageAsyncTaskManager.cs
- RIPEMD160Managed.cs
- DSACryptoServiceProvider.cs
- DataRecordInternal.cs
- ProtocolsConfigurationHandler.cs
- DirtyTextRange.cs
- PropertyItem.cs
- SoapFault.cs
- Variable.cs
- WindowsToolbar.cs
- SafeNativeMethodsMilCoreApi.cs
- SamlSecurityToken.cs
- SafeArrayRankMismatchException.cs
- TextModifierScope.cs
- XmlLoader.cs
- AttachedAnnotation.cs
- CommonDialog.cs
- AddInIpcChannel.cs
- ParallelTimeline.cs
- TransformedBitmap.cs
- LogEntryHeaderSerializer.cs
- WorkflowPersistenceService.cs
- FixedTextSelectionProcessor.cs
- SecurityUtils.cs
- ColumnMapProcessor.cs
- PerformanceCounterPermissionEntryCollection.cs
- OdbcCommand.cs
- XmlImplementation.cs
- ProviderConnectionPointCollection.cs
- PermissionSetEnumerator.cs
- UIAgentAsyncEndRequest.cs
- HttpException.cs
- StrongTypingException.cs
- QueryInterceptorAttribute.cs
- Rectangle.cs
- XNodeValidator.cs
- MatrixCamera.cs
- BoundPropertyEntry.cs
- ContextMenu.cs
- GroupItem.cs
- CodeDOMProvider.cs
- FileReader.cs
- SystemWebSectionGroup.cs
- ApplicationBuildProvider.cs
- Nullable.cs
- WebEvents.cs
- ClientProxyGenerator.cs
- Int64.cs
- Misc.cs
- UriParserTemplates.cs
- XmlConverter.cs
- TableItemProviderWrapper.cs
- XmlFileEditor.cs
- LightweightEntityWrapper.cs
- OverflowException.cs
- DataServiceQueryException.cs
- Pointer.cs
- XmlUnspecifiedAttribute.cs
- XmlNavigatorFilter.cs
- RectAnimationUsingKeyFrames.cs
- Helpers.cs
- Set.cs
- LassoHelper.cs
- Claim.cs
- TextTreeTextNode.cs
- HttpCacheVary.cs
- OdbcHandle.cs
- Simplifier.cs
- FontDifferentiator.cs
- NetworkAddressChange.cs
- SingleBodyParameterMessageFormatter.cs
- ResourceDescriptionAttribute.cs
- SiteIdentityPermission.cs
- CollectionChangeEventArgs.cs
- CommaDelimitedStringAttributeCollectionConverter.cs
- OptimizedTemplateContentHelper.cs
- XmlParserContext.cs
- DictionaryEntry.cs
- MessageBodyMemberAttribute.cs
- InitializingNewItemEventArgs.cs
- OdbcDataReader.cs
- TrackingStringDictionary.cs
- Utils.cs