2011-12-10 12 views

答えて

7

これは役立つはず - http://msdn.microsoft.com/en-us/library/windowsazure/gg433051.aspx

foreach (RoleInstance roleInst in RoleEnvironment.CurrentRoleInstance.Role.Instances) 
{ 
    Trace.WriteLine("Instance ID: " + roleInst.Id); 
    foreach (RoleInstanceEndpoint roleInstEndpoint in roleInst.InstanceEndpoints.Values) 
    { 
     Trace.WriteLine("Instance endpoint IP address and port: " + roleInstEndpoint.IPEndpoint); 
    } 
} 
+0

これだけのリストと同じAzureのクラウドインスタンス上のエンドポイントではなく、質問に要求されるように、すべてのAzure農場インスタンスのエンドポイントを。 –

+0

申し訳ありません - 私はあなたの質問に誤解しました、私はここで他の質問に答えています - http://stackoverflow.com/questions/20567435/list-all-instance-endpoints-in-azure-cloud/20629696#20629696 –