DiscoveryDocumentReference Constructors
Definitie
Belangrijk
Bepaalde informatie heeft betrekking op een voorlopige productversie die aanzienlijk kan worden gewijzigd voordat deze wordt uitgebracht. Microsoft biedt geen enkele expliciete of impliciete garanties met betrekking tot de informatie die hier wordt verstrekt.
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 |
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")