DiscoveryDocumentReference Constructors

Definitie

Initialiseert een nieuw exemplaar van de DiscoveryDocumentReference klasse.

Overloads

Name Description
DiscoveryDocumentReference()

Initialiseert een nieuw exemplaar van de DiscoveryDocumentReference klasse.

DiscoveryDocumentReference(String)

Initialiseert een nieuw exemplaar van de DiscoveryDocumentReference klasse, waarbij de Ref eigenschap wordt ingesteld op de waarde van href.

DiscoveryDocumentReference()

Initialiseert een nieuw exemplaar van de DiscoveryDocumentReference klasse.

public:
 DiscoveryDocumentReference();
public DiscoveryDocumentReference();
Public Sub New ()

Voorbeelden

// 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()

Van toepassing op

DiscoveryDocumentReference(String)

Initialiseert een nieuw exemplaar van de DiscoveryDocumentReference klasse, waarbij de Ref eigenschap wordt ingesteld op de waarde van 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)

Parameters

href
String

Verwijzing naar een detectiedocument. De Ref eigenschap is ingesteld op de waarde van href.

Voorbeelden

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

Van toepassing op