Skip to content

Instantly share code, notes, and snippets.

@brentstineman
Last active January 23, 2018 20:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brentstineman/cc334f0c51b238056569f2622d42e422 to your computer and use it in GitHub Desktop.
Save brentstineman/cc334f0c51b238056569f2622d42e422 to your computer and use it in GitHub Desktop.
Using the new Event Grid SDK for .NET
//
// A sample snippet showing how to use the Event Grid .NET SDK 1.0.0 to publish
// custom events to an Event Grid topic.
//
// The MIT License (MIT)
//
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
//THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
//IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
//FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
// create a list object for the events that will be send
List<EventGridEvent> eventList = new List<EventGridEvent>();
// loop through adding events to the list
foreach (var message in eventHubMessages)
{
EventGridEvent myEvent = new EventGridEvent()
{
Id = Guid.NewGuid().ToString(),
EventTime = DateTime.UtcNow,
EventType = $"{eventType}",
Subject = $"{eventMessage}",
Data = $"{eventData}",
DataVersion = "1.0"
};
eventList.Add(myEvent);
}
// create the topic credential
TopicCredentials topicCredentials = new TopicCredentials(topicKey);
// Create the client object and publish/send to topic
EventGridClient client = new EventGridClient(topicCredentials);
client.PublishEventsAsync($"{gridname}.{regionprefix}.eventgrid.azure.net", eventList).Wait();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment