Class ErrorDetail
ErrorDetail model
Inherited Members
Namespace: Unity.Services.CommonMultiplayerBackend.Models
Assembly: Unity.Services.Multiplayer.dll
Syntax
[Preserve]
[DataContract(Name = "ErrorDetail")]
public class ErrorDetail
Constructors
ErrorDetail(string, string)
Creates an instance of ErrorDetail.
Declaration
[Preserve]
public ErrorDetail(string error, string message)
Parameters
Type | Name | Description |
---|---|---|
string | error | error param |
string | message | message param |
Properties
Error
Parameter error of ErrorDetail
Declaration
[Preserve]
[DataMember(Name = "error", IsRequired = true, EmitDefaultValue = true)]
public string Error { get; }
Property Value
Type | Description |
---|---|
string |
Message
Parameter message of ErrorDetail
Declaration
[Preserve]
[DataMember(Name = "message", IsRequired = true, EmitDefaultValue = true)]
public string Message { get; }
Property Value
Type | Description |
---|---|
string |