You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: powerapps-docs/developer/common-data-service/webapi/enhanced-quick-start.md
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -35,7 +35,7 @@ Enabling this requires three steps:
35
35
36
36
1.[Add Reference to System.Configuration to the Visual Studio project](#add-reference-to-systemconfiguration-to-the-visual-studio-project)
37
37
1.[Edit the application configuration file](#edit-the-application-configuration-file)
38
-
1.[Add using directive to Program.cs](#add-using-directive-to-programcs)
38
+
1.[Add using statement to Program.cs](#add-using-statement-to-programcs)
39
39
40
40
41
41
### Add Reference to System.Configuration to the Visual Studio project
@@ -76,9 +76,9 @@ This creates a connection string that can be referenced by name, in this case `C
76
76
77
77
Edit the connection string `Url`, `Username` and `Password` values in the `connectionString` to match what you need to connect to your Common Data Service environment.
78
78
79
-
### Add using directive to Program.cs
79
+
### Add using statement to Program.cs
80
80
81
-
At the top of your Program.cs file, add this using directive:
81
+
At the top of your Program.cs file, add this using statement:
82
82
83
83
```csharp
84
84
using System.Configuration;
@@ -96,7 +96,7 @@ These helpers are also used in the [SampleHelper.cs](https://github.com/Microsof
96
96
> [!NOTE]
97
97
> The name of the class will determine how you will reference these helper properties and methods within your `Program.cs`. The remaining instructions will expect you named it `SampleHelpers`, so remember if you named it something else.
98
98
99
-
1. Add the following `using` directives:
99
+
1. Add the following `using` statements:
100
100
101
101
```csharp
102
102
using Microsoft.IdentityModel.Clients.ActiveDirectory;
@@ -343,7 +343,7 @@ In your Visual Studio project perform the following steps:
343
343
344
344
In this way the `Program` class in `ProgramMethods.cs` file is just an extension of the original `Program` class in the `Program.cs` file.
345
345
346
-
1. Add the following using directives to the top of the `ProgramMethods.cs` file.
346
+
1. Add the following using statements to the top of the `ProgramMethods.cs` file.
0 commit comments