System.Xaml.NameScope.FindName C# (CSharp) Method

FindName() public method

public FindName ( string name ) : object
name string
return object
		public object FindName (string name)
		{
			object obj;
			return table.TryGetValue (name, out obj) ? obj : null;
		}