次の方法で共有


SharePointListRWQueryConnection.SiteUrl プロパティ

SharepointListRWQueryConnection オブジェクトに関連付けられた SharePoint Foundation サイトの URL を表す Uri オブジェクトを取得または設定します。

名前空間:  Microsoft.Office.InfoPath
アセンブリ:  Microsoft.Office.InfoPath (Microsoft.Office.InfoPath.dll)

構文

'宣言
Public MustOverride Property SiteUrl As Uri
    Get
    Set
'使用
Dim instance As SharePointListRWQueryConnection
Dim value As Uri

value = instance.SiteUrl

instance.SiteUrl = value
public abstract Uri SiteUrl { get; set; }

プロパティ値

型: System.Uri
SharePoint Foundation サイトの URL を表すオブジェクト。

解説

SiteUrl プロパティによって返される Uri オブジェクトは、SharePoint サイトの URL に関する情報を取得するために使用できる、さまざまなプロパティとメソッドを提供します。

このメンバーには、現在開いているフォームと同じドメインで実行中のフォーム、またはクロスドメインのアクセス許可が与えられたフォームのみがアクセスできます。

この型またはメンバーには、Microsoft InfoPath Filler または Web ブラウザーで開かれたフォームを実行中のコードからアクセスできます。

次のコード例では、SiteUrl プロパティによって返される値に文字列変数を設定しています。

SharePointListRWQueryConnection spConnection = (SharePointListRWQueryConnection)this.DataConnections["Contacts"];
string spSiteURL = spConnection.SiteUrl.ToString();
Dim spConnection As SharePointListRWQueryConnection = _
   DirectCast(Me.DataConnections("Contacts"), _
   SharePointListRWQueryConnection)
Dim spSiteURL As String = _
   spConnection.SiteUrl.ToString()

関連項目

参照

SharePointListRWQueryConnection クラス

SharePointListRWQueryConnection メンバー

Microsoft.Office.InfoPath 名前空間