Quick.Protocol.InterfaceService 2.9.4

dotnet add package Quick.Protocol.InterfaceService --version 2.9.4
                    
NuGet\Install-Package Quick.Protocol.InterfaceService -Version 2.9.4
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Quick.Protocol.InterfaceService" Version="2.9.4" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Quick.Protocol.InterfaceService" Version="2.9.4" />
                    
Directory.Packages.props
<PackageReference Include="Quick.Protocol.InterfaceService" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Quick.Protocol.InterfaceService --version 2.9.4
                    
#r "nuget: Quick.Protocol.InterfaceService, 2.9.4"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Quick.Protocol.InterfaceService@2.9.4
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Quick.Protocol.InterfaceService&version=2.9.4
                    
Install as a Cake Addin
#tool nuget:?package=Quick.Protocol.InterfaceService&version=2.9.4
                    
Install as a Cake Tool

Quick.Protocol.InterfaceService

NuGet Version

Quick.Protocol 的接口服务聚合层,提供统一的服务接口管理。

功能特性

  • 统一管理多种传输方式(TCP/Pipeline/WebSocket/HTTP)
  • 支持接口服务配置和上下文管理
  • 简化多协议服务的部署和管理

安装

dotnet add package Quick.Protocol.InterfaceService

快速开始

using Quick.Protocol.InterfaceService;

var config = new QpInterfaceServiceConfig
{
    TcpInterface = new TcpInterface { Port = 3000 },
    PipelineInterface = new PipeInterface { PipeName = "Quick.Protocol" },
    WebSocketInterface = new WebSocketInterface { Port = 3001 },
    HttpInterface = new HttpInterface { Port = 3002 },
    Password = "HelloQP"
};

var context = new QpInterfaceServiceContext(config);
context.Start();

项目地址

https://github.com/QuickProtocol/QuickProtocol_CSharp

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
2.9.4 49 8/28/2026
2.9.3 83 8/24/2026
2.9.3-rc2 51 8/27/2026
2.9.3-rc1 60 8/27/2026
2.9.2 91 8/22/2026
2.9.1 85 8/22/2026
2.9.0 82 8/21/2026
2.8.9 107 8/13/2026
2.8.8 83 8/12/2026
2.8.7 101 8/11/2026
2.8.6 85 8/11/2026
2.8.5 89 8/10/2026
2.8.3 93 8/9/2026
2.8.2 92 8/9/2026
2.8.1 92 8/9/2026
2.8.0 105 7/30/2026
2.7.3 107 7/17/2026
2.7.2 103 7/17/2026
2.7.1 110 7/17/2026
2.7.0 117 7/7/2026
Loading failed