Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / WCF / Serialization / System / Xml / XmlDictionaryReaderQuotas.cs / 1305376 / XmlDictionaryReaderQuotas.cs
//------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------- namespace System.Xml { using System.Runtime.Serialization; using System.ComponentModel; public sealed class XmlDictionaryReaderQuotas { bool readOnly; int maxStringContentLength; int maxArrayLength; int maxDepth; int maxNameTableCharCount; int maxBytesPerRead; const int DefaultMaxDepth = 32; const int DefaultMaxStringContentLength = 8192; const int DefaultMaxArrayLength = 16384; const int DefaultMaxBytesPerRead = 4096; const int DefaultMaxNameTableCharCount = 16384; static XmlDictionaryReaderQuotas defaultQuota = new XmlDictionaryReaderQuotas(DefaultMaxDepth, DefaultMaxStringContentLength, DefaultMaxArrayLength, DefaultMaxBytesPerRead, DefaultMaxNameTableCharCount); static XmlDictionaryReaderQuotas maxQuota = new XmlDictionaryReaderQuotas(int.MaxValue, int.MaxValue, int.MaxValue, int.MaxValue, int.MaxValue); public XmlDictionaryReaderQuotas() { defaultQuota.CopyTo(this); } XmlDictionaryReaderQuotas(int maxDepth, int maxStringContentLength, int maxArrayLength, int maxBytesPerRead, int maxNameTableCharCount) { this.maxDepth = maxDepth; this.maxStringContentLength = maxStringContentLength; this.maxArrayLength = maxArrayLength; this.maxBytesPerRead = maxBytesPerRead; this.maxNameTableCharCount = maxNameTableCharCount; MakeReadOnly(); } static public XmlDictionaryReaderQuotas Max { get { return maxQuota; } } public void CopyTo(XmlDictionaryReaderQuotas quotas) { if (quotas == null) throw System.Runtime.Serialization.DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ArgumentNullException("quotas")); if (quotas.readOnly) throw System.Runtime.Serialization.DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SR.GetString(SR.QuotaCopyReadOnly))); InternalCopyTo(quotas); } internal void InternalCopyTo(XmlDictionaryReaderQuotas quotas) { quotas.maxStringContentLength = this.maxStringContentLength; quotas.maxArrayLength = this.maxArrayLength; quotas.maxDepth = this.MaxDepth; quotas.maxNameTableCharCount = this.maxNameTableCharCount; quotas.maxBytesPerRead = this.maxBytesPerRead; } [DefaultValue(DefaultMaxStringContentLength)] public int MaxStringContentLength { get { return maxStringContentLength; } set { if (readOnly) throw System.Runtime.Serialization.DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SR.GetString(SR.QuotaIsReadOnly, "MaxStringContentLength"))); if (value <= 0) throw System.Runtime.Serialization.DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ArgumentException(SR.GetString(SR.QuotaMustBePositive), "value")); maxStringContentLength = value; } } [DefaultValue(DefaultMaxArrayLength)] public int MaxArrayLength { get { return maxArrayLength; } set { if (readOnly) throw System.Runtime.Serialization.DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SR.GetString(SR.QuotaIsReadOnly, "MaxArrayLength"))); if (value <= 0) throw System.Runtime.Serialization.DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ArgumentException(SR.GetString(SR.QuotaMustBePositive), "value")); maxArrayLength = value; } } [DefaultValue(DefaultMaxBytesPerRead)] public int MaxBytesPerRead { get { return maxBytesPerRead; } set { if (readOnly) throw System.Runtime.Serialization.DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SR.GetString(SR.QuotaIsReadOnly, "MaxBytesPerRead"))); if (value <= 0) throw System.Runtime.Serialization.DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ArgumentException(SR.GetString(SR.QuotaMustBePositive), "value")); maxBytesPerRead = value; } } [DefaultValue(DefaultMaxDepth)] public int MaxDepth { get { return maxDepth; } set { if (readOnly) throw System.Runtime.Serialization.DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SR.GetString(SR.QuotaIsReadOnly, "MaxDepth"))); if (value <= 0) throw System.Runtime.Serialization.DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ArgumentException(SR.GetString(SR.QuotaMustBePositive), "value")); maxDepth = value; } } [DefaultValue(DefaultMaxNameTableCharCount)] public int MaxNameTableCharCount { get { return maxNameTableCharCount; } set { if (readOnly) throw System.Runtime.Serialization.DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SR.GetString(SR.QuotaIsReadOnly, "MaxNameTableCharCount"))); if (value <= 0) throw System.Runtime.Serialization.DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ArgumentException(SR.GetString(SR.QuotaMustBePositive), "value")); maxNameTableCharCount = value; } } internal void MakeReadOnly() { this.readOnly = true; } } } // 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
- DynamicDataManager.cs
- GenerateTemporaryTargetAssembly.cs
- Logging.cs
- CaseCqlBlock.cs
- ContextDataSourceContextData.cs
- BooleanSwitch.cs
- EventProviderTraceListener.cs
- CriticalFinalizerObject.cs
- _ConnectionGroup.cs
- WebSysDefaultValueAttribute.cs
- CustomAttributeBuilder.cs
- CodeDelegateCreateExpression.cs
- XmlSchemaElement.cs
- controlskin.cs
- EventHandlerList.cs
- PrimarySelectionGlyph.cs
- BamlBinaryReader.cs
- ToolStripRenderer.cs
- FocusTracker.cs
- FtpRequestCacheValidator.cs
- DropDownButton.cs
- XmlName.cs
- HandleCollector.cs
- XmlWrappingReader.cs
- VisualTreeUtils.cs
- FlowSwitchDesigner.xaml.cs
- TextReader.cs
- XmlSchemaInferenceException.cs
- ErrorWrapper.cs
- SoundPlayer.cs
- NameValueConfigurationElement.cs
- FixedFindEngine.cs
- HiddenFieldPageStatePersister.cs
- ProfileSettings.cs
- BuildResultCache.cs
- RequestCache.cs
- DataGridDesigner.cs
- ipaddressinformationcollection.cs
- CompilerParameters.cs
- MonthCalendar.cs
- TextModifierScope.cs
- Baml2006ReaderContext.cs
- ConfigUtil.cs
- GlyphRunDrawing.cs
- WebPartCollection.cs
- DecimalAnimationBase.cs
- SqlDependencyListener.cs
- GlobalDataBindingHandler.cs
- DataContext.cs
- DataGridCheckBoxColumn.cs
- CorrelationQuery.cs
- ValueTypeFieldReference.cs
- XPathSelectionIterator.cs
- RowVisual.cs
- _FtpDataStream.cs
- ColumnReorderedEventArgs.cs
- FolderBrowserDialog.cs
- HwndTarget.cs
- ResourceKey.cs
- TextServicesLoader.cs
- EpmSourcePathSegment.cs
- NumberSubstitution.cs
- RegexCharClass.cs
- ContactManager.cs
- DesignTimeTemplateParser.cs
- HMACSHA512.cs
- CapabilitiesState.cs
- TableParaClient.cs
- EnumBuilder.cs
- SimpleType.cs
- BamlBinaryReader.cs
- DataSourceExpression.cs
- KeyGestureValueSerializer.cs
- WebServiceTypeData.cs
- DBDataPermission.cs
- WasEndpointConfigContainer.cs
- GeometryValueSerializer.cs
- HostingEnvironmentException.cs
- StringDictionary.cs
- HtmlInputFile.cs
- DataGridRow.cs
- HwndHost.cs
- EventLogEntry.cs
- Process.cs
- StyleXamlParser.cs
- StylusShape.cs
- HostedTransportConfigurationBase.cs
- BitmapEffectDrawingContent.cs
- Panel.cs
- ConcurrentBag.cs
- RangeValidator.cs
- PointValueSerializer.cs
- RunClient.cs
- WinFormsSpinner.cs
- ConnectionsZone.cs
- SpeechUI.cs
- SQLDoubleStorage.cs
- FieldNameLookup.cs
- BufferAllocator.cs