LookupTableDataSet.LookupTableTreesRow.LookupTablesRow Property
Represents the specific lookup table where the node value is used.
Namespace: [LookupTable Web service]
Service reference: http://ServerName:32843/[Project Service Application GUID]/PSI/LookupTable.svc
Web service reference: http://ServerName/ProjectServerName/_vti_bin/PSI/LookupTable.asmx?wsdl
Syntax
'Declaration
Public Property LookupTablesRow As LookupTableDataSet.LookupTablesRow
Get
Set
'Usage
Dim instance As LookupTableDataSet.LookupTableTreesRow
Dim value As LookupTableDataSet.LookupTablesRow
value = instance.LookupTablesRow
instance.LookupTablesRow = value
public LookupTableDataSet.LookupTablesRow LookupTablesRow { get; set; }
Property Value
Type: [LookupTable Web service].LookupTableDataSet.LookupTablesRow
Examples
The following code fragment helps to show the meaning of the LookupTablesRow property. If the lutUid value is the GUID of a lookup table and LookupTableTrees[6] is a valid LookupTableTreesRow, then lutUidFromTreeNode gets the same GUID value. LookupTableWS is an arbitrary name for a reference to the LookupTable Web service.
. . .
Guid lutUid = new Guid("23bdb945-eacc-4390-af70-f8644683c5bb");
Guid[] lutUids = { lutUid };
LookupTableWS.LookupTableDataSet lut =
lookupTable.ReadLookupTablesByUids(lutUids, false, 1033);
LookupTableWS.LookupTableDataSet.LookupTableTreesRow lutTreesRow
= lut.LookupTableTrees[6];
LookupTableWS.LookupTableDataSet.LookupTablesRow lutRow =
lutTreesRow.LookupTablesRow;
Guid lutUidFromTreeNode = lutRow.LT_UID;
. . .
See Also
Reference
LookupTableDataSet.LookupTableTreesRow Class