Skip to content

Latest commit

 

History

History
37 lines (23 loc) · 1.19 KB

README.md

File metadata and controls

37 lines (23 loc) · 1.19 KB

OpenMatch C# API

Nuget Azure Pipelines

Usage

dotnet add package OpenMatch.Api

Getting started

Client

// Create the grpc.
using var channel = GrpcChannel.ForAddress("https://localhost:5001");

var frontendClient = new OpenMatch.FrontendService.FrontendServiceClient(channel);

await frontendClient.CreateTicketAsync(request); 

There is others services:

  • OpenMatch.FrontendService.FrontendServiceClient
  • OpenMatch.BackendService.BackendServiceClient
  • OpenMatch.EvaluatorService.EvaluatorServiceClient
  • OpenMatch.MatchFunction.MatchFunctionServiceClient
  • OpenMatch.QueryService.QueryServiceClient

See Open Match API References for more informations.

Contributing

Please see CONTRIBUTING.md for instructions on how to contribute.