System.Xaml.XamlXmlParser.FindStandardDirective C# (CSharp) Méthode

FindStandardDirective() static private méthode

static private FindStandardDirective ( string name, AllowedMemberLocations loc ) : XamlDirective
name string
loc AllowedMemberLocations
Résultat XamlDirective
		static XamlDirective FindStandardDirective (string name, AllowedMemberLocations loc)
		{
			return XamlLanguage.AllDirectives.FirstOrDefault (dd => (dd.AllowedLocation & loc) != 0 && dd.Name == name);
		}