Ejemplo n.º 1
0
 public static bool Untrusted(RubyContext/*!*/ context, object self) {
     if (!RubyUtils.HasObjectState(self)) {
         return false; // can't untrust value types
     }
     return context.IsObjectUntrusted(self);
 }