Skip to content

Commit 78bb9e9

Browse files
authored
Add missing „get” method and GA notice to docs
1 parent b4b918e commit 78bb9e9

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ var options = {
317317
key: "/VirtualBox/GuestInfo/Net/0/V4/IP"
318318
}
319319

320-
virtualbox.guestproperty(function guestproperty_callback(machines, error) {
320+
virtualbox.guestproperty.get(function guestproperty_callback(machines, error) {
321321
if (error) throw error;
322322
// Act on machines
323323
});
@@ -352,6 +352,8 @@ virtualbox.extradata.set(options, function extradataset_callback(error) {
352352
});
353353
```
354354

355+
_Note: some properties are only available/effective if the Guest OS has the (https://www.virtualbox.org/manual/ch04.html)[Guest Additions] installed and running._
356+
355357
# Putting it all together
356358

357359
```javascript

0 commit comments

Comments
 (0)