Class StorageQueueContext
Context information for Azure Storage queue triggered functions
Inheritance
System.Object
StorageQueueContext
Namespace: FunctionMonkey.Abstractions.Contexts
Assembly: FunctionMonkey.Abstractions.dll
Syntax
public class StorageQueueContext : object
Properties
| Improve this Doc View SourceDequeueCount
The dequeue count
Declaration
public int DequeueCount { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Int32 |
ExpirationTime
The expiration time of the event
Declaration
public DateTimeOffset ExpirationTime { get; set; }
Property Value
| Type | Description |
|---|---|
| DateTimeOffset |
Id
The message ID
Declaration
public string Id { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
InsertionTime
The insertion time of the message
Declaration
public DateTimeOffset InsertionTime { get; set; }
Property Value
| Type | Description |
|---|---|
| DateTimeOffset |
NextVisibleTime
The next time the message will be visible
Declaration
public DateTimeOffset NextVisibleTime { get; set; }
Property Value
| Type | Description |
|---|---|
| DateTimeOffset |
PopReceipt
The pop recepit
Declaration
public string PopReceipt { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
QueueTrigger
The trigger
Declaration
public string QueueTrigger { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |