3 writes to IsReference
dotnet-svcutil-lib (3)
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\SchemaImporter.cs (3)
668dataContract.IsReference = isReference; 681dataContract.IsReference = true; 1066dataContract.IsReference = isReference;
13 references to IsReference
dotnet-svcutil-lib (13)
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\ClassDataContract.cs (3)
883bool baseIsReference = this.BaseContract.IsReference; 892this.BaseContract.IsReference), 902isReference = this.BaseContract.IsReference;
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\CodeExporter.cs (6)
580if (referencedContract != null && !(referencedContract.StableName.Equals(dataContract.GenericInfo.StableName) && referencedContract.IsReference == dataContract.IsReference)) 818if (classDataContract.IsReference != Globals.DefaultIsReference) 819dataContractAttribute.Arguments.Add(new CodeAttributeArgument(Globals.IsReferenceProperty, new CodePrimitiveExpression(classDataContract.IsReference))); 1167if (collectionContract.IsReference != Globals.DefaultIsReference) 1168collectionContractAttribute.Arguments.Add(new CodeAttributeArgument(Globals.IsReferenceProperty, new CodePrimitiveExpression(collectionContract.IsReference)));
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\DataContract.cs (2)
2201return (StableName.Name == dataContract.StableName.Name && StableName.Namespace == dataContract.StableName.Namespace && IsReference == dataContract.IsReference);
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\SchemaImporter.cs (1)
679if (dataContract.BaseContract.IsReference)
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\XmlObjectSerializerWriteContext.cs (1)
235if (!contract.IsReference || _isGetOnlyCollection)