Collapse relative links, Part 3 (#18274)
This commit is contained in:
Родитель
fc6a368342
Коммит
afdf762964
|
@ -43,7 +43,7 @@ HRESULT DebugActiveProcess (
|
|||
Interop debugging is not supported on Win9x and non-x86 platforms, such as IA-64-based and AMD64-based platforms.
|
||||
|
||||
## Requirements
|
||||
**Platforms:** See [System Requirements](../../../../docs/framework/get-started/system-requirements.md).
|
||||
**Platforms:** See [System Requirements](../../get-started/system-requirements.md).
|
||||
|
||||
**Header:** CorDebug.idl, CorDebug.h
|
||||
|
||||
|
|
|
@ -32,7 +32,7 @@ HRESULT EnumerateProcesses (
|
|||
A pointer to the address of an ICorDebugProcessEnum object that is the enumerator for the processes being debugged.
|
||||
|
||||
## Requirements
|
||||
**Platforms:** See [System Requirements](../../../../docs/framework/get-started/system-requirements.md).
|
||||
**Platforms:** See [System Requirements](../../get-started/system-requirements.md).
|
||||
|
||||
**Header:** CorDebug.idl, CorDebug.h
|
||||
|
||||
|
|
|
@ -36,7 +36,7 @@ HRESULT GetProcess (
|
|||
[out] A pointer to the address of a `ICorDebugProcess` instance for the specified process.
|
||||
|
||||
## Requirements
|
||||
**Platforms:** See [System Requirements](../../../../docs/framework/get-started/system-requirements.md).
|
||||
**Platforms:** See [System Requirements](../../get-started/system-requirements.md).
|
||||
|
||||
**Header:** CorDebug.idl, CorDebug.h
|
||||
|
||||
|
|
|
@ -29,7 +29,7 @@ HRESULT Initialize ();
|
|||
The debugger must call `Initialize` at creation time to initialize the debugging services. This method must be called before any other method on `ICorDebug` is called.
|
||||
|
||||
## Requirements
|
||||
**Platforms:** See [System Requirements](../../../../docs/framework/get-started/system-requirements.md).
|
||||
**Platforms:** See [System Requirements](../../get-started/system-requirements.md).
|
||||
|
||||
**Header:** CorDebug.idl, CorDebug.h
|
||||
|
||||
|
|
|
@ -38,13 +38,13 @@ Provides methods that allow developers to debug applications in the common langu
|
|||
## Remarks
|
||||
`ICorDebug` represents an event processing loop for a debugger process. The debugger must wait for the [ICorDebugManagedCallback::ExitProcess](icordebugmanagedcallback-exitprocess-method.md) callback from all processes being debugged before releasing this interface.
|
||||
|
||||
The `ICorDebug` object is the initial object to control all further managed debugging. In the .NET Framework versions 1.0 and 1.1, this object was a `CoClass` object created from COM. In the .NET Framework version 2.0, this object is no longer a `CoClass` object. It must be created by the [CreateDebuggingInterfaceFromVersion](../../../../docs/framework/unmanaged-api/hosting/createdebugginginterfacefromversion-function.md) function, which is more version-aware. This new creation function enables clients to get a specific implementation of `ICorDebug`, which also emulates a specific version of the debugging API.
|
||||
The `ICorDebug` object is the initial object to control all further managed debugging. In the .NET Framework versions 1.0 and 1.1, this object was a `CoClass` object created from COM. In the .NET Framework version 2.0, this object is no longer a `CoClass` object. It must be created by the [CreateDebuggingInterfaceFromVersion](../hosting/createdebugginginterfacefromversion-function.md) function, which is more version-aware. This new creation function enables clients to get a specific implementation of `ICorDebug`, which also emulates a specific version of the debugging API.
|
||||
|
||||
> [!NOTE]
|
||||
> This interface does not support being called remotely, either cross-machine or cross-process.
|
||||
|
||||
## Requirements
|
||||
**Platforms:** See [System Requirements](../../../../docs/framework/get-started/system-requirements.md).
|
||||
**Platforms:** See [System Requirements](../../get-started/system-requirements.md).
|
||||
|
||||
**Header:** CorDebug.idl, CorDebug.h
|
||||
|
||||
|
|
|
@ -37,7 +37,7 @@ HRESULT SetManagedHandler (
|
|||
If the `ICorDebugManagedCallback` implementation does not contain sufficient interfaces to handle debugging events for the application that is being debugged, `SetManagedHandler` returns an HRESULT of E_NOINTERFACE.
|
||||
|
||||
## Requirements
|
||||
**Platforms:** See [System Requirements](../../../../docs/framework/get-started/system-requirements.md).
|
||||
**Platforms:** See [System Requirements](../../get-started/system-requirements.md).
|
||||
|
||||
**Header:** CorDebug.idl, CorDebug.h
|
||||
|
||||
|
|
|
@ -35,7 +35,7 @@ HRESULT SetUnmanagedHandler (
|
|||
The event handler object for unmanaged events must be set after a call to [ICorDebug::Initialize](icordebug-initialize-method.md) and before any calls to [ICorDebug::CreateProcess](icordebug-createprocess-method.md) or [ICorDebug::DebugActiveProcess](icordebug-debugactiveprocess-method.md). However, for legacy purposes, you are not required to set the event handler object for unmanaged events until the first native debug event is raised. Specifically, if `ICorDebug::CreateProcess` has set the CREATE_SUSPENDED flag, native debug events cannot be dispatched until the main thread is resumed.
|
||||
|
||||
## Requirements
|
||||
**Platforms:** See [System Requirements](../../../../docs/framework/get-started/system-requirements.md).
|
||||
**Platforms:** See [System Requirements](../../get-started/system-requirements.md).
|
||||
|
||||
**Header:** CorDebug.idl, CorDebug.h
|
||||
|
||||
|
|
|
@ -32,7 +32,7 @@ HRESULT Terminate ();
|
|||
`Terminate` must be called when the `ICorDebug` object is no longer needed.
|
||||
|
||||
## Requirements
|
||||
**Platforms:** See [System Requirements](../../../../docs/framework/get-started/system-requirements.md).
|
||||
**Platforms:** See [System Requirements](../../get-started/system-requirements.md).
|
||||
|
||||
**Header:** CorDebug.idl, CorDebug.h
|
||||
|
||||
|
|
|
@ -29,7 +29,7 @@ HRESULT Attach ();
|
|||
The debugger must be attached to the application domain to receive events and to enable debugging of the application domain.
|
||||
|
||||
## Requirements
|
||||
**Platforms:** See [System Requirements](../../../../docs/framework/get-started/system-requirements.md).
|
||||
**Platforms:** See [System Requirements](../../get-started/system-requirements.md).
|
||||
|
||||
**Header:** CorDebug.idl, CorDebug.h
|
||||
|
||||
|
|
|
@ -32,7 +32,7 @@ HRESULT EnumerateAssemblies (
|
|||
[out] A pointer to the address of an ICorDebugAssemblyEnum object that is the enumerator for the assemblies in the application domain.
|
||||
|
||||
## Requirements
|
||||
**Platforms:** See [System Requirements](../../../../docs/framework/get-started/system-requirements.md).
|
||||
**Platforms:** See [System Requirements](../../get-started/system-requirements.md).
|
||||
|
||||
**Header:** CorDebug.idl, CorDebug.h
|
||||
|
||||
|
|
|
@ -35,7 +35,7 @@ HRESULT EnumerateBreakpoints (
|
|||
The enumerator includes all types of breakpoints, including function breakpoints and data breakpoints.
|
||||
|
||||
## Requirements
|
||||
**Platforms:** See [System Requirements](../../../../docs/framework/get-started/system-requirements.md).
|
||||
**Platforms:** See [System Requirements](../../get-started/system-requirements.md).
|
||||
|
||||
**Header:** CorDebug.idl, CorDebug.h
|
||||
|
||||
|
|
|
@ -32,7 +32,7 @@ HRESULT EnumerateSteppers (
|
|||
[out] A pointer to the address of an ICorDebugStepperEnum object that is the enumerator for all active steppers in the application domain.
|
||||
|
||||
## Requirements
|
||||
**Platforms:** See [System Requirements](../../../../docs/framework/get-started/system-requirements.md).
|
||||
**Platforms:** See [System Requirements](../../get-started/system-requirements.md).
|
||||
|
||||
**Header:** CorDebug.idl, CorDebug.h
|
||||
|
||||
|
|
|
@ -35,7 +35,7 @@ HRESULT GetID (
|
|||
The identifier for the application domain is unique within the containing process.
|
||||
|
||||
## Requirements
|
||||
**Platforms:** See [System Requirements](../../../../docs/framework/get-started/system-requirements.md).
|
||||
**Platforms:** See [System Requirements](../../get-started/system-requirements.md).
|
||||
|
||||
**Header:** CorDebug.idl, CorDebug.h
|
||||
|
||||
|
|
|
@ -30,13 +30,13 @@ HRESULT GetModuleFromMetaDataInterface (
|
|||
|
||||
## Parameters
|
||||
`pIMetaData`
|
||||
[in] A pointer to an object that is one of the [Metadata interfaces](../../../../docs/framework/unmanaged-api/metadata/metadata-interfaces.md).
|
||||
[in] A pointer to an object that is one of the [Metadata interfaces](../metadata/metadata-interfaces.md).
|
||||
|
||||
`ppModule`
|
||||
[out] A pointer to the address of an ICorDebugModule object that represents the module corresponding to the given metadata interface.
|
||||
|
||||
## Requirements
|
||||
**Platforms:** See [System Requirements](../../../../docs/framework/get-started/system-requirements.md).
|
||||
**Platforms:** See [System Requirements](../../get-started/system-requirements.md).
|
||||
|
||||
**Header:** CorDebug.idl, CorDebug.h
|
||||
|
||||
|
|
|
@ -44,7 +44,7 @@ HRESULT GetName (
|
|||
A debugger calls the `GetName` method once to get the size of a buffer needed for the name. The debugger allocates the buffer, and then calls the method a second time to fill the buffer. The first call, to get the size of the name, is referred to as *query mode*.
|
||||
|
||||
## Requirements
|
||||
**Platforms:** See [System Requirements](../../../../docs/framework/get-started/system-requirements.md).
|
||||
**Platforms:** See [System Requirements](../../get-started/system-requirements.md).
|
||||
|
||||
**Header:** CorDebug.idl, CorDebug.h
|
||||
|
||||
|
|
|
@ -38,7 +38,7 @@ HRESULT GetObject (
|
|||
Each application domain in a process may have a managed <xref:System.AppDomain?displayProperty=nameWithType> object in the runtime that represents it. This function gets an ICorDebugValue interface object that corresponds to this managed <xref:System.AppDomain?displayProperty=nameWithType> object.
|
||||
|
||||
## Requirements
|
||||
**Platforms:** See [System Requirements](../../../../docs/framework/get-started/system-requirements.md).
|
||||
**Platforms:** See [System Requirements](../../get-started/system-requirements.md).
|
||||
|
||||
**Header:** CorDebug.idl, CorDebug.h
|
||||
|
||||
|
|
|
@ -32,7 +32,7 @@ HRESULT GetProcess (
|
|||
[out] A pointer to the address of an ICorDebugProcess object that represents the process.
|
||||
|
||||
## Requirements
|
||||
**Platforms:** See [System Requirements](../../../../docs/framework/get-started/system-requirements.md).
|
||||
**Platforms:** See [System Requirements](../../get-started/system-requirements.md).
|
||||
|
||||
**Header:** CorDebug.idl, CorDebug.h
|
||||
|
||||
|
|
|
@ -40,7 +40,7 @@ Provides methods for debugging application domains. This interface is a subclass
|
|||
> This interface does not support being called remotely, either cross-machine or cross-process.
|
||||
|
||||
## Requirements
|
||||
**Platforms:** See [System Requirements](../../../../docs/framework/get-started/system-requirements.md).
|
||||
**Platforms:** See [System Requirements](../../get-started/system-requirements.md).
|
||||
|
||||
**Header:** CorDebug.idl, CorDebug.h
|
||||
|
||||
|
|
|
@ -35,7 +35,7 @@ HRESULT IsAttached (
|
|||
The ICorDebugController methods cannot be used until the debugger attaches to the application domain.
|
||||
|
||||
## Requirements
|
||||
**Platforms:** See [System Requirements](../../../../docs/framework/get-started/system-requirements.md).
|
||||
**Platforms:** See [System Requirements](../../get-started/system-requirements.md).
|
||||
|
||||
**Header:** CorDebug.idl, CorDebug.h
|
||||
|
||||
|
|
|
@ -55,7 +55,7 @@ HRESULT GetArrayOrPointerType (
|
|||
If the value of *elementType* is ELEMENT_TYPE_PTR or ELEMENT_TYPE_BYREF, *nRank* must be zero.
|
||||
|
||||
## Requirements
|
||||
**Platforms:** See [System Requirements](../../../../docs/framework/get-started/system-requirements.md).
|
||||
**Platforms:** See [System Requirements](../../get-started/system-requirements.md).
|
||||
|
||||
**Header:** CorDebug.idl, CorDebug.h
|
||||
|
||||
|
|
|
@ -40,7 +40,7 @@ HRESULT GetFunctionPointerType (
|
|||
[out] A pointer to the address of an `ICorDebugType` object that represents the pointer to the function.
|
||||
|
||||
## Requirements
|
||||
**Platforms:** See [System Requirements](../../../../docs/framework/get-started/system-requirements.md).
|
||||
**Platforms:** See [System Requirements](../../get-started/system-requirements.md).
|
||||
|
||||
**Header:** CorDebug.idl, CorDebug.h
|
||||
|
||||
|
|
|
@ -32,7 +32,7 @@ Provides methods to work with arrays, pointers, function pointers, and reference
|
|||
> This interface does not support being called remotely, either cross-machine or cross-process.
|
||||
|
||||
## Requirements
|
||||
**Platforms:** See [System Requirements](../../../../docs/framework/get-started/system-requirements.md).
|
||||
**Platforms:** See [System Requirements](../../get-started/system-requirements.md).
|
||||
|
||||
**Header:** CorDebug.idl, CorDebug.h
|
||||
|
||||
|
|
|
@ -25,7 +25,7 @@ HRESULT GetObjectForCCW(
|
|||
## Remarks
|
||||
|
||||
## Requirements
|
||||
**Platforms:** See [System Requirements](../../../../docs/framework/get-started/system-requirements.md).
|
||||
**Platforms:** See [System Requirements](../../get-started/system-requirements.md).
|
||||
|
||||
**Header:** CorDebug.idl, CorDebug.h
|
||||
|
||||
|
|
|
@ -15,7 +15,7 @@ Logically extends the ICorDebugAppDomain interface to get a managed object from
|
|||
## Remarks
|
||||
|
||||
## Requirements
|
||||
**Platforms:** See [System Requirements](../../../../docs/framework/get-started/system-requirements.md).
|
||||
**Platforms:** See [System Requirements](../../get-started/system-requirements.md).
|
||||
|
||||
**Header:** CorDebug.idl, CorDebug.h
|
||||
|
||||
|
|
|
@ -31,7 +31,7 @@ Provides the `Next` method, which returns a specified number of `ICorDebugAppDom
|
|||
> This interface does not support being called remotely, either cross-machine or cross-process.
|
||||
|
||||
## Requirements
|
||||
**Platforms:** See [System Requirements](../../../../docs/framework/get-started/system-requirements.md).
|
||||
**Platforms:** See [System Requirements](../../get-started/system-requirements.md).
|
||||
|
||||
**Header:** CorDebug.idl, CorDebug.h
|
||||
|
||||
|
|
|
@ -41,7 +41,7 @@ HRESULT Next (
|
|||
[out] A pointer to the number of application domains actually returned. This value may be null if `celt` is one.
|
||||
|
||||
## Requirements
|
||||
**Platforms:** See [System Requirements](../../../../docs/framework/get-started/system-requirements.md).
|
||||
**Platforms:** See [System Requirements](../../get-started/system-requirements.md).
|
||||
|
||||
**Header:** CorDebug.idl, CorDebug.h
|
||||
|
||||
|
|
|
@ -37,7 +37,7 @@ HRESULT GetBaseIndicies (
|
|||
[out] An array of integers, each of which is the base index (that is, the starting index) of a dimension of this `ICorDebugArrayValue` object.
|
||||
|
||||
## Requirements
|
||||
**Platforms:** See [System Requirements](../../../../docs/framework/get-started/system-requirements.md).
|
||||
**Platforms:** See [System Requirements](../../get-started/system-requirements.md).
|
||||
|
||||
**Header:** CorDebug.idl, CorDebug.h
|
||||
|
||||
|
|
|
@ -32,7 +32,7 @@ HRESULT GetCount (
|
|||
[out] A pointer to the total number of elements in the array.
|
||||
|
||||
## Requirements
|
||||
**Platforms:** See [System Requirements](../../../../docs/framework/get-started/system-requirements.md).
|
||||
**Platforms:** See [System Requirements](../../get-started/system-requirements.md).
|
||||
|
||||
**Header:** CorDebug.idl, CorDebug.h
|
||||
|
||||
|
|
|
@ -39,7 +39,7 @@ HRESULT GetDimensions (
|
|||
[out] An array of integers, each of which specifies the number of elements in a dimension in this `ICorDebugArrayValue` object.
|
||||
|
||||
## Requirements
|
||||
**Platforms:** See [System Requirements](../../../../docs/framework/get-started/system-requirements.md).
|
||||
**Platforms:** See [System Requirements](../../get-started/system-requirements.md).
|
||||
|
||||
**Header:** CorDebug.idl, CorDebug.h
|
||||
|
||||
|
|
|
@ -45,7 +45,7 @@ HRESULT GetElement (
|
|||
[out] A pointer to the address of an ICorDebugValue object that represents the value of the specified element.
|
||||
|
||||
## Requirements
|
||||
**Platforms:** See [System Requirements](../../../../docs/framework/get-started/system-requirements.md).
|
||||
**Platforms:** See [System Requirements](../../get-started/system-requirements.md).
|
||||
|
||||
**Header:** CorDebug.idl, CorDebug.h
|
||||
|
||||
|
|
|
@ -39,7 +39,7 @@ HRESULT GetElementAtPosition (
|
|||
The layout of a multi-dimension array follows the C++ style of array layout.
|
||||
|
||||
## Requirements
|
||||
**Platforms:** See [System Requirements](../../../../docs/framework/get-started/system-requirements.md).
|
||||
**Platforms:** See [System Requirements](../../get-started/system-requirements.md).
|
||||
|
||||
**Header:** CorDebug.idl, CorDebug.h
|
||||
|
||||
|
|
|
@ -32,7 +32,7 @@ HRESULT GetElementType (
|
|||
[out] A pointer to a value of the CorElementType enumeration that indicates the type.
|
||||
|
||||
## Requirements
|
||||
**Platforms:** See [System Requirements](../../../../docs/framework/get-started/system-requirements.md).
|
||||
**Platforms:** See [System Requirements](../../get-started/system-requirements.md).
|
||||
|
||||
**Header:** CorDebug.idl, CorDebug.h
|
||||
|
||||
|
|
|
@ -32,7 +32,7 @@ HRESULT GetRank (
|
|||
[out] A pointer to the number of dimensions in this `ICorDebugArrayValue` object.
|
||||
|
||||
## Requirements
|
||||
**Platforms:** See [System Requirements](../../../../docs/framework/get-started/system-requirements.md).
|
||||
**Platforms:** See [System Requirements](../../get-started/system-requirements.md).
|
||||
|
||||
**Header:** CorDebug.idl, CorDebug.h
|
||||
|
||||
|
|
|
@ -32,7 +32,7 @@ HRESULT HasBaseIndicies (
|
|||
[out] A pointer to a Boolean value that is `true` if one or more dimensions of this `ICorDebugArrayValue` object have a base index of non-zero; otherwise, the Boolean value is `false`.
|
||||
|
||||
## Requirements
|
||||
**Platforms:** See [System Requirements](../../../../docs/framework/get-started/system-requirements.md).
|
||||
**Platforms:** See [System Requirements](../../get-started/system-requirements.md).
|
||||
|
||||
**Header:** CorDebug.idl, CorDebug.h
|
||||
|
||||
|
|
|
@ -39,7 +39,7 @@ A subclass of ICorDebugHeapValue that represents a single-dimensional or multi-d
|
|||
> This interface does not support being called remotely, either cross-machine or cross-process.
|
||||
|
||||
## Requirements
|
||||
**Platforms:** See [System Requirements](../../../../docs/framework/get-started/system-requirements.md).
|
||||
**Platforms:** See [System Requirements](../../get-started/system-requirements.md).
|
||||
|
||||
**Header:** CorDebug.idl, CorDebug.h
|
||||
|
||||
|
|
|
@ -32,7 +32,7 @@ HRESULT EnumerateModules (
|
|||
[out] A pointer to the address of the ICorDebugModuleEnum interface that is the enumerator.
|
||||
|
||||
## Requirements
|
||||
**Platforms:** See [System Requirements](../../../../docs/framework/get-started/system-requirements.md).
|
||||
**Platforms:** See [System Requirements](../../get-started/system-requirements.md).
|
||||
|
||||
**Header:** CorDebug.idl, CorDebug.h
|
||||
|
||||
|
|
|
@ -35,7 +35,7 @@ HRESULT GetAppDomain (
|
|||
If this assembly is the system assembly, `GetAppDomain` returns null.
|
||||
|
||||
## Requirements
|
||||
**Platforms:** See [System Requirements](../../../../docs/framework/get-started/system-requirements.md).
|
||||
**Platforms:** See [System Requirements](../../get-started/system-requirements.md).
|
||||
|
||||
**Header:** CorDebug.idl, CorDebug.h
|
||||
|
||||
|
|
|
@ -43,7 +43,7 @@ HRESULT GetName (
|
|||
The `GetName` method returns the full path and file name of the assembly.
|
||||
|
||||
## Requirements
|
||||
**Platforms:** See [System Requirements](../../../../docs/framework/get-started/system-requirements.md).
|
||||
**Platforms:** See [System Requirements](../../get-started/system-requirements.md).
|
||||
|
||||
**Header:** CorDebug.idl, CorDebug.h
|
||||
|
||||
|
|
|
@ -32,7 +32,7 @@ HRESULT GetProcess (
|
|||
[out] A pointer to an ICorDebugProcess interface that represents the process.
|
||||
|
||||
## Requirements
|
||||
**Platforms:** See [System Requirements](../../../../docs/framework/get-started/system-requirements.md).
|
||||
**Platforms:** See [System Requirements](../../get-started/system-requirements.md).
|
||||
|
||||
**Header:** CorDebug.idl, CorDebug.h
|
||||
|
||||
|
|
|
@ -35,7 +35,7 @@ Represents an assembly.
|
|||
> This interface does not support being called remotely, either cross-machine or cross-process.
|
||||
|
||||
## Requirements
|
||||
**Platforms:** See [System Requirements](../../../../docs/framework/get-started/system-requirements.md).
|
||||
**Platforms:** See [System Requirements](../../get-started/system-requirements.md).
|
||||
|
||||
**Header:** CorDebug.idl, CorDebug.h
|
||||
|
||||
|
|
|
@ -31,7 +31,7 @@ Represents an assembly. This interface is an extension of the ICorDebugAssembly
|
|||
> This interface does not support being called remotely, either cross-machine or cross-process.
|
||||
|
||||
## Requirements
|
||||
**Platforms:** See [System Requirements](../../../../docs/framework/get-started/system-requirements.md).
|
||||
**Platforms:** See [System Requirements](../../get-started/system-requirements.md).
|
||||
|
||||
**Header:** CorDebug.idl, CorDebug.h
|
||||
|
||||
|
|
|
@ -35,7 +35,7 @@ HRESULT IsFullyTrusted(
|
|||
This method returns an HRESULT of CORDBG_E_NOTREADY if the security policy for the assembly has not yet been resolved, that is, if no code in the assembly has been run yet.
|
||||
|
||||
## Requirements
|
||||
**Platforms:** See [System Requirements](../../../../docs/framework/get-started/system-requirements.md).
|
||||
**Platforms:** See [System Requirements](../../get-started/system-requirements.md).
|
||||
|
||||
**Header:** CorDebug.idl, CorDebug.h
|
||||
|
||||
|
|
|
@ -28,7 +28,7 @@ HRESULT EnumerateContainedAssemblies(
|
|||
> This method is available with .NET Native only.
|
||||
|
||||
## Requirements
|
||||
**Platforms:** See [System Requirements](../../../../docs/framework/get-started/system-requirements.md).
|
||||
**Platforms:** See [System Requirements](../../get-started/system-requirements.md).
|
||||
|
||||
**Header:** CorDebug.idl, CorDebug.h
|
||||
|
||||
|
|
|
@ -28,7 +28,7 @@ HRESULT GetContainerAssembly(
|
|||
> This method is available with .NET Native only.
|
||||
|
||||
## Requirements
|
||||
**Platforms:** See [System Requirements](../../../../docs/framework/get-started/system-requirements.md).
|
||||
**Platforms:** See [System Requirements](../../get-started/system-requirements.md).
|
||||
|
||||
**Header:** CorDebug.idl, CorDebug.h
|
||||
|
||||
|
|
|
@ -19,7 +19,7 @@ Logically extends the ICorDebugAssembly interface to provide support for contain
|
|||
> The interface is available with .NET Native only. Attempting to call `QueryInterface` to retrieve an interface pointer returns `E_NOINTERFACE` for ICorDebug scenarios outside of .NET Native.
|
||||
|
||||
## Requirements
|
||||
**Platforms:** See [System Requirements](../../../../docs/framework/get-started/system-requirements.md).
|
||||
**Platforms:** See [System Requirements](../../get-started/system-requirements.md).
|
||||
|
||||
**Header:** CorDebug.idl, CorDebug.h
|
||||
|
||||
|
|
|
@ -31,7 +31,7 @@ Implements ICorDebugEnum methods and enumerates ICorDebugAssembly arrays.
|
|||
> This interface does not support being called remotely, either cross-machine or cross-process.
|
||||
|
||||
## Requirements
|
||||
**Platforms:** See [System Requirements](../../../../docs/framework/get-started/system-requirements.md).
|
||||
**Platforms:** See [System Requirements](../../get-started/system-requirements.md).
|
||||
|
||||
**Header:** CorDebug.idl, CorDebug.h
|
||||
|
||||
|
|
|
@ -41,7 +41,7 @@ HRESULT Next (
|
|||
[out] A pointer to the number of assemblies actually returned. This value may be null if `celt` is one.
|
||||
|
||||
## Requirements
|
||||
**Platforms:** See [System Requirements](../../../../docs/framework/get-started/system-requirements.md).
|
||||
**Platforms:** See [System Requirements](../../get-started/system-requirements.md).
|
||||
|
||||
**Header:** CorDebug.idl, CorDebug.h
|
||||
|
||||
|
|
|
@ -31,7 +31,7 @@ Provides an enumerator for a list of [CorDebugBlockingObject](cordebugblockingob
|
|||
> This interface does not support being called remotely, either cross-machine or cross-process.
|
||||
|
||||
## Requirements
|
||||
**Platforms:** See [System Requirements](../../../../docs/framework/get-started/system-requirements.md).
|
||||
**Platforms:** See [System Requirements](../../get-started/system-requirements.md).
|
||||
|
||||
**Header:** CorDebug.idl, CorDebug.h
|
||||
|
||||
|
|
|
@ -55,7 +55,7 @@ HRESULT Next([in] ULONG celt,
|
|||
> Although the [CorDebugBlockingObject](cordebugblockingobject-structure.md) structure does not need to be released, the "ICorDebugValue" interface inside of it does need to be released.
|
||||
|
||||
## Requirements
|
||||
**Platforms:** See [System Requirements](../../../../docs/framework/get-started/system-requirements.md).
|
||||
**Platforms:** See [System Requirements](../../get-started/system-requirements.md).
|
||||
|
||||
**Header:** CorDebug.idl, CorDebug.h
|
||||
|
||||
|
|
|
@ -32,7 +32,7 @@ HRESULT GetObject (
|
|||
[out] A pointer to the address of an ICorDebugObjectValue object that represents the boxed value.
|
||||
|
||||
## Requirements
|
||||
**Platforms:** See [System Requirements](../../../../docs/framework/get-started/system-requirements.md).
|
||||
**Platforms:** See [System Requirements](../../get-started/system-requirements.md).
|
||||
|
||||
**Header:** CorDebug.idl, CorDebug.h
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче