EventGridPublisherClient.SendEvents Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
SendEvents(IEnumerable<CloudEvent>, CancellationToken) |
Publishes a set of CloudEvents to an Event Grid topic. |
SendEvents(IEnumerable<EventGridEvent>, CancellationToken) |
Publishes a set of EventGridEvents to an Event Grid topic. |
SendEvents(IEnumerable<BinaryData>, CancellationToken) |
Publishes a set of custom schema events to an Event Grid topic. |
SendEvents(IEnumerable<CloudEvent>, String, CancellationToken) |
Publishes a set of CloudEvents to an Event Grid topic. |
SendEvents(IEnumerable<CloudEvent>, CancellationToken)
- Source:
- EventGridPublisherClient.cs
- Source:
- EventGridPublisherClient.cs
Publishes a set of CloudEvents to an Event Grid topic.
public virtual Azure.Response SendEvents (System.Collections.Generic.IEnumerable<Azure.Messaging.CloudEvent> cloudEvents, System.Threading.CancellationToken cancellationToken = default);
abstract member SendEvents : seq<Azure.Messaging.CloudEvent> * System.Threading.CancellationToken -> Azure.Response
override this.SendEvents : seq<Azure.Messaging.CloudEvent> * System.Threading.CancellationToken -> Azure.Response
Public Overridable Function SendEvents (cloudEvents As IEnumerable(Of CloudEvent), Optional cancellationToken As CancellationToken = Nothing) As Response
Parameters
- cloudEvents
- IEnumerable<CloudEvent>
The set of events to be published to Event Grid.
- cancellationToken
- CancellationToken
An optional cancellation token instance to signal the request to cancel the operation.
Returns
Applies to
SendEvents(IEnumerable<EventGridEvent>, CancellationToken)
- Source:
- EventGridPublisherClient.cs
- Source:
- EventGridPublisherClient.cs
Publishes a set of EventGridEvents to an Event Grid topic.
public virtual Azure.Response SendEvents (System.Collections.Generic.IEnumerable<Azure.Messaging.EventGrid.EventGridEvent> eventGridEvents, System.Threading.CancellationToken cancellationToken = default);
abstract member SendEvents : seq<Azure.Messaging.EventGrid.EventGridEvent> * System.Threading.CancellationToken -> Azure.Response
override this.SendEvents : seq<Azure.Messaging.EventGrid.EventGridEvent> * System.Threading.CancellationToken -> Azure.Response
Public Overridable Function SendEvents (eventGridEvents As IEnumerable(Of EventGridEvent), Optional cancellationToken As CancellationToken = Nothing) As Response
Parameters
- eventGridEvents
- IEnumerable<EventGridEvent>
The set of events to be published to Event Grid.
- cancellationToken
- CancellationToken
An optional cancellation token instance to signal the request to cancel the operation.
Returns
Applies to
SendEvents(IEnumerable<BinaryData>, CancellationToken)
- Source:
- EventGridPublisherClient.cs
- Source:
- EventGridPublisherClient.cs
Publishes a set of custom schema events to an Event Grid topic.
public virtual Azure.Response SendEvents (System.Collections.Generic.IEnumerable<BinaryData> customEvents, System.Threading.CancellationToken cancellationToken = default);
abstract member SendEvents : seq<BinaryData> * System.Threading.CancellationToken -> Azure.Response
override this.SendEvents : seq<BinaryData> * System.Threading.CancellationToken -> Azure.Response
Public Overridable Function SendEvents (customEvents As IEnumerable(Of BinaryData), Optional cancellationToken As CancellationToken = Nothing) As Response
Parameters
- customEvents
- IEnumerable<BinaryData>
The set of custom schema events to be published to Event Grid.
- cancellationToken
- CancellationToken
An optional cancellation token instance to signal the request to cancel the operation.
Returns
Applies to
SendEvents(IEnumerable<CloudEvent>, String, CancellationToken)
- Source:
- EventGridPublisherClient.cs
- Source:
- EventGridPublisherClient.cs
Publishes a set of CloudEvents to an Event Grid topic.
public virtual Azure.Response SendEvents (System.Collections.Generic.IEnumerable<Azure.Messaging.CloudEvent> cloudEvents, string channelName, System.Threading.CancellationToken cancellationToken = default);
abstract member SendEvents : seq<Azure.Messaging.CloudEvent> * string * System.Threading.CancellationToken -> Azure.Response
override this.SendEvents : seq<Azure.Messaging.CloudEvent> * string * System.Threading.CancellationToken -> Azure.Response
Public Overridable Function SendEvents (cloudEvents As IEnumerable(Of CloudEvent), channelName As String, Optional cancellationToken As CancellationToken = Nothing) As Response
Parameters
- cloudEvents
- IEnumerable<CloudEvent>
The set of events to be published to Event Grid.
- channelName
- String
The partner topic channel to publish the event to.
- cancellationToken
- CancellationToken
An optional cancellation token instance to signal the request to cancel the operation.
Returns
Applies to
Azure SDK for .NET