Table of Contents

Class CallbackRoutes

Namespace
nanoFramework.WebServer
Assembly
nanoFramework.WebServer.dll

Callback function for the various routes

public class CallbackRoutes
Inheritance
CallbackRoutes
Inherited Members
Extension Methods

Constructors

CallbackRoutes()

public CallbackRoutes()

Properties

Authentication

the authentication details

public Authentication Authentication { get; set; }

Property Value

Authentication

Callback

The method to call for a specific route

public MethodInfo Callback { get; set; }

Property Value

MethodInfo

CaseSensitive

Is the root case sensitive?

public bool CaseSensitive { get; set; }

Property Value

bool

Method

The http method ex GET or POST, leave string.Empty for any

public string Method { get; set; }

Property Value

string

Route

The route ex: api/gpio

public string Route { get; set; }

Property Value

string