static void _Exception_StackTrace(JSVCall vc)
    {
        System.Runtime.InteropServices._Exception _this = (System.Runtime.InteropServices._Exception)vc.csObj;
        var result = _this.StackTrace;

        JSApi.setStringS((int)JSApi.SetType.Rval, result);
    }
    static void _Exception_TargetSite(JSVCall vc)
    {
        System.Runtime.InteropServices._Exception _this = (System.Runtime.InteropServices._Exception)vc.csObj;
        var result = _this.TargetSite;

        JSMgr.datax.setObject((int)JSApi.SetType.Rval, result);
    }
 static void _Exception_Source(JSVCall vc)
 {
     if (vc.bGet)
     {
         System.Runtime.InteropServices._Exception _this = (System.Runtime.InteropServices._Exception)vc.csObj;
         var result = _this.Source;
         JSApi.setStringS((int)JSApi.SetType.Rval, result);
     }
     else
     {
         System.String arg0 = (System.String)JSApi.getStringS((int)JSApi.GetType.Arg);
         System.Runtime.InteropServices._Exception _this = (System.Runtime.InteropServices._Exception)vc.csObj;
         _this.Source = arg0;
     }
 }