DiscoveryDocumentReference Konstruktory
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Inicjuje nowe wystąpienie klasy DiscoveryDocumentReference.
Przeciążenia
DiscoveryDocumentReference() |
Inicjuje nowe wystąpienie klasy DiscoveryDocumentReference. |
DiscoveryDocumentReference(String) |
Inicjuje DiscoveryDocumentReference nowe wystąpienie klasy, ustawiając Ref właściwość na wartość |
DiscoveryDocumentReference()
Inicjuje nowe wystąpienie klasy DiscoveryDocumentReference.
public:
DiscoveryDocumentReference();
public DiscoveryDocumentReference ();
Public Sub New ()
Przykłady
// 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()
Dotyczy
DiscoveryDocumentReference(String)
Inicjuje DiscoveryDocumentReference nowe wystąpienie klasy, ustawiając Ref właściwość na wartość 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)
Parametry
Przykłady
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")