iOSAttribute Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
iOSAttribute(Byte, Byte) |
Initializes a new availability attribute for iOS with the specified architecture, major and minor versions. |
iOSAttribute(Byte, Byte, Boolean) |
Initializes a new availability attribute for iOS with the specified major and minor versions, and if the attribute only applies to 64-bit architectures. |
iOSAttribute(Byte, Byte, Byte) |
Initializes a new availability attribute for iOS with the specified architecture, major, minor and subminor versions. |
iOSAttribute(Byte, Byte, Byte, Boolean) |
Initializes a new availability attribute for iOS with the specified major, minor and subminor versions, and if the attribute only applies to 64-bit architectures. |
iOSAttribute(Byte, Byte)
Initializes a new availability attribute for iOS with the specified architecture, major and minor versions.
public iOSAttribute (byte major, byte minor);
new ObjCRuntime.iOSAttribute : byte * byte -> ObjCRuntime.iOSAttribute
Parameters
- major
- Byte
The major version number.
- minor
- Byte
The minor version number.
Applies to
iOSAttribute(Byte, Byte, Boolean)
Initializes a new availability attribute for iOS with the specified major and minor versions, and if the attribute only applies to 64-bit architectures.
public iOSAttribute (byte major, byte minor, bool onlyOn64 = false);
new ObjCRuntime.iOSAttribute : byte * byte * bool -> ObjCRuntime.iOSAttribute
Parameters
- major
- Byte
The major version number.
- minor
- Byte
The minor version number.
- onlyOn64
- Boolean
If the attribute only applies to 64-bit architectures.
Applies to
iOSAttribute(Byte, Byte, Byte)
Initializes a new availability attribute for iOS with the specified architecture, major, minor and subminor versions.
public iOSAttribute (byte major, byte minor, byte subminor);
new ObjCRuntime.iOSAttribute : byte * byte * byte -> ObjCRuntime.iOSAttribute
Parameters
- major
- Byte
The major version number.
- minor
- Byte
The minor version number.
- subminor
- Byte
The subminor version number.
Applies to
iOSAttribute(Byte, Byte, Byte, Boolean)
Initializes a new availability attribute for iOS with the specified major, minor and subminor versions, and if the attribute only applies to 64-bit architectures.
public iOSAttribute (byte major, byte minor, byte subminor, bool onlyOn64);
new ObjCRuntime.iOSAttribute : byte * byte * byte * bool -> ObjCRuntime.iOSAttribute
Parameters
- major
- Byte
The major version number.
- minor
- Byte
The minor version number.
- subminor
- Byte
The subminor version number.
- onlyOn64
- Boolean
If the attribute only applies to 64-bit architectures.