2 writes to Name
System.Xaml (2)
System\Xaml\Parser\XamlName.cs (2)
23
Name
= name;
28
Name
= name;
30 references to Name
System.Xaml (30)
System\Xaml\Context\XamlContext.cs (13)
102
property = GetInstanceOrAttachableProperty(tagType, propName.
Name
, rootTagType);
111
XamlTypeName ownerTypeName = new XamlTypeName(ns, propName.Owner.
Name
);
117
property = GetInstanceOrAttachableProperty(ownerType, propName.
Name
, rootTagType);
121
property = GetXamlAttachableProperty(ownerType, propName.
Name
);
133
property = CreateUnknownMember(declaringType, propName.
Name
);
137
property = CreateUnknownAttachableMember(declaringType, propName.
Name
);
175
property = GetXamlProperty(tagType, propName.
Name
, rootTagType);
182
property = GetXamlAttachableProperty(tagType, propName.
Name
);
190
XamlDirective directive = SchemaContext.GetXamlDirective(propUsageNamespace, propName.
Name
);
197
directive = new XamlDirective(propUsageNamespace, propName.
Name
);
209
property = new XamlMember(propName.
Name
, tagType, false);
214
property = new XamlDirective(propUsageNamespace, propName.
Name
);
251
return new XamlTypeName(xamlNs, typeName.
Name
);
System\Xaml\InfosetObjects\XamlObjectWriter.cs (2)
1191
throw ctx.WithLineInfo(new XamlObjectWriterException(SR.Format(SR.CannotResolveTypeForFactoryMethod, ownerTypeName, propertyName.
Name
)));
1195
inst = Runtime.CreateWithFactoryMethod(ownerType, propertyName.
Name
, ctx.CurrentCtorArgs);
System\Xaml\Parser\XamlAttribute.cs (5)
125
? Name.
Name
126
: $"{Name.OwnerName}.{Name.
Name
}";
131
if (string.IsNullOrEmpty(Name.Prefix) && KS.Eq(Name.
Name
, KnownStrings.XmlNsPrefix))
156
unknownProperty = new XamlMember(propName.
Name
, attachedOwnerType, isAttachable: true);
160
unknownProperty = new XamlMember(propName.
Name
, tagType, false);
System\Xaml\Parser\XamlPropertyName.cs (3)
80
$"{Owner.ScopedName}.{
Name
}" :
81
Name
;
90
Owner.
Name
:
System\Xaml\Parser\XamlQualifiedName.cs (2)
21
Name
:
22
$"{Prefix}:{
Name
}";
System\Xaml\Parser\XamlScanner.cs (5)
298
XamlMember dirProperty = schemaContext.GetXamlDirective(xamlNs, name.
Name
);
305
bool sawXData = ReadObjectElement_Object(xamlNs, name.
Name
, node);
545
return new XamlType(xmlns, name.
Name
, null, _parserContext.SchemaContext);
608
if (KS.Eq(attr.Name.
Name
, XamlLanguage.TypeArguments.Name))
611
XamlMember directiveProperty = _parserContext.ResolveDirectiveProperty(attrNamespace, attr.Name.
Name
);