System.Configuration.Assemblies.AssemblyVersionCompatibility Enumeration

Assembly: Mscorlib.dll
Namespace: System.Configuration.Assemblies
Summary
Defines the different types of assembly version compatibility.
C# Syntax:
[Serializable]
public enum AssemblyVersionCompatibility
Remarks
AssemblyVersionCompatibility defines the compatibility of an assembly with other versions of the same assembly, indicating if it cannot execute side-by-side with other versions (for example, due to conflicts over a device driver).

If no compatibility is specified, an assembly is side-by-side compatible in all scopes.

An assembly cannot be more specific with regard to exactly which previous versions it is not side-by-side compatible with. Therefore, if the AssemblyVersionCompatibility is specified, it means the assembly is non side-by-side with all know versions. If not specified, it means it is side-by-side with all known versions.

See also:
System.Configuration.Assemblies Namespace

System.Configuration.Assemblies.AssemblyVersionCompatibility Member List:

Public Fields
SameDomain
SameMachine
SameProcess

Hierarchy:


Top of page

Copyright (c) 2002 Microsoft Corporation. All rights reserved.