ASSEMBLYLOCRESOLUTION
Specifies where an assembly is located.
enum enum_ASSEMBLYLOCRESOLUTION {
ALR_NAME = 0x0,
ALR_USERDIR = 0x1,
ALR_SHAREDDIR = 0x2,
ALR_REMOTEDIR = 0x4,
};
typedef DWORD ASSEMBLYLOCRESOLUTION;
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 IPropertyProxyEESide::ResolveAssemblyRef and IPropertyProxyEESide::GetManagedViewerCreationData 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
Reference
Enumerations (Visual Studio Debugging)