Amazon AWS SDK Guide de l'utilisateur Page 123

  • Télécharger
  • Ajouter à mon manuel
  • Imprimer
  • Page
    / 155
  • Table des matières
  • MARQUE LIVRES
  • Noté. / 5. Basé sur avis des utilisateurs
Vue de la page 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)
Vue de la page 122
1 2 ... 118 119 120 121 122 123 124 125 126 127 128 ... 154 155

Commentaires sur ces manuels

Pas de commentaire