Class LogSearchResult
Log entries found along with their metadata
Implements
Inherited Members
Namespace: Unity.Services.Multiplay.Authoring.Core.MultiplayApi
Assembly: Unity.Services.Multiplayer.Multiplay.Authoring.Core.dll
Syntax
public record LogSearchResult : IEquatable<LogSearchResult>
Constructors
LogSearchResult(decimal, List<LogEntry>, string)
Log entries found along with their metadata
Declaration
public LogSearchResult(decimal Count, List<LogEntry> Entries, string PaginationToken)
Parameters
| Type | Name | Description |
|---|---|---|
| decimal | Count | Number of results returned. |
| List<LogEntry> | Entries | Log entries returned by the search. |
| string | PaginationToken | A token used to fetch the next page of results. |
Properties
Count
Number of results returned.
Declaration
public decimal Count { get; init; }
Property Value
| Type | Description |
|---|---|
| decimal |
Entries
Log entries returned by the search.
Declaration
public List<LogEntry> Entries { get; init; }
Property Value
| Type | Description |
|---|---|
| List<LogEntry> |
PaginationToken
A token used to fetch the next page of results.
Declaration
public string PaginationToken { get; init; }
Property Value
| Type | Description |
|---|---|
| string |