Class ContextAction.Result
Represents the result of an action.
Inherited Members
Namespace: DataWeb.Structure
Assembly: DataWeb.Core.dll
Syntax
public class ContextAction.Result
Properties
ContentType
The type of the file returned from the action.
Declaration
public string ContentType { get; set; }
Property Value
Type | Description |
---|---|
string |
Error
Contains information about any validation errors that occurred during the action.
Declaration
public ValidationError Error { get; set; }
Property Value
Type | Description |
---|---|
ValidationError |
FileName
The name of the file returned from the action.
Declaration
public string FileName { get; set; }
Property Value
Type | Description |
---|---|
string |
IsValid
Indicates whether the action is valid.
Declaration
public bool IsValid { get; set; }
Property Value
Type | Description |
---|---|
bool |
Stream
The data stream returned from the action.
Declaration
public Stream Stream { get; set; }
Property Value
Type | Description |
---|---|
Stream |
Value
The computed value returned from the action.
Declaration
public object Value { get; set; }
Property Value
Type | Description |
---|---|
object |