Table of Contents

Class Activity

Namespace
Dynamicweb.DataProcessing
Assembly
Dynamicweb.DataProcessing.dll
Represents a data processing activity.
public class Activity
Inheritance
Activity
Inherited Members

Constructors

Activity(string)

Initializes a new instance of the Activity class.
public Activity(string name)

Parameters

name string
The name.
See Also

Activity(string, string)

Initializes a new instance of the Activity class.
public Activity(string name, string description)

Parameters

name string
The name.
description string
The description.
See Also

Properties

CreatedDate

Gets the created date.
public DateTime CreatedDate { get; }

Property Value

DateTime
The created date.
See Also

Description

Gets or sets the description.
public string Description { get; set; }

Property Value

string
The description.
See Also

Id

Gets the identifier.
public string Id { get; }

Property Value

string
The identifier.
See Also

Name

Gets or sets the name.
public string Name { get; set; }

Property Value

string
The name.
See Also

UpdatedDate

Gets the updated date.
public DateTime UpdatedDate { get; }

Property Value

DateTime
The updated date.
See Also

See Also

To top