Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Net / System / Net / Configuration / IdnElement.cs / 1305376 / IdnElement.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Configuration { using System; using System.ComponentModel; using System.Diagnostics.CodeAnalysis; using System.Globalization; using System.Reflection; [SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Idn", Justification = "changing this would be a breaking change because the API has been present since v3.5")] public sealed class IdnElement : ConfigurationElement { internal const UriIdnScope EnabledDefaultValue = UriIdnScope.None; public IdnElement() { this.properties.Add(this.enabled); } protected override ConfigurationPropertyCollection Properties { get{ return this.properties; } } [ConfigurationProperty(CommonConfigurationStrings.Enabled, DefaultValue = EnabledDefaultValue)] public UriIdnScope Enabled { get { return (UriIdnScope)this[this.enabled]; } set { this[this.enabled] = value; } } ConfigurationPropertyCollection properties = new ConfigurationPropertyCollection(); readonly ConfigurationProperty enabled = new ConfigurationProperty(CommonConfigurationStrings.Enabled, typeof(UriIdnScope), EnabledDefaultValue, new UriIdnScopeTypeConverter(), null, ConfigurationPropertyOptions.None); class UriIdnScopeTypeConverter : TypeConverter { public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType) { if (sourceType == typeof(string)){ return true; } return base.CanConvertFrom(context, sourceType); } public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value) { string s = value as string; if (s != null){ s = s.ToLower(CultureInfo.InvariantCulture); switch (s){ case "all": return UriIdnScope.All; case "none": return UriIdnScope.None; case "allexceptintranet": return UriIdnScope.AllExceptIntranet; } } return base.ConvertFrom(context, culture, value); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Configuration { using System; using System.ComponentModel; using System.Diagnostics.CodeAnalysis; using System.Globalization; using System.Reflection; [SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Idn", Justification = "changing this would be a breaking change because the API has been present since v3.5")] public sealed class IdnElement : ConfigurationElement { internal const UriIdnScope EnabledDefaultValue = UriIdnScope.None; public IdnElement() { this.properties.Add(this.enabled); } protected override ConfigurationPropertyCollection Properties { get{ return this.properties; } } [ConfigurationProperty(CommonConfigurationStrings.Enabled, DefaultValue = EnabledDefaultValue)] public UriIdnScope Enabled { get { return (UriIdnScope)this[this.enabled]; } set { this[this.enabled] = value; } } ConfigurationPropertyCollection properties = new ConfigurationPropertyCollection(); readonly ConfigurationProperty enabled = new ConfigurationProperty(CommonConfigurationStrings.Enabled, typeof(UriIdnScope), EnabledDefaultValue, new UriIdnScopeTypeConverter(), null, ConfigurationPropertyOptions.None); class UriIdnScopeTypeConverter : TypeConverter { public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType) { if (sourceType == typeof(string)){ return true; } return base.CanConvertFrom(context, sourceType); } public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value) { string s = value as string; if (s != null){ s = s.ToLower(CultureInfo.InvariantCulture); switch (s){ case "all": return UriIdnScope.All; case "none": return UriIdnScope.None; case "allexceptintranet": return UriIdnScope.AllExceptIntranet; } } return base.ConvertFrom(context, culture, value); } } } } // 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
- AddressUtility.cs
- DataBindingCollection.cs
- XmlDataImplementation.cs
- PageTheme.cs
- LoginName.cs
- ObjectPersistData.cs
- DataServiceExpressionVisitor.cs
- ConfigurationSectionGroup.cs
- SiteMapDataSource.cs
- MemberPath.cs
- BitmapPalettes.cs
- TemplateGroupCollection.cs
- CalculatedColumn.cs
- ContractHandle.cs
- _DisconnectOverlappedAsyncResult.cs
- SerializationInfoEnumerator.cs
- XmlUnspecifiedAttribute.cs
- ListControl.cs
- WebPartDisplayModeEventArgs.cs
- XmlDigitalSignatureProcessor.cs
- ModelUIElement3D.cs
- ConfigurationException.cs
- SoapInteropTypes.cs
- FontSourceCollection.cs
- Utils.cs
- IntegerValidator.cs
- TemplateFactory.cs
- AttachedPropertyBrowsableForTypeAttribute.cs
- SelfIssuedAuthProofToken.cs
- ScrollBar.cs
- ProviderSettingsCollection.cs
- SchemaNotation.cs
- SqlBuilder.cs
- cookiecollection.cs
- PrimitiveXmlSerializers.cs
- GACIdentityPermission.cs
- CompositeFontInfo.cs
- ToolStripDropDown.cs
- WebPartConnectionCollection.cs
- ReversePositionQuery.cs
- _ContextAwareResult.cs
- SHA256Managed.cs
- JavaScriptSerializer.cs
- Property.cs
- ObjectAssociationEndMapping.cs
- TypeInitializationException.cs
- BindableTemplateBuilder.cs
- TableAdapterManagerGenerator.cs
- UnsafeNativeMethods.cs
- HttpServerVarsCollection.cs
- DesigntimeLicenseContext.cs
- RowsCopiedEventArgs.cs
- AuthenticationSchemesHelper.cs
- DefaultPrintController.cs
- NonPrimarySelectionGlyph.cs
- WindowsButton.cs
- PrimitiveXmlSerializers.cs
- HMACSHA256.cs
- ColumnClickEvent.cs
- VisualTreeUtils.cs
- PTConverter.cs
- ToolStripCollectionEditor.cs
- GraphicsPathIterator.cs
- NamespaceList.cs
- BaseDataList.cs
- AssertUtility.cs
- IteratorFilter.cs
- SafeReadContext.cs
- AnalyzedTree.cs
- RoutedEventHandlerInfo.cs
- DataListItem.cs
- RijndaelCryptoServiceProvider.cs
- SelectionRange.cs
- ConfigXmlText.cs
- DistributedTransactionPermission.cs
- Form.cs
- TreeIterators.cs
- ForAllOperator.cs
- GraphicsPath.cs
- CatalogZone.cs
- XmlNamespaceManager.cs
- TranslateTransform3D.cs
- WizardStepBase.cs
- CallContext.cs
- Delegate.cs
- ItemsChangedEventArgs.cs
- OletxEnlistment.cs
- SmiGettersStream.cs
- PointLightBase.cs
- _NestedMultipleAsyncResult.cs
- ToolStripPanelRenderEventArgs.cs
- DependencyPropertyChangedEventArgs.cs
- tibetanshape.cs
- ClientType.cs
- DataServiceRequestOfT.cs
- StylusDevice.cs
- SafeHandle.cs
- CodePrimitiveExpression.cs
- _PooledStream.cs
- CustomActivityDesigner.cs