Table of Contents

Class MethodModel

Namespace
LinqToDB.DataModel
Assembly
linq2db.Tools.dll

Contains basic method (including lambda methods and constructors) attributes.

public sealed class MethodModel
Inheritance
MethodModel
Extension Methods

Constructors

MethodModel(string)

public MethodModel(string name)

Parameters

name string

Properties

CustomAttributes

List of additional custom attributes. Doesn't include metadata attributes.

public List<CodeAttribute>? CustomAttributes { get; set; }

Property Value

List<CodeAttribute>

Modifiers

Gets or sets method modifiers.

public Modifiers Modifiers { get; set; }

Property Value

Modifiers

Name

Gets or sets method name.

public string Name { get; set; }

Property Value

string

Summary

Gets or sets summary section text for method xml-doc comment.

public string? Summary { get; set; }

Property Value

string