nerdexam
Microsoft

70-573 · Question #271

You have a Microsoft .NET Framework console application that uses the SharePoint client object model. The application contains the following code segment. (Line numbers are included for reference…

The correct answer is B. <FieldRef Name='FileLeafRef'/>. MNEMONIC RULE: "FileLeafRef; documents are made out of Leaves" Identifies a field that contains information about the server-relative URL for the file node that is associated withthe specified SharePoint Foundation object. SPBuiltInFieldId.FileLeafRef Field

Developing for Data Access

Question

You have a Microsoft .NET Framework console application that uses the SharePoint client object model. The application contains the following code segment. (Line numbers are included for reference only.) 02 List sharedDocList = cCtx.Web.Lists.GetByTitle("Shared Documents"); 03 CamlQuery camlQuery = new CamlQuery(); 04 camlQuery.ViewXml = 05 @"<View> 06 <Query> 07 <Where> 08 <Eq> 09 10 <Value Type='Text'>Doc1.docx</Value> 11 </Eq> 12 </Where> 13 </Query> 14 </View>"; 15 ListItemCollection docLibItems = sharedDocList.GetItems(camlQuery); 16 cCtx.Load(sharedDocList); 17 cCtx.Load(docLibItems); 18 cCtx.ExecuteQuery(); You need to ensure that the application queries Shared Documents for a document named Doc1.docx. Which code element should you add at line 09?

Options

  • A<FieldRef Name='FileDirRef'/>
  • B<FieldRef Name='FileLeafRef'/>
  • C<FieldRef Name='FileRef'/>
  • D<FieldRef Name='File_x0020_Type'/>

How the community answered

(48 responses)
  • A
    10% (5)
  • B
    81% (39)
  • C
    2% (1)
  • D
    6% (3)

Explanation

MNEMONIC RULE: "FileLeafRef; documents are made out of Leaves" Identifies a field that contains information about the server-relative URL for the file node that is associated withthe specified SharePoint Foundation object. SPBuiltInFieldId.FileLeafRef Field

Topics

#CAML query#FileLeafRef#document library#list items

Community Discussion

No community discussion yet for this question.

Full 70-573 Practice