Show / Hide Table of Contents

Class CommandResult

Inheritance
object
CommandResult
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.ReferenceEquals(object, object)
Namespace: Pulumi.Automation.Commands
Assembly: Pulumi.Automation.dll
Syntax
public sealed class CommandResult

Constructors

View Source

CommandResult(int, string, string)

Declaration
public CommandResult(int code, string standardOutput, string standardError)
Parameters
Type Name Description
int code
string standardOutput
string standardError

Properties

View Source

Code

Declaration
public int Code { get; }
Property Value
Type Description
int
View Source

StandardError

Declaration
public string StandardError { get; }
Property Value
Type Description
string
View Source

StandardOutput

Declaration
public string StandardOutput { get; }
Property Value
Type Description
string

Methods

View Source

ToString()

Returns a string that represents the current object.

Declaration
public override string ToString()
Returns
Type Description
string

A string that represents the current object.

Overrides
object.ToString()
  • View Source
Back to top Copyright 2016-2023, Pulumi Corporation.