8 writes to MaxDepth
System.IdentityModel.Selectors (1)
infocard\client\System\IdentityModel\Selectors\CardSpaceSelector.cs (1)
85DefaultQuotas.MaxDepth = 32; // max depth of elements
System.ServiceModel (4)
System\ServiceModel\Channels\EncoderHelpers.cs (1)
43bufferedReadQuotas.MaxDepth = EncoderDefaults.BufferedReadDefaultMaxDepth;
System\ServiceModel\ComIntegration\ComPlusDiagnosticTraceSchemas.cs (2)
39quota.MaxDepth = 32; 832quota.MaxDepth = 32;
System\ServiceModel\Configuration\XmlDictionaryReaderQuotasElement.cs (1)
66readerQuotas.MaxDepth = this.MaxDepth;
System.ServiceModel.Channels (1)
System\ServiceModel\Configuration\ByteStreamMessageEncodingElement.cs (1)
74readerQuotas.MaxDepth = oldQuotas.MaxDepth;
System.ServiceModel.Web (2)
System\ServiceModel\Configuration\WebHttpBindingElement.cs (1)
287webBindingReaderQuotas.MaxDepth = elementReaderQuotas.MaxDepth;
System\ServiceModel\Configuration\WebMessageEncodingElement.cs (1)
148readerQuotas.MaxDepth = currentQuotas.MaxDepth;
23 references to MaxDepth
System.Runtime.Serialization (2)
System\Xml\XmlBaseReader.cs (2)
303if (depth > quotas.MaxDepth) 304XmlExceptionHelper.ThrowMaxDepthExceeded(this, quotas.MaxDepth);
System.ServiceModel (12)
System\ServiceModel\Administration\EndpointInstanceProvider.cs (1)
547readerQuotasInstance.SetProperty(AdministrationStrings.MaxDepth, readerQuotas.MaxDepth);
System\ServiceModel\Channels\BinaryMessageEncodingBindingElement.cs (2)
295if (this.readerQuotas.MaxDepth != binary.ReaderQuotas.MaxDepth)
System\ServiceModel\Channels\MtomMessageEncodingBindingElement.cs (2)
257if (this.readerQuotas.MaxDepth != mtom.ReaderQuotas.MaxDepth)
System\ServiceModel\Channels\PeerNodeImplementation.cs (2)
1741else if (existingOne.MaxDepth != newOne.MaxDepth)
System\ServiceModel\Channels\TextMessageEncodingBindingElement.cs (2)
229if (this.readerQuotas.MaxDepth != text.ReaderQuotas.MaxDepth)
System\ServiceModel\Configuration\XmlDictionaryReaderQuotasElement.cs (2)
92if (readerQuotas.MaxDepth != EncoderDefaults.MaxDepth) 94SetPropertyValueIfNotDefaultValue(ConfigurationStrings.MaxDepth, readerQuotas.MaxDepth);
System\ServiceModel\NetMsmqBinding.cs (1)
128if (this.ReaderQuotas.MaxDepth != EncoderDefaults.MaxDepth)
System.ServiceModel.Channels (3)
System\ServiceModel\Configuration\ByteStreamMessageEncodingElement.cs (3)
104if (readerQuotas.MaxDepth != EncoderDefaults.MaxDepth && readerQuotas.MaxDepth != 0) 106thisQuotas.MaxDepth = readerQuotas.MaxDepth;
System.ServiceModel.Web (6)
System\ServiceModel\Channels\WebMessageEncodingBindingElement.cs (3)
209readerQuotasInstance.SetProperty(AdministrationStrings.MaxDepth, this.readerQuotas.MaxDepth); 274if (this.readerQuotas.MaxDepth != other.ReaderQuotas.MaxDepth)
System\ServiceModel\Configuration\WebHttpBindingElement.cs (3)
213if (readerQuotas.MaxDepth != EncoderDefaults.MaxDepth && readerQuotas.MaxDepth != 0) 215thisQuotas.MaxDepth = readerQuotas.MaxDepth;