Skip to content

Commit 19dad86

Browse files
committed
edits
1 parent f25f1a4 commit 19dad86

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ WCF Data Services is an implementation of the Open Data (Open Data Protocol (ODa
5151

5252
The WCF programming model is based on communication between two entities: a WCF service and a WCF client. The programming model is encapsulated in the <xref:System.ServiceModel> namespace in .NET.
5353

54-
## WCF Service
54+
## WCF service
5555

5656
A WCF service is based on an interface that defines a contract between the service and the client. The service is marked with a <xref:System.ServiceModel.ServiceContractAttribute> attribute, as shown in the following code:
5757

@@ -144,7 +144,7 @@ In this scenario, you specify the `endpointConfigurationName` parameter with the
144144

145145
[!INCLUDE[note_settings_general](../data-tools/includes/note_settings_general_md.md)]
146146

147-
### Select a service endpoint
147+
### Select service endpoint
148148

149149
Select a service endpoint by following these steps:
150150

@@ -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 `="\<Endpoint>"`, where `<Endpoint>` 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,7 +185,7 @@ 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="<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.
189189

190190
## Call service methods asynchronously
191191

@@ -208,7 +208,7 @@ To call a service method asynchronously, follow these steps:
208208

209209
1. In the **Configure Service Reference** dialog, select the **Generate asynchronous operations** checkbox.
210210

211-
## Bind data returned by a service
211+
## Bind data returned by service
212212

213213
You can bind data returned by a WCF service to a control just as you bind any other data source to a control. When you add a reference to a WCF service, if the service contains composite types that return data, they're automatically added to the **Data Sources** window.
214214

0 commit comments

Comments
 (0)