class WinRM::PSRP::MessageData::PipelineState

pipeline state message type

Constants

COMPLETED
DISCONNECTED
FAILED
NOT_STARTED
RUNNING
STOPPED
STOPPING

Public Instance Methods

exception_as_error_record() click to toggle source
# File lib/winrm/psrp/message_data/pipeline_state.rb, line 32
def exception_as_error_record
  @exception_as_error_record ||= ErrorRecord.new(raw) if pipeline_state == FAILED
end
pipeline_state() click to toggle source
# File lib/winrm/psrp/message_data/pipeline_state.rb, line 28
def pipeline_state
  clixml[:i32].to_i
end