Show / Hide Table of Contents

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 Source

DequeueCount

The dequeue count

Declaration
public int DequeueCount { get; set; }
Property Value
Type Description
System.Int32
| Improve this Doc View Source

ExpirationTime

The expiration time of the event

Declaration
public DateTimeOffset ExpirationTime { get; set; }
Property Value
Type Description
DateTimeOffset
| Improve this Doc View Source

Id

The message ID

Declaration
public string Id { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

InsertionTime

The insertion time of the message

Declaration
public DateTimeOffset InsertionTime { get; set; }
Property Value
Type Description
DateTimeOffset
| Improve this Doc View Source

NextVisibleTime

The next time the message will be visible

Declaration
public DateTimeOffset NextVisibleTime { get; set; }
Property Value
Type Description
DateTimeOffset
| Improve this Doc View Source

PopReceipt

The pop recepit

Declaration
public string PopReceipt { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

QueueTrigger

The trigger

Declaration
public string QueueTrigger { get; set; }
Property Value
Type Description
System.String

Extension Methods

OpenApiFluentValidationHelper.IsNumeric(Object)
OpenApiFluentValidationHelper.NumericToInt(Object)
OpenApiFluentValidationHelper.NumericToDouble(Object)
OpenApiFluentValidationHelper.NumericToDecimal(Object)
  • Improve this Doc
  • View Source
  • 0 Comments
In This Article
  • Properties
    • DequeueCount
    • ExpirationTime
    • Id
    • InsertionTime
    • NextVisibleTime
    • PopReceipt
    • QueueTrigger
  • Extension Methods
Back to top Copyright © 2018 James Randall