Skip to content

Commit 98942ae

Browse files
committed
update refs
1 parent e576d36 commit 98942ae

File tree

94 files changed

+438
-438
lines changed

Some content is hidden

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

94 files changed

+438
-438
lines changed

xml/Microsoft.Win32/Registry.xml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ The following code example demonstrates how to retrieve the subkeys of the `HKEY
5353
5454
:::code language="cpp" source="~/snippets/cpp/VS_Snippets_CLR_Classic/classic Registry.Users Example/CPP/source.cpp" id="Snippet1":::
5555
:::code language="csharp" source="~/snippets/csharp/Microsoft.Win32/Registry/Overview/source.cs" id="Snippet1":::
56-
:::code language="vb" source="~/snippets/visualbasic/VS_Snippets_CLR_Classic/classic Registry.Users Example/VB/source.vb" id="Snippet1":::
56+
:::code language="vb" source="~/snippets/visualbasic/Microsoft.Win32/Registry/Overview/source.vb" id="Snippet1":::
5757
5858
The following code example stores values of several data types in an example key, creating the key as it does so, and then retrieves and displays the values. The example demonstrates storing and retrieving the default (nameless) name/value pair, and the use of `defaultValue` when a name/value pair does not exist.
5959
@@ -110,7 +110,7 @@ The following code example stores values of several data types in an example key
110110
111111
:::code language="cpp" source="~/snippets/cpp/VS_Snippets_CLR_Classic/classic Registry.ClassesRoot Example/CPP/source.cpp" id="Snippet1":::
112112
:::code language="csharp" source="~/snippets/csharp/Microsoft.Win32/Registry/ClassesRoot/source.cs" id="Snippet1":::
113-
:::code language="vb" source="~/snippets/visualbasic/VS_Snippets_CLR_Classic/classic Registry.ClassesRoot Example/VB/source.vb" id="Snippet1":::
113+
:::code language="vb" source="~/snippets/visualbasic/Microsoft.Win32/Registry/ClassesRoot/source.vb" id="Snippet1":::
114114
115115
]]></format>
116116
</remarks>
@@ -163,7 +163,7 @@ The following code example stores values of several data types in an example key
163163
164164
:::code language="cpp" source="~/snippets/cpp/VS_Snippets_CLR_Classic/classic Registry.CurrentConfig Example/CPP/source.cpp" id="Snippet1":::
165165
:::code language="csharp" source="~/snippets/csharp/Microsoft.Win32/Registry/CurrentConfig/source.cs" id="Snippet1":::
166-
:::code language="vb" source="~/snippets/visualbasic/VS_Snippets_CLR_Classic/classic Registry.CurrentConfig Example/VB/source.vb" id="Snippet1":::
166+
:::code language="vb" source="~/snippets/visualbasic/Microsoft.Win32/Registry/CurrentConfig/source.vb" id="Snippet1":::
167167
168168
]]></format>
169169
</remarks>
@@ -214,7 +214,7 @@ The following code example stores values of several data types in an example key
214214
215215
:::code language="cpp" source="~/snippets/cpp/VS_Snippets_CLR_Classic/classic Registry.CurrentUser Example/CPP/source.cpp" id="Snippet1":::
216216
:::code language="csharp" source="~/snippets/csharp/Microsoft.Win32/Registry/CurrentUser/source.cs" id="Snippet1":::
217-
:::code language="vb" source="~/snippets/visualbasic/VS_Snippets_CLR_Classic/classic Registry.CurrentUser Example/VB/source.vb" id="Snippet1":::
217+
:::code language="vb" source="~/snippets/visualbasic/Microsoft.Win32/Registry/CurrentUser/source.vb" id="Snippet1":::
218218
219219
]]></format>
220220
</remarks>
@@ -405,7 +405,7 @@ The following code example stores values of several data types in an example key
405405
406406
:::code language="cpp" source="~/snippets/cpp/VS_Snippets_CLR_Classic/classic Registry.LocalMachine Example/CPP/source.cpp" id="Snippet1":::
407407
:::code language="csharp" source="~/snippets/csharp/Microsoft.Win32/Registry/LocalMachine/source.cs" id="Snippet1":::
408-
:::code language="vb" source="~/snippets/visualbasic/VS_Snippets_CLR_Classic/classic Registry.LocalMachine Example/VB/source.vb" id="Snippet1":::
408+
:::code language="vb" source="~/snippets/visualbasic/Microsoft.Win32/Registry/LocalMachine/source.vb" id="Snippet1":::
409409
410410
]]></format>
411411
</remarks>
@@ -465,7 +465,7 @@ The following code example stores values of several data types in an example key
465465
466466
:::code language="cpp" source="~/snippets/cpp/VS_Snippets_CLR_Classic/classic Registry.PerformanceData Example/CPP/source.cpp" id="Snippet1":::
467467
:::code language="csharp" source="~/snippets/csharp/Microsoft.Win32/Registry/PerformanceData/source.cs" id="Snippet1":::
468-
:::code language="vb" source="~/snippets/visualbasic/VS_Snippets_CLR_Classic/classic Registry.PerformanceData Example/VB/source.vb" id="Snippet1":::
468+
:::code language="vb" source="~/snippets/visualbasic/Microsoft.Win32/Registry/PerformanceData/source.vb" id="Snippet1":::
469469
470470
]]></format>
471471
</remarks>
@@ -740,7 +740,7 @@ The following code example stores values of several data types in an example key
740740
741741
:::code language="cpp" source="~/snippets/cpp/VS_Snippets_CLR_Classic/classic Registry.Users Example/CPP/source.cpp" id="Snippet1":::
742742
:::code language="csharp" source="~/snippets/csharp/Microsoft.Win32/Registry/Overview/source.cs" id="Snippet1":::
743-
:::code language="vb" source="~/snippets/visualbasic/VS_Snippets_CLR_Classic/classic Registry.Users Example/VB/source.vb" id="Snippet1":::
743+
:::code language="vb" source="~/snippets/visualbasic/Microsoft.Win32/Registry/Overview/source.vb" id="Snippet1":::
744744
745745
]]></format>
746746
</remarks>

xml/Microsoft.Win32/RegistryKey.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1704,7 +1704,7 @@
17041704
17051705
:::code language="cpp" source="~/snippets/cpp/VS_Snippets_CLR_Classic/classic RegistryKey.GetValue Example/CPP/source.cpp" id="Snippet1":::
17061706
:::code language="csharp" source="~/snippets/csharp/Microsoft.Win32/RegistryKey/GetValue/source.cs" id="Snippet1":::
1707-
:::code language="vb" source="~/snippets/visualbasic/VS_Snippets_CLR_Classic/classic RegistryKey.GetValue Example/VB/source.vb" id="Snippet1":::
1707+
:::code language="vb" source="~/snippets/visualbasic/Microsoft.Win32/RegistryKey/GetValue/source.vb" id="Snippet1":::
17081708
17091709
]]></format>
17101710
</remarks>

xml/System.CodeDom.Compiler/CompilerError.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
The following example compiles a CodeDOM program graph and provides an example of how to programmatically access CompilerError data.
5555
5656
:::code language="csharp" source="~/snippets/csharp/System.CodeDom.Compiler/CompilerError/Overview/source.cs" id="Snippet1":::
57-
:::code language="vb" source="~/snippets/visualbasic/VS_Snippets_CLR_Classic/classic CompilerError Example/VB/source.vb" id="Snippet1":::
57+
:::code language="vb" source="~/snippets/visualbasic/System.CodeDom.Compiler/CompilerError/Overview/source.vb" id="Snippet1":::
5858
5959
]]></format>
6060
</remarks>

0 commit comments

Comments
 (0)