Class EncodingErrorDefinition
EncodingErrorDefinition
Inheritance
System.Object
EncodingErrorDefinition
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Bitmovin.Api.Sdk.Models
Assembly: Bitmovin.Api.Sdk.dll
Syntax
public class EncodingErrorDefinition
Properties
Category
The error category.
Declaration
public string Category { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Code
The error code.
Declaration
public int? Code { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int32> |
Description
The returned error description.
Declaration
public string Description { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Message
The error message, optional. Can include placeholders like {1}, {2} which are replaced with the respective dependency when the error is thrown.
Declaration
public string Message { get; set; }
Property Value
Type | Description |
---|---|
System.String |
RetryHint
Indicates if the call that caused the error should be retried.
Declaration
public ErrorRetryHint? RetryHint { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<ErrorRetryHint> |