System.Xaml.XamlXmlReader.FindStandardDirective C# (CSharp) 메소드

FindStandardDirective() 개인적인 메소드

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