Skip to content

FrozenStormInteractive/openmatch-csharp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

45 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.