Class ProjectInfoProvider
Implementation of IProjectInfo; create through factory (see remarks)
Inheritance
System.Object
ProjectInfoProvider
Assembly: SoDataBase.dll
Syntax
public class ProjectInfoProvider : Object, IProjectInfo3, IProjectInfo2, IProjectInfo
Properties
CustomFields
Declaration
public Dictionary<string, string> CustomFields { get; }
Property Value
Type |
Description |
System.Collections.Generic.Dictionary<System.String, System.String> |
|
Description
Declaration
public string Description { get; }
Property Value
Type |
Description |
System.String |
|
EventDate
Declaration
public string EventDate { get; }
Property Value
Type |
Description |
System.String |
|
HasGuide
Declaration
public bool HasGuide { get; }
Property Value
Type |
Description |
System.Boolean |
|
InfoText
Declaration
public string InfoText { get; }
Property Value
Type |
Description |
System.String |
|
Manager
Declaration
public string Manager { get; }
Property Value
Type |
Description |
System.String |
|
Name
Declaration
public string Name { get; }
Property Value
Type |
Description |
System.String |
|
NextMileStoneAppointmentId
Declaration
public int NextMileStoneAppointmentId { get; }
Property Value
Type |
Description |
System.Int32 |
|
NextMilestoneDate
Declaration
public DateTime NextMilestoneDate { get; }
Property Value
Type |
Description |
System.DateTime |
|
Number
Declaration
public string Number { get; }
Property Value
Type |
Description |
System.String |
|
Project
Declaration
public Project Project { get; }
Property Value
ProjectEndDate
Declaration
public DateTime ProjectEndDate { get; }
Property Value
Type |
Description |
System.DateTime |
|
ProjectId
Declaration
public int ProjectId { get; }
Property Value
Type |
Description |
System.Int32 |
|
PublishEndDate
Declaration
public string PublishEndDate { get; }
Property Value
Type |
Description |
System.String |
|
PublishStartDate
Declaration
public string PublishStartDate { get; }
Property Value
Type |
Description |
System.String |
|
Status
Declaration
public string Status { get; }
Property Value
Type |
Description |
System.String |
|
Type
Declaration
public string Type { get; }
Property Value
Type |
Description |
System.String |
|
Web
Declaration
public string Web { get; }
Property Value
Type |
Description |
System.String |
|
WebId
Declaration
public int WebId { get; }
Property Value
Type |
Description |
System.Int32 |
|
Methods
GetUserDefinedDecimal(Int32)
Return a user defined value of type decimal
Declaration
public string GetUserDefinedDecimal(int fieldNo)
Parameters
Type |
Name |
Description |
System.Int32 |
fieldNo |
Index of field to retrieve value for
|
Returns
Type |
Description |
System.String |
String representation of the value of specified field
|
GetUserDefinedDecimal(String)
Get the decimal udef value based on the prog.id name of the udef field.
Declaration
public double GetUserDefinedDecimal(string progId)
Parameters
Type |
Name |
Description |
System.String |
progId |
Program name of udef field
|
Returns
Type |
Description |
System.Double |
double value of field, or NAN if field not found
|
GetUserDefinedInt(Int32)
Return a user defined value of type int
Declaration
public string GetUserDefinedInt(int fieldNo)
Parameters
Type |
Name |
Description |
System.Int32 |
fieldNo |
Index of field to retrieve value for
|
Returns
Type |
Description |
System.String |
String representation of the value of specified field
|
GetUserDefinedInt(String)
Get the int udef value based on the prog.id name of the udef field.
Declaration
public int GetUserDefinedInt(string progId)
Parameters
Type |
Name |
Description |
System.String |
progId |
Program name of udef field
|
Returns
Type |
Description |
System.Int32 |
int value of field, or MINVALUE if field not found
|
GetUserDefinedString(Int32)
Return a user defined value of type string
Declaration
public string GetUserDefinedString(int fieldNo)
Parameters
Type |
Name |
Description |
System.Int32 |
fieldNo |
Index of field to retrieve value for
|
Returns
Type |
Description |
System.String |
Value of specified field
|
GetUserDefinedString(String)
Get the string udef value based on the prog.id name of the udef field.
Declaration
public string GetUserDefinedString(string progId)
Parameters
Type |
Name |
Description |
System.String |
progId |
Program name of udef field
|
Returns
Type |
Description |
System.String |
string value of field, or NULL if field not found
|
Implements
Extension Methods
EnumUtil.MapEnums<From, To>(From)