Rhino.Ast.PropertyGet.GetProperty C# (CSharp) Метод

GetProperty() публичный Метод

Returns the property being accessed.
Returns the property being accessed.
public GetProperty ( ) : Name
Результат Name
		public virtual Name GetProperty()
		{
			return (Name)GetRight();
		}

Usage Example

Пример #1
0
		// only used for destructuring forms
		internal void DecompilePropertyGet(PropertyGet node)
		{
			Decompile(node.GetTarget());
			decompiler.AddToken(Token.DOT);
			Decompile(node.GetProperty());
		}
All Usage Examples Of Rhino.Ast.PropertyGet::GetProperty