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

FindStandardDirective() private méthode

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