Table of Contents

Class SubmitData

Namespace
Dynamicweb.Forms
Assembly
Dynamicweb.Forms.dll
[Serializable]
[DataContract]
public class SubmitData : DbObject
Inheritance
SubmitData
Inherited Members

Constructors

SubmitData()

public SubmitData()

Properties

FieldID

Gets or sets the field identifier.

[DataMember]
public int FieldID { get; set; }

Property Value

int

Fieldname

Gets or sets the field name.

[DataMember]
public string Fieldname { get; set; }

Property Value

string

SubmitID

Gets or sets the submit identifier.

[DataMember]
public int SubmitID { get; set; }

Property Value

int

Value

Gets or sets the value.

[DataMember]
public string Value { get; set; }

Property Value

string

Methods

GetSubmitDatas()

Gets the submit data.

public static List<SubmitData> GetSubmitDatas()

Returns

List<SubmitData>

List(Of SubmitData).

To top