Show / Hide Table of Contents

Class ParserOptions

Options for parsing HTTP bodies

Inheritance
Object
ParserOptions
Namespace: Seltzr.Options
Assembly: Seltzr.dll
Syntax
C#
public class ParserOptions

Properties

| Improve this Doc View Source

DefaultPropertyValues

Gets or sets a list of default values for parsed properties

C#
public Dictionary<PropertyInfo, Func<object>> DefaultPropertyValues { get; set; }
Property Value
Dictionary<PropertyInfo, Func<Object>>
| Improve this Doc View Source

IgnoredParseProperties

Gets or sets a list of properties that are ignored if their values are set

C#
public List<PropertyInfo> IgnoredParseProperties { get; set; }
Property Value
List<PropertyInfo>
| Improve this Doc View Source

ParseArrays

Gets or sets a value indicating whether or not the parser should accept arrays

C#
public bool ParseArrays { get; set; }
Property Value
Boolean
| Improve this Doc View Source

RequiredParseProperties

Gets or sets a list of properties that are required when parsing

C#
public List<PropertyInfo> RequiredParseProperties { get; set; }
Property Value
List<PropertyInfo>

Methods

| Improve this Doc View Source

Copy()

Makes a copy of these ParserOptions

C#
public ParserOptions Copy()
Returns

ParserOptions

A copy of these ParserOptions

  • Improve this Doc
  • View Source
Back to top Generated by DocFX