3 writes to Namespace
PresentationFramework (1)
System\Windows\Markup\Baml2006\Baml2006SchemaContext.cs (1)
60XamlTypeName fullTypeName = new XamlTypeName { Namespace = xamlNamespace, Name = name };
System.Xaml (2)
System\Xaml\XamlTypeName.cs (2)
32Namespace = xamlNamespace; 44Namespace = xamlType.GetXamlNamespaces()[0];
10 references to Namespace
System.Xaml (10)
System\Xaml\Context\XamlContext.cs (2)
258Debug.Assert(typeName.Namespace is not null); 277xamlType = new XamlType(typeName.Namespace, typeName.Name, typeArgs, SchemaContext);
System\Xaml\Parser\MeScanner.cs (1)
306_tokenNamespace = typeName.Namespace;
System\Xaml\Schema\XamlTypeTypeConverter.cs (1)
108result = new XamlType(typeName.Namespace, typeName.Name, typeArgs, schemaContext);
System\Xaml\XamlSchemaContext.cs (2)
269if (xamlTypeName.Namespace is null) 291return GetXamlType(xamlTypeName.Namespace, xamlTypeName.Name, typeArgs);
System\Xaml\XamlTypeName.cs (4)
204if (Namespace is null) 215result.Append(Namespace); 220string prefix = prefixGenerator.Invoke(Namespace); 223throw new InvalidOperationException(SR.Format(SR.XamlTypeNameCannotGetPrefix, Namespace));