LoadOptions Class |
Namespace: Aspose.Tasks
The LoadOptions type exposes the following members.
Name | Description | |
---|---|---|
![]() | LoadOptions | Initializes a new instance of the LoadOptions class |
Name | Description | |
---|---|---|
![]() ![]() | ErrorHandler |
Gets or sets a callback method to handle xml parse errors.
|
![]() ![]() | Password |
Gets or sets a protection password.
|
![]() ![]() | PrimaveraOptions |
Gets or sets a specified instance of the PrimaveraXmlReadingOptions class.
|
Name | Description | |
---|---|---|
![]() | Equals | (Inherited from Object.) |
![]() | Finalize | (Inherited from Object.) |
![]() | GetHashCode | (Inherited from Object.) |
![]() | GetType | (Inherited from Object.) |
![]() | MemberwiseClone | (Inherited from Object.) |
![]() | ToString | (Inherited from Object.) |
using (var stream = new FileStream(DataDir + "PasswordProtectedProject.mpp", FileMode.Open)) { var options = new LoadOptions { Password = "password" }; var project = new Project(stream, options); Console.WriteLine(project.Get(Prj.Name)); }