/Clash-SDK

Clash proxy controller via C#

Primary LanguageC#Apache License 2.0Apache-2.0

Clash .NET SDK

Nuget RunTime RunTime RunTime RunTime

该SDK基于Clash API实现

简单的开始

使用前,你需要先安装 CoelWu.Clash.SDK nuget包

// 创建Client
ClashClient _client = new ClashClient();

// 获取Clash版本
var clashVersionResponse = await _client.GetClashVersion();

// 断开所有链接
await _client.DisconnectAllConnections();

更多例子

如需要更多使用案例,请参考 ClashSDK-ConsoleApp

释放

当你觉得客户端已经完成了使命,到了该释放的时候,那么你可以调用Dispose方法释放客户端对象。

_client.Dispose();

鸣谢