System.Xaml.XamlDirective.XamlDirective C# (CSharp) Method

XamlDirective() public method

public XamlDirective ( string xamlNamespace, string name ) : System
xamlNamespace string
name string
return System
		public XamlDirective (string xamlNamespace, string name)
			: this (new string [] {xamlNamespace}, name, new XamlType (typeof (object), new XamlSchemaContext (new XamlSchemaContextSettings ())), null, AllowedMemberLocations.Any)
		{
			if (xamlNamespace == null)
				throw new ArgumentNullException ("xamlNamespace");
			is_unknown = true;
		}

Same methods

XamlDirective::XamlDirective ( IEnumerable xamlNamespaces, string name, XamlType xamlType, XamlValueConverter typeConverter, AllowedMemberLocations allowedLocation ) : System