Skip to content

Commit 7ee39f0

Browse files
committed
fix invalid links
1 parent 0c4dcc1 commit 7ee39f0

File tree

42 files changed

+561
-561
lines changed

Some content is hidden

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

42 files changed

+561
-561
lines changed

docs/core/unmanaged-api/metadata/coiniticor-enumeration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ topic_type:
1717
---
1818
# COINITICOR Enumeration
1919

20-
Specifies constants used by [CoInitializeCor](../hosting/coinitializecor-function.md) when it initializes the common language runtime.
20+
Specifies constants used by [CoInitializeCor](../../../framework/unmanaged-api/hosting/coinitializecor-function.md) when it initializes the common language runtime.
2121

2222
## Syntax
2323

docs/core/unmanaged-api/metadata/coinitiee-enumeration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ topic_type:
1717
---
1818
# COINITIEE Enumeration
1919

20-
Specifies constants used by [CoInitializeEE](../hosting/coinitializeee-function.md) when initializing the common language runtime.
20+
Specifies constants used by [CoInitializeEE](../../../framework/unmanaged-api/hosting/coinitializeee-function.md) when initializing the common language runtime.
2121

2222
## Syntax
2323

docs/core/unmanaged-api/metadata/couninitiee-enumeration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ topic_type:
1717
---
1818
# COUNINITIEE Enumeration
1919

20-
Specifies constants used by [CoUninitializeEE](../hosting/couninitializeee-function.md) when initializing the common language runtime.
20+
Specifies constants used by [CoUninitializeEE](../../../framework/unmanaged-api/hosting/couninitializeee-function.md) when initializing the common language runtime.
2121

2222
## Syntax
2323

