Show / Hide Table of Contents

Class Serialization.Json.Delegate

An object for the purposes of serializing static delegates.

Inheritance
System.Object
Serialization.Json.Delegate
Namespace: Towel
Assembly: Towel.dll
Syntax
public class Delegate : object

Properties

| Improve this Doc View Source

DeclaringType

The assemlby qualified declaring type of the method.

Declaration
public string? DeclaringType { get; set; }
Property Value
Type Description
System.Nullable<System.String>
| Improve this Doc View Source

MethodName

The name of the method.

Declaration
public string? MethodName { get; set; }
Property Value
Type Description
System.Nullable<System.String>
| Improve this Doc View Source

ParameterTypes

The assembly qualified parameter types of the method.

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

ReturnType

The assembly qualified return type of the method.

Declaration
public string? ReturnType { get; set; }
Property Value
Type Description
System.Nullable<System.String>
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX