Click or drag to resize
IFormCollection Interface
Represents the collection of form values of the IRequest.

Namespace: CMS.Base.Internal
Assembly: CMS.Base (in CMS.Base.dll) Version: 13.0.131
Syntax
C#
public interface IFormCollection : IEnumerable<KeyValuePair<string, StringValues>>, 
	IEnumerable

The IFormCollection type exposes the following members.

Properties
  NameDescription
Public propertyCount
Gets the number of form items.
Public propertyFiles
Gets collection of files within the form.
Public propertyItem
Gets value of the form item specified by key.
Public propertyKeys
Gets collection containing name keys of the form.
Top
Methods
  NameDescription
Public methodContainsKey
Determines whether the collection contains a form item with specified name.
Public methodTryGetValue
Retrieves value of form item specified by given name.
Top
Extension Methods
See Also