CanRead

ProjectFileInfo.CanRead property

Gets a value indicating whether defines can Aspose.Tasks process the project file.

public bool CanRead { get; }

Examples

Shows how to read project file info.

var info = Project.GetProjectFileInfo(DataDir + "Project.xml");
Console.WriteLine("CanRead: " + info.CanRead);
Console.WriteLine("ProjectApplicationInfo: " + info.ProjectApplicationInfo);
Console.WriteLine("ProjectFileFormat: " + info.ProjectFileFormat);

See Also