<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>CSOM Archives - Blog IT</title>
	<atom:link href="https://blogit.create.pt/tag/csom/feed/" rel="self" type="application/rss+xml" />
	<link>https://blogit.create.pt/tag/csom/</link>
	<description>Create IT blogger community</description>
	<lastBuildDate>Thu, 10 Jan 2019 12:46:18 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.1</generator>
	<item>
		<title>Using KeywordQuery with CSOM SharePoint Online</title>
		<link>https://blogit.create.pt/ricardocosta/2017/10/25/using-keywordquery-with-csom-sharepoint-online/</link>
					<comments>https://blogit.create.pt/ricardocosta/2017/10/25/using-keywordquery-with-csom-sharepoint-online/#comments</comments>
		
		<dc:creator><![CDATA[Ricardo Costa]]></dc:creator>
		<pubDate>Wed, 25 Oct 2017 14:27:12 +0000</pubDate>
				<category><![CDATA[SharePoint Online]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[CSOM]]></category>
		<category><![CDATA[sharepoint]]></category>
		<guid isPermaLink="false">http://blogit.create.pt/ricardocosta/?p=1744</guid>

					<description><![CDATA[<p>The post <a href="https://blogit.create.pt/ricardocosta/2017/10/25/using-keywordquery-with-csom-sharepoint-online/">Using KeywordQuery with CSOM SharePoint Online</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></description>
										<content:encoded><![CDATA[<pre class="brush: csharp; title: ; notranslate">

string username = &quot;***********&quot;;
string pwd = &quot;*********&quot;;
string siteURL = &quot;**********&quot;;

ClientContext context = new ClientContext(siteURL);
Web web = context.Web;
SecureString pass = new SecureString();
foreach (char c in pwd.ToCharArray()) pass.AppendChar(c);
context.Credentials = new SharePointOnlineCredentials(username, passWord);
try
{
    KeywordQuery query = new KeywordQuery(context);
    query.QueryText = &quot;ContentType:Factura AND PrecoOWSCURR&gt;10000&quot;;
    
    query.RowLimit = 10;
    query.RowsPerPage = 10;
    SearchExecutor search = new SearchExecutor(context);
    ClientResult&lt;ResultTableCollection&gt; results = search.ExecuteQuery(query);
    context.ExecuteQuery();

    foreach (var resultRow in results.Value&#x5B;0].ResultRows)
    {
        Console.WriteLine(&quot;{0}&quot;, resultRow&#x5B;&quot;Title&quot;]);
    }
}
catch (Exception e)
{
    Console.WriteLine(e.ToString());
    Console.ReadKey();
}

</pre>
<p>The post <a href="https://blogit.create.pt/ricardocosta/2017/10/25/using-keywordquery-with-csom-sharepoint-online/">Using KeywordQuery with CSOM SharePoint Online</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blogit.create.pt/ricardocosta/2017/10/25/using-keywordquery-with-csom-sharepoint-online/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>SP Editor &#8211; Create and update SharePoint Online/SP2013/SP2016 css/js files, inject files to web, manage web properties and list Webhook</title>
		<link>https://blogit.create.pt/fabiocarvalho/2017/05/27/sp-editor-create-and-update-sharepoint-onlinesp2013sp2016-cssjs-files-inject-files-to-web-manage-web-properties-and-list-webhook/</link>
					<comments>https://blogit.create.pt/fabiocarvalho/2017/05/27/sp-editor-create-and-update-sharepoint-onlinesp2013sp2016-cssjs-files-inject-files-to-web-manage-web-properties-and-list-webhook/#comments</comments>
		
		<dc:creator><![CDATA[Fábio Carvalho]]></dc:creator>
		<pubDate>Sat, 27 May 2017 07:47:54 +0000</pubDate>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[FrontEnd Development]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[CSOM]]></category>
		<category><![CDATA[PnP]]></category>
		<category><![CDATA[SharePoint 2013]]></category>
		<category><![CDATA[SharePoint 2016]]></category>
		<category><![CDATA[SharePoint Online]]></category>
		<guid isPermaLink="false">http://blogit.create.pt/fabiocarvalho/?p=3244</guid>

					<description><![CDATA[<p>Hi Everyone!!! Today i will share a fantastic Google Chrome Extension that you can use on your developments on SharePoint. A Google Chrome Extension for creating and updating files (js, css), injecting files to sites, modifying web/list propertybag values (add, edit, remove, index) and creating webhook subscriptions, edit/add/remove webparts from publishing pages and run sp-pnp-js [&#8230;]</p>
<p>The post <a href="https://blogit.create.pt/fabiocarvalho/2017/05/27/sp-editor-create-and-update-sharepoint-onlinesp2013sp2016-cssjs-files-inject-files-to-web-manage-web-properties-and-list-webhook/">SP Editor &#8211; Create and update SharePoint Online/SP2013/SP2016 css/js files, inject files to web, manage web properties and list Webhook</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Hi Everyone!!!</p>
<p>Today i will share a fantastic Google Chrome Extension that you can use on your developments on SharePoint.</p>
<p><img fetchpriority="high" decoding="async" class="aligncenter size-full wp-image-3284" src="http://blogit.create.pt/fabiocarvalho/wp-content/uploads/sites/271/2017/05/SPEditor.png" alt="" width="1222" height="770" /></p>
<p>A<strong> Google Chrome Extension</strong> for creating and updating files (js, css), injecting files to sites, modifying web/list propertybag values (add, edit, remove, index) and creating webhook subscriptions, edit/add/remove webparts from publishing pages and run sp-pnp-js typescript snippets in <strong>SP2013</strong>,<strong> SP2016</strong> and <strong>SharePoint Online</strong> from Chrome Developer Tools.</p>
<p><a href="https://chrome.google.com/webstore/search/speditor">https://chrome.google.com/webstore/search/speditor</a></p>
<p>Take a look at  the great introduction video by <em>Jeff</em> Jones!</p>
<div class="youtube-embed" data-video_id="iezuTO40xGA"><iframe title="SP Editor Chrome Extension" width="696" height="392" src="https://www.youtube.com/embed/iezuTO40xGA?feature=oembed&#038;enablejsapi=1" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></div>
<p>Thanks</p>
<p><span style="color: #800000"><a style="color: #800000" href="https://www.linkedin.com/in/fmrgc/"><strong>Fábio Carvalho</strong></a></span><br />
SharePoint Consultant<br />
<strong>|create|</strong><span style="color: #ff0000"><strong>it</strong></span><strong>|</strong></p>
<p>&nbsp;</p>
<p>The post <a href="https://blogit.create.pt/fabiocarvalho/2017/05/27/sp-editor-create-and-update-sharepoint-onlinesp2013sp2016-cssjs-files-inject-files-to-web-manage-web-properties-and-list-webhook/">SP Editor &#8211; Create and update SharePoint Online/SP2013/SP2016 css/js files, inject files to web, manage web properties and list Webhook</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blogit.create.pt/fabiocarvalho/2017/05/27/sp-editor-create-and-update-sharepoint-onlinesp2013sp2016-cssjs-files-inject-files-to-web-manage-web-properties-and-list-webhook/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>SharePoint Online &#8211; Internal Fields Names &#038; how to use SPServices to get them!!!</title>
		<link>https://blogit.create.pt/fabiocarvalho/2017/05/26/sharepoint-online-internal-fields-names-how-to-use-spservices-to-get-them/</link>
					<comments>https://blogit.create.pt/fabiocarvalho/2017/05/26/sharepoint-online-internal-fields-names-how-to-use-spservices-to-get-them/#comments</comments>
		
		<dc:creator><![CDATA[Fábio Carvalho]]></dc:creator>
		<pubDate>Fri, 26 May 2017 08:57:06 +0000</pubDate>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[CSOM]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[SharePoint 2013]]></category>
		<category><![CDATA[SharePoint 2016]]></category>
		<category><![CDATA[SharePoint Online]]></category>
		<category><![CDATA[SPServices]]></category>
		<guid isPermaLink="false">http://blogit.create.pt/fabiocarvalho/?p=3204</guid>

					<description><![CDATA[<p>Hi Everyone, Today i will show you how can you get internal field names in a SharePoint List Items. As you know SharePoint have two types of Names &#8211; Internal Name and Display Name, it is extremity important when you are developing SharePoint solution get your fields by internal name, the InternalName never changes, you [&#8230;]</p>
<p>The post <a href="https://blogit.create.pt/fabiocarvalho/2017/05/26/sharepoint-online-internal-fields-names-how-to-use-spservices-to-get-them/">SharePoint Online &#8211; Internal Fields Names &#038; how to use SPServices to get them!!!</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Hi Everyone,</p>
<p>Today i will show you how can you get <strong>internal field</strong> names in a<strong> SharePoint List Items</strong>.<br />
As you know SharePoint have<strong> two types</strong> of Names &#8211; <strong>Internal</strong> <strong>Name</strong> and <strong>Display</strong> <strong>Name</strong>, it is extremity important when you are developing SharePoint solution get your fields by internal name, the <strong>InternalName</strong> never changes, you only can change <strong>DisplayName</strong>, this maintain your <strong>solution stable</strong>.</p>
<p>So let&#8217;s Look some ways to get the I<strong>nternal Name</strong>:</p>
<ol>
<li>Open the List Settings page</li>
<li>Under the Columns section, select a column to view the Edit Column page</li>
<li>The URL of this page includes the internal name in the query string. For example, the URL for the <span style="color: #800000"><strong><tt>Created By</tt></strong></span> field includes the following query string <strong><tt>List=%7BF641CEF1%2DCDE2%2D49E1%2D9800%2D861A408EF890%7D&amp;Field=<span style="color: #800000">Author</span></tt></strong>. The value for the Field parameter, <strong><span style="color: #800000"><tt>Author</tt></span></strong>, is the internal name for<span style="color: #800000"><strong> <tt>Created By</tt></strong></span>.</li>
</ol>
<p>You can also apply a sort order on your list view on the column that you want get the internal name, this will generate an URL that contains the <span style="color: #800000"><strong>Internal Name</strong></span>:</p>
<p><strong>FolderCTID%3D0x012000DDDEBA09D4201845A62AEDBA6A906745-SortField%3D<span style="color: #800000">Author</span>-SortDir%3DAsc-</strong></p>
<p>Now i will demonstrate how you can get Internal Name by Display Name using <span style="color: #800000"><a style="color: #800000" href="https://spservices.codeplex.com/wikipage?title=$().SPServices.SPGetStaticFromDisplay&amp;referringTitle=Documentation" target="_blank" rel="noopener noreferrer">SPGetStaticFromDisplay</a></span></p>
<pre class="brush: jscript; title: ; notranslate"> 

var internalName = $().SPServices.SPGetStaticFromDisplay ({
  listName: &quot;Cars&quot;,
  columnDisplayName: &quot;Car Models&quot;
});

</pre>
<p><strong>Read more</strong>: http://sympmarc.com/2015/01/27/get-the-internalname-for-a-sharepoint-list-column/</p>
<p>Thanks</p>
<p><span style="color: #000000"><a style="color: #000000" href="https://www.linkedin.com/in/fmrgc/"><strong>Fábio Carvalho</strong></a></span><br />
SharePoint Consultant<br />
<strong>|create|</strong><span style="color: #ff0000"><strong>it</strong></span><strong>|</strong></p>
<p>&nbsp;</p>
<p>The post <a href="https://blogit.create.pt/fabiocarvalho/2017/05/26/sharepoint-online-internal-fields-names-how-to-use-spservices-to-get-them/">SharePoint Online &#8211; Internal Fields Names &#038; how to use SPServices to get them!!!</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blogit.create.pt/fabiocarvalho/2017/05/26/sharepoint-online-internal-fields-names-how-to-use-spservices-to-get-them/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>SharePoint &#8211; CSOM (Client Side Object Model) versions</title>
		<link>https://blogit.create.pt/fabiocarvalho/2017/02/12/sharepoint-csom-client-side-object-model-versions/</link>
					<comments>https://blogit.create.pt/fabiocarvalho/2017/02/12/sharepoint-csom-client-side-object-model-versions/#comments</comments>
		
		<dc:creator><![CDATA[Fábio Carvalho]]></dc:creator>
		<pubDate>Sun, 12 Feb 2017 12:28:47 +0000</pubDate>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[CSOM]]></category>
		<category><![CDATA[Nuget]]></category>
		<category><![CDATA[SDK]]></category>
		<category><![CDATA[VisualStudio]]></category>
		<guid isPermaLink="false">http://blogit.create.pt/fabiocarvalho/?p=1161</guid>

					<description><![CDATA[<p>Hey Everyone! Today, i will talk about CSOM versions, it is extremely important you have in mind that there are different version of CSOM according your target environment. The following figure shows the available CSOM versions: You can use download the SDK, Client Components on the following links: SharePoint Online Client Components SDK SharePoint Server [&#8230;]</p>
<p>The post <a href="https://blogit.create.pt/fabiocarvalho/2017/02/12/sharepoint-csom-client-side-object-model-versions/">SharePoint &#8211; CSOM (Client Side Object Model) versions</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Hey Everyone!</p>
<p>Today, i will talk about CSOM versions, it is extremely important you have in mind that there are different version of CSOM according your target environment.</p>
<p>The following figure shows the available <strong>CSOM versions</strong>:</p>
<p><img decoding="async" class="alignnone size-full wp-image-1171" src="http://blogit.create.pt/fabiocarvalho/wp-content/uploads/sites/271/2017/02/SharePointCSOMVersions.png" alt="" width="1000" height="421" /></p>
<p>You can use download the SDK, Client Components on the following links:</p>
<ul>
<li><a href="https://www.microsoft.com/en-us/download/details.aspx?id=42038">SharePoint Online Client Components SDK</a></li>
</ul>
<ul>
<li><a href="https://www.microsoft.com/en-us/download/details.aspx?id=51679">SharePoint Server 2016 Client Components SDK</a></li>
</ul>
<ul>
<li><a href="https://www.microsoft.com/en-us/download/details.aspx?id=35585">SharePoint Server 2013 Client Componets SDK</a></li>
</ul>
<p>Also for SharePoint Online Version you can use Nuget package:</p>
<ul>
<li><a href="https://www.nuget.org/packages/Microsoft.SharePointOnline.CSOM/">Microsoft.SharePointOnline.CSOM</a></li>
</ul>
<p><img decoding="async" class="alignnone  wp-image-1191" src="http://blogit.create.pt/fabiocarvalho/wp-content/uploads/sites/271/2017/02/Capture-1.png" alt="" width="388" height="45" srcset="https://blogit.create.pt/wp-content/uploads/2017/02/Capture-1.png 919w, https://blogit.create.pt/wp-content/uploads/2017/02/Capture-1-300x35.png 300w, https://blogit.create.pt/wp-content/uploads/2017/02/Capture-1-768x89.png 768w, https://blogit.create.pt/wp-content/uploads/2017/02/Capture-1-696x80.png 696w" sizes="(max-width: 388px) 100vw, 388px" /></p>
<p>Thanks</p>
<p><strong>Fábio Carvalho</strong><br />
SharePoint Consultant<br />
<strong>|create|</strong><span style="color: #ff0000"><strong>it</strong></span><strong>|</strong></p>
<p>The post <a href="https://blogit.create.pt/fabiocarvalho/2017/02/12/sharepoint-csom-client-side-object-model-versions/">SharePoint &#8211; CSOM (Client Side Object Model) versions</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blogit.create.pt/fabiocarvalho/2017/02/12/sharepoint-csom-client-side-object-model-versions/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
	</channel>
</rss>
