Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / Configuration / IgnoreDeviceFilterElement.cs / 1305376 / IgnoreDeviceFilterElement.cs
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------------------
namespace System.Web.Configuration {
using System;
using System.Configuration;
using System.Collections.Specialized;
using System.Collections;
using System.Diagnostics.CodeAnalysis;
using System.IO;
using System.Security.Permissions;
using System.Text;
using System.Threading;
using System.Web.Util;
using System.Web.UI;
using System.Web.Compilation;
using System.Web.Configuration;
using System.Xml;
public sealed class IgnoreDeviceFilterElement : ConfigurationElement {
private static readonly ConfigurationElementProperty s_elemProperty = new ConfigurationElementProperty(new CallbackValidator(typeof(IgnoreDeviceFilterElement), ValidateElement));
private static ConfigurationPropertyCollection _properties;
#region Property Declarations
private static readonly ConfigurationProperty _propName =
new ConfigurationProperty("name",
typeof(string),
null,
null,
StdValidatorsAndConverters.NonEmptyStringValidator,
ConfigurationPropertyOptions.IsRequired | ConfigurationPropertyOptions.IsKey);
#endregion
static IgnoreDeviceFilterElement() {
// Property initialization
_properties = new ConfigurationPropertyCollection();
_properties.Add(_propName);
}
internal IgnoreDeviceFilterElement() {
}
public IgnoreDeviceFilterElement(string name) {
base[_propName] = name;
}
[SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase", Justification = "Can't modify the base class.")]
protected override ConfigurationPropertyCollection Properties {
get {
return _properties;
}
}
[ConfigurationProperty("name", IsRequired = true, IsKey = true)]
[StringValidator(MinLength = 1)]
public string Name {
get {
return (string)base[_propName];
}
}
[SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase", Justification = "Can't modify the base class.")]
protected override ConfigurationElementProperty ElementProperty {
get {
return s_elemProperty;
}
}
static private void ValidateElement(object value) {
Debug.Assert((value != null) && (value is IgnoreDeviceFilterElement));
IgnoreDeviceFilterElement elem = (IgnoreDeviceFilterElement)value;
if (System.Web.UI.Util.ContainsWhiteSpace(elem.Name)) {
throw new ConfigurationErrorsException(
SR.GetString(SR.Space_attribute, "name"));
}
}
}
}
// 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
- PageAsyncTaskManager.cs
- CodeIdentifier.cs
- DoubleLinkListEnumerator.cs
- RadioButtonBaseAdapter.cs
- ByValueEqualityComparer.cs
- ListDictionary.cs
- Normalization.cs
- SiteMapDataSourceView.cs
- ResXBuildProvider.cs
- SqlDependencyUtils.cs
- RightsManagementPermission.cs
- DesignerWithHeader.cs
- ListViewItemSelectionChangedEvent.cs
- ColumnReorderedEventArgs.cs
- LinqDataSourceContextData.cs
- _ScatterGatherBuffers.cs
- UriScheme.cs
- ContentElement.cs
- DBPropSet.cs
- IPPacketInformation.cs
- CatalogPartChrome.cs
- SqlVersion.cs
- FormsAuthenticationCredentials.cs
- LocalizabilityAttribute.cs
- BreakRecordTable.cs
- PagerSettings.cs
- SettingsProviderCollection.cs
- StreamInfo.cs
- TableRowGroup.cs
- SoapIncludeAttribute.cs
- LinkLabelLinkClickedEvent.cs
- SerialReceived.cs
- DataGridViewImageColumn.cs
- GcSettings.cs
- BezierSegment.cs
- DependencyObject.cs
- Vector.cs
- SymLanguageType.cs
- PeerEndPoint.cs
- PolyLineSegmentFigureLogic.cs
- DragDrop.cs
- AliasExpr.cs
- FactoryId.cs
- TrustLevelCollection.cs
- StylusEditingBehavior.cs
- GenericXmlSecurityToken.cs
- TokenBasedSetEnumerator.cs
- AutomationElementIdentifiers.cs
- GroupItemAutomationPeer.cs
- DataGridViewColumnCollection.cs
- NameTable.cs
- DodSequenceMerge.cs
- RIPEMD160.cs
- ZipIOExtraFieldElement.cs
- Trace.cs
- DirectoryNotFoundException.cs
- LoginView.cs
- DataGridViewCellCancelEventArgs.cs
- CompilationRelaxations.cs
- Vector.cs
- XmlArrayItemAttributes.cs
- BindingMAnagerBase.cs
- DefaultWorkflowSchedulerService.cs
- X509SecurityTokenProvider.cs
- HierarchicalDataSourceIDConverter.cs
- TimelineClockCollection.cs
- TcpChannelHelper.cs
- RepeatButton.cs
- DSASignatureDeformatter.cs
- DataSourceConverter.cs
- MetafileHeaderEmf.cs
- SearchForVirtualItemEventArgs.cs
- BrowserCapabilitiesCompiler.cs
- TableRow.cs
- ConfigsHelper.cs
- TableAutomationPeer.cs
- PixelFormatConverter.cs
- SessionParameter.cs
- QuaternionKeyFrameCollection.cs
- ClientBuildManagerTypeDescriptionProviderBridge.cs
- FusionWrap.cs
- ServicePoint.cs
- DataGridViewColumnCollection.cs
- TemplateParser.cs
- ReceiveContextCollection.cs
- SpecularMaterial.cs
- CodeMethodMap.cs
- ContextDataSource.cs
- LabelExpression.cs
- KeysConverter.cs
- SqlFunctionAttribute.cs
- JournalEntry.cs
- Triplet.cs
- PatternMatcher.cs
- log.cs
- DbInsertCommandTree.cs
- BidPrivateBase.cs
- ParenthesizePropertyNameAttribute.cs
- WasAdminWrapper.cs
- ToolStripTextBox.cs