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
- FrameworkContentElement.cs
- documentsequencetextview.cs
- VisualStyleTypesAndProperties.cs
- ListBindableAttribute.cs
- ScaleTransform.cs
- EmptyControlCollection.cs
- PenContext.cs
- SkinBuilder.cs
- RequestCacheValidator.cs
- MemoryFailPoint.cs
- LockedBorderGlyph.cs
- List.cs
- HandlerWithFactory.cs
- DbDataAdapter.cs
- ConfigXmlAttribute.cs
- CodeObject.cs
- MetadataCache.cs
- CallId.cs
- FormViewRow.cs
- ADMembershipUser.cs
- CFStream.cs
- PopupRoot.cs
- PostBackOptions.cs
- OleDbWrapper.cs
- IPipelineRuntime.cs
- XmlSchemaRedefine.cs
- IsolatedStorage.cs
- XamlDesignerSerializationManager.cs
- PtsHelper.cs
- CommandTreeTypeHelper.cs
- ContainerUIElement3D.cs
- MethodImplAttribute.cs
- _NetworkingPerfCounters.cs
- ApplicationFileParser.cs
- StorageRoot.cs
- Queue.cs
- XmlImplementation.cs
- RecordsAffectedEventArgs.cs
- StylusEventArgs.cs
- _IPv4Address.cs
- Queue.cs
- Visual3D.cs
- BindingExpression.cs
- Message.cs
- SpAudioStreamWrapper.cs
- DataFormat.cs
- CodeDOMUtility.cs
- UndoManager.cs
- DataSourceHelper.cs
- WebPartPersonalization.cs
- DataStorage.cs
- ChangeProcessor.cs
- SmtpFailedRecipientException.cs
- DynamicObjectAccessor.cs
- Vector3D.cs
- IsolatedStorageException.cs
- WindowsClaimSet.cs
- Pair.cs
- SystemIcons.cs
- TimeZone.cs
- CacheSection.cs
- CellPartitioner.cs
- DrawingImage.cs
- DataSourceSelectArguments.cs
- ConfigurationHandlersInstallComponent.cs
- NativeObjectSecurity.cs
- RelationshipConstraintValidator.cs
- ResourceKey.cs
- RootProfilePropertySettingsCollection.cs
- XmlHelper.cs
- StrokeDescriptor.cs
- SelectiveScrollingGrid.cs
- RedistVersionInfo.cs
- X509IssuerSerialKeyIdentifierClause.cs
- HMACSHA1.cs
- AddInEnvironment.cs
- TabItem.cs
- CustomAttribute.cs
- MetadataArtifactLoaderCompositeResource.cs
- IconHelper.cs
- CodeComment.cs
- GeneralEndpointIdentity.cs
- GridViewDeletedEventArgs.cs
- IndexOutOfRangeException.cs
- DefaultAsyncDataDispatcher.cs
- TypedElement.cs
- ToolStripLocationCancelEventArgs.cs
- Input.cs
- DoubleAnimationUsingPath.cs
- SQLUtility.cs
- URL.cs
- ToolboxItemFilterAttribute.cs
- IgnorePropertiesAttribute.cs
- TextEditorMouse.cs
- FrameAutomationPeer.cs
- StickyNoteHelper.cs
- NullableBoolConverter.cs
- TypeCollectionDesigner.xaml.cs
- ClientSettings.cs
- Compress.cs