Show / Hide Table of Contents

    Class AzureFunctionArgs

    This is the base class for function input. It includes Azure storage connection info used to access client configurations and security tokens.

    Inheritance
    System.Object
    AzureFunctionArgs
    ExcelExtractHandlerFunctionArgs
    ExcelMergeHandlerFunctionArgs
    WordMergeHandlerFunctionArgs
    Inherited Members
    System.Object.ToString()
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.ReferenceEquals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    Namespace:AzureFunctionsForOffice.Functions
    Assembly:AzureFunctionsForOffice.Functions.dll
    Syntax
    public abstract class AzureFunctionArgs
    Remarks

    This class is virtual because using it directly from the csx files creates assembly load conflicts. Therefore you are required to implement by sub-classing it for each function.

    Properties

    View Source

    StorageAccount

    Name of the Azure storage account

    Declaration
    public virtual string StorageAccount { get; set; }
    Property Value
    Type Description
    System.String
    View Source

    StorageAccountKey

    Access key to the Azure storage account

    Declaration
    public virtual string StorageAccountKey { get; set; }
    Property Value
    Type Description
    System.String
    • View Source
    Back to top Copyright © 2018 Doug Ware
    View project on Github