# StreamDeliveryFailureEntity Properties

[Type overview](/orleans/docs/api/csharp/microsoft.orleans.streaming.azurestorage/orleans.providers.streams.persistentstreams.streamdeliveryfailureentity/)

## ETag {#etag-5b5c5e4b}

[Dedicated page](/orleans/docs/api/csharp/microsoft.orleans.streaming.azurestorage/orleans.providers.streams.persistentstreams.streamdeliveryfailureentity/properties/etag-5b5c5e4b/)

[Source](https://github.com/dotnet/orleans/blob/e4e752cedecc2976811db49802c7a999b1f1c704/src/Azure/Orleans.Streaming.AzureStorage/Providers/Streams/PersistentStreams/StreamDeliveryFailureEntity.cs)

```csharp
public ETag ETag
```

Gets or sets the entity's ETag.

### Value

A string containing the ETag value for the entity.

## PartitionKey {#partitionkey-fc306813}

[Dedicated page](/orleans/docs/api/csharp/microsoft.orleans.streaming.azurestorage/orleans.providers.streams.persistentstreams.streamdeliveryfailureentity/properties/partitionkey-fc306813/)

[Source](https://github.com/dotnet/orleans/blob/e4e752cedecc2976811db49802c7a999b1f1c704/src/Azure/Orleans.Streaming.AzureStorage/Providers/Streams/PersistentStreams/StreamDeliveryFailureEntity.cs)

```csharp
public string PartitionKey
```

The partition key is a unique identifier for the partition within a given table and forms the first part of an entity's primary key.

### Value

A string containing the partition key for the entity.

## RowKey {#rowkey-68233069}

[Dedicated page](/orleans/docs/api/csharp/microsoft.orleans.streaming.azurestorage/orleans.providers.streams.persistentstreams.streamdeliveryfailureentity/properties/rowkey-68233069/)

[Source](https://github.com/dotnet/orleans/blob/e4e752cedecc2976811db49802c7a999b1f1c704/src/Azure/Orleans.Streaming.AzureStorage/Providers/Streams/PersistentStreams/StreamDeliveryFailureEntity.cs)

```csharp
public string RowKey
```

The row key is a unique identifier for an entity within a given partition. Together the `Azure.Data.Tables.ITableEntity.PartitionKey` and RowKey uniquely identify every entity within a table.

### Value

A string containing the row key for the entity.

## SequenceToken {#sequencetoken-9b01d0c7}

[Dedicated page](/orleans/docs/api/csharp/microsoft.orleans.streaming.azurestorage/orleans.providers.streams.persistentstreams.streamdeliveryfailureentity/properties/sequencetoken-9b01d0c7/)

[Source](https://github.com/dotnet/orleans/blob/e4e752cedecc2976811db49802c7a999b1f1c704/src/Azure/Orleans.Streaming.AzureStorage/Providers/Streams/PersistentStreams/StreamDeliveryFailureEntity.cs)

```csharp
public byte[] SequenceToken
```

Serialized sequence token of the event that failed delivery.

## StreamGuid {#streamguid-0c807ed7}

[Dedicated page](/orleans/docs/api/csharp/microsoft.orleans.streaming.azurestorage/orleans.providers.streams.persistentstreams.streamdeliveryfailureentity/properties/streamguid-0c807ed7/)

[Source](https://github.com/dotnet/orleans/blob/e4e752cedecc2976811db49802c7a999b1f1c704/src/Azure/Orleans.Streaming.AzureStorage/Providers/Streams/PersistentStreams/StreamDeliveryFailureEntity.cs)

```csharp
public string StreamGuid
```

Guid Id of the stream on which the failure occurred.

## StreamNamespace {#streamnamespace-db3c49dd}

[Dedicated page](/orleans/docs/api/csharp/microsoft.orleans.streaming.azurestorage/orleans.providers.streams.persistentstreams.streamdeliveryfailureentity/properties/streamnamespace-db3c49dd/)

[Source](https://github.com/dotnet/orleans/blob/e4e752cedecc2976811db49802c7a999b1f1c704/src/Azure/Orleans.Streaming.AzureStorage/Providers/Streams/PersistentStreams/StreamDeliveryFailureEntity.cs)

```csharp
public string StreamNamespace
```

Namespace of the stream on which the failure occurred.

## StreamProviderName {#streamprovidername-5d2c8ed0}

[Dedicated page](/orleans/docs/api/csharp/microsoft.orleans.streaming.azurestorage/orleans.providers.streams.persistentstreams.streamdeliveryfailureentity/properties/streamprovidername-5d2c8ed0/)

[Source](https://github.com/dotnet/orleans/blob/e4e752cedecc2976811db49802c7a999b1f1c704/src/Azure/Orleans.Streaming.AzureStorage/Providers/Streams/PersistentStreams/StreamDeliveryFailureEntity.cs)

```csharp
public string StreamProviderName
```

Name of the stream provider generating this failure.

## SubscriptionId {#subscriptionid-a8b3505a}

[Dedicated page](/orleans/docs/api/csharp/microsoft.orleans.streaming.azurestorage/orleans.providers.streams.persistentstreams.streamdeliveryfailureentity/properties/subscriptionid-a8b3505a/)

[Source](https://github.com/dotnet/orleans/blob/e4e752cedecc2976811db49802c7a999b1f1c704/src/Azure/Orleans.Streaming.AzureStorage/Providers/Streams/PersistentStreams/StreamDeliveryFailureEntity.cs)

```csharp
public Guid SubscriptionId
```

Id of the subscription on which this delivery failure occurred.

## Timestamp {#timestamp-80b45970}

[Dedicated page](/orleans/docs/api/csharp/microsoft.orleans.streaming.azurestorage/orleans.providers.streams.persistentstreams.streamdeliveryfailureentity/properties/timestamp-80b45970/)

[Source](https://github.com/dotnet/orleans/blob/e4e752cedecc2976811db49802c7a999b1f1c704/src/Azure/Orleans.Streaming.AzureStorage/Providers/Streams/PersistentStreams/StreamDeliveryFailureEntity.cs)

```csharp
public DateTimeOffset? Timestamp
```

The Timestamp property is a DateTime value that is maintained on the server side to record the time an entity was last modified. The Table service uses the Timestamp property internally to provide optimistic concurrency. The value of Timestamp is a monotonically increasing value, meaning that each time the entity is modified, the value of Timestamp increases for that entity. This property should not be set on insert or update operations (the value will be ignored).

### Value

A `System.DateTimeOffset` containing the timestamp of the entity.
