Code:
/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / WCF / ServiceModel / System / ServiceModel / Configuration / MessageVersionConverter.cs / 1 / MessageVersionConverter.cs
//------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------------------------- namespace System.ServiceModel.Configuration { using System; using System.ServiceModel.Channels; using System.ComponentModel; using System.ComponentModel.Design.Serialization; using System.ServiceModel; using System.Globalization; class MessageVersionConverter : TypeConverter { public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType) { if (typeof(string) == sourceType) { return true; } return base.CanConvertFrom(context, sourceType); } public override bool CanConvertTo(ITypeDescriptorContext context, Type destinationType) { if (typeof(InstanceDescriptor) == destinationType) { return true; } return base.CanConvertTo(context, destinationType); } public override object ConvertFrom(ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) { if (value is string) { string messageVersion = (string)value; MessageVersion retval = null; switch (messageVersion) { case ConfigurationStrings.Soap11WSAddressing10: retval = MessageVersion.Soap11WSAddressing10; break; case ConfigurationStrings.Soap12WSAddressing10: retval = MessageVersion.Soap12WSAddressing10; break; case ConfigurationStrings.Soap11WSAddressingAugust2004: retval = MessageVersion.Soap11WSAddressingAugust2004; break; case ConfigurationStrings.Soap12WSAddressingAugust2004: retval = MessageVersion.Soap12WSAddressingAugust2004; break; case ConfigurationStrings.Soap11: retval = MessageVersion.Soap11; break; case ConfigurationStrings.Soap12: retval = MessageVersion.Soap12; break; case ConfigurationStrings.None: retval = MessageVersion.None; break; case ConfigurationStrings.Default: retval = MessageVersion.Default; break; default: throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ArgumentOutOfRangeException("value", SR.GetString(SR.ConfigInvalidClassFactoryValue, messageVersion, typeof(MessageVersion).FullName))); } return retval; } return base.ConvertFrom(context, culture, value); } public override object ConvertTo(ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, Type destinationType) { if (typeof(string) == destinationType && value is MessageVersion) { string retval = null; MessageVersion messageVersion = (MessageVersion)value; if (messageVersion == MessageVersion.Default) { retval = ConfigurationStrings.Default; } else if (messageVersion == MessageVersion.Soap11WSAddressing10) { retval = ConfigurationStrings.Soap11WSAddressing10; } else if (messageVersion == MessageVersion.Soap12WSAddressing10) { retval = ConfigurationStrings.Soap12WSAddressing10; } else if (messageVersion == MessageVersion.Soap11WSAddressingAugust2004) { retval = ConfigurationStrings.Soap11WSAddressingAugust2004; } else if (messageVersion == MessageVersion.Soap12WSAddressingAugust2004) { retval = ConfigurationStrings.Soap12WSAddressingAugust2004; } else if (messageVersion == MessageVersion.Soap11) { retval = ConfigurationStrings.Soap11; } else if (messageVersion == MessageVersion.Soap12) { retval = ConfigurationStrings.Soap12; } else if (messageVersion == MessageVersion.None) { retval = ConfigurationStrings.None; } else { throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ArgumentOutOfRangeException("value", SR.GetString(SR.ConfigInvalidClassInstanceValue, typeof(MessageVersion).FullName))); } return retval; } return base.ConvertTo(context, culture, value, destinationType); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- CodeMemberEvent.cs
- OptimizedTemplateContentHelper.cs
- HtmlElementErrorEventArgs.cs
- CodeTypeParameterCollection.cs
- HostedElements.cs
- Peer.cs
- OraclePermission.cs
- tooltip.cs
- GeneratedView.cs
- ListMarkerLine.cs
- control.ime.cs
- ObjectDataSourceDisposingEventArgs.cs
- PeerApplicationLaunchInfo.cs
- Utilities.cs
- CustomErrorsSection.cs
- ListDictionaryInternal.cs
- TableCell.cs
- TreeNodeBindingCollection.cs
- Pens.cs
- DropTarget.cs
- _BufferOffsetSize.cs
- ArgIterator.cs
- TextChange.cs
- EntityKey.cs
- CompositeDuplexBindingElementImporter.cs
- EdmProperty.cs
- DateTimeParse.cs
- GridViewCancelEditEventArgs.cs
- SHA512Cng.cs
- TypeConverterAttribute.cs
- HttpProcessUtility.cs
- UIElement.cs
- ControlParameter.cs
- COM2PropertyPageUITypeConverter.cs
- MetadataItem.cs
- DataGridViewTextBoxColumn.cs
- MasterPageCodeDomTreeGenerator.cs
- DataSourceCacheDurationConverter.cs
- ValueTypeFixupInfo.cs
- SetStoryboardSpeedRatio.cs
- RoleManagerEventArgs.cs
- BCLDebug.cs
- GeneralTransformGroup.cs
- ThreadWorkerController.cs
- Constraint.cs
- InvalidCommandTreeException.cs
- AccessDataSource.cs
- WindowsEditBoxRange.cs
- CodePrimitiveExpression.cs
- WebBrowserNavigatedEventHandler.cs
- EventBookmark.cs
- WpfXamlLoader.cs
- PropertyGridEditorPart.cs
- InputLanguageCollection.cs
- TdsParserSafeHandles.cs
- DBSqlParserColumn.cs
- DragCompletedEventArgs.cs
- FileUtil.cs
- MemberAccessException.cs
- PtsHost.cs
- DBConnectionString.cs
- Stopwatch.cs
- ValueProviderWrapper.cs
- BitmapEffectInput.cs
- RepeatButtonAutomationPeer.cs
- DBConnectionString.cs
- DaylightTime.cs
- PersonalizationProviderCollection.cs
- Gdiplus.cs
- ToolboxItemFilterAttribute.cs
- HierarchicalDataTemplate.cs
- RangeValuePattern.cs
- NullableConverter.cs
- PeerResolverElement.cs
- TextElementCollectionHelper.cs
- UInt16Converter.cs
- RemoteWebConfigurationHostServer.cs
- AppSettingsExpressionBuilder.cs
- DeclaredTypeValidatorAttribute.cs
- ButtonChrome.cs
- ServiceHttpHandlerFactory.cs
- GridViewHeaderRowPresenterAutomationPeer.cs
- TextBlockAutomationPeer.cs
- TimeManager.cs
- HttpBrowserCapabilitiesBase.cs
- QilInvoke.cs
- XmlDataFileEditor.cs
- DllNotFoundException.cs
- CompiledRegexRunnerFactory.cs
- ListCollectionView.cs
- NominalTypeEliminator.cs
- HtmlFormWrapper.cs
- ToolStripHighContrastRenderer.cs
- Lookup.cs
- DocComment.cs
- JournalNavigationScope.cs
- FacetDescription.cs
- ImageIndexConverter.cs
- VectorCollection.cs
- DayRenderEvent.cs