BackwardsCompatibleSchemaVersionAttribute constructor
Initializes a new instance of the BackwardsCompatibleSchemaVersionAttribute class.
Namespace: Microsoft.SharePoint.Upgrade
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Syntax
'Declaration
Public Sub New ( _
version As String _
)
'Usage
Dim version As String
Dim instance As New BackwardsCompatibleSchemaVersionAttribute(version)
public BackwardsCompatibleSchemaVersionAttribute(
string version
)
Parameters
version
Type: System.StringA string that contains the major, minor, build, and revision numbers, where each number is delimited with a period character ('.').
Remarks
This attribute should be used on the SPSequence class or one of its subclasses. This attribute should be used together with the SchemaVersionAttribute. This attribute defines the oldest version supported by the SPSequence class on which this attribute is defined. This attribute and the schemaVersion attribute define the compatibility range of the SPSequence class.
See also
Reference
BackwardsCompatibleSchemaVersionAttribute class