Skip to content

Commit 4dbc507

Browse files
committed
edits
1 parent a625b9e commit 4dbc507

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

docs/data-tools/windows-communication-foundation-services-and-wcf-data-services-in-visual-studio.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ Select a service endpoint by following these steps:
168168

169169
1. When you enter the code, an IntelliSense list displays that includes the overloads for the constructor. Select the `endpointConfigurationName As String` overload.
170170

171-
1. After you select the overload, enter `="<Endpoint>"`, where `<Endpoint>` is the name of the endpoint service you want to use.
171+
1. After you select the overload, enter `="<ServiceEndpoint>"`, where `<ServiceEndpoint>` is the name of the endpoint service you want to use.
172172

173173
> [!TIP]
174174
> The names of the available endpoints are defined in the *app.config* file.
@@ -185,16 +185,15 @@ To find the available endpoints for a WCF service, follow these steps:
185185

186186
When the service reference provides multiple endpoints, there are two or more `<Endpoint>` tags.
187187

188-
1. In the `<EndPoint>` tag definition, locate the `name="<Endpoint>"` parameter (where `<Endpoint>` represents an endpoint name). This value is the name for the endpoint that can be passed to the `endpointConfigurationName As String` overload of a constructor for a service reference.
188+
1. In the `<EndPoint>` tag definition, locate the `name="<ServiceEndpoint>"` parameter (where `<ServiceEndpoint>` represents an endpoint name for the service). This value is the name for the service endpoint that can be passed to the `endpointConfigurationName As String` overload of a constructor for a service reference.
189189

190190
## Call service methods asynchronously
191191

192192
Most methods in WCF services can be called synchronously or asynchronously. When you call a method asynchronously, your application can continue to work while the method is being called. This approach is useful when the system operates over a slow connection.
193193

194194
When a service reference is added to a project, the default configuration is to call methods synchronously. You can change the behavior to call methods asynchronously in the **Configure Service Reference** dialog.
195195

196-
> [!NOTE]
197-
> This option is set on a **per-service** basis. If one method for a service is called asynchronously, all methods must be called asynchronously.
196+
The option is set on a **per-service** basis. If one method for a service is called asynchronously, all methods must be called asynchronously.
198197

199198
[!INCLUDE[note_settings_general](../data-tools/includes/note_settings_general_md.md)]
200199

0 commit comments

Comments
 (0)