Table of Contents

Method GetString

Namespace
Sisk.Core.Entity
Assembly
Sisk.Core.dll

GetString(string, bool, Encoding?)

Reads an form item contents by it's name and returns their content as string.

public string? GetString(string name, bool ignoreCase = false, Encoding? encoding = null)

Parameters

name string

The form item name.

ignoreCase bool

Optional. Determines if this method should use an case-insensitive search to find the specified item.

encoding Encoding

Optional. Specifies the Encoding used to read the content.

Returns

string