Microsoft.JScript.JSWrappedMethod.GetMethodInfo C# (CSharp) Méthode

GetMethodInfo() private méthode

private GetMethodInfo ( CompilerGlobals compilerGlobals ) : MethodInfo
compilerGlobals CompilerGlobals
Résultat System.Reflection.MethodInfo
      internal override MethodInfo GetMethodInfo(CompilerGlobals compilerGlobals){
        if (this.method is JSMethod)
          return ((JSMethod)(this.method)).GetMethodInfo(compilerGlobals);
        else
          return this.method;
      }