ProjectServerManager.CreateNewProject
İçindekiler
[
Saklamak
]CreateNewProject(Project)
Varsayılan kaydetme seçeneklerini kullanarak Project Server\Project Online örneğinde yeni proje oluşturur.
public void CreateNewProject(Project project)
Parametre | Tip | Tanım |
---|---|---|
project | Project | Project Server\Project Online örneğine kaydedilecek proje. |
istisnalar
istisna | şart |
---|---|
ProjectOnlineException | İletişim hatası veya bir sunucu tarafından döndürülen hata durumunda. |
Örnekler
Bu örnekte proje .mpp dosyasından yüklenir ve Project Online hesabına kaydedilir.
[C#]
var credentials = new ProjectServerCredentials("https://xxxxxx.sharepoint.com", "yyyyy@xxxxxxx.onmicrosoft.com", "şifre");
var project = new Project(@"sample.mpp");
ProjectServerManager manager = new ProjectServerManager(credentials);
manager.CreateNewProject(project);
Ayrıca bakınız
- class Project
- class ProjectServerManager
- ad alanı Aspose.Tasks
- toplantı Aspose.Tasks
CreateNewProject(Project, ProjectServerSaveOptions)
Belirtilen kaydetme seçeneklerini kullanarak Project Server\Project Online örneğinde yeni proje oluşturur.
public void CreateNewProject(Project project, ProjectServerSaveOptions saveOptions)
Parametre | Tip | Tanım |
---|---|---|
project | Project | Project Server\Project Online örneğine kaydedilecek proje. |
saveOptions | ProjectServerSaveOptions | ÖrneğiProjectServerSaveOptions sınıf. |
istisnalar
istisna | şart |
---|---|
ProjectOnlineException | İletişim hatası veya bir sunucu tarafından döndürülen hata durumunda. |
Örnekler
Bu örnekte proje .mpp dosyasından yüklenir ve Project Online hesabına kaydedilir.
[C#]
var credentials = new ProjectServerCredentials("https://xxxxxx.sharepoint.com", "yyyyy@xxxxxxx.onmicrosoft.com", "şifre");
var project = new Project(@"sample.mpp");
ProjectServerManager manager = new ProjectServerManager(credentials);
manager.CreateNewProject(project, new ProjectServerSaveOptions
{
ProjectName = "My new project"
});
Ayrıca bakınız
- class Project
- class ProjectServerSaveOptions
- class ProjectServerManager
- ad alanı Aspose.Tasks
- toplantı Aspose.Tasks