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

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

Visits this node, the target expression, and the property name.
Visits this node, the target expression, and the property name.
public Visit ( NodeVisitor v ) : void
v NodeVisitor
Результат void
		public override void Visit(NodeVisitor v)
		{
			if (v.Visit(this))
			{
				GetTarget().Visit(v);
				GetProperty().Visit(v);
			}
		}
	}