# ItemDelivered Constructors

[Type overview](/orleans/docs/api/csharp/microsoft.orleans.streaming/orleans.streaming.diagnostics.streamingevents.itemdelivered/)

## ItemDelivered(string, StreamId, Guid, SiloAddress?, StreamSequenceToken?) {#constructor-string-orleans-runtime-streamid-system-guid-orleans-runtime-siloaddr-f8a20846}

[Dedicated page](/orleans/docs/api/csharp/microsoft.orleans.streaming/orleans.streaming.diagnostics.streamingevents.itemdelivered/constructors/constructor-string-orleans-runtime-streamid-system-guid-orleans-runtime-siloaddr-f8a20846/)

[Source](https://github.com/dotnet/orleans/blob/e4e752cedecc2976811db49802c7a999b1f1c704/src/Orleans.Streaming/Diagnostics/StreamingEvents.cs#L364-L379)

```csharp
public ItemDelivered(string streamProvider, StreamId streamId, Guid subscriptionId, SiloAddress? siloAddress, StreamSequenceToken? sequenceToken)
```

Event payload for when an individual item from a stream batch is delivered to a consumer.

### Parameters

- `streamProvider` (`string`): The name of the stream provider.
- `streamId` (`StreamId`): The stream ID.
- `subscriptionId` (`Guid`): The subscription ID of the consumer.
- `siloAddress` (`SiloAddress?`): The address of the silo handling this delivery.
- `sequenceToken` (`StreamSequenceToken?`): The sequence token of the delivered item.
