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", "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);
    }
}

यह सभी देखें