Skip to content

Commit 3b4b01b

Browse files
authored
Update ms.topic for framework/wcf and framework/whats-new (#24230)
1 parent 68f26c9 commit 3b4b01b

34 files changed

+50
-50
lines changed

docfx.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -214,6 +214,7 @@
214214
"docs/framework/wcf/diagnostics/performance-counters/**.md": "reference",
215215
"docs/framework/wcf/diagnostics/tracing/**.md": "reference",
216216
"docs/framework/wcf/diagnostics/wmi/**.md": "reference",
217+
"docs/framework/wcf/whats-new/**.md": "reference",
217218
"docs/framework/**/how-to*.md": "how-to",
218219
"docs/fsharp/language-reference/**/**.md": "language-reference",
219220
"docs/fundamentals/code-analysis/**.md": "reference",

docs/framework/wcf/extending/specifying-a-custom-crypto-algorithm.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
description: "Learn more about: Specifying a Custom Crypto Algorithm"
33
title: "Specifying a Custom Crypto Algorithm"
44
ms.date: "03/30/2017"
5-
ms.assetid: d662a305-8e09-451d-9a59-b0f12b012f1d
5+
ms.topic: how-to
66
---
77
# Specifying a Custom Crypto Algorithm
88

@@ -85,7 +85,7 @@ public class MyCustomAlgorithmSuite : SecurityAlgorithmSuite
8585

8686
## Register the Custom Algorithm
8787

88-
Registration can be done in a configuration file or in imperative code. Registering a custom algorithm is done by creating a mapping between a class that implements a crypto service provider and an alias. The alias is then mapped to a URI which is used when specifying the algorithm in the WCF services binding. The following configuration snippet illustrates how to register a custom algorithm in config:
88+
Registration can be done in a configuration file or in imperative code. Registering a custom algorithm is done by creating a mapping between a class that implements a crypto service provider and an alias. The alias is then mapped to a URI which is used when specifying the algorithm in the WCF service's binding. The following configuration snippet illustrates how to register a custom algorithm in config:
8989

9090
```xml
9191
<configuration>

docs/framework/wcf/extending/walkthrough-creating-custom-client-and-service-credentials.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ ms.date: "03/30/2017"
55
dev_langs:
66
- "csharp"
77
- "vb"
8-
ms.assetid: 2b5ba5c3-0c6c-48e9-9e46-54acaec443ba
8+
ms.topic: how-to
99
---
1010
# Walkthrough: Creating Custom Client and Service Credentials
1111

docs/framework/wcf/extending/ws-metadataexchange-bindings.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
description: "Learn more about: WS-MetadataExchange Bindings"
33
title: "WS-MetadataExchange Bindings"
44
ms.date: "03/30/2017"
5-
ms.assetid: 10f8de5d-b81d-4ea7-b37e-7f2c00c39714
5+
ms.topic: reference
66
---
77
# WS-MetadataExchange Bindings
88

docs/framework/wcf/feature-details/client-configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "Client Configuration"
33
description: Learn how to use WCF client configuration to specify the address, binding, behavior, and contract for an endpoint, which is used to connect to a service.
44
ms.date: "03/30/2017"
5-
ms.assetid: 5da5bd3b-65d9-43b7-91b9-cc9e989b1350
5+
ms.topic: how-to
66
---
77
# Client Configuration
88

docs/framework/wcf/feature-details/config-wcf-service-with-aspnet-web-service.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ ms.topic: how-to
66
dev_langs:
77
- "csharp"
88
- "vb"
9-
ms.assetid: 48e1cd90-de80-4d6c-846e-631878955762
109
---
1110
# How to: Configure WCF Service to Interoperate with ASP.NET Web Service Clients
1211

docs/framework/wcf/feature-details/configuring-discovery-in-a-configuration-file.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
description: "Learn more about: Configuring Discovery in a Configuration File"
33
title: "Configuring Discovery in a Configuration File"
44
ms.date: "03/30/2017"
5-
ms.assetid: b9884c11-8011-4763-bc2c-c526b80175d0
5+
ms.topic: how-to
66
---
77
# Configuring Discovery in a Configuration File
88

99
There are four major groups of configuration settings used in discovery. This topic will briefly describe each and show examples of how to configure them. Following each section will be a link to more in-depth documentation about each area.
1010

1111
## Behavior Configuration
1212

13-
Discovery uses service behaviors and endpoint behaviors. The <xref:System.ServiceModel.Discovery.ServiceDiscoveryBehavior> behavior enables discovery for all of a services endpoints and allows you to specify announcement endpoints. The following example shows how to add the <xref:System.ServiceModel.Discovery.ServiceDiscoveryBehavior> and specify an announcement endpoint.
13+
Discovery uses service behaviors and endpoint behaviors. The <xref:System.ServiceModel.Discovery.ServiceDiscoveryBehavior> behavior enables discovery for all of a service's endpoints and allows you to specify announcement endpoints. The following example shows how to add the <xref:System.ServiceModel.Discovery.ServiceDiscoveryBehavior> and specify an announcement endpoint.
1414

1515
```xml
1616
<behaviors>
@@ -232,7 +232,7 @@ There are four major groups of configuration settings used in discovery. This to
232232
</standardEndpoints>
233233
```
234234

235-
Once youve added the standard endpoint configuration, reference the configuration in the <`endpoint`> element for each endpoint as shown in the following sample.
235+
Once you've added the standard endpoint configuration, reference the configuration in the <`endpoint`> element for each endpoint as shown in the following sample.
236236

237237
```xml
238238
<services>

docs/framework/wcf/feature-details/configuring-http-and-https.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Learn how to configure HTTP/HTTPS to allow WCF services and clients
44
ms.date: "04/08/2019"
55
helpviewer_keywords:
66
- "configuring HTTP [WCF]"
7-
ms.assetid: b0c29a86-bc0c-41b3-bc1e-4eb5bb5714d4
7+
ms.topic: how-to
88
---
99
# Configuring HTTP and HTTPS
1010

docs/framework/wcf/feature-details/configuring-iis-for-wcf.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
description: "Learn more about: Configuring Internet Information Services 7.0 for Windows Communication Foundation"
33
title: "Configuring Internet Information Services 7.0 for Windows Communication Foundation"
44
ms.date: "03/30/2017"
5-
ms.assetid: 1050d395-092e-44d3-b4ba-66be3b039ffb
5+
ms.topic: how-to
66
---
77
# Configuring Internet Information Services 7.0 for Windows Communication Foundation
88

docs/framework/wcf/feature-details/configuring-serialization-in-a-workflow-service.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
description: "Learn more about: Configuring Serialization in a Workflow Service"
33
title: "Configuring Serialization in a Workflow Service"
44
ms.date: "03/30/2017"
5-
ms.assetid: aa70b290-a2ee-4c3c-90ea-d0a7665096ae
5+
ms.topic: how-to
66
---
77
# Configuring Serialization in a Workflow Service
88

9-
Workflow services are Windows Communication Foundation (WCF) services and so have the option of using either the <xref:System.Runtime.Serialization.DataContractSerializer> (the default) or the <xref:System.Xml.Serialization.XmlSerializer>. When writing non-workflow services the type of serializer to use is specified on the service or operation contract. When creating WCF workflow services you dont specify these contracts in code, but rather they are generated at runtime by contract inference. For more information about contract inference, see [Using Contracts in Workflow](using-contracts-in-workflow.md). The serializer is specified using the <xref:System.ServiceModel.Activities.Receive.SerializerOption%2A> property. This can be set in the designer as shown in the following illustration.
9+
Workflow services are Windows Communication Foundation (WCF) services and so have the option of using either the <xref:System.Runtime.Serialization.DataContractSerializer> (the default) or the <xref:System.Xml.Serialization.XmlSerializer>. When writing non-workflow services the type of serializer to use is specified on the service or operation contract. When creating WCF workflow services you don't specify these contracts in code, but rather they are generated at runtime by contract inference. For more information about contract inference, see [Using Contracts in Workflow](using-contracts-in-workflow.md). The serializer is specified using the <xref:System.ServiceModel.Activities.Receive.SerializerOption%2A> property. This can be set in the designer as shown in the following illustration.
1010

1111
![Setting the SerializerOption property in the Properties Window.](./media/configuring-serialization-in-a-workflow-service/setting-serializer-property.png)
1212

0 commit comments

Comments
 (0)