Class ServerProjectInfo
Class used to store the information required for to store a project on a project server
Inheritance
Object
ServerProjectInfo
Inherited Members
Object.ToString()
Object.Equals(Object)
Object.Equals(Object, Object)
Object.ReferenceEquals(Object, Object)
Object.GetHashCode()
Object.GetType()
Object.MemberwiseClone()
Namespace: Sdl.ProjectAutomation.FileBased
Assembly: Sdl.ProjectAutomation.FileBased.dll
Syntax
public class ServerProjectInfo
Constructors
ServerProjectInfo()
Class used to store the information required for to store a project on a project server
Declaration
public ServerProjectInfo()
Properties
Customer
The customer this project belongs to
Declaration
public string Customer { get; set; }
Property Value
Type | Description |
---|---|
String |
Description
The description used on the server
Declaration
public string Description { get; set; }
Property Value
Type | Description |
---|---|
String |
DueDate
The date the project is due or null of no date is set
Declaration
public DateTime? DueDate { get; set; }
Property Value
Type | Description |
---|---|
Nullable<DateTime> |
Name
The name used to identify this project on the server
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
String |
OrganizationPath
The location on the server this project is stored
Declaration
public string OrganizationPath { get; set; }
Property Value
Type | Description |
---|---|
String |
ProjectId
The unique id of the project
Declaration
public Guid ProjectId { get; set; }
Property Value
Type | Description |
---|---|
Guid |
PublishedAt
The date the project was published to the server
Declaration
public DateTime PublishedAt { get; set; }
Property Value
Type | Description |
---|---|
DateTime |
PublishedBy
The user this project was published by
Declaration
public string PublishedBy { get; set; }
Property Value
Type | Description |
---|---|
String |
SourceLanguage
The source language of the project
Declaration
public Language SourceLanguage { get; set; }
Property Value
Type | Description |
---|---|
Language |
Status
The current status of the project
Declaration
public ProjectStatus Status { get; set; }
Property Value
Type | Description |
---|---|
ProjectStatus |
TargetLanguages
The target languages of the project
Declaration
public Language[] TargetLanguages { get; set; }
Property Value
Type | Description |
---|---|
Language[] |