GetProjectRawData

ProjectServerManager.GetProjectRawData method

Λαμβάνει τα δυαδικά δεδομένα του έργου για σκοπούς αντιμετώπισης προβλημάτων.

public Stream GetProjectRawData(Guid projectGuid)
ΠαράμετροςΤύποςΠεριγραφή
projectGuidGuidΟ οδηγός του έργου για ανάγνωση.

Επιστρεφόμενη Αξία

Ροή που περιέχει ακατέργαστα δεδομένα έργου.

Παραδείγματα

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", "yyyyyy@xxxxxxx.onmicrosoft.com", "password");
// Οδηγός έργου που προσπαθείτε να αποκτήσετε.
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);
    }
}

Δείτε επίσης