Rhino.Xmlimpl.XMLObjectImpl.Has C# (CSharp) Метод

Has() публичный закрытый Метод

Implementation of ECMAScript [[Has]]
public final Has ( Context cx, object id ) : bool
cx Rhino.Context
id object
Результат bool
		public sealed override bool Has(Context cx, object id)
		{
			if (cx == null)
			{
				cx = Context.GetCurrentContext();
			}
			XMLName xmlName = lib.ToXMLNameOrIndex(cx, id);
			if (xmlName == null)
			{
				long index = ScriptRuntime.LastUint32Result(cx);
				// XXX Fix this cast
				return Has((int)index, this);
			}
			return HasXMLProperty(xmlName);
		}

Same methods

XMLObjectImpl::Has ( string name, Scriptable start ) : bool