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
    AppLauncherFunctionArgs
    CreateCredentialTokenFunctionArgs
    EventDispatchFunctionArgs
    GetACSAccessTokensArgs
    ValidateCredentialTokenFunctionArgs
    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:AzureFunctionsForSharePoint.Common
    Assembly:AzureFunctionsForSharePoint.Common.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

    | Improve this Doc View Source

    StorageAccount

    Name of the Azure storage account

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

    StorageAccountKey

    Access key to the Azure storage account

    Declaration
    public virtual string StorageAccountKey { get; set; }
    Property Value
    Type Description
    System.String
    • Improve this Doc
    • View Source
    Back to top Copyright © 2016 InstantQuick
    View project on Github