Udostępnij za pośrednictwem


DiscoveryDocumentReference Konstruktory

Definicja

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ść href.

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

href
String

Odwołanie do dokumentu odnajdywania. Właściwość Ref jest ustawiona na wartość href.

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")

Dotyczy