Skip to content

Delete unnecessary spaces #2523

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Feb 14, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
139 changes: 71 additions & 68 deletions docs/extensibility/debugger/reference/encunavailablereason.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,80 +2,83 @@
title: "EncUnavailableReason | Microsoft Docs"
ms.date: "11/04/2016"
ms.topic: "conceptual"
f1_keywords:
f1_keywords:
- "EncUnavailableReason"
helpviewer_keywords:
helpviewer_keywords:
- "EncUnavailableReason enumeration"
ms.assetid: c10aa4c0-d7e0-4de1-b8ff-7e050985eb12
author: "gregvanl"
ms.author: "gregvanl"
manager: jillfra
ms.workload:
ms.workload:
- "vssdk"
---
# EncUnavailableReason
`This is for internal use only!` Represents the reasons that **Edit and Continue** is not available.

## Syntax

```cpp
enum tagEncUnavailableReason {
ENCUN_NONE,
ENCUN_INTEROP,
ENCUN_SQLCLR,
ENCUN_MINIDUMP,
ENCUN_EMBEDDED,
ENCUN_ATTACH,
ENCUN_WIN64
};
typedef enum tagEncUnavailableReason EncUnavailableReason;
```

```csharp
public enum EncUnavailableReason {
ENCUN_NONE,
ENCUN_INTEROP,
ENCUN_SQLCLR,
ENCUN_MINIDUMP,
ENCUN_EMBEDDED,
ENCUN_ATTACH,
ENCUN_WIN64
};
```

#### Parameters
ENCUN_NONE
No specific reason why Edit and Continue is not available.

ENCUN_INTEROP
Edit and Continue is not available during an InterOp call.

ENCUN_SQLCLR
Edit and Continue is not available during an SQL procedure call that uses the Common Language Runtime (CLR).

ENCUN_MINIDUMP
Edit and Continue is not available while processing a mini-dump.

ENCUN_EMBEDDED
Edit and Continue is not available when processing embedded code.

ENCUN_ATTACH
Edit and Continue is not available because the session was attached to, not launched by, the debugger.

ENCUN_WIN64
Edit and Continue is not available while processing 64-bit Windows code.

## Remarks
This enumeration is for internal use only by [!INCLUDE[vsprvs](../../../code-quality/includes/vsprvs_md.md)]. The [GetENCAvailableState](../../../extensibility/debugger/reference/idebugprocess3-getencavailablestate.md) and [DisableENC](../../../extensibility/debugger/reference/idebugprocess3-disableenc.md) methods as implemented by a custom port supplier should always return `E_NOTIMPL`.

## Requirements
Header: msdbg.idl

Namespace: Microsoft.VisualStudio.Debugger.Interop

Assembly: Microsoft.VisualStudio.Debugger.Interop.dll

## See Also
[Enumerations](../../../extensibility/debugger/reference/enumerations-visual-studio-debugging.md)
[DisableENC](../../../extensibility/debugger/reference/idebugprocess3-disableenc.md)
[GetENCAvailableState](../../../extensibility/debugger/reference/idebugprocess3-getencavailablestate.md)
`This is for internal use only!` Represents the reasons that **Edit and Continue** is not available.

## Syntax

```cpp
enum tagEncUnavailableReason {
ENCUN_NONE,
ENCUN_INTEROP,
ENCUN_SQLCLR,
ENCUN_MINIDUMP,
ENCUN_EMBEDDED,
ENCUN_ATTACH,
ENCUN_WIN64
};
typedef enum tagEncUnavailableReason EncUnavailableReason;
```

```csharp
public enum EncUnavailableReason {
ENCUN_NONE,
ENCUN_INTEROP,
ENCUN_SQLCLR,
ENCUN_MINIDUMP,
ENCUN_EMBEDDED,
ENCUN_ATTACH,
ENCUN_WIN64
};
```

#### Parameters
ENCUN_NONE
No specific reason why Edit and Continue is not available.

ENCUN_INTEROP
Edit and Continue is not available during an InterOp call.

ENCUN_SQLCLR
Edit and Continue is not available during an SQL procedure call that uses the Common Language Runtime (CLR).

ENCUN_MINIDUMP
Edit and Continue is not available while processing a mini-dump.

ENCUN_EMBEDDED
Edit and Continue is not available when processing embedded code.

ENCUN_ATTACH
Edit and Continue is not available because the session was attached to, not launched by, the debugger.

ENCUN_WIN64
Edit and Continue is not available while processing 64-bit Windows code.

## Remarks
This enumeration is for internal use only by [!INCLUDE[vsprvs](../../../code-quality/includes/vsprvs_md.md)]. The [GetENCAvailableState](../../../extensibility/debugger/reference/idebugprocess3-getencavailablestate.md) and [DisableENC](../../../extensibility/debugger/reference/idebugprocess3-disableenc.md) methods as implemented by a custom port supplier should always return `E_NOTIMPL`.

## Requirements
Header: msdbg.idl

Namespace: Microsoft.VisualStudio.Debugger.Interop

Assembly: Microsoft.VisualStudio.Debugger.Interop.dll

## See Also
[Enumerations](../../../extensibility/debugger/reference/enumerations-visual-studio-debugging.md)

[DisableENC](../../../extensibility/debugger/reference/idebugprocess3-disableenc.md)

[GetENCAvailableState](../../../extensibility/debugger/reference/idebugprocess3-getencavailablestate.md)