Alba.Jaml.MSInternal.XamlLanguage.LookupXmlDirective C# (CSharp) Метод

LookupXmlDirective() статический приватный Метод

static private LookupXmlDirective ( string name ) : XamlDirective
name string
Результат System.Xaml.XamlDirective
        internal static XamlDirective LookupXmlDirective (string name)
        {
            switch (name) {
                case "base":
                    return Base;

                case "lang":
                    return Lang;

                case "space":
                    return Space;
            }
            return null;
        }