Get sharepoint document library programmatically using Client Object Model :
Get sharepoint document library programmatically using Client Object Model : Hi here i will explain how to get sharepoint Document Library details using Silverlight. Here i get the document Library details in a C# custom list, and display that details in a combo box. OutPut Screen : Design Page : Xaml Code : Use the following code between User Control < Grid x:Name =" LayoutRoot " Background =" White "> < Button Content =" Button " x:Name =" btn " Height ="39" Width="64" Click =" btn_Click " Canvas.Left="6" Canvas.Top="96" Margin=" 12,41,1124,619 " /> < ComboBox Height ="38" HorizontalAlignment ="Left" Margin =" 103,42,0,0 " Name =" comboBox1 " VerticalAlignment =" Top " Width=" 568 " /> </ Grid > C# Code : using System; using System....