Ai
44 Star 317 Fork 117

Microi吾码/microi.net

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
V8EngineExtend.cs 1.77 KB
一键复制 编辑 原始数据 按行查看 历史
Microi吾码 提交于 2025-12-13 17:57 +08:00 . 更新平台文档
using System;
using Dos.Common;
using Microi.Model.Aliyun;
namespace Microi.net
{
public partial class V8EngineExtend
{
/// <summary>
/// 这种方式支持。测试扩展V8.TestV8Extend3('test')方法
/// </summary>
/// <returns></returns>
public string TestV8Extend3(string testParam)
{
return "TestV8Extend3:" + testParam;
}
/// <summary>
/// 新增V8.Alipay对象。
/// 这种方式支持V8.Alipay.Test22('test'),也支持V8.Alipay.CreatePay({ AppId : '11' })
/// </summary>
public Alipay Alipay
{
get { return new Alipay(); }
}
/// <summary>
/// 新增V8.WeChat对象。
/// </summary>
public WeChat WeChat
{
get { return new WeChat(); }
}
public AlipayV3 AlipayV3
{
get { return new AlipayV3(); }
}
public Alidns Alidns
{
get { return new Alidns(); }
}
/// <summary>
/// 新增V8.Alipay()函数。
/// 这种方式支持【V8.Alipay().Test22('test')】,也支持【V8.Alipay().CreatePay({ AppId : '11' })】
/// </summary>
/// <returns></returns>
// public Alipay Alipay()
// {
// return new Alipay();
// }
/// <summary>
/// 注意:这种方式不支持。
/// </summary>
// public class Tencent
// {
// public static string Test1()
// {
// return "111";
// }
// public string Test2()
// {
// return "222";
// }
// }
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/ITdos/microi.net.git
git@gitee.com:ITdos/microi.net.git
ITdos
microi.net
microi.net
master

搜索帮助