DiscoveryDocumentReference 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
初始化 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")