docs/core/unmanaged-api/metadata/imetadataassemblyimport-findassembliesbyname-method.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ HRESULT FindAssembliesByName (
6464

6565
Given an assembly name, the `FindAssembliesByName` method finds the assembly by following the standard rules for resolving assembly references. (For more information, see [How the Runtime Locates Assemblies](../../../framework/deployment/how-the-runtime-locates-assemblies.md).) `FindAssembliesByName` allows the caller to configure various aspects of the assembly resolver context, such as application base and private search path.
6666

67-
The `FindAssembliesByName` method requires the CLR to be initialized in the process in order to invoke the assembly resolution logic. Therefore, you must call [CoInitializeEE](../hosting/coinitializeee-function.md) (passing COINITEE_DEFAULT) before calling `FindAssembliesByName`, and then follow with a call to [CoUninitializeCor](../hosting/couninitializecor-function.md).
67+
The `FindAssembliesByName` method requires the CLR to be initialized in the process in order to invoke the assembly resolution logic. Therefore, you must call [CoInitializeEE](../../../framework/unmanaged-api/hosting/coinitializeee-function.md) (passing COINITEE_DEFAULT) before calling `FindAssembliesByName`, and then follow with a call to [CoUninitializeCor](../../../framework/unmanaged-api/hosting/couninitializecor-function.md).
6868

6969
`FindAssembliesByName` returns an [IMetaDataImport](imetadataimport-interface.md) pointer to the file containing the assembly manifest for the assembly name that is passed in. If the given assembly name is not fully specified (for example, if it does not include a version), multiple assemblies might be returned.
7070

docs/core/unmanaged-api/metadata/metadata-enumerations.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ This section describes the unmanaged enumerations that the metadata API uses.
2626
Provides values to influence the type of `reloc` instruction emitted in a call to the [ICeeGen::AddSectionReloc](iceegen-addsectionreloc-method.md) method.
2727

2828
[COINITICOR Enumeration](coiniticor-enumeration.md)
29-
Specifies constants used by [CoInitializeCor](../hosting/coinitializecor-function.md) when initializing the common language runtime.
29+
Specifies constants used by [CoInitializeCor](../../../framework/unmanaged-api/hosting/coinitializecor-function.md) when initializing the common language runtime.
3030

3131
[COINITIEE Enumeration](coinitiee-enumeration.md)
32-
Specifies constants used by [CoInitializeEE](../hosting/coinitializeee-function.md) when initializing the common language runtime.
32+
Specifies constants used by [CoInitializeEE](../../../framework/unmanaged-api/hosting/coinitializeee-function.md) when initializing the common language runtime.
3333

3434
[CorArgType Enumeration](corargtype-enumeration.md)
3535
Contains values that describe the native type of a runtime handle.
@@ -149,7 +149,7 @@ This section describes the unmanaged enumerations that the metadata API uses.
149149
Provides values used by the [IMetaDataValidate](imetadatavalidate-interface.md) interface to specify the type of the module (PE file vs. .obj file).
150150

151151
[COUNINITIEE Enumeration](couninitiee-enumeration.md)
152-
Specifies constants used by [CoUninitializeEE](../hosting/couninitializeee-function.md) when initializing the common language runtime.
152+
Specifies constants used by [CoUninitializeEE](../../../framework/unmanaged-api/hosting/couninitializeee-function.md) when initializing the common language runtime.
153153

154154
## Related Sections
155155

docs/core/unmanaged-api/metadata/metadata-global-static-functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ helpviewer_keywords:
99
---
1010
# Metadata Global Static Functions
1111

12-
Beginning with the .NET Framework 4, the documentation for the `_Cor*`, `CoInitialize*`, `CoUninitialize*`, and `CoEEShutDownCOM` functions, which pertain to hosting, is located in [Deprecated CLR Hosting Functions](../hosting/deprecated-clr-hosting-functions.md). There are no global static functions that pertain to metadata.
12+
Beginning with the .NET Framework 4, the documentation for the `_Cor*`, `CoInitialize*`, `CoUninitialize*`, and `CoEEShutDownCOM` functions, which pertain to hosting, is located in [Deprecated CLR Hosting Functions](../../../framework/unmanaged-api/hosting/deprecated-clr-hosting-functions.md). There are no global static functions that pertain to metadata.
1313

1414
## Related Sections
1515

docs/framework/app-domains/application-domains.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Operating systems and runtime environments typically provide some form of isolat
5959

6060
- If an assembly is not loaded domain-neutral, it must be JIT-compiled in every application domain in which it is loaded. However, the assembly can be unloaded from the process by unloading all the application domains in which it is loaded.
6161

62-
The runtime host determines whether to load assemblies as domain-neutral when it loads the runtime into a process. For managed applications, apply the <xref:System.LoaderOptimizationAttribute> attribute to the entry-point method for the process, and specify a value from the associated <xref:System.LoaderOptimization> enumeration. For unmanaged applications that host the common language runtime, specify the appropriate flag when you call the [CorBindToRuntimeEx Function](../../core/unmanaged-api/hosting/corbindtoruntimeex-function.md) method.
62+
The runtime host determines whether to load assemblies as domain-neutral when it loads the runtime into a process. For managed applications, apply the <xref:System.LoaderOptimizationAttribute> attribute to the entry-point method for the process, and specify a value from the associated <xref:System.LoaderOptimization> enumeration. For unmanaged applications that host the common language runtime, specify the appropriate flag when you call the [CorBindToRuntimeEx Function](../unmanaged-api/hosting/corbindtoruntimeex-function.md) method.
6363

6464
There are three options for loading domain-neutral assemblies:
6565

docs/framework/configure-apps/file-schema/runtime/alwaysflowimpersonationpolicy-element.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Specifies that the Windows identity always flows across asynchronous points, reg
6565

6666
2. In the call to the unmanaged hosting interface to load the common language runtime (CLR).
6767

68-
If an unmanaged hosting interface (instead of a simple managed executable) is used to load the CLR, you can specify a special flag in the call to the [CorBindToRuntimeEx Function](../../../../core/unmanaged-api/hosting/corbindtoruntimeex-function.md) function. To enable the compatibility mode for the entire process, set the `flags` parameter for [CorBindToRuntimeEx Function](../../../../core/unmanaged-api/hosting/corbindtoruntimeex-function.md) to `STARTUP_ALWAYSFLOW_IMPERSONATION`.
68+
If an unmanaged hosting interface (instead of a simple managed executable) is used to load the CLR, you can specify a special flag in the call to the [CorBindToRuntimeEx Function](../../../unmanaged-api/hosting/corbindtoruntimeex-function.md) function. To enable the compatibility mode for the entire process, set the `flags` parameter for [CorBindToRuntimeEx Function](../../../unmanaged-api/hosting/corbindtoruntimeex-function.md) to `STARTUP_ALWAYSFLOW_IMPERSONATION`.
6969

7070
## Configuration File
7171

docs/framework/configure-apps/file-schema/runtime/appdomainmanagerassembly-element.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,4 +79,4 @@ Specifies the assembly that provides the application domain manager for the defa
7979
- [\<appDomainManagerType> Element](appdomainmanagertype-element.md)
8080
- [Runtime Settings Schema](index.md)
8181
- [Configuration File Schema](../index.md)
82-
- [SetAppDomainManagerType Method](../../../../core/unmanaged-api/hosting/iclrcontrol-setappdomainmanagertype-method.md)
82+
- [SetAppDomainManagerType Method](../../../unmanaged-api/hosting/iclrcontrol-setappdomainmanagertype-method.md)

docs/framework/configure-apps/file-schema/runtime/appdomainmanagertype-element.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,4 +79,4 @@ Specifies the type that serves as the application domain manager for the default
7979
- [\<appDomainManagerAssembly> Element](appdomainmanagerassembly-element.md)
8080
- [Runtime Settings Schema](index.md)
8181
- [Configuration File Schema](../index.md)
82-
- [SetAppDomainManagerType Method](../../../../core/unmanaged-api/hosting/iclrcontrol-setappdomainmanagertype-method.md)
82+
- [SetAppDomainManagerType Method](../../../unmanaged-api/hosting/iclrcontrol-setappdomainmanagertype-method.md)

0 commit comments

Comments
 (0)