v1.0.0
2022.3+
Interface ILogsApi
Allows to find logs happening on the remote server
Inherited Members
Namespace: Unity.Services.Multiplay.Authoring.Core.MultiplayApi
Syntax
public interface ILogsApi : IInitializableMethods
SearchLogsAsync(LogSearchParams, CancellationToken)
Returns logs found according to the parameters.
Declaration
Task<LogSearchResult> SearchLogsAsync(LogSearchParams searchParams, CancellationToken cancellationToken = default(CancellationToken))Parameters
| Type | Name | Description | 
|---|---|---|
| Unity.Services.Multiplay.Authoring.Core.MultiplayApi.LogSearchParams | searchParams | The parameters to look for.  | 
| System.Threading.CancellationToken | cancellationToken | The cancellation token.  | 
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<Unity.Services.Multiplay.Authoring.Core.MultiplayApi.LogSearchResult> | A System.Threading.Tasks.Task representing the asynchronous operation.  |