Skip to content

Commit

Permalink
Fix to README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Yavor Georgiev committed Apr 21, 2012
1 parent c40c484 commit 7bf1d75
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion README.md
Expand Up @@ -22,6 +22,9 @@ Node.js Developer Center.
* Queues: create, list and delete queues; create, list, and delete subscriptions; send, receive, unlock and delete messages
* Topics: create, list, and delete topics; create, list, and delete rules
* Service Runtime
* get configuration settings and access local resources
* get role instance information for current role and other role instances
* query and set the status of the current role


# Getting Started
Expand Down Expand Up @@ -266,7 +269,8 @@ The *getLocalResources* method lets you obtain data from the role's local storag
```Javascript
azure.RoleEnvironment.getLocalResources(function(error, resources) {
if(!error){
// You can get the path to the role's diagnostics store via resources['DiagnosticStore']['path']
// You can get the path to the role's diagnostics store via
// resources['DiagnosticStore']['path']
}
});
```
Expand All @@ -292,6 +296,7 @@ azure.RoleEnvironment.getRoles(function(error, roles) {
});
```


** For more examples please see the [Windows Azure Node.js Developer Center](http://www.windowsazure.com/en-us/develop/nodejs) **

# Need Help?
Expand Down

0 comments on commit 7bf1d75

Please sign in to comment.