Share via


DatabaseModule.AddFunction Method (String, String, String, String, UInt32)

 

Adds a function record for this module to the database by using the provided parameters. This class and its members are reserved for internal use and are not intended to be used in your code.

Namespace:   Microsoft.VisualStudio.Coverage.Analysis.Database
Assembly:  Microsoft.VisualStudio.Coverage.Analysis (in Microsoft.VisualStudio.Coverage.Analysis.dll)

Syntax

public DatabaseFunction AddFunction(
    string name,
    string undecoratedName,
    string namespaceName,
    string className,
    uint symbolId
)
public:
DatabaseFunction^ AddFunction(
    String^ name,
    String^ undecoratedName,
    String^ namespaceName,
    String^ className,
    unsigned int symbolId
)
member AddFunction : 
        name:string *
        undecoratedName:string *
        namespaceName:string *
        className:string *
        symbolId:uint32 -> DatabaseFunction
Public Function AddFunction (
    name As String,
    undecoratedName As String,
    namespaceName As String,
    className As String,
    symbolId As UInteger
) As DatabaseFunction

Parameters

  • undecoratedName
    Type: System.String

    The undecorated name of the function.

  • namespaceName
    Type: System.String

    The name of the namespace for the function.

  • className
    Type: System.String

    The name of the class for the function.

  • symbolId
    Type: System.UInt32

    The symbol identifier for the function.

Return Value

Type: Microsoft.VisualStudio.Coverage.Analysis.Database.DatabaseFunction

A database function.

See Also

DatabaseFunction
DatabaseModule Class
Microsoft.VisualStudio.Coverage.Analysis.Database Namespace

Return to top