Class: VBox::VirtualBoxErrorInfo
- Defined in:
- lib/virtualbox/classes/virtual_box_error_info.rb
Instance Attribute Summary collapse
-
#ref ⇒ Object
readonly
Returns the value of attribute ref.
Instance Method Summary collapse
- #component ⇒ Object
- #interface_id ⇒ Object
- #next ⇒ Object
-
#result_code ⇒ Object
Attributes.
- #text ⇒ Object
Methods inherited from Base
#_this, #delete!, #ensure_hash, #initialize, #vbox_class
Constructor Details
This class inherits a constructor from VBox::Base
Instance Attribute Details
#ref ⇒ Object (readonly)
Returns the value of attribute ref.
4 5 6 |
# File 'lib/virtualbox/classes/virtual_box_error_info.rb', line 4 def ref @ref end |
Instance Method Details
#component ⇒ Object
16 17 18 |
# File 'lib/virtualbox/classes/virtual_box_error_info.rb', line 16 def component VBox::WebService.send_request(:i_virtual_box_error_info_get_component, _this) end |
#interface_id ⇒ Object
12 13 14 |
# File 'lib/virtualbox/classes/virtual_box_error_info.rb', line 12 def interface_id VBox::WebService.send_request(:i_virtual_box_error_info_get_interface_id, _this) end |
#next ⇒ Object
24 25 26 27 |
# File 'lib/virtualbox/classes/virtual_box_error_info.rb', line 24 def next virtual_box_error_info = VBox::WebService.send_request(:i_virtual_box_error_info_get_next, _this) VBox::VirtualBoxErrorInfo.new(virtual_box_error_info) end |
#result_code ⇒ Object
Attributes
8 9 10 |
# File 'lib/virtualbox/classes/virtual_box_error_info.rb', line 8 def result_code VBox::WebService.send_request(:i_virtual_box_error_info_get_result_code, _this) end |
#text ⇒ Object
20 21 22 |
# File 'lib/virtualbox/classes/virtual_box_error_info.rb', line 20 def text VBox::WebService.send_request(:i_virtual_box_error_info_get_text, _this) end |