Skip to content

Commit

Permalink
Fix selector typo swap
Browse files Browse the repository at this point in the history
  • Loading branch information
rachelkang committed Aug 23, 2021
1 parent cd3178c commit 82eb501
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/vision.cs
Original file line number Diff line number Diff line change
Expand Up @@ -750,22 +750,23 @@ interface VNDetectBarcodesRequest {
[Deprecated (PlatformName.TvOS, 15, 0, message: "Use 'GetSupportedSymbologies' instead.")]
[Static]
[Protected]
[Export ("supportedSymbologiesAndReturnError:", ArgumentSemantic.Copy)]
[Export ("supportedSymbologies", ArgumentSemantic.Copy)]
NSString [] WeakSupportedSymbologies { get; }

[Static]
[Wrap ("VNBarcodeSymbologyExtensions.GetValues (WeakSupportedSymbologies)")]
VNBarcodeSymbology [] SupportedSymbologies { get; }

[Static]
[Protected]
[TV (15,0), Mac (12,0), iOS (15,0), MacCatalyst (15,0)]
[Export ("supportedSymbologies:")]
[Export ("supportedSymbologiesAndReturnError:")]
[return: NullAllowed]
NSString [] GetWeakSupportedSymbologies ([NullAllowed] out NSError error);

[Static]
[TV (15,0), Mac (12,0), iOS (15,0), MacCatalyst (15,0)]
[Wrap ("VNBarcodeSymbologyExtensions.GetValues (GetWeakSupportedSymbologies)")]
[Wrap ("VNBarcodeSymbologyExtensions.GetValues (GetWeakSupportedSymbologies (out error))")]
VNBarcodeSymbology [] GetSupportedSymbologies ([NullAllowed] out NSError error);

[Protected]
Expand Down

0 comments on commit 82eb501

Please sign in to comment.