Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / Net / System / Net / Configuration / IdnElement.cs / 1 / IdnElement.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Configuration { using System; using System.Reflection; using System.ComponentModel; using System.Globalization; public sealed class IdnElement : ConfigurationElement { public IdnElement() { this.properties.Add(this.enabled); } protected override ConfigurationPropertyCollection Properties { get{ return this.properties; } } [ConfigurationProperty(CommonConfigurationStrings.Enabled, DefaultValue = (UriIdnScope)UriIdnScope.None)] 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), UriIdnScope.None, 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.Reflection; using System.ComponentModel; using System.Globalization; public sealed class IdnElement : ConfigurationElement { public IdnElement() { this.properties.Add(this.enabled); } protected override ConfigurationPropertyCollection Properties { get{ return this.properties; } } [ConfigurationProperty(CommonConfigurationStrings.Enabled, DefaultValue = (UriIdnScope)UriIdnScope.None)] 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), UriIdnScope.None, 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
- HttpFileCollection.cs
- CollectionViewProxy.cs
- DataGridViewRowHeightInfoPushedEventArgs.cs
- OpenTypeCommon.cs
- ContourSegment.cs
- InfoCardTraceRecord.cs
- TypographyProperties.cs
- RequestNavigateEventArgs.cs
- IconHelper.cs
- ObjectQueryProvider.cs
- ConfigurationSettings.cs
- AstTree.cs
- ValidatorUtils.cs
- CompoundFileIOPermission.cs
- Query.cs
- MarkerProperties.cs
- Emitter.cs
- AdRotator.cs
- FileDetails.cs
- CodeNamespaceCollection.cs
- TreeSet.cs
- XmlComplianceUtil.cs
- PackageDigitalSignatureManager.cs
- InstanceCollisionException.cs
- HttpCookie.cs
- Filter.cs
- TextEditorCharacters.cs
- DataTableNameHandler.cs
- DbParameterHelper.cs
- WinFormsComponentEditor.cs
- DataGridViewRowCollection.cs
- webeventbuffer.cs
- WebControlsSection.cs
- MailMessageEventArgs.cs
- Graph.cs
- HasCopySemanticsAttribute.cs
- BinaryReader.cs
- MouseGesture.cs
- DrawingAttributeSerializer.cs
- InstanceContext.cs
- ApplicationInfo.cs
- AspNetSynchronizationContext.cs
- MethodAccessException.cs
- PageCatalogPart.cs
- columnmapfactory.cs
- BStrWrapper.cs
- XmlConvert.cs
- ListMarkerSourceInfo.cs
- HtmlFormWrapper.cs
- SafeMemoryMappedViewHandle.cs
- TemplateEditingService.cs
- CheckBoxStandardAdapter.cs
- DebugControllerThread.cs
- LogStore.cs
- PolyLineSegment.cs
- ObjectToIdCache.cs
- TableItemStyle.cs
- WebPartConnectVerb.cs
- EncodingConverter.cs
- FaultCode.cs
- X509PeerCertificateAuthentication.cs
- SmiXetterAccessMap.cs
- AllMembershipCondition.cs
- DocumentPageHost.cs
- UpdatePanel.cs
- XPathAncestorIterator.cs
- XmlDataSourceView.cs
- _DisconnectOverlappedAsyncResult.cs
- RestClientProxyHandler.cs
- _LocalDataStore.cs
- TrustManagerPromptUI.cs
- _HelperAsyncResults.cs
- _SslState.cs
- DateTimePickerDesigner.cs
- RegexRunner.cs
- EntityAdapter.cs
- CategoryEditor.cs
- Point3DIndependentAnimationStorage.cs
- ObjectDataSourceFilteringEventArgs.cs
- RuntimeEnvironment.cs
- DBConcurrencyException.cs
- SiteOfOriginContainer.cs
- ZipPackagePart.cs
- SmtpClient.cs
- WorkerRequest.cs
- FormViewUpdatedEventArgs.cs
- ArrangedElementCollection.cs
- PropertyDescriptorCollection.cs
- AttributeQuery.cs
- NavigationPropertySingletonExpression.cs
- RequestResizeEvent.cs
- ProfileBuildProvider.cs
- StaticSiteMapProvider.cs
- SSmlParser.cs
- ListControl.cs
- TextStore.cs
- DtrList.cs
- EnterpriseServicesHelper.cs
- TabItemAutomationPeer.cs
- DetailsViewModeEventArgs.cs