Skip to content

Commit 10a91eb

Browse files
committed
Fixed JSON and C# samples to resolve issue 6049.
1 parent eb8a56d commit 10a91eb

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

articles/data-factory/transform-data-using-dotnet-custom-activity.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,6 @@ The following JSON defines a sample Azure Batch linked service. For details, see
5858
"type": "LinkedServiceReference"
5959
}
6060
}
61-
"connectVia": {
62-
"referenceName": "<name of Integration Runtime>",
63-
"type": "IntegrationRuntimeReference"
64-
}
6561
}
6662
}
6763
```
@@ -215,7 +211,7 @@ namespace SampleApp
215211

216212
// From LinkedServices
217213
dynamic linkedServices = JsonConvert.DeserializeObject(File.ReadAllText("linkedServices.json"));
218-
Console.WriteLine(linkedServices[0].properties.typeProperties.connectionString.value);
214+
Console.WriteLine(linkedServices[0].properties.typeProperties.accountName);
219215
}
220216
}
221217
}

0 commit comments

Comments
 (0)