ProjectServerManager.GetProjectRawData

ProjectServerManager.GetProjectRawData method

Obtient les données binaires du projet à des fins de dépannage.

public Stream GetProjectRawData(Guid projectGuid)
ParamètreTaperLa description
projectGuidGuidLe Guid du projet à lire.

Return_Value

Flux contenant les données brutes du projet.

Exemples

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", "mot de passe");
// Guid du projet que vous essayez d'obtenir.
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);
    }
}

Voir également