VersionNotSupportedException Class

The exception that is thrown when an attempt is made to get replica metadata from a metadata store, but the version of the metadata is not supported by the implementation of the metadata store.

System.Object
  System.Exception
    Microsoft.Synchronization.SyncException
      Microsoft.Synchronization.MetadataStorage.MetadataStoreException
        Microsoft.Synchronization.MetadataStorage.VersionNotSupportedException

Namespace:  Microsoft.Synchronization.MetadataStorage
Assembly:  Microsoft.Synchronization.MetadataStorage (in Microsoft.Synchronization.MetadataStorage.dll)

[SerializableAttribute]
public class VersionNotSupportedException : MetadataStoreException

The VersionNotSupportedException type exposes the following members.

  NameDescription
Public methodVersionNotSupportedException()Initializes a new instance of the VersionNotSupportedException class.
Public methodVersionNotSupportedException(String)Initializes a new instance of the VersionNotSupportedException class that contains a specified error message.
Protected methodVersionNotSupportedException(SerializationInfo, StreamingContext)Initializes a new instance of the VersionNotSupportedException class by using serialized data.
Public methodVersionNotSupportedException(String, Exception)Initializes a new instance of the VersionNotSupportedException class that contains a specified error message and a reference to the inner exception that caused this exception.
Top

  NameDescription
Public propertyData (Inherited from Exception.)
Public propertyErrorNumber Obsolete. Gets or sets an error number for the exception. (Inherited from SyncException.)
Public propertyHelpLink (Inherited from Exception.)
Protected propertyHResult (Inherited from Exception.)
Public propertyInnerException (Inherited from Exception.)
Public propertyMessage (Inherited from Exception.)
Public propertySource (Inherited from Exception.)
Public propertyStackTrace (Inherited from Exception.)
Public propertySyncSource Obsolete. Gets or sets the name of the component that threw the exception. (Inherited from SyncException.)
Public propertySyncStage Obsolete. Gets or sets a SyncStage enumeration value that represents the stage of synchronization during which the error occurred. (Inherited from SyncException.)
Public propertyTargetSite (Inherited from Exception.)
Top

  NameDescription
Public methodEquals (Inherited from Object.)
Protected methodFinalize (Inherited from Object.)
Public methodGetBaseException (Inherited from Exception.)
Public methodGetHashCode (Inherited from Object.)
Public methodGetObjectData (Inherited from Exception.)
Public methodGetType (Inherited from Exception.)
Protected methodMemberwiseClone (Inherited from Object.)
Public methodToString (Inherited from Exception.)
Top

To help prevent corruption of the metadata store that is caused by mismatches between the code and data, version information is created and stored when replica metadata is initialized in a metadata store. When that metadata is accessed later, the version is checked by the code that accesses it, and this exception is thrown when the code does not support the version of the data that is stored. For example, this situation occurs when a version of the metadata storage service is used to create replica metadata and then an earlier version of the metadata storage service tries to access the replica metadata.

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Show: