Rhino.ScriptRuntime.EnterDotQuery C# (CSharp) Method

EnterDotQuery() public static method

public static EnterDotQuery ( object value, Scriptable scope ) : Scriptable
value object
scope Scriptable
return Scriptable
		public static Scriptable EnterDotQuery(object value, Scriptable scope)
		{
			if (!(value is XMLObject))
			{
				throw NotXmlError(value);
			}
			XMLObject @object = (XMLObject)value;
			return @object.EnterDotQuery(scope);
		}
ScriptRuntime