Table of Contents

Class MapOptions

Namespace
Phoesion.Glow.SDK.Firefly.Middleware
Assembly
Phoesion.Glow.SDK.Firefly.Abstractions.dll

Options for the app.Map(..) middleware

public class MapOptions
Inheritance
object
MapOptions

Properties

Branch

The branch taken for a positive match.

public IGlowApplication Branch { get; set; }

Property Value

IGlowApplication

PathMatch

The path to match.

public string PathMatch { get; set; }

Property Value

string

PathMatchEndsWithSlash

public bool PathMatchEndsWithSlash { get; }

Property Value

bool

PathMatchRegEx

public Regex PathMatchRegEx { get; }

Property Value

Regex

PreserveMatchedPathSegment

If false, matched path would be removed from Request.Path and added to Request.PathBase Defaults to false.

public bool PreserveMatchedPathSegment { get; set; }

Property Value

bool