GetProjectRawData
ProjectServerManager.GetProjectRawData method
トラブルシューティングの目的でプロジェクトのバイナリ データを取得します。
public Stream GetProjectRawData(Guid projectGuid)
パラメータ | タイプ | 説明 |
---|---|---|
projectGuid | Guid | 読み取るプロジェクトのガイド。 |
戻り値
生のプロジェクト データを含むストリーム。
例
In this example the debug info for the specific project is retrieved. You can pass the resulting "debug.zip" to the support team for troubleshooting purposes.
[C#]
var credentials = new ProjectServerCredentials("https://xxxxxx.sharepoint.com", "yyyyy@xxxxxxx.onmicrosoft.com", "パスワード");
// 取得しようとしているプロジェクトのガイド。
var projectGuid = new Guid("e0294bfb-5657-45c8-9cc5-82169fb95d69");
ProjectServerManager manager = new ProjectServerManager(credentials);
using (var fileStream = File.OpenWrite(@"c:\debug.zip"))
{
using (var stream = manager.GetProjectRawData(projectGuid))
{
stream.CopyTo(fileStream);
}
}
関連項目
- class ProjectServerManager
- 名前空間 Aspose.Tasks
- 組み立て Aspose.Tasks