Amazon AWS SDK Podręcznik Użytkownika Strona 123

  • Pobierz
  • Dodaj do moich podręczników
  • Drukuj
  • Strona
    / 155
  • Spis treści
  • BOOKMARKI
  • Oceniono. / 5. Na podstawie oceny klientów
Przeglądanie stron 122
if (topic.Attributes.Count > 0)
{
Console.WriteLine(" Attributes:");
foreach (var attr in topic.Attributes)
{
Console.WriteLine("{0} = {1}", attr.Key, attr.Value);
}
}
}
}
var subs = sns.GetSubscriptions();
if (subs.Any())
{
Console.WriteLine("Subscriptions:");
foreach (var sub in subs)
{
Console.WriteLine(" Subscription ARN: {0}", sub.Arn);
var attrs = sub.Attributes;
if (attrs.Any())
{
Console.WriteLine(" Attributes:");
foreach (var attr in attrs)
{
Console.WriteLine("{0} = {1}", attr.Key, attr.Value);
}
}
}
}
For related API reference information, see Amazon.SNS.Resources.
Amazon Simple Queue Service Programming
with the AWS SDK for .NET
The AWS SDK for .NET supports Amazon Simple Queue Service (Amazon SQS), which is a messaging
queue service that handles message or workflows between other components in a system. For more
information, see Amazon SQS
The following information introduces you to the Amazon SQS programming models in the SDK for .NET.
Topics
Programming Models (p. 120)
Version v2.0.0
119
AWS SDK for .NET Developer Guide
Amazon Simple Queue Service (Amazon SQS)
Przeglądanie stron 122
1 2 ... 118 119 120 121 122 123 124 125 126 127 128 ... 154 155

Komentarze do niniejszej Instrukcji

Brak uwag