3 writes to RefName
dotnet-svcutil-lib (3)
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaComplexType.cs (1)
558
newGroupRef.
RefName
= newGroupRef.RefName.Clone();
FrameworkFork\Microsoft.Xml\Xml\schema\XsdBuilder.cs (1)
1948
builder._groupRef.
RefName
= builder.ParseQName(value, "ref");
FrameworkFork\System.Web.Services\Services\Description\ServiceDescriptionSerializer.cs (1)
11675
o.
@RefName
= ToXmlQualifiedName(Reader.Value);
29 references to RefName
dotnet-svcutil-lib (29)
FrameworkFork\Microsoft.Xml\Xml\schema\Preprocessor.cs (3)
1076
if (groupRef.
RefName
== name)
2011
if (groupRef.
RefName
.IsEmpty)
2017
ValidateQNameAttribute(groupRef, "ref", groupRef.
RefName
);
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionCompiler.cs (2)
1134
group = (XmlSchemaGroup)_schema.Groups[groupRef.
RefName
];
1138
SendValidationEvent(ResXml.Sch_UndefGroupRef, groupRef.
RefName
.ToString(), groupRef);
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionPreprocessor.cs (3)
728
if (groupRef.
RefName
== name)
1658
if (groupRef.
RefName
.IsEmpty)
1664
ValidateQNameAttribute(groupRef, "ref", groupRef.
RefName
);
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaSetCompiler.cs (2)
1260
group = (XmlSchemaGroup)_groups[groupRef.
RefName
];
1264
SendValidationEvent(ResXml.Sch_UndefGroupRef, groupRef.
RefName
.ToString(), groupRef);
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaComplexType.cs (1)
558
newGroupRef.RefName = newGroupRef.
RefName
.Clone();
FrameworkFork\Microsoft.Xml\Xml\Serialization\ImportContext.cs (2)
385
particle = ((XmlSchemaGroup)_schemas.Find(refGroup.
RefName
, typeof(XmlSchemaGroup), false)).Particle;
480
XmlSchemaGroup group = (XmlSchemaGroup)_schemas.Find(((XmlSchemaGroupRef)item).
RefName
, typeof(XmlSchemaGroup), false);
FrameworkFork\Microsoft.Xml\Xml\Serialization\SchemaObjectWriter.cs (3)
91
return ((XmlSchemaGroupRef)o).
RefName
;
1215
if (!o.
RefName
.IsEmpty)
1217
WriteAttribute("ref", "", o.
RefName
);
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemaImporter.cs (12)
845
items.Particle = FindGroup(refGroup.
RefName
).Particle;
1021
if (!refGroup.
RefName
.IsEmpty)
1023
AddReference(refGroup.
RefName
, GroupsInUse, ResXml.XmlCircularGroupReference);
1024
if (GatherGroupChoices(FindGroup(refGroup.
RefName
), choiceElements, identifier, refGroup.
RefName
.Namespace, ref needExplicitOrder, allowDuplicates))
1026
RemoveReference(refGroup.
RefName
, GroupsInUse);
1029
RemoveReference(refGroup.
RefName
, GroupsInUse);
1124
if (!refGroup.
RefName
.IsEmpty)
1126
AddReference(refGroup.
RefName
, GroupsInUse, ResXml.XmlCircularGroupReference);
1127
ImportGroupMembers(FindGroup(refGroup.
RefName
).Particle, identifier, members, membersScope, elementsScope, refGroup.
RefName
.Namespace, groupRepeats | refGroup.IsMultipleOccurrence, ref mixed, ref needExplicitOrder, allowDuplicates, allowUnboundedElements);
1128
RemoveReference(refGroup.
RefName
, GroupsInUse);
FrameworkFork\System.Web.Services\Services\Description\ServiceDescriptionSerializer.cs (1)
4234
WriteAttribute(@"ref", @"", FromXmlQualifiedName(((Microsoft.Xml.XmlQualifiedName)o.
@RefName
)));