SaaS CMS has officially launched! Learn more now.

Class XFormPostedData

Posted MVC data in XForm

Inheritance
System.Object
XFormPostedData
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: EPiServer.XForms.Util
Assembly: EPiServer.XForms.dll
Version: 8.11.0
Syntax
public class XFormPostedData

Constructors

XFormPostedData(XForm)

Declaration
public XFormPostedData(XForm xform)
Parameters
Type Name Description
XForm xform

Properties

Fragments

List of fragments, including html fragments

Declaration
public List<HtmlFragment> Fragments { get; set; }
Property Value
Type Description
System.Collections.Generic.List<HtmlFragment>

SelectedSubmit

The selected submit fragment, which the user has selected

Declaration
public SubmitFragment SelectedSubmit { get; set; }
Property Value
Type Description
SubmitFragment

XForm

The XForm definition

Declaration
public XForm XForm { get; }
Property Value
Type Description
XForm

XFormFragments

List of XForm fragments.

Declaration
public IEnumerable<XFormsFragment> XFormFragments { get; }
Property Value
Type Description
System.Collections.Generic.IEnumerable<XFormsFragment>

XFormParameter

Contains XFormBegin parameters

Declaration
public XFormParameters XFormParameter { get; set; }
Property Value
Type Description
XFormParameters

Methods

SetSelectedSubmit(NameValueCollection)

Tries to find and set the selected submit from posted data

Declaration
public void SetSelectedSubmit(NameValueCollection parameters)
Parameters
Type Name Description
System.Collections.Specialized.NameValueCollection parameters