DiscoveryDocumentReference Конструкторы
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Инициализирует новый экземпляр класса DiscoveryDocumentReference.
Перегрузки
DiscoveryDocumentReference() |
Инициализирует новый экземпляр класса DiscoveryDocumentReference. |
DiscoveryDocumentReference(String) |
Инициализирует новый экземпляр класса DiscoveryDocumentReference путем задания для свойства Ref значения |
DiscoveryDocumentReference()
Инициализирует новый экземпляр класса DiscoveryDocumentReference.
public:
DiscoveryDocumentReference();
public DiscoveryDocumentReference ();
Public Sub New ()
Примеры
// Create a new instance of DiscoveryDocumentReference.
DiscoveryDocumentReference^ myDiscoveryDocumentReference = gcnew DiscoveryDocumentReference;
// Create a new instance of DiscoveryDocumentReference.
DiscoveryDocumentReference myDiscoveryDocumentReference =
new DiscoveryDocumentReference();
' Create a new instance of DiscoveryDocumentReference.
Dim myDiscoveryDocumentReference As _
New DiscoveryDocumentReference()
Применяется к
DiscoveryDocumentReference(String)
Инициализирует новый экземпляр класса DiscoveryDocumentReference путем задания для свойства Ref значения href
.
public:
DiscoveryDocumentReference(System::String ^ href);
public DiscoveryDocumentReference (string href);
new System.Web.Services.Discovery.DiscoveryDocumentReference : string -> System.Web.Services.Discovery.DiscoveryDocumentReference
Public Sub New (href As String)
Параметры
Примеры
DiscoveryDocumentReference^ myDiscoveryDocumentReference =
gcnew DiscoveryDocumentReference(
"http://localhost/Sample_cpp.disco" );
DiscoveryDocumentReference myDiscoveryDocumentReference =
new DiscoveryDocumentReference(
"http://localhost/Sample_cs.disco");
Dim myDiscoveryDocumentReference As New _
DiscoveryDocumentReference("http://localhost/Sample_vb.disco")