Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs-ref-services/latest/messaging-eventgrid-readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -205,10 +205,10 @@ Regardless of what schema your topic or domain is configured to use,
`EventGridPublisherClient` will be used to publish events to it. However, you must use the correct type to instantiate
it:

| Event Schema | Publishr Client Generic Instantiation |
| Event Schema | Publisher Client Generic Instantiation |
| ------------ | --------------------- |
| Event Grid Events | `EventGridPublisherClient<CloudEvent>` |
| Cloud Events | `EventGridPublisherClient<EventGridEvent>` |
| Event Grid Events | `EventGridPublisherClient<EventGridEvent>` |
| Cloud Events | `EventGridPublisherClient<CloudEvent>` |
| Custom Events | `EventGridPublisherClient<BinaryData>` |

Using the wrong type will result in a BadRequest error from the service and your events will not be published.
Expand Down