InterfaceImplementedInVersionAttribute Constructor
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Initializes a new instance of the InterfaceImplementedInVersionAttribute class, specifying the interface that the target type implements and the version in which that interface was first implemented.
Assembly: mscorlib (in mscorlib.dll)
'Declaration Public Sub New ( _ interfaceType As Type, _ majorVersion As Byte, _ minorVersion As Byte, _ buildVersion As Byte, _ revisionVersion As Byte _ )
Parameters
- interfaceType
- Type: System.Type
The interface that was first implemented in the specified version of the target type.
- majorVersion
- Type: System.Byte
The major component of the version of the target type that first implemented interfaceType.
- minorVersion
- Type: System.Byte
The minor component of the version of the target type that first implemented interfaceType.
- buildVersion
- Type: System.Byte
The build component of the version of the target type that first implemented interfaceType.
- revisionVersion
- Type: System.Byte
The revision component of the version of the target type that first implemented interfaceType.
Show: