RoleEnvironment.Roles Property
Gets the set of Role objects defined for the hosted service.
Namespace: Microsoft.WindowsAzure.ServiceRuntime
Assembly: Microsoft.WindowsAzure.ServiceRuntime (in Microsoft.WindowsAzure.ServiceRuntime.dll)
Assembly: Microsoft.WindowsAzure.ServiceRuntime (in Microsoft.WindowsAzure.ServiceRuntime.dll)
Property Value
Type: System.Collections.Generic.IDictionary A IDictionary 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. |
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Development Platforms
Windows Vista, Windows 7 and Windows Server 2008Target Platforms
Note