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. |
ExpirationTime
The expiration time of the event
Declaration
public DateTimeOffset ExpirationTime { get; set; }
Property Value
Type | Description |
---|---|
Date |
Id
The message ID
Declaration
public string Id { get; set; }
Property Value
Type | Description |
---|---|
System. |
InsertionTime
The insertion time of the message
Declaration
public DateTimeOffset InsertionTime { get; set; }
Property Value
Type | Description |
---|---|
Date |
NextVisibleTime
The next time the message will be visible
Declaration
public DateTimeOffset NextVisibleTime { get; set; }
Property Value
Type | Description |
---|---|
Date |
PopReceipt
The pop recepit
Declaration
public string PopReceipt { get; set; }
Property Value
Type | Description |
---|---|
System. |
QueueTrigger
The trigger
Declaration
public string QueueTrigger { get; set; }
Property Value
Type | Description |
---|---|
System. |