Skip to content

Commit 0f35715

Browse files
bcameron1231VesaJuvonen
authored andcommitted
Updating encoded ampersands (SharePoint#4813)
For Issue SharePoint#4805
1 parent 6e92ab8 commit 0f35715

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/sp-add-ins/handle-list-item-events-in-the-provider-hosted-add-in.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ The Office Developer Tools for Visual Studio includes a **Remote Event Receiver*
249249
var arrived = Convert.ToBoolean(properties.ItemEventProperties.AfterProperties["Arrived"]);
250250
var addedToInventory = Convert.ToBoolean(properties.ItemEventProperties.AfterProperties["Added_x0020_to_x0020_Inventory"]);
251251

252-
if (arrived && !addedToInventory)
252+
if (arrived && !addedToInventory)
253253
{
254254

255255
// TODO15: Add the item to inventory
@@ -296,7 +296,7 @@ The Office Developer Tools for Visual Studio includes a **Remote Event Receiver*
296296
var arrived = Convert.ToBoolean(properties.ItemEventProperties.AfterProperties["Arrived"]);
297297
var addedToInventory = Convert.ToBoolean(properties.ItemEventProperties.AfterProperties["Added_x0020_to_x0020_Inventory"]);
298298

299-
if (arrived && !addedToInventory)
299+
if (arrived && !addedToInventory)
300300
{
301301
using (SqlConnection conn = SQLAzureUtilities.GetActiveSqlConnection())
302302
using (SqlCommand cmd = conn.CreateCommand())
@@ -356,7 +356,7 @@ The Office Developer Tools for Visual Studio includes a **Remote Event Receiver*
356356
var arrived = Convert.ToBoolean(properties.ItemEventProperties.AfterProperties["Arrived"]);
357357
var addedToInventory = Convert.ToBoolean(properties.ItemEventProperties.AfterProperties["Added_x0020_to_x0020_Inventory"]);
358358

359-
if (arrived && !addedToInventory)
359+
if (arrived && !addedToInventory)
360360
{
361361
using (SqlConnection conn = SQLAzureUtilities.GetActiveSqlConnection())
362362
using (SqlCommand cmd = conn.CreateCommand())

0 commit comments

Comments
 (0)