Skip to content

Commit d98bca6

Browse files
authored
repo housekeeping: ms.topic values in cppcx (#584)
* ms.topic updates to cppcx * fixed quotes
1 parent 69702f1 commit d98bca6

File tree

113 files changed

+1143
-1142
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

113 files changed

+1143
-1142
lines changed

docs/cppcx/array-and-writeonlyarray-c-cx.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ms.technology: "cpp-windows"
66
ms.reviewer: ""
77
ms.suite: ""
88
ms.tgt_pltfrm: ""
9-
ms.topic: "article"
9+
ms.topic: "language-reference"
1010
ms.assetid: ef7cc5f9-cae6-4636-8220-f789e5b6aea4
1111
caps.latest.revision: 28
1212
author: "ghogen"

docs/cppcx/attributes-c-cx.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ms.technology: "cpp-windows"
66
ms.reviewer: ""
77
ms.suite: ""
88
ms.tgt_pltfrm: ""
9-
ms.topic: "article"
9+
ms.topic: "language-reference"
1010
ms.assetid: 4438e03c-4de3-433d-abcc-31aa863bc0e0
1111
caps.latest.revision: 8
1212
author: "ghogen"

docs/cppcx/back-inserter-function.md

+18-18
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
---
2-
title: "back_inserter Function | Microsoft Docs"
3-
ms.custom: ""
4-
ms.date: "12/30/2016"
5-
ms.technology: "cpp-windows"
6-
ms.reviewer: ""
7-
ms.suite: ""
8-
ms.tgt_pltfrm: ""
9-
ms.topic: "language-reference"
10-
f1_keywords: ["collection/Windows::Foundation::Collections::back_inserter"]
11-
dev_langs: ["C++"]
12-
helpviewer_keywords: ["back_inserter Function"]
13-
ms.assetid: 91476338-5548-44b7-bc7e-2150f4fbe31a
14-
caps.latest.revision: 4
15-
author: "ghogen"
16-
ms.author: "ghogen"
17-
manager: "ghogen"
18-
ms.workload: ["cplusplus"]
1+
---
2+
title: "back_inserter Function | Microsoft Docs"
3+
ms.custom: ""
4+
ms.date: "12/30/2016"
5+
ms.technology: "cpp-windows"
6+
ms.reviewer: ""
7+
ms.suite: ""
8+
ms.tgt_pltfrm: ""
9+
ms.topic: "language-reference"
10+
f1_keywords: ["collection/Windows::Foundation::Collections::back_inserter"]
11+
dev_langs: ["C++"]
12+
helpviewer_keywords: ["back_inserter Function"]
13+
ms.assetid: 91476338-5548-44b7-bc7e-2150f4fbe31a
14+
caps.latest.revision: 4
15+
author: "ghogen"
16+
ms.author: "ghogen"
17+
manager: "ghogen"
18+
ms.workload: ["cplusplus"]
1919
---
2020
# back_inserter Function
2121
Returns an iterator that is used to insert elements at the end of the specified collection.

docs/cppcx/boxing-c-cx.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ms.technology: "cpp-windows"
66
ms.reviewer: ""
77
ms.suite: ""
88
ms.tgt_pltfrm: ""
9-
ms.topic: "article"
9+
ms.topic: "language-reference"
1010
ms.assetid: edfb12fa-2a9b-42f6-bdac-d4d76cb8274e
1111
caps.latest.revision: 12
1212
author: "ghogen"

docs/cppcx/building-apps-and-libraries-c-cx.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ms.technology: "cpp-windows"
66
ms.reviewer: ""
77
ms.suite: ""
88
ms.tgt_pltfrm: ""
9-
ms.topic: "article"
9+
ms.topic: "language-reference"
1010
ms.assetid: ec2821a5-3479-4e64-9c2d-c777049f2cdc
1111
caps.latest.revision: 11
1212
author: "ghogen"

docs/cppcx/casting-c-cx.md

+15-15
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
---
2-
title: "Casting (C++/CX) | Microsoft Docs"
3-
ms.custom: ""
4-
ms.date: "12/30/2016"
5-
ms.technology: "cpp-windows"
6-
ms.reviewer: ""
7-
ms.suite: ""
8-
ms.tgt_pltfrm: ""
9-
ms.topic: "article"
10-
ms.assetid: 5247f6c7-6a0a-4021-97c9-21c868bd9455
11-
caps.latest.revision: 15
12-
author: "ghogen"
13-
ms.author: "ghogen"
14-
manager: "ghogen"
15-
ms.workload: ["cplusplus"]
1+
---
2+
title: "Casting (C++/CX) | Microsoft Docs"
3+
ms.custom: ""
4+
ms.date: "12/30/2016"
5+
ms.technology: "cpp-windows"
6+
ms.reviewer: ""
7+
ms.suite: ""
8+
ms.tgt_pltfrm: ""
9+
ms.topic: "language-reference"
10+
ms.assetid: 5247f6c7-6a0a-4021-97c9-21c868bd9455
11+
caps.latest.revision: 15
12+
author: "ghogen"
13+
ms.author: "ghogen"
14+
manager: "ghogen"
15+
ms.workload: ["cplusplus"]
1616
---
1717
# Casting (C++/CX)
1818
Four different cast operators apply to Windows Runtime types: [static_cast Operator](../cpp/static-cast-operator.md), [dynamic_cast Operator](../cpp/dynamic-cast-operator.md), **safe_cast Operator**, and [reinterpret_cast Operator](../cpp/reinterpret-cast-operator.md). `safe_cast` and `static_cast` throw an exception when the conversion can't be performed; [static_cast Operator](../cpp/static-cast-operator.md) also performs compile-time type checking. `dynamic_cast` returns `nullptr` if it fails to convert the type. Although `reinterpret_cast` returns a non-null value, it might be invalid. For this reason, we recommend that you not use `reinterpret_cast` unless you know that the cast will succeed. In addition, we recommend that you not use C-style casts in your C++/CX code because they are identical to `reinterpret_cast`.

docs/cppcx/clr-integration-c-cx.md

+15-15
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
---
2-
title: "CLR integration (C++/CX) | Microsoft Docs"
3-
ms.custom: ""
4-
ms.date: "01/22/2017"
5-
ms.technology: "cpp-windows"
6-
ms.reviewer: ""
7-
ms.suite: ""
8-
ms.tgt_pltfrm: ""
9-
ms.topic: "article"
10-
ms.assetid: 76e213cf-2f3d-4181-b35b-9fd25d5b307c
11-
caps.latest.revision: 10
12-
author: "ghogen"
13-
ms.author: "ghogen"
14-
manager: "ghogen"
15-
ms.workload: ["cplusplus"]
1+
---
2+
title: "CLR integration (C++/CX) | Microsoft Docs"
3+
ms.custom: ""
4+
ms.date: "01/22/2017"
5+
ms.technology: "cpp-windows"
6+
ms.reviewer: ""
7+
ms.suite: ""
8+
ms.tgt_pltfrm: ""
9+
ms.topic: "language-reference"
10+
ms.assetid: 76e213cf-2f3d-4181-b35b-9fd25d5b307c
11+
caps.latest.revision: 10
12+
author: "ghogen"
13+
ms.author: "ghogen"
14+
manager: "ghogen"
15+
ms.workload: ["cplusplus"]
1616
---
1717
# CLR integration (C++/CX)
1818
Some Windows Runtime types receive special handling in C++/CX and the languages that are based on the common language runtime (CLR). This article discusses how several types in one language map to another language. For example, the CLR maps Windows.Foundation.IVector to System.Collections.IList, Windows.Foundation.IMap to System.Collections.IDictionary, and so on. Similarly, C++/CX specially maps types such as Platform::Delegate and Platform::String.

docs/cppcx/collections-c-cx.md

+15-15
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
---
2-
title: "Collections (C++/CX) | Microsoft Docs"
3-
ms.custom: ""
4-
ms.date: "01/22/2017"
5-
ms.technology: "cpp-windows"
6-
ms.reviewer: ""
7-
ms.suite: ""
8-
ms.tgt_pltfrm: ""
9-
ms.topic: "article"
10-
ms.assetid: 914da30b-aac5-4cd7-9da3-a5ac08cdd72c
11-
caps.latest.revision: 35
12-
author: "ghogen"
13-
ms.author: "ghogen"
14-
manager: "ghogen"
15-
ms.workload: ["cplusplus"]
1+
---
2+
title: "Collections (C++/CX) | Microsoft Docs"
3+
ms.custom: ""
4+
ms.date: "01/22/2017"
5+
ms.technology: "cpp-windows"
6+
ms.reviewer: ""
7+
ms.suite: ""
8+
ms.tgt_pltfrm: ""
9+
ms.topic: "language-reference"
10+
ms.assetid: 914da30b-aac5-4cd7-9da3-a5ac08cdd72c
11+
caps.latest.revision: 35
12+
author: "ghogen"
13+
ms.author: "ghogen"
14+
manager: "ghogen"
15+
ms.workload: ["cplusplus"]
1616
---
1717
# Collections (C++/CX)
1818
In a C++/CX program, you can make free use of Standard Template Library (STL) containers, or any other user-defined collection type. However, when you pass collections back and forth across the Windows Runtime application binary interface (ABI)—for example, to a XAML control or to a JavaScript client—you must use Windows Runtime collection types.

docs/cppcx/compiler-and-linker-options-c-cx.md

+15-15
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
---
2-
title: "Compiler and Linker options (C++/CX) | Microsoft Docs"
3-
ms.custom: ""
4-
ms.date: "01/22/2017"
5-
ms.technology: "cpp-windows"
6-
ms.reviewer: ""
7-
ms.suite: ""
8-
ms.tgt_pltfrm: ""
9-
ms.topic: "article"
10-
ms.assetid: ecfadce8-3a3f-40cc-bb01-b4731f8d2fcb
11-
caps.latest.revision: 10
12-
author: "ghogen"
13-
ms.author: "ghogen"
14-
manager: "ghogen"
15-
ms.workload: ["cplusplus"]
1+
---
2+
title: "Compiler and Linker options (C++/CX) | Microsoft Docs"
3+
ms.custom: ""
4+
ms.date: "01/22/2017"
5+
ms.technology: "cpp-windows"
6+
ms.reviewer: ""
7+
ms.suite: ""
8+
ms.tgt_pltfrm: ""
9+
ms.topic: "language-reference"
10+
ms.assetid: ecfadce8-3a3f-40cc-bb01-b4731f8d2fcb
11+
caps.latest.revision: 10
12+
author: "ghogen"
13+
ms.author: "ghogen"
14+
manager: "ghogen"
15+
ms.workload: ["cplusplus"]
1616
---
1717
# Compiler and Linker options (C++/CX)
1818
An environment variable, C++/CX compiler options, and linker options support the building of apps for the Windows Runtime.

0 commit comments

Comments
 (0)