Skip to content

Delete unnecessary spaces #2488

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 2 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
110 changes: 55 additions & 55 deletions docs/extensibility/debugger/reference/assemblylocresolution.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,67 +2,67 @@
title: "ASSEMBLYLOCRESOLUTION | Microsoft Docs"
ms.date: "11/04/2016"
ms.topic: "conceptual"
f1_keywords:
f1_keywords:
- "ASSEMBLYLOCRESOLUTION"
helpviewer_keywords:
helpviewer_keywords:
- "ASSEMBLYLOCRESOLUTION enumeration"
ms.assetid: 0bcfe85c-5f37-4a9d-bf2b-141acd96ad67
author: "gregvanl"
ms.author: "gregvanl"
manager: jillfra
ms.workload:
ms.workload:
- "vssdk"
---
# ASSEMBLYLOCRESOLUTION
Specifies where an assembly is located.
## Syntax
```cpp
enum enum_ASSEMBLYLOCRESOLUTION {
ALR_NAME = 0x0,
ALR_USERDIR = 0x1,
ALR_SHAREDDIR = 0x2,
ALR_REMOTEDIR = 0x4,
};
typedef DWORD ASSEMBLYLOCRESOLUTION;
```
```csharp
public enum enum_ASSEMBLYLOCRESOLUTION {
ALR_NAME = 0x0,
ALR_USERDIR = 0x1,
ALR_SHAREDDIR = 0x2,
ALR_REMOTEDIR = 0x4,
};
```
## Members
ALR_NAME
Assembly is located in the current namespace.
ALR_USERDIR
Assembly is located in a user directory.
ALR_SHAREDDIR
Assembly is located in shared directory.
ALR_REMOTEDIR
Assembly is located in a remote directory.
## Remarks
These values are returned by the [ResolveAssemblyRef](../../../extensibility/debugger/reference/ipropertyproxyeeside-resolveassemblyref.md) and [GetManagedViewerCreationData](../../../extensibility/debugger/reference/ipropertyproxyeeside-getmanagedviewercreationdata.md) methods.
These values can be combined with the `OR` operation.
## Requirements
Header: msdbg.h
Namespace: Microsoft.VisualStudio.Debugger.Interop
Assembly: Microsoft.VisualStudio.Debugger.Interop.dll
## See Also
[Enumerations](../../../extensibility/debugger/reference/enumerations-visual-studio-debugging.md)
[ResolveAssemblyRef](../../../extensibility/debugger/reference/ipropertyproxyeeside-resolveassemblyref.md)
[GetManagedViewerCreationData](../../../extensibility/debugger/reference/ipropertyproxyeeside-getmanagedviewercreationdata.md)
Specifies where an assembly is located.

## Syntax

```cpp
enum enum_ASSEMBLYLOCRESOLUTION {
ALR_NAME = 0x0,
ALR_USERDIR = 0x1,
ALR_SHAREDDIR = 0x2,
ALR_REMOTEDIR = 0x4,
};
typedef DWORD ASSEMBLYLOCRESOLUTION;
```

```csharp
public enum enum_ASSEMBLYLOCRESOLUTION {
ALR_NAME = 0x0,
ALR_USERDIR = 0x1,
ALR_SHAREDDIR = 0x2,
ALR_REMOTEDIR = 0x4,
};
```

## Members
ALR_NAME
Assembly is located in the current namespace.

ALR_USERDIR
Assembly is located in a user directory.

ALR_SHAREDDIR
Assembly is located in shared directory.

ALR_REMOTEDIR
Assembly is located in a remote directory.

## Remarks
These values are returned by the [ResolveAssemblyRef](../../../extensibility/debugger/reference/ipropertyproxyeeside-resolveassemblyref.md) and [GetManagedViewerCreationData](../../../extensibility/debugger/reference/ipropertyproxyeeside-getmanagedviewercreationdata.md) methods.

These values can be combined with the `OR` operation.

## Requirements
Header: msdbg.h

Namespace: Microsoft.VisualStudio.Debugger.Interop

Assembly: Microsoft.VisualStudio.Debugger.Interop.dll

## See Also
[Enumerations](../../../extensibility/debugger/reference/enumerations-visual-studio-debugging.md)
[ResolveAssemblyRef](../../../extensibility/debugger/reference/ipropertyproxyeeside-resolveassemblyref.md)
[GetManagedViewerCreationData](../../../extensibility/debugger/reference/ipropertyproxyeeside-getmanagedviewercreationdata.md)