Class CodecDetectionOutput
Inheritance
System.Object
CodecDetectionOutput
Namespace: Emby.Media.Model.DiagnosticsModel
Assembly: Emby.Media.Model.dll
Syntax
public sealed class CodecDetectionOutput
Constructors
CodecDetectionOutput(String, String, String, Nullable<Int32>)
Initializes a new instance of the CodecDetectionOutput class.
Declaration
public CodecDetectionOutput(string codecProviderName, string standardError, string standardOutput, int? exitCode)
Parameters
Type | Name | Description |
---|---|---|
System.String | codecProviderName | Name of the codec provider. |
System.String | standardError | The standard error output. |
System.String | standardOutput | The standard output. |
System.Nullable<System.Int32> | exitCode | The exit code. |
Properties
CodecProviderName
Declaration
public string CodecProviderName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
ExitCode
Declaration
public int? ExitCode { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int32> |
Result
Declaration
public JsonString Result { get; set; }
Property Value
Type | Description |
---|---|
JsonString |
StandardError
Declaration
public string StandardError { get; set; }
Property Value
Type | Description |
---|---|
System.String |