SharePointListRWQueryConnection.ListId 속성
SharePointListRWQueryConnection 개체와 연결된 SharePoint 목록의 목록 ID를 가져오거나 설정합니다.
네임스페이스: Microsoft.Office.InfoPath
어셈블리: Microsoft.Office.InfoPath(Microsoft.Office.InfoPath.dll)
구문
‘선언
Public MustOverride Property ListId As String
Get
Set
‘사용 방법
Dim instance As SharePointListRWQueryConnection
Dim value As String
value = instance.ListId
instance.ListId = value
public abstract string ListId { get; set; }
속성 값
형식: System.String
SharePoint 목록을 식별하는 GUID입니다.
주의
이 멤버는 현재 열려 있는 양식과 같은 도메인에서 실행하는 양식 또는 도메인 간 권한이 부여된 양식에서만 액세스할 수 있습니다.
이 형식 또는 멤버는 Microsoft InfoPath Filer 또는 웹 브라우저에서 연 양식에서 실행되는 코드에서 액세스할 수 있습니다.
예
다음 코드 예제에서는 문자열 변수를 ListId 속성에서 반환하는 값으로 설정합니다.
SharePointListRWQueryConnection spConnection = (SharePointListRWQueryConnection)this.DataConnections["Contacts"];
string spListID = spConnection.ListId.ToString();
Dim spConnection As SharePointListRWQueryConnection = _
DirectCast(Me.DataConnections("Contacts"), _
SharePointListRWQueryConnection)
Dim spListID As String = _
spConnection.ListId.ToString()
참고 항목
참조
SharePointListRWQueryConnection 클래스