Show / Hide Table of Contents

    Class FunctionBase

    Functionality common to individual functions

    Inheritance
    System.Object
    FunctionBase
    AzureFunctionsForOfficeBase
    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 class FunctionBase

    Methods

    View Source

    Log(String)

    Fires the FunctionNotify event with a message

    Declaration
    public void Log(string message)
    Parameters
    Type Name Description
    System.String message

    The notification message

    Events

    View Source

    FunctionNotify

    A simple notification event. Listeners to this event can log messages as needed.

    Declaration
    public event FunctionNotificationEventHandler FunctionNotify
    Event Type
    Type Description
    FunctionNotificationEventHandler
    Remarks

    If you need more than just the simple Message property, extend FunctionNotificationEventArgs

    • View Source
    Back to top Copyright © 2018 Doug Ware
    View project on Github