ProjectInfo Class |
Namespace: Aspose.Tasks
The ProjectInfo type exposes the following members.
Name | Description | |
---|---|---|
![]() ![]() | ProjectInfo | Initializes a new instance of the ProjectInfo class. |
Name | Description | |
---|---|---|
![]() ![]() | CreatedDate |
Gets the date and time when the project was created.
|
![]() ![]() | Description |
Gets the description of the project.
|
![]() ![]() | Id |
Gets the unique identifier of the project.
|
![]() ![]() | IsCheckedOut |
Gets a value indicating whether the project is checked out.
|
![]() ![]() | LastPublishedDate |
Gets the most recent date when the project was published.
|
![]() ![]() | LastSavedDate |
Gets the most recent date when the project was saved.
|
![]() ![]() | Name |
Gets the name of the project.
|
Name | Description | |
---|---|---|
![]() | Equals | (Inherited from Object.) |
![]() | GetHashCode | (Inherited from Object.) |
![]() | GetType | (Inherited from Object.) |
![]() | ToString | (Inherited from Object.) |
const string SharepointDomainAddress = "https://contoso.sharepoint.com/sites/pwa"; const string UserName = "admin@contoso.onmicrosoft.com"; const string Password = "MyPassword"; var credentials = new ProjectServerCredentials(SharepointDomainAddress, UserName, Password); var reader = new ProjectServerManager(credentials); IEnumerable<ProjectInfo> list = reader.GetProjectList(); // read project's information Console.WriteLine("Print information about projects:"); foreach (var info in list) { Console.WriteLine("Id: " + info.Id); Console.WriteLine("Name: " + info.Name); Console.WriteLine("Description: " + info.Description); Console.WriteLine("Created Date: " + info.CreatedDate); Console.WriteLine("Last Saved Date: " + info.LastSavedDate); Console.WriteLine("Last Published Date: " + info.LastPublishedDate); Console.WriteLine("Is Checked Out: " + info.IsCheckedOut); }