3 writes to Namespace
PresentationFramework (1)
System\Windows\Markup\Baml2006\Baml2006SchemaContext.cs (1)
73XamlTypeName fullTypeName = new XamlTypeName { Namespace = xamlNamespace, Name = name };
System.Xaml (2)
System\Xaml\XamlTypeName.cs (2)
34Namespace = xamlNamespace; 46Namespace = xamlType.GetXamlNamespaces()[0];
10 references to Namespace
System.Xaml (10)
System\Xaml\Context\XamlContext.cs (2)
261Debug.Assert(typeName.Namespace != null); 280xamlType = new XamlType(typeName.Namespace, typeName.Name, typeArgs, SchemaContext);
System\Xaml\Parser\MeScanner.cs (1)
309_tokenNamespace = typeName.Namespace;
System\Xaml\Schema\XamlTypeTypeConverter.cs (1)
108result = new XamlType(typeName.Namespace, typeName.Name, typeArgs, schemaContext);
System\Xaml\XamlSchemaContext.cs (2)
273if (xamlTypeName.Namespace == null) 295return GetXamlType(xamlTypeName.Namespace, xamlTypeName.Name, typeArgs);
System\Xaml\XamlTypeName.cs (4)
206if (Namespace == null) 217result.Append(Namespace); 222string prefix = prefixGenerator.Invoke(Namespace); 225throw new InvalidOperationException(SR.Format(SR.XamlTypeNameCannotGetPrefix, Namespace));