1 write to MaxItemsInObjectGraph
System.ServiceModel.Web (1)
System\ServiceModel\Description\DataContractJsonSerializerOperationBehavior.cs (1)
22this.MaxItemsInObjectGraph = maxItemsInObjectGraph;
8 references to MaxItemsInObjectGraph
System.ServiceModel (3)
System\ServiceModel\Administration\ContractInstanceProvider.cs (1)
179instance.SetProperty(AdministrationStrings.MaxItemsInObjectGraph, specificBehavior.MaxItemsInObjectGraph);
System\ServiceModel\Description\DataContractSerializerOperationBehavior.cs (2)
103return new DataContractSerializer(type, name, ns, knownTypes, MaxItemsInObjectGraph, IgnoreExtensionDataObject, false /*preserveObjectReferences*/, DataContractSurrogate, DataContractResolver); 108return new DataContractSerializer(type, name, ns, knownTypes, MaxItemsInObjectGraph, IgnoreExtensionDataObject, false /*preserveObjectReferences*/, DataContractSurrogate, DataContractResolver);
System.ServiceModel.Web (5)
System\ServiceModel\Description\DataContractJsonSerializerOperationBehavior.cs (2)
30return new DataContractJsonSerializer(type, name, knownTypes, this.MaxItemsInObjectGraph, this.IgnoreExtensionDataObject, this.DataContractSurrogate, alwaysEmitTypeInformation); 35return new DataContractJsonSerializer(type, name, knownTypes, this.MaxItemsInObjectGraph, this.IgnoreExtensionDataObject, this.DataContractSurrogate, alwaysEmitTypeInformation);
System\ServiceModel\Description\WebHttpBehavior.cs (1)
1101return new DataContractJsonSerializerOperationFormatter(od, dcsob.MaxItemsInObjectGraph, dcsob.IgnoreExtensionDataObject, dcsob.DataContractSurrogate, isWrapped, false, JavascriptCallbackParameterName);
System\ServiceModel\Description\WebScriptEnablingBehavior.cs (1)
205return new DataContractJsonSerializerOperationFormatter(od, dcsob.MaxItemsInObjectGraph, dcsob.IgnoreExtensionDataObject, dcsob.DataContractSurrogate, isWrapped, true, this.JavascriptCallbackParameterName);
System\ServiceModel\Dispatcher\SingleBodyParameterDataContractMessageFormatter.cs (1)
68this.maxItemsInObjectGraph = dcsob.MaxItemsInObjectGraph;