Class: WinRM::PSRP::MessageData::Base
- Inherits:
-
Object
- Object
- WinRM::PSRP::MessageData::Base
- Defined in:
- lib/winrm/psrp/message_data/base.rb
Overview
base class for message data
Direct Known Subclasses
ErrorRecord, PipelineHostCall, PipelineOutput, PipelineState, RunspacepoolHostCall, RunspacepoolState, SessionCapability
Instance Attribute Summary collapse
-
#raw ⇒ String
readonly
Raw message data.
Instance Method Summary collapse
-
#initialize(data) ⇒ Base
constructor
A new instance of Base.
Constructor Details
#initialize(data) ⇒ Base
Returns a new instance of Base.
24 25 26 |
# File 'lib/winrm/psrp/message_data/base.rb', line 24 def initialize(data) @raw = data end |
Instance Attribute Details
#raw ⇒ String (readonly)
Returns raw message data.
29 30 31 |
# File 'lib/winrm/psrp/message_data/base.rb', line 29 def raw @raw end |