Skip to content

Commit 3cac401

Browse files
ErlendLandroRon Petrusha
authored andcommitted
Replace WCF token, part 1 (#5096)
For #4801
1 parent 3d62d5c commit 3cac401

35 files changed

+45
-45
lines changed

docs/framework/configure-apps/file-schema/wcf-directive/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ms.date: "03/30/2017"
44
ms.assetid: e471b042-d5e3-491c-bc81-758655016a3a
55
---
66
# WCF Directive Syntax
7-
Specifies settings used by the Windows Communication Foundation (WCF) directives in the .svc files to direct the compilers. Each directive can contain one or more attributes (paired with values) that are specific to that directive. [!INCLUDE[indigo2](../../../../../includes/indigo2-md.md)] has only the [@ServiceHost](../../../../../docs/framework/configure-apps/file-schema/wcf-directive/servicehost.md) directive.
7+
Specifies settings used by the Windows Communication Foundation (WCF) directives in the .svc files to direct the compilers. Each directive can contain one or more attributes (paired with values) that are specific to that directive. WCF has only the [@ServiceHost](../../../../../docs/framework/configure-apps/file-schema/wcf-directive/servicehost.md) directive.
88

99
## In This Section
1010
[@ServiceHost](../../../../../docs/framework/configure-apps/file-schema/wcf-directive/servicehost.md)

docs/framework/configure-apps/file-schema/wcf-directive/servicehost.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ CodeBehind = "CodeBehind"%>
2626
The CLR type name of the service host factory used to instantiate the service host. This attribute is optional. If unspecified, the default <xref:System.ServiceModel.Activation.ServiceHostFactory> is used, which returns an instance of <xref:System.ServiceModel.ServiceHost>.
2727

2828
#### Debug
29-
Indicates whether the Windows Communication Foundation (WCF) service should be compiled with debug symbols. `true` if the [!INCLUDE[indigo2](../../../../../includes/indigo2-md.md)] service should be compiled with debug symbols; otherwise, `false`.
29+
Indicates whether the Windows Communication Foundation (WCF) service should be compiled with debug symbols. `true` if the WCF service should be compiled with debug symbols; otherwise, `false`.
3030

3131
#### Language
3232
Specifies the language used when compiling all the inline code within file (.svc). The values can represent any .NET-supported language, including C#, VB, and JS, which refer to C#, Visual Basic .NET, and JScript .NET, respectively. This attribute is optional.

docs/framework/configure-apps/file-schema/wcf/add-of-allowaccounts.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ms.date: "03/30/2017"
44
ms.assetid: 763c7b1f-e7b0-4d99-a42c-4506fcb8da00
55
---
66
# &lt;add&gt; of &lt;allowAccounts&gt;
7-
Specifies a user account for processes that host [!INCLUDE[indigo2](../../../../../includes/indigo2-md.md)] services, and are granted connection access to the sharing service.
7+
Specifies a user account for processes that host WCF services, and are granted connection access to the sharing service.
88

99
\<system.serviceModel.activation>
1010

@@ -32,7 +32,7 @@ Specifies a user account for processes that host [!INCLUDE[indigo2](../../../../
3232

3333
|Element|Description|
3434
|-------------|-----------------|
35-
|[\<allowAccounts>](../../../../../docs/framework/configure-apps/file-schema/wcf/allowaccounts.md)|A collection of configuration elements that contain a `securityIdentifier` attribute to specify user accounts for processes that host [!INCLUDE[indigo2](../../../../../includes/indigo2-md.md)] services, and are granted connection access to the sharing service.|
35+
|[\<allowAccounts>](../../../../../docs/framework/configure-apps/file-schema/wcf/allowaccounts.md)|A collection of configuration elements that contain a `securityIdentifier` attribute to specify user accounts for processes that host WCF services, and are granted connection access to the sharing service.|
3636

3737
## Example
3838
The following configuration example adds the five default identifiers for user accounts to this collection.

docs/framework/configure-apps/file-schema/wcf/add-of-baseaddressprefixfilter.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Represents a configuration element that specifies a pass-through filter, which p
4444

4545
IIS Web sites are containers for virtual applications which contain virtual directories. The application in a site can be accessed through one or more IIS binding. IIS bindings provide two pieces of information: binding protocol and binding information. Binding protocol (for example, HTTP) defines the scheme over which communication occurs, and binding information (for example, IP Address, Port, Hostheader) contains data used to access the site.
4646

47-
IIS supports specifying multiple IIS bindings for each site, which results in multiple base addresses for each scheme. Because a [!INCLUDE[indigo2](../../../../../includes/indigo2-md.md)] service hosted under a site allows binding to only one base address for each scheme, you can use the prefix filter feature to pick the required base address of the hosted service. The incoming base addresses, supplied by IIS, are filtered based on the optional prefix list filter.
47+
IIS supports specifying multiple IIS bindings for each site, which results in multiple base addresses for each scheme. Because a WCF service hosted under a site allows binding to only one base address for each scheme, you can use the prefix filter feature to pick the required base address of the hosted service. The incoming base addresses, supplied by IIS, are filtered based on the optional prefix list filter.
4848

4949
For example, your site can contain the following base addresses.
5050

docs/framework/configure-apps/file-schema/wcf/add-of-protocolmapping.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ms.date: "03/30/2017"
44
ms.assetid: 08e62249-1641-41d1-91b1-66d7b46244e4
55
---
66
# &lt;add&gt; of &lt;protocolMapping&gt;
7-
Represents a default protocol mapping between a transport protocol scheme (e.g., http, net.tcp, net.pipe, etc.) and a Windows Communication Foundation (WCF) binding. When creating default endpoints at runtime, [!INCLUDE[indigo2](../../../../../includes/indigo2-md.md)] looks at the configured mappings and decides on which binding to use for a particular based address.
7+
Represents a default protocol mapping between a transport protocol scheme (e.g., http, net.tcp, net.pipe, etc.) and a Windows Communication Foundation (WCF) binding. When creating default endpoints at runtime, WCF looks at the configured mappings and decides on which binding to use for a particular based address.
88

99
\<system.serviceModel>
1010
\<protocolMapping>

docs/framework/configure-apps/file-schema/wcf/allowaccounts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Contains a collection of configuration elements that specify user accounts for p
2626

2727
|Attribute|Description|
2828
|---------------|-----------------|
29-
|[\<add>](../../../../../docs/framework/configure-apps/file-schema/wcf/add-of-allowaccounts.md)|Adds a user account for processes that host [!INCLUDE[indigo2](../../../../../includes/indigo2-md.md)] services, and are granted connection access to the sharing service|
29+
|[\<add>](../../../../../docs/framework/configure-apps/file-schema/wcf/add-of-allowaccounts.md)|Adds a user account for processes that host WCF services, and are granted connection access to the sharing service|
3030

3131
### Parent Elements
3232

docs/framework/configure-apps/file-schema/wcf/announcementendpoint.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ms.date: "03/30/2017"
44
ms.assetid: 034b7c69-a770-4502-8cef-38007bbcd025
55
---
66
# &lt;announcementEndpoint&gt;
7-
This configuration element defines a standard endpoint with a fixed announcement contract. A service can optionally announce its availability by sending an online and offline announcement message when it is opened or closed respectively. A Windows Communication Foundation (WCF) service specifies the announcement endpoints in the [\<serviceDiscovery>](../../../../../docs/framework/configure-apps/file-schema/wcf/servicediscovery.md) element and uses the AnnouncementClient to perform the announcements. A client wishing to listen for the announcement from other service is actually acting as a [!INCLUDE[indigo2](../../../../../includes/indigo2-md.md)] service; thus you have to configure the announcement endpoints for that client in the [\<services>](../../../../../docs/framework/configure-apps/file-schema/wcf/services.md) section.
7+
This configuration element defines a standard endpoint with a fixed announcement contract. A service can optionally announce its availability by sending an online and offline announcement message when it is opened or closed respectively. A Windows Communication Foundation (WCF) service specifies the announcement endpoints in the [\<serviceDiscovery>](../../../../../docs/framework/configure-apps/file-schema/wcf/servicediscovery.md) element and uses the AnnouncementClient to perform the announcements. A client wishing to listen for the announcement from other service is actually acting as a WCF service; thus you have to configure the announcement endpoints for that client in the [\<services>](../../../../../docs/framework/configure-apps/file-schema/wcf/services.md) section.
88

99
\<system.ServiceModel>
1010
\<standardEndpoints>

docs/framework/configure-apps/file-schema/wcf/baseaddressprefixfilters.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Represents a collection of configuration elements that specify pass through filt
4545

4646
IIS Web sites are containers for virtual applications which contain virtual directories. The application in a site can be accessed through one or more IIS bindings. IIS bindings provide two pieces of information: binding protocol and binding information. Binding protocol (for example, HTTP) defines the scheme over which communication occurs, and binding information (for example, IP Address, Port, Hostheader) contains data used to access the site.
4747

48-
IIS supports specifying multiple IIS bindings for each site, which results in multiple base addresses for each scheme. Because a [!INCLUDE[indigo2](../../../../../includes/indigo2-md.md)] service hosted under a site allows binding to only one base address for each scheme, you can use the prefix filter feature to pick the required base address of the hosted service. The incoming base addresses, supplied by IIS, are filtered based on the optional prefix list filter.
48+
IIS supports specifying multiple IIS bindings for each site, which results in multiple base addresses for each scheme. Because a WCF service hosted under a site allows binding to only one base address for each scheme, you can use the prefix filter feature to pick the required base address of the hosted service. The incoming base addresses, supplied by IIS, are filtered based on the optional prefix list filter.
4949

5050
For example, your site can contain the following base addresses.
5151

docs/framework/configure-apps/file-schema/wcf/behavior-of-endpointbehaviors.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ The `behavior` element contains a collection of settings for the behavior of an
4747
|[\<soapProcessing>](../../../../../docs/framework/configure-apps/file-schema/wcf/soapprocessing.md)|Defines the client endpoint behavior used to marshal messages between different binding types and message versions.|
4848
|[\<synchronousReceive>](../../../../../docs/framework/configure-apps/file-schema/wcf/synchronousreceive-element.md)|Specifies run-time behavior for receiving messages in either a service or client application. It does not have any attributes or child elements.|
4949
|[\<transactedBatching>](../../../../../docs/framework/configure-apps/file-schema/wcf/transactedbatching.md)|Specifies whether transaction batching is supported for receive operations.|
50-
|[\<webHttp>](../../../../../docs/framework/configure-apps/file-schema/wcf/webhttp.md)|Specifies the WebHttpBehavior on an endpoint through configuration. This behavior, when used in conjunction with the \<webHttpBinding> standard binding, enables the Web programming model for a [!INCLUDE[indigo2](../../../../../includes/indigo2-md.md)] service.|
50+
|[\<webHttp>](../../../../../docs/framework/configure-apps/file-schema/wcf/webhttp.md)|Specifies the WebHttpBehavior on an endpoint through configuration. This behavior, when used in conjunction with the \<webHttpBinding> standard binding, enables the Web programming model for a WCF service.|
5151

5252
### Parent Elements
5353

docs/framework/configure-apps/file-schema/wcf/behavior-of-servicebehaviors.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@ The `behavior` element contains a collection of settings for the behavior of a s
4949
|[\<serviceDiscovery>](../../../../../docs/framework/configure-apps/file-schema/wcf/servicediscovery.md)|Specifies the discoverability of service endpoints.|
5050
|[\<serviceMetadata>](../../../../../docs/framework/configure-apps/file-schema/wcf/servicemetadata.md)|Specifies the publication of service metadata and associated information.|
5151
|[\<serviceSecurityAudit>](../../../../../docs/framework/configure-apps/file-schema/wcf/servicesecurityaudit.md)|Specifies settings that enable auditing of security events during service operations.|
52-
|[\<serviceThrottling>](../../../../../docs/framework/configure-apps/file-schema/wcf/servicethrottling.md)|Specifies the throttling mechanism of a [!INCLUDE[indigo2](../../../../../includes/indigo2-md.md)] service.|
52+
|[\<serviceThrottling>](../../../../../docs/framework/configure-apps/file-schema/wcf/servicethrottling.md)|Specifies the throttling mechanism of a WCF service.|
5353
|[\<serviceTimeouts>](../../../../../docs/framework/configure-apps/file-schema/wcf/servicetimeouts.md)|Specifies the timeout for a service.|
54-
|[\<workflowRuntime>](../../../../../docs/framework/configure-apps/file-schema/wcf/workflowruntime.md)|Specifies settings for an instance of WorkflowRuntime for hosting workflow-based [!INCLUDE[indigo2](../../../../../includes/indigo2-md.md)] services.|
54+
|[\<workflowRuntime>](../../../../../docs/framework/configure-apps/file-schema/wcf/workflowruntime.md)|Specifies settings for an instance of WorkflowRuntime for hosting workflow-based WCF services.|
5555
|[\<useRequestHeadersForMetadataAddress>](../../../../../docs/framework/configure-apps/file-schema/wcf/userequestheadersformetadataaddress.md)|Enables the retrieval of metadata address information from the request message headers.|
5656

5757
### Parent Elements

0 commit comments

Comments
 (0)