RoleEnvironment.Roles Property
Gets the set of Role objects defined for the hosted service.
Assembly: Microsoft.WindowsAzure.ServiceRuntime (in Microsoft.WindowsAzure.ServiceRuntime.dll)
Property Value
Type: System.Collections.Generic.IDictionary(Of String, Role)Type: System.Collections.Generic.IDictionary
A IDictionary(Of TKey, TValue) that contains the Role objects that are defined for the hosted service.
Roles are defined in the ServiceDefinition.csdef file. For more information about defining roles for a hosted service, see Setting Up a Hosted Service for Windows Azure.
The following code example shows how to obtain the role instance IDs for defined roles:
foreach (var roleDefinition in RoleEnvironment.Roles) { foreach (var roleInstance in roleDefinition.Value.Instances) { Trace.WriteLine("Role instance ID: " + roleInstance.Id, "Information"); } }
Note |
|---|
At least one internal endpoint must be defined for a role to enable instances to be known at runtime. For more information about defining internal endpoints, see How to Define Internal Endpoints for a Role. |
Show:
