Show / Hide Table of Contents

Interface IDotNetFunction

Describes a .NET-implemented function.

Inherited Members
IFunction.Execute(IExecutionContext)
Namespace: MESL.SqlRace.Domain.Functions.DotNet
Assembly: MESL.SqlRace.Domain.dll
Syntax
public interface IDotNetFunction : IFunction

Properties

Name

Gets the name of the function.

Declaration
string Name { get; }
Property Value
Type Description
System.String

The name of the function. This property is used for debugging and diagnostic purposes only, but you should specify the same name in the function definition created during initialization.

Methods

Initialize(IFunctionManager)

Initialises this instance. The function manager should be used to create and build a function definition for the function, passing this instance as the function implementation definition.

Declaration
void Initialize(IFunctionManager functionManager)
Parameters
Type Name Description
IFunctionManager functionManager

The IFunctionManager that will be used to create and build the function.

Back to top Generated by DocFX