• 大小: 1.87MB
    文件类型: .7z
    金币: 1
    下载: 0 次
    发布日期: 2023-10-19
  • 语言: 其他
  • 标签: charmred  

资源简介

ligerRMV2

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.Text;
using System.Web;
using System.IO;
using System.Reflection;
using System.Web.Compilation;
using System.Web.script.Serialization;
using System.Linq;
using System.Collections.Specialized;
using Liger.Common;
using Liger.Data;
using Liger.Common.Extensions;

namespace LigerRM.Common
{
    /// 
    /// 内部 Ajax 方法 容器
    /// 

    internal class AjaxAction
    {
        public AjaxAction(MethodInfo method)
        {
            this.Method = method;
            this.Parameters = this.Method.GetParameters();
        }

        public MethodInfo Method { get; private set; }

        public ParameterInfo[] Parameters { get; private set; }
    }
}

评论

共有 条评论

相关资源