Class StoreConnectionFailureDescription
Represents a failed store connection as described by a store service.
Inherited Members
Namespace: UnityEngine .Purchasing
Assembly: Unity.Purchasing.dll
Syntax
[Serializable]
public class StoreConnectionFailureDescription
Constructors
StoreConnectionFailureDescription(string, bool)
Parametrized Constructor.
Declaration
public StoreConnectionFailureDescription(string message, bool isRetryable = false)
Parameters
Type | Name | Description |
---|---|---|
string | message | The message containing details about the failed connection attempt. |
bool | isRetryable | Specifies if the query can be retried. |
Fields
isRetryable
Declaration
public bool isRetryable
Field Value
Type | Description |
---|---|
bool |
message
Declaration
public string message
Field Value
Type | Description |
---|---|
string |
Properties
IsRetryable
Specifies if the request is retryable
Declaration
public bool IsRetryable { get; }
Property Value
Type | Description |
---|---|
bool |
Message
The message containing details about the failed connection attempt.
Declaration
public string Message { get; }
Property Value
Type | Description |
---|---|
string |