Exemplo n.º 1
0
 public override string[] GetPropertyNames()
 {
     VerifyNotDisposed();
     return(engine.ScriptInvoke(() => target.GetProperties(BindingFlags.Default).Select(property => property.Name).ExcludeIndices().ToArray()));
 }
Exemplo n.º 2
0
        public bool IsEmpty()
        {
            var properties = jsObject.GetProperties(BindingFlags.Public);

            return(properties.Length == 0);
        }