ServerDocument Конструктор (String) (2007 System)
Обновлен: Ноябрь 2007
Инициализирует новый экземпляр класса ServerDocument, используя полный путь к документу, который требуется загрузить.
Пространство имен: Microsoft.VisualStudio.Tools.Applications
Сборка: Microsoft.VisualStudio.Tools.Applications.ServerDocument.v9.0 (в Microsoft.VisualStudio.Tools.Applications.ServerDocument.v9.0.dll)
Синтаксис
'Декларация
Public Sub New ( _
documentPath As String _
)
'Применение
Dim documentPath As String
Dim instance As New ServerDocument(documentPath)
public ServerDocument(
string documentPath
)
Параметры
- documentPath
Тип: System.String
Полный путь к документу, который требуется загрузить.
Исключения
Исключение | Условие |
---|---|
ArgumentNullException | Параметр documentPath равен nullссылка null (Nothing в Visual Basic), пуст или содержит только пробелы. |
FileNotFoundException | Файл, заданный в параметре documentPath, не существует. |
DocumentCustomizedWithPreviousRuntimeException | Файл, заданный в параметре documentPath, имеет настройку, созданную в предыдущей версии среды выполнения Visual Studio Tools for Office. |
UnknownCustomizationFileException | Visual Studio Tools for Office не поддерживает расширение имени файла, заданное в параметре documentPath. |
Заметки
Этот конструктор используется для получения доступа к кэшированным данным или манифесту развертывания в документе, находящемуся на диске. При использовании этого конструктора указанный документ открывается с правом доступа на чтение/запись.
Примеры
В следующем примере кода показывается, как использовать конструктор ServerDocument(String) для создания нового объекта ServerDocument, который загружает указанный документ. Затем в примере отображается URL-адрес манифеста развертывания для настройки Visual Studio Tools for Office, прикрепленной к документу.
Для этого примера требуются ссылки на сборки Microsoft.VisualStudio.Tools.Applications.ServerDocument.v9.0.dll, Microsoft.VisualStudio.Tools.Applications.Runtime.v9.0.dll и операторы Imports (в Visual Basic) или using (в C#) для пространств имен Microsoft.VisualStudio.Tools.Applications и Microsoft.VisualStudio.Tools.Applications.Runtime в начале файла с кодом.
Private Sub CreateServerDocumentFromPath(ByVal documentPath As String)
Dim runtimeVersion As Integer = 0
Dim serverDocument1 As ServerDocument = Nothing
Try
runtimeVersion = ServerDocument.GetCustomizationVersion(documentPath)
If runtimeVersion = 3 Then
serverDocument1 = New ServerDocument(documentPath)
MessageBox.Show("The URL of the deployment manifest is: " & vbLf & _
serverDocument1.DeploymentManifestUrl.ToString())
End If
Catch ex As System.IO.FileNotFoundException
System.Windows.Forms.MessageBox.Show("The specified document does not exist.")
Catch ex As UnknownCustomizationFileException
System.Windows.Forms.MessageBox.Show("The specified document has a file " & _
"extension that is not supported by Visual Studio Tools for Office.")
Finally
If Not (serverDocument1 Is Nothing) Then
serverDocument1.Close()
End If
End Try
End Sub
private void CreateServerDocumentFromPath(string documentPath)
{
int runtimeVersion = 0;
ServerDocument serverDocument1 = null;
try
{
runtimeVersion = ServerDocument.GetCustomizationVersion(documentPath);
if (runtimeVersion == 3)
{
serverDocument1 = new ServerDocument(documentPath);
MessageBox.Show("The URL of the deployment manifest is: \n" +
serverDocument1.DeploymentManifestUrl.ToString());
}
}
catch (System.IO.FileNotFoundException)
{
System.Windows.Forms.MessageBox.Show("The specified document does not exist.");
}
catch (UnknownCustomizationFileException)
{
System.Windows.Forms.MessageBox.Show("The specified document has a file " +
"extension that is not supported by Visual Studio Tools for Office.");
}
finally
{
if (serverDocument1 != null)
serverDocument1.Close();
}
}
Разрешения
- Полное доверие для непосредственно вызывающего метода. Этот член не может быть использован частично доверенным кодом. Дополнительные сведения см. в разделе Использование библиотек из не вполне надежного кода.
См. также
Ссылки
Microsoft.VisualStudio.Tools.Applications - пространство имен