Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / NetFx35 / System.ServiceModel.Web / System / ServiceModel / Configuration / WebMessageEncodingElement.cs / 1305376 / WebMessageEncodingElement.cs
// Copyright (c) Microsoft Corporation. All rights reserved. //------------------------------------------------------------------------------ #pragma warning disable 1634 // Stops compiler from warning about unknown warnings (for Presharp) namespace System.ServiceModel.Configuration { using System.ComponentModel; using System.Configuration; using System.ServiceModel.Channels; using System.Text; using System.Xml; public sealed partial class WebMessageEncodingElement : BindingElementExtensionElement { const string ConfigurationStringsWebContentTypeMapperType = "webContentTypeMapperType"; public WebMessageEncodingElement() { } [System.Diagnostics.CodeAnalysis.SuppressMessage("Configuration", "Configuration102:ConfigurationPropertyAttributeRule", MessageId = "System.ServiceModel.Configuration.WebMessageEncodingElement.BindingElementType", Justification = "Not a configurable property; a property that had to be overridden from abstract parent class")] public override Type BindingElementType { get { return typeof(WebMessageEncodingBindingElement); } } [ConfigurationProperty(ConfigurationStrings.MaxReadPoolSize, DefaultValue = EncoderDefaults.MaxReadPoolSize)] [IntegerValidator(MinValue = 1)] public int MaxReadPoolSize { get { return (int) base[ConfigurationStrings.MaxReadPoolSize]; } set { base[ConfigurationStrings.MaxReadPoolSize] = value; } } [ConfigurationProperty(ConfigurationStrings.MaxWritePoolSize, DefaultValue = EncoderDefaults.MaxWritePoolSize)] [IntegerValidator(MinValue = 1)] public int MaxWritePoolSize { get { return (int) base[ConfigurationStrings.MaxWritePoolSize]; } set { base[ConfigurationStrings.MaxWritePoolSize] = value; } } [ConfigurationProperty(ConfigurationStrings.ReaderQuotas)] public XmlDictionaryReaderQuotasElement ReaderQuotas { get { return (XmlDictionaryReaderQuotasElement) base[ConfigurationStrings.ReaderQuotas]; } } [ConfigurationProperty(ConfigurationStringsWebContentTypeMapperType, DefaultValue = "")] [StringValidator(MinLength = 0)] public string WebContentTypeMapperType { get { return (string) base[ConfigurationStringsWebContentTypeMapperType]; } set { if (String.IsNullOrEmpty(value)) { value = String.Empty; } base[ConfigurationStringsWebContentTypeMapperType] = value; } } [ConfigurationProperty(ConfigurationStrings.WriteEncoding, DefaultValue = TextEncoderDefaults.EncodingString)] [TypeConverter(typeof(EncodingConverter))] [WebEncodingValidator] [System.Diagnostics.CodeAnalysis.SuppressMessage("Configuration", "Configuration104:ConfigurationValidatorAttributeRule", MessageId = "System.ServiceModel.Configuration.WebMessageEncodingElement.WriteEncoding", Justification = "Bug with internal FxCop assembly flags this property as not having a validator.")] public Encoding WriteEncoding { get { return (Encoding) base[ConfigurationStrings.WriteEncoding]; } set { base[ConfigurationStrings.WriteEncoding] = value; } } public override void ApplyConfiguration(BindingElement bindingElement) { base.ApplyConfiguration(bindingElement); WebMessageEncodingBindingElement binding = (WebMessageEncodingBindingElement) bindingElement; binding.WriteEncoding = this.WriteEncoding; binding.MaxReadPoolSize = this.MaxReadPoolSize; binding.MaxWritePoolSize = this.MaxWritePoolSize; if (!string.IsNullOrEmpty(this.WebContentTypeMapperType)) { Type CTMType = Type.GetType(this.WebContentTypeMapperType, true); if (!typeof(WebContentTypeMapper).IsAssignableFrom(CTMType)) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ConfigurationErrorsException( SR2.GetString(SR2.ConfigInvalidWebContentTypeMapper, CTMType, ConfigurationStringsWebContentTypeMapperType, typeof(WebMessageEncodingBindingElement), typeof(WebContentTypeMapper)))); } try { binding.ContentTypeMapper = (WebContentTypeMapper) Activator.CreateInstance(CTMType); } catch (MissingMethodException innerException) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ConfigurationErrorsException( SR2.GetString(SR2.ConfigWebContentTypeMapperNoConstructor, CTMType, ConfigurationStringsWebContentTypeMapperType, typeof(WebMessageEncodingBindingElement), typeof(WebContentTypeMapper)), innerException)); } } #pragma warning suppress 56506 // bindingElement is checked for null in base.ApplyConfiguration() ApplyConfiguration(this.ReaderQuotas, binding.ReaderQuotas); } public override void CopyFrom(ServiceModelExtensionElement from) { base.CopyFrom(from); WebMessageEncodingElement source = (WebMessageEncodingElement) from; #pragma warning suppress 56506 // base.CopyFrom() checks for 'from' being null this.WriteEncoding = source.WriteEncoding; this.MaxReadPoolSize = source.MaxReadPoolSize; this.MaxWritePoolSize = source.MaxWritePoolSize; this.WebContentTypeMapperType = source.WebContentTypeMapperType; this.ReaderQuotas.MaxArrayLength = source.ReaderQuotas.MaxArrayLength; this.ReaderQuotas.MaxBytesPerRead = source.ReaderQuotas.MaxBytesPerRead; this.ReaderQuotas.MaxDepth = source.ReaderQuotas.MaxDepth; this.ReaderQuotas.MaxNameTableCharCount = source.ReaderQuotas.MaxNameTableCharCount; this.ReaderQuotas.MaxStringContentLength = source.ReaderQuotas.MaxStringContentLength; } internal protected override BindingElement CreateBindingElement() { WebMessageEncodingBindingElement binding = new WebMessageEncodingBindingElement(); this.ApplyConfiguration(binding); return binding; } internal void ApplyConfiguration(XmlDictionaryReaderQuotasElement currentQuotas, XmlDictionaryReaderQuotas readerQuotas) { if (readerQuotas == null) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("readerQuotas"); } if (currentQuotas.MaxDepth != 0) { readerQuotas.MaxDepth = currentQuotas.MaxDepth; } if (currentQuotas.MaxStringContentLength != 0) { readerQuotas.MaxStringContentLength = currentQuotas.MaxStringContentLength; } if (currentQuotas.MaxArrayLength != 0) { readerQuotas.MaxArrayLength = currentQuotas.MaxArrayLength; } if (currentQuotas.MaxBytesPerRead != 0) { readerQuotas.MaxBytesPerRead = currentQuotas.MaxBytesPerRead; } if (currentQuotas.MaxNameTableCharCount != 0) { readerQuotas.MaxNameTableCharCount = currentQuotas.MaxNameTableCharCount; } } } } // 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
- TimeoutHelper.cs
- DataColumnCollection.cs
- FigureHelper.cs
- SettingsContext.cs
- RegexBoyerMoore.cs
- GridEntry.cs
- SID.cs
- HealthMonitoringSectionHelper.cs
- UiaCoreTypesApi.cs
- WebPartExportVerb.cs
- embossbitmapeffect.cs
- Int64AnimationUsingKeyFrames.cs
- ModuleBuilder.cs
- ApplicationGesture.cs
- XmlDataSourceView.cs
- ViewStateAttachedPropertyFeature.cs
- RegexCapture.cs
- ClientFormsAuthenticationMembershipProvider.cs
- SignedXml.cs
- RequestCacheManager.cs
- MbpInfo.cs
- CellCreator.cs
- NamespaceCollection.cs
- NetworkInterface.cs
- ContextProperty.cs
- SmtpMail.cs
- StateManagedCollection.cs
- CryptoApi.cs
- DesignTimeParseData.cs
- KnownBoxes.cs
- DisplayMemberTemplateSelector.cs
- DrawingContextWalker.cs
- HtmlElementEventArgs.cs
- _ConnectionGroup.cs
- StateMachineAction.cs
- AuthenticationService.cs
- TextTreeExtractElementUndoUnit.cs
- DisplayNameAttribute.cs
- XMLSyntaxException.cs
- ProxyWebPartConnectionCollection.cs
- SingleStorage.cs
- ViewPort3D.cs
- IdentityReference.cs
- ContainerFilterService.cs
- MonthChangedEventArgs.cs
- PasswordDeriveBytes.cs
- SmtpClient.cs
- ProfileService.cs
- DataColumnCollection.cs
- Quaternion.cs
- SynchronizedInputAdaptor.cs
- Compilation.cs
- KeyGesture.cs
- invalidudtexception.cs
- DocumentPageTextView.cs
- MarkupCompiler.cs
- Cursor.cs
- RightsManagementInformation.cs
- MultiBindingExpression.cs
- RowToParametersTransformer.cs
- ObjectAssociationEndMapping.cs
- FamilyTypefaceCollection.cs
- DataTemplateKey.cs
- StringConcat.cs
- RequestQueryParser.cs
- UserControlParser.cs
- RectAnimation.cs
- TemplateNodeContextMenu.cs
- MessageSmuggler.cs
- HttpConfigurationContext.cs
- DocumentViewerAutomationPeer.cs
- PeerObject.cs
- ExeConfigurationFileMap.cs
- NotifyCollectionChangedEventArgs.cs
- SafeBitVector32.cs
- Literal.cs
- NativeMethods.cs
- EnumValidator.cs
- ProgressBar.cs
- EntityContainerRelationshipSetEnd.cs
- ExtensionSurface.cs
- StringHelper.cs
- TrustLevelCollection.cs
- OuterGlowBitmapEffect.cs
- PolicyVersionConverter.cs
- XPathSelectionIterator.cs
- TableSectionStyle.cs
- InstanceOwnerException.cs
- CTreeGenerator.cs
- GenericEnumConverter.cs
- TextModifierScope.cs
- RectAnimation.cs
- WinEventTracker.cs
- EnumMemberAttribute.cs
- FlatButtonAppearance.cs
- NumberAction.cs
- GrammarBuilderRuleRef.cs
- HostingEnvironment.cs
- ContentPresenter.cs
- LoginCancelEventArgs.cs