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)
98
property = GetInstanceOrAttachableProperty(tagType, propName.
Name
, rootTagType);
107
XamlTypeName ownerTypeName = new XamlTypeName(ns, propName.Owner.
Name
);
113
property = GetInstanceOrAttachableProperty(ownerType, propName.
Name
, rootTagType);
117
property = GetXamlAttachableProperty(ownerType, propName.
Name
);
128
property = CreateUnknownMember(declaringType, propName.
Name
);
132
property = CreateUnknownAttachableMember(declaringType, propName.
Name
);
168
property = GetXamlProperty(tagType, propName.
Name
, rootTagType);
175
property = GetXamlAttachableProperty(tagType, propName.
Name
);
182
XamlDirective directive = SchemaContext.GetXamlDirective(propUsageNamespace, propName.
Name
);
189
directive = new XamlDirective(propUsageNamespace, propName.
Name
);
199
property = new XamlMember(propName.
Name
, tagType, false);
204
property = new XamlDirective(propUsageNamespace, propName.
Name
);
240
return new XamlTypeName(xamlNs, typeName.
Name
);
System\Xaml\InfosetObjects\XamlObjectWriter.cs (2)
1160
throw ctx.WithLineInfo(new XamlObjectWriterException(SR.Format(SR.CannotResolveTypeForFactoryMethod, ownerTypeName, propertyName.
Name
)));
1164
inst = Runtime.CreateWithFactoryMethod(ownerType, propertyName.
Name
, ctx.CurrentCtorArgs);
System\Xaml\Parser\XamlAttribute.cs (5)
126
? Name.
Name
127
: $"{Name.OwnerName}.{Name.
Name
}";
131
if (String.IsNullOrEmpty(Name.Prefix) && KS.Eq(Name.
Name
, KnownStrings.XmlNsPrefix))
155
unknownProperty = new XamlMember(propName.
Name
, attachedOwnerType, true /*isAttachable*/);
159
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)
295
XamlMember dirProperty = schemaContext.GetXamlDirective(xamlNs, name.
Name
);
302
bool sawXData = ReadObjectElement_Object(xamlNs, name.
Name
, node);
535
return new XamlType(xmlns, name.
Name
, null, _parserContext.SchemaContext);
596
if (KS.Eq(attr.Name.
Name
, XamlLanguage.TypeArguments.Name))
599
XamlMember directiveProperty = _parserContext.ResolveDirectiveProperty(attrNamespace, attr.Name.
Name
);