Skip to content

Instantly share code, notes, and snippets.

@vs-mobiletools-engineering-service2
Created July 7, 2022 16:07
Show Gist options
  • Save vs-mobiletools-engineering-service2/26f0394fcdc1a514dec75464cb282bc3 to your computer and use it in GitHub Desktop.
Save vs-mobiletools-engineering-service2/26f0394fcdc1a514dec75464cb282bc3 to your computer and use it in GitHub Desktop.
generator-diff/generator.diff
This file has been truncated, but you can view the full file.
diff --git a/old/dotnet/ios/generated-sources/ARKit/ARConfiguration.g.cs b/new/dotnet/ios/generated-sources/ARKit/ARConfiguration.g.cs
index 3d26ab3..87a03d4 100644
--- a/old/dotnet/ios/generated-sources/ARKit/ARConfiguration.g.cs
+++ b/new/dotnet/ios/generated-sources/ARKit/ARConfiguration.g.cs
@@ -111,6 +111,27 @@ namespace ARKit {
#endif
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [SupportedOSPlatform ("ios16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [UnsupportedOSPlatform ("maccatalyst")]
+ public static global::AVFoundation.AVCaptureDevice? ConfigurableCaptureDeviceForPrimaryCamera {
+ [Export ("configurableCaptureDeviceForPrimaryCamera")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios11.0.0")]
+ [UnsupportedOSPlatform ("maccatalyst")]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ global::AVFoundation.AVCaptureDevice? ret;
+ ret = Runtime.GetNSObject<global::AVFoundation.AVCaptureDevice> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend (class_ptr, Selector.GetHandle ("configurableCaptureDeviceForPrimaryCamera")))!;
+ return ret!;
+ #endif
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
[SupportedOSPlatform ("ios13.0")]
[UnsupportedOSPlatform ("tvos")]
[UnsupportedOSPlatform ("macos")]
@@ -249,6 +270,48 @@ namespace ARKit {
}
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [SupportedOSPlatform ("ios16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [UnsupportedOSPlatform ("maccatalyst")]
+ public static ARVideoFormat? RecommendedVideoFormatFor4KResolution {
+ [Export ("recommendedVideoFormatFor4KResolution")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios11.0.0")]
+ [UnsupportedOSPlatform ("maccatalyst")]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ ARVideoFormat? ret;
+ ret = Runtime.GetNSObject<ARVideoFormat> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend (class_ptr, Selector.GetHandle ("recommendedVideoFormatFor4KResolution")))!;
+ return ret!;
+ #endif
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [SupportedOSPlatform ("ios16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [UnsupportedOSPlatform ("maccatalyst")]
+ public static ARVideoFormat? RecommendedVideoFormatForHighResolutionFrameCapturing {
+ [Export ("recommendedVideoFormatForHighResolutionFrameCapturing")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios11.0.0")]
+ [UnsupportedOSPlatform ("maccatalyst")]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ ARVideoFormat? ret;
+ ret = Runtime.GetNSObject<ARVideoFormat> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend (class_ptr, Selector.GetHandle ("recommendedVideoFormatForHighResolutionFrameCapturing")))!;
+ return ret!;
+ #endif
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
[SupportedOSPlatform ("ios11.3")]
[UnsupportedOSPlatform ("tvos")]
[UnsupportedOSPlatform ("macos")]
@@ -291,6 +354,45 @@ namespace ARKit {
}
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [SupportedOSPlatform ("ios16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [UnsupportedOSPlatform ("maccatalyst")]
+ public virtual bool VideoHdrAllowed {
+ [Export ("videoHDRAllowed")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios11.0.0")]
+ [UnsupportedOSPlatform ("maccatalyst")]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ if (IsDirectBinding) {
+ return global::ObjCRuntime.Messaging.bool_objc_msgSend (this.Handle, Selector.GetHandle ("videoHDRAllowed"));
+ } else {
+ return global::ObjCRuntime.Messaging.bool_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("videoHDRAllowed"));
+ }
+ #endif
+ }
+ [Export ("setVideoHDRAllowed:")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios11.0.0")]
+ [UnsupportedOSPlatform ("maccatalyst")]
+ set {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_bool (this.Handle, Selector.GetHandle ("setVideoHDRAllowed:"), value);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_bool (this.SuperHandle, Selector.GetHandle ("setVideoHDRAllowed:"), value);
+ }
+ #endif
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
[UnsupportedOSPlatform ("tvos")]
[UnsupportedOSPlatform ("macos")]
[SupportedOSPlatform ("ios11.0.0")]
diff --git a/old/dotnet/ios/generated-sources/ARKit/ARErrorCode.g.cs b/new/dotnet/ios/generated-sources/ARKit/ARErrorCode.g.cs
index aa68673..f538b6a 100644
--- a/old/dotnet/ios/generated-sources/ARKit/ARErrorCode.g.cs
+++ b/new/dotnet/ios/generated-sources/ARKit/ARErrorCode.g.cs
@@ -61,6 +61,8 @@ namespace ARKit {
CameraUnauthorized = 103,
MicrophoneUnauthorized = 104,
LocationUnauthorized = 105,
+ HighResolutionFrameCaptureInProgress = 106,
+ HighResolutionFrameCaptureFailed = 107,
WorldTrackingFailed = 200,
GeoTrackingNotAvailableAtLocation = 201,
GeoTrackingFailed = 202,
diff --git a/old/dotnet/ios/generated-sources/ARKit/ARFrame.g.cs b/new/dotnet/ios/generated-sources/ARKit/ARFrame.g.cs
index 0b69bbc..e9f6bfc 100644
--- a/old/dotnet/ios/generated-sources/ARKit/ARFrame.g.cs
+++ b/new/dotnet/ios/generated-sources/ARKit/ARFrame.g.cs
@@ -397,6 +397,31 @@ namespace ARKit {
}
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [SupportedOSPlatform ("ios16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [UnsupportedOSPlatform ("maccatalyst")]
+ public virtual NSDictionary<NSString, NSObject> ExifData {
+ [Export ("exifData", ArgumentSemantic.Retain)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios11.0.0")]
+ [UnsupportedOSPlatform ("maccatalyst")]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ NSDictionary<NSString, NSObject>? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject<NSDictionary<NSString, NSObject>> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend (this.Handle, Selector.GetHandle ("exifData")))!;
+ } else {
+ ret = Runtime.GetNSObject<NSDictionary<NSString, NSObject>> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("exifData")))!;
+ }
+ return ret!;
+ #endif
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
[SupportedOSPlatform ("ios14.0")]
[UnsupportedOSPlatform ("tvos")]
[UnsupportedOSPlatform ("macos")]
diff --git a/old/dotnet/ios/generated-sources/ARKit/ARPlaneAnchor.g.cs b/new/dotnet/ios/generated-sources/ARKit/ARPlaneAnchor.g.cs
index ed24abf..ad22866 100644
--- a/old/dotnet/ios/generated-sources/ARKit/ARPlaneAnchor.g.cs
+++ b/new/dotnet/ios/generated-sources/ARKit/ARPlaneAnchor.g.cs
@@ -249,16 +249,30 @@ namespace ARKit {
}
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ #if __IOS__
+ [Advice ("Starting with ios16.0 Use 'PlaneExtent' instead.")]
+ #endif
+ [UnsupportedOSPlatform ("ios16.0")]
[UnsupportedOSPlatform ("tvos")]
[UnsupportedOSPlatform ("macos")]
+ #if __MACCATALYST__ && !__IOS__
+ [Advice ("Starting with maccatalyst16.0.0 Use 'PlaneExtent' instead.")]
+ #endif
+ [UnsupportedOSPlatform ("maccatalyst16.0.0")]
[SupportedOSPlatform ("ios11.0.0")]
- [UnsupportedOSPlatform ("maccatalyst")]
public virtual NVector3 Extent {
[Export ("extent")]
[UnsupportedOSPlatform ("tvos")]
[UnsupportedOSPlatform ("macos")]
+ #if __IOS__
+ [Advice ("Starting with ios16.0.0 Use 'PlaneExtent' instead.")]
+ #endif
+ [UnsupportedOSPlatform ("ios16.0.0")]
+ #if __MACCATALYST__ && !__IOS__
+ [Advice ("Starting with maccatalyst16.0.0 Use 'PlaneExtent' instead.")]
+ #endif
+ [UnsupportedOSPlatform ("maccatalyst16.0.0")]
[SupportedOSPlatform ("ios11.0.0")]
- [UnsupportedOSPlatform ("maccatalyst")]
get {
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -314,5 +328,30 @@ namespace ARKit {
#endif
}
}
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [SupportedOSPlatform ("ios16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [UnsupportedOSPlatform ("maccatalyst")]
+ public virtual ARPlaneExtent PlaneExtent {
+ [Export ("planeExtent")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios11.0.0")]
+ [UnsupportedOSPlatform ("maccatalyst")]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ ARPlaneExtent? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject<ARPlaneExtent> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend (this.Handle, Selector.GetHandle ("planeExtent")))!;
+ } else {
+ ret = Runtime.GetNSObject<ARPlaneExtent> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("planeExtent")))!;
+ }
+ return ret!;
+ #endif
+ }
+ }
} /* class ARPlaneAnchor */
}
diff --git a/new/dotnet/ios/generated-sources/ARKit/ARPlaneExtent.g.cs b/new/dotnet/ios/generated-sources/ARKit/ARPlaneExtent.g.cs
new file mode 100644
index 0000000..8e02b41
--- /dev/null
+++ b/new/dotnet/ios/generated-sources/ARKit/ARPlaneExtent.g.cs
@@ -0,0 +1,183 @@
+//
+// Auto-generated from generator.cs, do not edit
+//
+// We keep references to objects, so warning 414 is expected
+#pragma warning disable 414
+using System;
+using System.Drawing;
+using System.Diagnostics;
+using System.ComponentModel;
+using System.Threading.Tasks;
+using System.Runtime.Versioning;
+using System.Runtime.InteropServices;
+using System.Diagnostics.CodeAnalysis;
+using UIKit;
+using GLKit;
+using Metal;
+using CoreML;
+using MapKit;
+using Photos;
+using ModelIO;
+using Network;
+using SceneKit;
+using Contacts;
+using Security;
+using Messages;
+using AudioUnit;
+using CoreVideo;
+using CoreMedia;
+using QuickLook;
+using CoreImage;
+using SpriteKit;
+using Foundation;
+using CoreMotion;
+using ObjCRuntime;
+using AddressBook;
+using MediaPlayer;
+using GameplayKit;
+using CoreGraphics;
+using CoreLocation;
+using AVFoundation;
+using NewsstandKit;
+using FileProvider;
+using CoreAnimation;
+using CoreFoundation;
+using NetworkExtension;
+using MetalPerformanceShadersGraph;
+#nullable enable
+#if !NET
+using NativeHandle = System.IntPtr;
+#endif
+namespace ARKit {
+ [Register("ARPlaneExtent", true)]
+ [SupportedOSPlatform ("ios16.0")]
+ [UnsupportedOSPlatform ("maccatalyst")]
+ public unsafe partial class ARPlaneExtent : NSObject, INSCoding, INSSecureCoding {
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ #if ARCH_32
+ #pragma warning disable 649
+ static readonly NativeHandle class_ptr;
+ #pragma warning restore 649
+ #else
+ static readonly NativeHandle class_ptr = Class.GetHandle ("ARPlaneExtent");
+ #endif
+ public override NativeHandle ClassHandle { get { return class_ptr; } }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ [Export ("init")]
+ public ARPlaneExtent () : base (NSObjectFlag.Empty)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ if (IsDirectBinding) {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend (this.Handle, global::ObjCRuntime.Selector.GetHandle ("init")), "init");
+ } else {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper (this.SuperHandle, global::ObjCRuntime.Selector.GetHandle ("init")), "init");
+ }
+ #endif
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [DesignatedInitializer]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ [Export ("initWithCoder:")]
+ public ARPlaneExtent (NSCoder coder) : base (NSObjectFlag.Empty)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ if (IsDirectBinding) {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("initWithCoder:"), coder.Handle), "initWithCoder:");
+ } else {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("initWithCoder:"), coder.Handle), "initWithCoder:");
+ }
+ #endif
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ protected ARPlaneExtent (NSObjectFlag t) : base (t)
+ {
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ protected internal ARPlaneExtent (NativeHandle handle) : base (handle)
+ {
+ }
+
+ [Export ("encodeWithCoder:")]
+ [SupportedOSPlatform ("ios16.0.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [UnsupportedOSPlatform ("maccatalyst")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual void EncodeTo (NSCoder encoder)
+ {
+ var encoder__handle__ = encoder!.GetNonNullHandle (nameof (encoder));
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("encodeWithCoder:"), encoder__handle__);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_NativeHandle (this.SuperHandle, Selector.GetHandle ("encodeWithCoder:"), encoder__handle__);
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [SupportedOSPlatform ("ios16.0.0")]
+ [UnsupportedOSPlatform ("maccatalyst")]
+ public virtual float Height {
+ [Export ("height")]
+ [SupportedOSPlatform ("ios16.0.0")]
+ [UnsupportedOSPlatform ("maccatalyst")]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ if (IsDirectBinding) {
+ return global::ObjCRuntime.Messaging.float_objc_msgSend (this.Handle, Selector.GetHandle ("height"));
+ } else {
+ return global::ObjCRuntime.Messaging.float_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("height"));
+ }
+ #endif
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [SupportedOSPlatform ("ios16.0.0")]
+ [UnsupportedOSPlatform ("maccatalyst")]
+ public virtual float RotationOnYAxis {
+ [Export ("rotationOnYAxis")]
+ [SupportedOSPlatform ("ios16.0.0")]
+ [UnsupportedOSPlatform ("maccatalyst")]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ if (IsDirectBinding) {
+ return global::ObjCRuntime.Messaging.float_objc_msgSend (this.Handle, Selector.GetHandle ("rotationOnYAxis"));
+ } else {
+ return global::ObjCRuntime.Messaging.float_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("rotationOnYAxis"));
+ }
+ #endif
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [SupportedOSPlatform ("ios16.0.0")]
+ [UnsupportedOSPlatform ("maccatalyst")]
+ public virtual float Width {
+ [Export ("width")]
+ [SupportedOSPlatform ("ios16.0.0")]
+ [UnsupportedOSPlatform ("maccatalyst")]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ if (IsDirectBinding) {
+ return global::ObjCRuntime.Messaging.float_objc_msgSend (this.Handle, Selector.GetHandle ("width"));
+ } else {
+ return global::ObjCRuntime.Messaging.float_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("width"));
+ }
+ #endif
+ }
+ }
+ } /* class ARPlaneExtent */
+}
diff --git a/old/dotnet/ios/generated-sources/ARKit/ARSession.g.cs b/new/dotnet/ios/generated-sources/ARKit/ARSession.g.cs
index eee7a98..1264223 100644
--- a/old/dotnet/ios/generated-sources/ARKit/ARSession.g.cs
+++ b/new/dotnet/ios/generated-sources/ARKit/ARSession.g.cs
@@ -111,13 +111,55 @@ namespace ARKit {
}
#endif
}
+ [Export ("captureHighResolutionFrameWithCompletion:")]
+ [SupportedOSPlatform ("ios16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [UnsupportedOSPlatform ("maccatalyst")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public unsafe virtual void CaptureHighResolutionFrame ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V1))]global::System.Action<ARFrame, NSError> handler)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ if (handler is null)
+ ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (handler));
+ BlockLiteral *block_ptr_handler;
+ BlockLiteral block_handler;
+ block_handler = new BlockLiteral ();
+ block_ptr_handler = &block_handler;
+ block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V1.Handler, handler);
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("captureHighResolutionFrameWithCompletion:"), (IntPtr) block_ptr_handler);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_NativeHandle (this.SuperHandle, Selector.GetHandle ("captureHighResolutionFrameWithCompletion:"), (IntPtr) block_ptr_handler);
+ }
+ block_ptr_handler->CleanupBlock ();
+ #endif
+ }
+ [SupportedOSPlatform ("ios16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [UnsupportedOSPlatform ("maccatalyst")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public unsafe virtual Task<ARFrame> CaptureHighResolutionFrameAsync ()
+ {
+ var tcs = new TaskCompletionSource<ARFrame> ();
+ CaptureHighResolutionFrame((arg1_, arg2_) => {
+ if (arg2_ != null)
+ tcs.SetException (new NSErrorException(arg2_));
+ else
+ tcs.SetResult (arg1_!);
+ });
+ return tcs.Task;
+ }
[Export ("createReferenceObjectWithTransform:center:extent:completionHandler:")]
[SupportedOSPlatform ("ios12.0")]
[UnsupportedOSPlatform ("tvos")]
[UnsupportedOSPlatform ("macos")]
[UnsupportedOSPlatform ("maccatalyst")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void CreateReferenceObject (NMatrix4 transform, NVector3 center, NVector3 extent, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V1))]global::System.Action<ARReferenceObject, NSError> completionHandler)
+ public unsafe virtual void CreateReferenceObject (NMatrix4 transform, NVector3 center, NVector3 extent, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V2))]global::System.Action<ARReferenceObject, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -128,7 +170,7 @@ namespace ARKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V1.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V2.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.xamarin_simd__void_objc_msgSend_NMatrix4_NVector3_NVector3_NativeHandle (this.Handle, Selector.GetHandle ("createReferenceObjectWithTransform:center:extent:completionHandler:"), transform, center, extent, (IntPtr) block_ptr_completionHandler);
} else {
@@ -159,7 +201,7 @@ namespace ARKit {
[UnsupportedOSPlatform ("macos")]
[UnsupportedOSPlatform ("maccatalyst")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void GetCurrentWorldMap ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V2))]global::System.Action<ARWorldMap, NSError> completionHandler)
+ public unsafe virtual void GetCurrentWorldMap ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V3))]global::System.Action<ARWorldMap, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -170,7 +212,7 @@ namespace ARKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V2.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V3.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("getCurrentWorldMapWithCompletionHandler:"), (IntPtr) block_ptr_completionHandler);
} else {
diff --git a/old/dotnet/ios/generated-sources/ARKit/ARVideoFormat.g.cs b/new/dotnet/ios/generated-sources/ARKit/ARVideoFormat.g.cs
index 04a99da..140ea4d 100644
--- a/old/dotnet/ios/generated-sources/ARKit/ARVideoFormat.g.cs
+++ b/new/dotnet/ios/generated-sources/ARKit/ARVideoFormat.g.cs
@@ -193,5 +193,43 @@ namespace ARKit {
#endif
}
}
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [SupportedOSPlatform ("ios16.0")]
+ [UnsupportedOSPlatform ("maccatalyst")]
+ public virtual bool IsRecommendedForHighResolutionFrameCapturing {
+ [Export ("isRecommendedForHighResolutionFrameCapturing")]
+ [SupportedOSPlatform ("ios11.3.0")]
+ [UnsupportedOSPlatform ("maccatalyst")]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ if (IsDirectBinding) {
+ return global::ObjCRuntime.Messaging.bool_objc_msgSend (this.Handle, Selector.GetHandle ("isRecommendedForHighResolutionFrameCapturing"));
+ } else {
+ return global::ObjCRuntime.Messaging.bool_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("isRecommendedForHighResolutionFrameCapturing"));
+ }
+ #endif
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [SupportedOSPlatform ("ios16.0")]
+ [UnsupportedOSPlatform ("maccatalyst")]
+ public virtual bool IsVideoHdrSupported {
+ [Export ("isVideoHDRSupported")]
+ [SupportedOSPlatform ("ios11.3.0")]
+ [UnsupportedOSPlatform ("maccatalyst")]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ if (IsDirectBinding) {
+ return global::ObjCRuntime.Messaging.bool_objc_msgSend (this.Handle, Selector.GetHandle ("isVideoHDRSupported"));
+ } else {
+ return global::ObjCRuntime.Messaging.bool_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("isVideoHDRSupported"));
+ }
+ #endif
+ }
+ }
} /* class ARVideoFormat */
}
diff --git a/old/dotnet/ios/generated-sources/AVFoundation/AVAsset.g.cs b/new/dotnet/ios/generated-sources/AVFoundation/AVAsset.g.cs
index da33f15..0c806e5 100644
--- a/old/dotnet/ios/generated-sources/AVFoundation/AVAsset.g.cs
+++ b/new/dotnet/ios/generated-sources/AVFoundation/AVAsset.g.cs
@@ -110,7 +110,7 @@ namespace AVFoundation {
[SupportedOSPlatform ("ios15.0")]
[SupportedOSPlatform ("maccatalyst15.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void FindUnusedTrackId ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V3))]global::System.Action<int, NSError> completionHandler)
+ public unsafe virtual void FindUnusedTrackId ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V4))]global::System.Action<int, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -121,7 +121,7 @@ namespace AVFoundation {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V3.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V4.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("findUnusedTrackIDWithCompletionHandler:"), (IntPtr) block_ptr_completionHandler);
} else {
@@ -254,7 +254,7 @@ namespace AVFoundation {
[SupportedOSPlatform ("ios15.0")]
[SupportedOSPlatform ("maccatalyst15.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void LoadChapterMetadataGroups (string[] bestMatchingPreferredLanguages, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V4))]global::System.Action<NSArray<AVTimedMetadataGroup>, NSError> completionHandler)
+ public unsafe virtual void LoadChapterMetadataGroups (string[] bestMatchingPreferredLanguages, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V5))]global::System.Action<NSArray<AVTimedMetadataGroup>, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -268,7 +268,7 @@ namespace AVFoundation {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V4.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V5.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("loadChapterMetadataGroupsBestMatchingPreferredLanguages:completionHandler:"), nsa_bestMatchingPreferredLanguages.Handle, (IntPtr) block_ptr_completionHandler);
} else {
@@ -300,7 +300,7 @@ namespace AVFoundation {
[SupportedOSPlatform ("ios15.0")]
[SupportedOSPlatform ("maccatalyst15.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void LoadChapterMetadataGroups (NSLocale titleLocale, string[] commonKeys, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V4))]global::System.Action<NSArray<AVTimedMetadataGroup>, NSError> completionHandler)
+ public unsafe virtual void LoadChapterMetadataGroups (NSLocale titleLocale, string[] commonKeys, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V5))]global::System.Action<NSArray<AVTimedMetadataGroup>, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -315,7 +315,7 @@ namespace AVFoundation {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V4.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V5.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("loadChapterMetadataGroupsWithTitleLocale:containingItemsWithCommonKeys:completionHandler:"), titleLocale__handle__, nsa_commonKeys.Handle, (IntPtr) block_ptr_completionHandler);
} else {
@@ -347,7 +347,7 @@ namespace AVFoundation {
[SupportedOSPlatform ("ios15.0")]
[SupportedOSPlatform ("maccatalyst15.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void LoadMediaSelectionGroup (string mediaCharacteristic, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V5))]global::System.Action<AVMediaSelectionGroup, NSError> completionHandler)
+ public unsafe virtual void LoadMediaSelectionGroup (string mediaCharacteristic, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V6))]global::System.Action<AVMediaSelectionGroup, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -361,7 +361,7 @@ namespace AVFoundation {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V5.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V6.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("loadMediaSelectionGroupForMediaCharacteristic:completionHandler:"), nsmediaCharacteristic, (IntPtr) block_ptr_completionHandler);
} else {
@@ -393,7 +393,7 @@ namespace AVFoundation {
[SupportedOSPlatform ("ios15.0")]
[SupportedOSPlatform ("maccatalyst15.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void LoadMetadata (string format, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V6))]global::System.Action<NSArray<AVMetadataItem>, NSError> completionHandler)
+ public unsafe virtual void LoadMetadata (string format, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V7))]global::System.Action<NSArray<AVMetadataItem>, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -407,7 +407,7 @@ namespace AVFoundation {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V6.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V7.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("loadMetadataForFormat:completionHandler:"), nsformat, (IntPtr) block_ptr_completionHandler);
} else {
@@ -439,7 +439,7 @@ namespace AVFoundation {
[SupportedOSPlatform ("ios15.0")]
[SupportedOSPlatform ("maccatalyst15.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void LoadTrack (int trackId, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V7))]global::System.Action<AVCompositionTrack, NSError> completionHandler)
+ public unsafe virtual void LoadTrack (int trackId, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V8))]global::System.Action<AVCompositionTrack, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -450,7 +450,7 @@ namespace AVFoundation {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V7.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V8.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_int_NativeHandle (this.Handle, Selector.GetHandle ("loadTrackWithTrackID:completionHandler:"), trackId, (IntPtr) block_ptr_completionHandler);
} else {
@@ -481,7 +481,7 @@ namespace AVFoundation {
[SupportedOSPlatform ("ios15.0")]
[SupportedOSPlatform ("maccatalyst15.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void LoadTrackWithMediaCharacteristics (string mediaCharacteristic, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V8))]global::System.Action<NSArray<AVCompositionTrack>, NSError> completionHandler)
+ public unsafe virtual void LoadTrackWithMediaCharacteristics (string mediaCharacteristic, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V9))]global::System.Action<NSArray<AVCompositionTrack>, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -495,7 +495,7 @@ namespace AVFoundation {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V8.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V9.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("loadTracksWithMediaCharacteristic:completionHandler:"), nsmediaCharacteristic, (IntPtr) block_ptr_completionHandler);
} else {
@@ -527,7 +527,7 @@ namespace AVFoundation {
[SupportedOSPlatform ("ios15.0")]
[SupportedOSPlatform ("maccatalyst15.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void LoadTracksWithMediaType (string mediaType, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V9))]global::System.Action<NSArray<AVMutableCompositionTrack>, NSError> completionHandler)
+ public unsafe virtual void LoadTracksWithMediaType (string mediaType, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V10))]global::System.Action<NSArray<AVMutableCompositionTrack>, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -541,7 +541,7 @@ namespace AVFoundation {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V9.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V10.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("loadTracksWithMediaType:completionHandler:"), nsmediaType, (IntPtr) block_ptr_completionHandler);
} else {
diff --git a/old/dotnet/ios/generated-sources/AVFoundation/AVAssetDownloadDelegate.g.cs b/new/dotnet/ios/generated-sources/AVFoundation/AVAssetDownloadDelegate.g.cs
index f4733d8..db1aec9 100644
--- a/old/dotnet/ios/generated-sources/AVFoundation/AVAssetDownloadDelegate.g.cs
+++ b/new/dotnet/ios/generated-sources/AVFoundation/AVAssetDownloadDelegate.g.cs
@@ -292,7 +292,7 @@ namespace AVFoundation {
[SupportedOSPlatform ("macos12.0.0")]
[SupportedOSPlatform ("maccatalyst15.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void DidReceiveChallenge (NSUrlSession session, NSUrlSessionTask task, NSUrlAuthenticationChallenge challenge, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V10))]global::System.Action<NSUrlSessionAuthChallengeDisposition, NSUrlCredential> completionHandler)
+ public unsafe virtual void DidReceiveChallenge (NSUrlSession session, NSUrlSessionTask task, NSUrlAuthenticationChallenge challenge, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V11))]global::System.Action<NSUrlSessionAuthChallengeDisposition, NSUrlCredential> completionHandler)
{
throw new You_Should_Not_Call_base_In_This_Method ();
}
@@ -348,7 +348,7 @@ namespace AVFoundation {
[UnsupportedOSPlatform ("tvos")]
[SupportedOSPlatform ("maccatalyst11.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void WillBeginDelayedRequest (NSUrlSession session, NSUrlSessionTask task, NSUrlRequest request, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V11))]global::System.Action<NSUrlSessionDelayedRequestDisposition, NSUrlRequest> completionHandler)
+ public unsafe virtual void WillBeginDelayedRequest (NSUrlSession session, NSUrlSessionTask task, NSUrlRequest request, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V12))]global::System.Action<NSUrlSessionDelayedRequestDisposition, NSUrlRequest> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
diff --git a/old/dotnet/ios/generated-sources/AVFoundation/AVAssetExportSession.g.cs b/new/dotnet/ios/generated-sources/AVFoundation/AVAssetExportSession.g.cs
index 08d9082..e65985e 100644
--- a/old/dotnet/ios/generated-sources/AVFoundation/AVAssetExportSession.g.cs
+++ b/new/dotnet/ios/generated-sources/AVFoundation/AVAssetExportSession.g.cs
@@ -215,7 +215,7 @@ namespace AVFoundation {
[SupportedOSPlatform ("ios13.0")]
[SupportedOSPlatform ("maccatalyst13.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void EstimateMaximumDuration ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V12))]global::System.Action<global::CoreMedia.CMTime, NSError> handler)
+ public unsafe virtual void EstimateMaximumDuration ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V13))]global::System.Action<global::CoreMedia.CMTime, NSError> handler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -226,7 +226,7 @@ namespace AVFoundation {
BlockLiteral block_handler;
block_handler = new BlockLiteral ();
block_ptr_handler = &block_handler;
- block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V12.Handler, handler);
+ block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V13.Handler, handler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("estimateMaximumDurationWithCompletionHandler:"), (IntPtr) block_ptr_handler);
} else {
@@ -257,7 +257,7 @@ namespace AVFoundation {
[SupportedOSPlatform ("ios13.0")]
[SupportedOSPlatform ("maccatalyst13.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void EstimateOutputFileLength ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V13))]global::System.Action<long, NSError> handler)
+ public unsafe virtual void EstimateOutputFileLength ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V14))]global::System.Action<long, NSError> handler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -268,7 +268,7 @@ namespace AVFoundation {
BlockLiteral block_handler;
block_handler = new BlockLiteral ();
block_ptr_handler = &block_handler;
- block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V13.Handler, handler);
+ block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V14.Handler, handler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("estimateOutputFileLengthWithCompletionHandler:"), (IntPtr) block_ptr_handler);
} else {
diff --git a/old/dotnet/ios/generated-sources/AVFoundation/AVAssetTrack.g.cs b/new/dotnet/ios/generated-sources/AVFoundation/AVAssetTrack.g.cs
index 5f6e87c..6f9ad1a 100644
--- a/old/dotnet/ios/generated-sources/AVFoundation/AVAssetTrack.g.cs
+++ b/new/dotnet/ios/generated-sources/AVFoundation/AVAssetTrack.g.cs
@@ -131,7 +131,7 @@ namespace AVFoundation {
[SupportedOSPlatform ("ios15.0")]
[SupportedOSPlatform ("maccatalyst15.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void LoadAssociatedTracks (string trackAssociationType, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V14))]global::System.Action<NSArray<AVAssetTrack>, NSError> completionHandler)
+ public unsafe virtual void LoadAssociatedTracks (string trackAssociationType, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V15))]global::System.Action<NSArray<AVAssetTrack>, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -145,7 +145,7 @@ namespace AVFoundation {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V14.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V15.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("loadAssociatedTracksOfType:completionHandler:"), nstrackAssociationType, (IntPtr) block_ptr_completionHandler);
} else {
@@ -177,7 +177,7 @@ namespace AVFoundation {
[SupportedOSPlatform ("ios15.0")]
[SupportedOSPlatform ("maccatalyst15.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void LoadMetadata (string format, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V6))]global::System.Action<NSArray<AVMetadataItem>, NSError> completionHandler)
+ public unsafe virtual void LoadMetadata (string format, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V7))]global::System.Action<NSArray<AVMetadataItem>, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -191,7 +191,7 @@ namespace AVFoundation {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V6.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V7.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("loadMetadataForFormat:completionHandler:"), nsformat, (IntPtr) block_ptr_completionHandler);
} else {
@@ -223,7 +223,7 @@ namespace AVFoundation {
[SupportedOSPlatform ("ios15.0")]
[SupportedOSPlatform ("maccatalyst15.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void LoadSamplePresentationTime (global::CoreMedia.CMTime trackTime, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V12))]global::System.Action<global::CoreMedia.CMTime, NSError> completionHandler)
+ public unsafe virtual void LoadSamplePresentationTime (global::CoreMedia.CMTime trackTime, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V13))]global::System.Action<global::CoreMedia.CMTime, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -234,7 +234,7 @@ namespace AVFoundation {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V12.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V13.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_CMTime_NativeHandle (this.Handle, Selector.GetHandle ("loadSamplePresentationTimeForTrackTime:completionHandler:"), trackTime, (IntPtr) block_ptr_completionHandler);
} else {
@@ -265,7 +265,7 @@ namespace AVFoundation {
[SupportedOSPlatform ("ios15.0")]
[SupportedOSPlatform ("maccatalyst15.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void LoadSegment (global::CoreMedia.CMTime trackTime, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V15))]global::System.Action<AVAssetTrackSegment, NSError> completionHandler)
+ public unsafe virtual void LoadSegment (global::CoreMedia.CMTime trackTime, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V16))]global::System.Action<AVAssetTrackSegment, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -276,7 +276,7 @@ namespace AVFoundation {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V15.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V16.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_CMTime_NativeHandle (this.Handle, Selector.GetHandle ("loadSegmentForTrackTime:completionHandler:"), trackTime, (IntPtr) block_ptr_completionHandler);
} else {
diff --git a/old/dotnet/ios/generated-sources/AVFoundation/AVAudioUnit.g.cs b/new/dotnet/ios/generated-sources/AVFoundation/AVAudioUnit.g.cs
index 2e0c73a..f55cbac 100644
--- a/old/dotnet/ios/generated-sources/AVFoundation/AVAudioUnit.g.cs
+++ b/new/dotnet/ios/generated-sources/AVFoundation/AVAudioUnit.g.cs
@@ -76,7 +76,7 @@ namespace AVFoundation {
[SupportedOSPlatform ("maccatalyst9.0.0")]
[SupportedOSPlatform ("tvos")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static void FromComponentDescription (global::AudioUnit.AudioComponentDescription audioComponentDescription, global::AudioUnit.AudioComponentInstantiationOptions options, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V16))]global::System.Action<AVAudioUnit, NSError> completionHandler)
+ public unsafe static void FromComponentDescription (global::AudioUnit.AudioComponentDescription audioComponentDescription, global::AudioUnit.AudioComponentInstantiationOptions options, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V17))]global::System.Action<AVAudioUnit, NSError> completionHandler)
{
if (completionHandler is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (completionHandler));
@@ -84,7 +84,7 @@ namespace AVFoundation {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V16.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V17.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_AudioComponentDescription_UInt32_NativeHandle (class_ptr, Selector.GetHandle ("instantiateWithComponentDescription:options:completionHandler:"), audioComponentDescription, (UInt32)options, (IntPtr) block_ptr_completionHandler);
block_ptr_completionHandler->CleanupBlock ();
}
diff --git a/old/dotnet/ios/generated-sources/AVFoundation/AVComposition_AVCompositionTrackInspection.g.cs b/new/dotnet/ios/generated-sources/AVFoundation/AVComposition_AVCompositionTrackInspection.g.cs
index 38b52d1..b74b4bd 100644
--- a/old/dotnet/ios/generated-sources/AVFoundation/AVComposition_AVCompositionTrackInspection.g.cs
+++ b/new/dotnet/ios/generated-sources/AVFoundation/AVComposition_AVCompositionTrackInspection.g.cs
@@ -122,7 +122,7 @@ namespace AVFoundation {
[SupportedOSPlatform ("ios15.0")]
[SupportedOSPlatform ("maccatalyst15.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static void LoadTrack (this AVComposition This, int trackId, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V17))]global::System.Action<AVMutableCompositionTrack, NSError> completionHandler)
+ public unsafe static void LoadTrack (this AVComposition This, int trackId, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V18))]global::System.Action<AVMutableCompositionTrack, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -133,7 +133,7 @@ namespace AVFoundation {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V17.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V18.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_int_NativeHandle (This.Handle, Selector.GetHandle ("loadTrackWithTrackID:completionHandler:"), trackId, (IntPtr) block_ptr_completionHandler);
block_ptr_completionHandler->CleanupBlock ();
#endif
@@ -160,7 +160,7 @@ namespace AVFoundation {
[SupportedOSPlatform ("ios15.0")]
[SupportedOSPlatform ("maccatalyst15.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static void LoadTracksWithMediaCharacteristic (this AVComposition This, string mediaCharacteristic, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V9))]global::System.Action<NSArray<AVMutableCompositionTrack>, NSError> completionHandler)
+ public unsafe static void LoadTracksWithMediaCharacteristic (this AVComposition This, string mediaCharacteristic, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V10))]global::System.Action<NSArray<AVMutableCompositionTrack>, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -174,7 +174,7 @@ namespace AVFoundation {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V9.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V10.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (This.Handle, Selector.GetHandle ("loadTracksWithMediaCharacteristic:completionHandler:"), nsmediaCharacteristic, (IntPtr) block_ptr_completionHandler);
CFString.ReleaseNative (nsmediaCharacteristic);
block_ptr_completionHandler->CleanupBlock ();
@@ -202,7 +202,7 @@ namespace AVFoundation {
[SupportedOSPlatform ("ios15.0")]
[SupportedOSPlatform ("maccatalyst15.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static void LoadTracksWithMediaType (this AVComposition This, string mediaType, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V9))]global::System.Action<NSArray<AVMutableCompositionTrack>, NSError> completionHandler)
+ public unsafe static void LoadTracksWithMediaType (this AVComposition This, string mediaType, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V10))]global::System.Action<NSArray<AVMutableCompositionTrack>, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -216,7 +216,7 @@ namespace AVFoundation {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V9.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V10.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (This.Handle, Selector.GetHandle ("loadTracksWithMediaType:completionHandler:"), nsmediaType, (IntPtr) block_ptr_completionHandler);
CFString.ReleaseNative (nsmediaType);
block_ptr_completionHandler->CleanupBlock ();
diff --git a/old/dotnet/ios/generated-sources/AVFoundation/AVContentKeyRequest.g.cs b/new/dotnet/ios/generated-sources/AVFoundation/AVContentKeyRequest.g.cs
index cf06dc5..0e4c4b6 100644
--- a/old/dotnet/ios/generated-sources/AVFoundation/AVContentKeyRequest.g.cs
+++ b/new/dotnet/ios/generated-sources/AVFoundation/AVContentKeyRequest.g.cs
@@ -76,7 +76,7 @@ namespace AVFoundation {
[SupportedOSPlatform ("ios10.3.0")]
[SupportedOSPlatform ("maccatalyst10.3.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void MakeStreamingContentKeyRequestData (NSData appIdentifier, NSData? contentIdentifier, NSDictionary<NSString, NSObject>? options, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V18))]global::System.Action<NSData, NSError> handler)
+ public unsafe virtual void MakeStreamingContentKeyRequestData (NSData appIdentifier, NSData? contentIdentifier, NSDictionary<NSString, NSObject>? options, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V19))]global::System.Action<NSData, NSError> handler)
{
var appIdentifier__handle__ = appIdentifier!.GetNonNullHandle (nameof (appIdentifier));
var contentIdentifier__handle__ = contentIdentifier.GetHandle ();
@@ -87,7 +87,7 @@ namespace AVFoundation {
BlockLiteral block_handler;
block_handler = new BlockLiteral ();
block_ptr_handler = &block_handler;
- block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V18.Handler, handler);
+ block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V19.Handler, handler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("makeStreamingContentKeyRequestDataForApp:contentIdentifier:options:completionHandler:"), appIdentifier__handle__, contentIdentifier__handle__, options__handle__, (IntPtr) block_ptr_handler);
} else {
diff --git a/old/dotnet/ios/generated-sources/AVFoundation/AVContentKeySession.g.cs b/new/dotnet/ios/generated-sources/AVFoundation/AVContentKeySession.g.cs
index 9ba4b9b..90bb513 100644
--- a/old/dotnet/ios/generated-sources/AVFoundation/AVContentKeySession.g.cs
+++ b/new/dotnet/ios/generated-sources/AVFoundation/AVContentKeySession.g.cs
@@ -144,7 +144,7 @@ namespace AVFoundation {
[SupportedOSPlatform ("ios12.2")]
[SupportedOSPlatform ("maccatalyst12.2.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void InvalidateAllPersistableContentKeys (NSData appIdentifier, NSDictionary? options, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V18))]global::System.Action<NSData, NSError> handler)
+ public unsafe virtual void InvalidateAllPersistableContentKeys (NSData appIdentifier, NSDictionary? options, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V19))]global::System.Action<NSData, NSError> handler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -157,7 +157,7 @@ namespace AVFoundation {
BlockLiteral block_handler;
block_handler = new BlockLiteral ();
block_ptr_handler = &block_handler;
- block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V18.Handler, handler);
+ block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V19.Handler, handler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("invalidateAllPersistableContentKeysForApp:options:completionHandler:"), appIdentifier__handle__, options__handle__, (IntPtr) block_ptr_handler);
} else {
@@ -187,7 +187,7 @@ namespace AVFoundation {
[SupportedOSPlatform ("ios12.2")]
[SupportedOSPlatform ("maccatalyst12.2.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe void InvalidateAllPersistableContentKeys (NSData appIdentifier, AVContentKeySessionServerPlaybackContextOptions? options, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V18))]global::System.Action<NSData, NSError> handler)
+ public unsafe void InvalidateAllPersistableContentKeys (NSData appIdentifier, AVContentKeySessionServerPlaybackContextOptions? options, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V19))]global::System.Action<NSData, NSError> handler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -217,7 +217,7 @@ namespace AVFoundation {
[SupportedOSPlatform ("ios12.2")]
[SupportedOSPlatform ("maccatalyst12.2.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void InvalidatePersistableContentKey (NSData persistableContentKeyData, NSDictionary? options, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V18))]global::System.Action<NSData, NSError> handler)
+ public unsafe virtual void InvalidatePersistableContentKey (NSData persistableContentKeyData, NSDictionary? options, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V19))]global::System.Action<NSData, NSError> handler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -230,7 +230,7 @@ namespace AVFoundation {
BlockLiteral block_handler;
block_handler = new BlockLiteral ();
block_ptr_handler = &block_handler;
- block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V18.Handler, handler);
+ block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V19.Handler, handler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("invalidatePersistableContentKey:options:completionHandler:"), persistableContentKeyData__handle__, options__handle__, (IntPtr) block_ptr_handler);
} else {
@@ -260,7 +260,7 @@ namespace AVFoundation {
[SupportedOSPlatform ("ios12.2")]
[SupportedOSPlatform ("maccatalyst12.2.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe void InvalidatePersistableContentKey (NSData persistableContentKeyData, AVContentKeySessionServerPlaybackContextOptions? options, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V18))]global::System.Action<NSData, NSError> handler)
+ public unsafe void InvalidatePersistableContentKey (NSData persistableContentKeyData, AVContentKeySessionServerPlaybackContextOptions? options, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V19))]global::System.Action<NSData, NSError> handler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -290,7 +290,7 @@ namespace AVFoundation {
[SupportedOSPlatform ("ios11.0")]
[SupportedOSPlatform ("maccatalyst11.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void MakeSecureToken (NSData persistableContentKeyData, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V18))]global::System.Action<NSData, NSError> handler)
+ public unsafe virtual void MakeSecureToken (NSData persistableContentKeyData, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V19))]global::System.Action<NSData, NSError> handler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -302,7 +302,7 @@ namespace AVFoundation {
BlockLiteral block_handler;
block_handler = new BlockLiteral ();
block_ptr_handler = &block_handler;
- block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V18.Handler, handler);
+ block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V19.Handler, handler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("makeSecureTokenForExpirationDateOfPersistableContentKey:completionHandler:"), persistableContentKeyData__handle__, (IntPtr) block_ptr_handler);
} else {
diff --git a/old/dotnet/ios/generated-sources/AVFoundation/AVFragmentedAsset_AVFragmentedAssetTrackInspection.g.cs b/new/dotnet/ios/generated-sources/AVFoundation/AVFragmentedAsset_AVFragmentedAssetTrackInspection.g.cs
index e5caa7f..05a11f3 100644
--- a/old/dotnet/ios/generated-sources/AVFoundation/AVFragmentedAsset_AVFragmentedAssetTrackInspection.g.cs
+++ b/new/dotnet/ios/generated-sources/AVFoundation/AVFragmentedAsset_AVFragmentedAssetTrackInspection.g.cs
@@ -148,7 +148,7 @@ namespace AVFoundation {
[SupportedOSPlatform ("ios15.0")]
[SupportedOSPlatform ("maccatalyst15.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static void LoadTrack (this AVFragmentedAsset This, int trackId, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V19))]global::System.Action<AVFragmentedAssetTrack, NSError> completionHandler)
+ public unsafe static void LoadTrack (this AVFragmentedAsset This, int trackId, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V20))]global::System.Action<AVFragmentedAssetTrack, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -159,7 +159,7 @@ namespace AVFoundation {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V19.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V20.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_int_NativeHandle (This.Handle, Selector.GetHandle ("loadTrackWithTrackID:completionHandler:"), trackId, (IntPtr) block_ptr_completionHandler);
block_ptr_completionHandler->CleanupBlock ();
#endif
@@ -186,7 +186,7 @@ namespace AVFoundation {
[SupportedOSPlatform ("ios15.0")]
[SupportedOSPlatform ("maccatalyst15.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static void LoadTracksWithMediaCharacteristic (this AVFragmentedAsset This, string mediaCharacteristic, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V20))]global::System.Action<NSArray<AVFragmentedAssetTrack>, NSError> completionHandler)
+ public unsafe static void LoadTracksWithMediaCharacteristic (this AVFragmentedAsset This, string mediaCharacteristic, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V21))]global::System.Action<NSArray<AVFragmentedAssetTrack>, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -200,7 +200,7 @@ namespace AVFoundation {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V20.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V21.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (This.Handle, Selector.GetHandle ("loadTracksWithMediaCharacteristic:completionHandler:"), nsmediaCharacteristic, (IntPtr) block_ptr_completionHandler);
CFString.ReleaseNative (nsmediaCharacteristic);
block_ptr_completionHandler->CleanupBlock ();
@@ -228,7 +228,7 @@ namespace AVFoundation {
[SupportedOSPlatform ("ios15.0")]
[SupportedOSPlatform ("maccatalyst15.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static void LoadTracksWithMediaType (this AVFragmentedAsset This, string mediaType, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V20))]global::System.Action<NSArray<AVFragmentedAssetTrack>, NSError> completionHandler)
+ public unsafe static void LoadTracksWithMediaType (this AVFragmentedAsset This, string mediaType, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V21))]global::System.Action<NSArray<AVFragmentedAssetTrack>, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -242,7 +242,7 @@ namespace AVFoundation {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V20.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V21.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (This.Handle, Selector.GetHandle ("loadTracksWithMediaType:completionHandler:"), nsmediaType, (IntPtr) block_ptr_completionHandler);
CFString.ReleaseNative (nsmediaType);
block_ptr_completionHandler->CleanupBlock ();
diff --git a/old/dotnet/ios/generated-sources/AVFoundation/AVFragmentedMovie_AVFragmentedMovieTrackInspection.g.cs b/new/dotnet/ios/generated-sources/AVFoundation/AVFragmentedMovie_AVFragmentedMovieTrackInspection.g.cs
index 2bc5b5d..9188859 100644
--- a/old/dotnet/ios/generated-sources/AVFoundation/AVFragmentedMovie_AVFragmentedMovieTrackInspection.g.cs
+++ b/new/dotnet/ios/generated-sources/AVFoundation/AVFragmentedMovie_AVFragmentedMovieTrackInspection.g.cs
@@ -148,7 +148,7 @@ namespace AVFoundation {
[SupportedOSPlatform ("maccatalyst15.0")]
[UnsupportedOSPlatform ("tvos")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static void LoadTrack (this AVFragmentedMovie This, int trackId, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V17))]global::System.Action<AVMutableCompositionTrack, NSError> completionHandler)
+ public unsafe static void LoadTrack (this AVFragmentedMovie This, int trackId, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V18))]global::System.Action<AVMutableCompositionTrack, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -159,7 +159,7 @@ namespace AVFoundation {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V17.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V18.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_int_NativeHandle (This.Handle, Selector.GetHandle ("loadTrackWithTrackID:completionHandler:"), trackId, (IntPtr) block_ptr_completionHandler);
block_ptr_completionHandler->CleanupBlock ();
#endif
@@ -186,7 +186,7 @@ namespace AVFoundation {
[SupportedOSPlatform ("maccatalyst15.0")]
[UnsupportedOSPlatform ("tvos")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static void LoadTracksWithMediaCharacteristic (this AVFragmentedMovie This, string mediaCharacteristic, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V9))]global::System.Action<NSArray<AVMutableCompositionTrack>, NSError> completionHandler)
+ public unsafe static void LoadTracksWithMediaCharacteristic (this AVFragmentedMovie This, string mediaCharacteristic, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V10))]global::System.Action<NSArray<AVMutableCompositionTrack>, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -200,7 +200,7 @@ namespace AVFoundation {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V9.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V10.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (This.Handle, Selector.GetHandle ("loadTracksWithMediaCharacteristic:completionHandler:"), nsmediaCharacteristic, (IntPtr) block_ptr_completionHandler);
CFString.ReleaseNative (nsmediaCharacteristic);
block_ptr_completionHandler->CleanupBlock ();
@@ -228,7 +228,7 @@ namespace AVFoundation {
[SupportedOSPlatform ("maccatalyst15.0")]
[UnsupportedOSPlatform ("tvos")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static void LoadTracksWithMediaType (this AVFragmentedMovie This, string mediaType, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V9))]global::System.Action<NSArray<AVMutableCompositionTrack>, NSError> completionHandler)
+ public unsafe static void LoadTracksWithMediaType (this AVFragmentedMovie This, string mediaType, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V10))]global::System.Action<NSArray<AVMutableCompositionTrack>, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -242,7 +242,7 @@ namespace AVFoundation {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V9.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V10.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (This.Handle, Selector.GetHandle ("loadTracksWithMediaType:completionHandler:"), nsmediaType, (IntPtr) block_ptr_completionHandler);
CFString.ReleaseNative (nsmediaType);
block_ptr_completionHandler->CleanupBlock ();
diff --git a/old/dotnet/ios/generated-sources/AVFoundation/AVMovie_AVMovieTrackInspection.g.cs b/new/dotnet/ios/generated-sources/AVFoundation/AVMovie_AVMovieTrackInspection.g.cs
index 776ef67..55f0f46 100644
--- a/old/dotnet/ios/generated-sources/AVFoundation/AVMovie_AVMovieTrackInspection.g.cs
+++ b/new/dotnet/ios/generated-sources/AVFoundation/AVMovie_AVMovieTrackInspection.g.cs
@@ -149,7 +149,7 @@ namespace AVFoundation {
[SupportedOSPlatform ("maccatalyst15.0")]
[UnsupportedOSPlatform ("tvos")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static void LoadTrack (this AVMovie This, int trackId, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V17))]global::System.Action<AVMutableCompositionTrack, NSError> completionHandler)
+ public unsafe static void LoadTrack (this AVMovie This, int trackId, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V18))]global::System.Action<AVMutableCompositionTrack, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -160,7 +160,7 @@ namespace AVFoundation {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V17.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V18.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_int_NativeHandle (This.Handle, Selector.GetHandle ("loadTrackWithTrackID:completionHandler:"), trackId, (IntPtr) block_ptr_completionHandler);
block_ptr_completionHandler->CleanupBlock ();
#endif
@@ -189,7 +189,7 @@ namespace AVFoundation {
[SupportedOSPlatform ("maccatalyst15.0")]
[UnsupportedOSPlatform ("tvos")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static void LoadTracksWithMediaCharacteristic (this AVMovie This, string mediaCharacteristic, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V9))]global::System.Action<NSArray<AVMutableCompositionTrack>, NSError> completionHandler)
+ public unsafe static void LoadTracksWithMediaCharacteristic (this AVMovie This, string mediaCharacteristic, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V10))]global::System.Action<NSArray<AVMutableCompositionTrack>, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -203,7 +203,7 @@ namespace AVFoundation {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V9.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V10.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (This.Handle, Selector.GetHandle ("loadTracksWithMediaCharacteristic:completionHandler:"), nsmediaCharacteristic, (IntPtr) block_ptr_completionHandler);
CFString.ReleaseNative (nsmediaCharacteristic);
block_ptr_completionHandler->CleanupBlock ();
@@ -233,7 +233,7 @@ namespace AVFoundation {
[SupportedOSPlatform ("maccatalyst15.0")]
[UnsupportedOSPlatform ("tvos")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static void LoadTracksWithMediaType (this AVMovie This, string mediaType, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V9))]global::System.Action<NSArray<AVMutableCompositionTrack>, NSError> completionHandler)
+ public unsafe static void LoadTracksWithMediaType (this AVMovie This, string mediaType, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V10))]global::System.Action<NSArray<AVMutableCompositionTrack>, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -247,7 +247,7 @@ namespace AVFoundation {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V9.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V10.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (This.Handle, Selector.GetHandle ("loadTracksWithMediaType:completionHandler:"), nsmediaType, (IntPtr) block_ptr_completionHandler);
CFString.ReleaseNative (nsmediaType);
block_ptr_completionHandler->CleanupBlock ();
diff --git a/old/dotnet/ios/generated-sources/AVFoundation/AVMutableComposition_AVMutableCompositionTrackInspection.g.cs b/new/dotnet/ios/generated-sources/AVFoundation/AVMutableComposition_AVMutableCompositionTrackInspection.g.cs
index 598bcaf..3a039c4 100644
--- a/old/dotnet/ios/generated-sources/AVFoundation/AVMutableComposition_AVMutableCompositionTrackInspection.g.cs
+++ b/new/dotnet/ios/generated-sources/AVFoundation/AVMutableComposition_AVMutableCompositionTrackInspection.g.cs
@@ -122,7 +122,7 @@ namespace AVFoundation {
[SupportedOSPlatform ("ios15.0")]
[SupportedOSPlatform ("maccatalyst15.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static void LoadTrack (this AVMutableComposition This, int trackId, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V17))]global::System.Action<AVMutableCompositionTrack, NSError> completionHandler)
+ public unsafe static void LoadTrack (this AVMutableComposition This, int trackId, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V18))]global::System.Action<AVMutableCompositionTrack, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -133,7 +133,7 @@ namespace AVFoundation {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V17.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V18.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_int_NativeHandle (This.Handle, Selector.GetHandle ("loadTrackWithTrackID:completionHandler:"), trackId, (IntPtr) block_ptr_completionHandler);
block_ptr_completionHandler->CleanupBlock ();
#endif
@@ -160,7 +160,7 @@ namespace AVFoundation {
[SupportedOSPlatform ("ios15.0")]
[SupportedOSPlatform ("maccatalyst15.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static void LoadTracksWithMediaCharacteristic (this AVMutableComposition This, string mediaCharacteristic, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V9))]global::System.Action<NSArray<AVMutableCompositionTrack>, NSError> completionHandler)
+ public unsafe static void LoadTracksWithMediaCharacteristic (this AVMutableComposition This, string mediaCharacteristic, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V10))]global::System.Action<NSArray<AVMutableCompositionTrack>, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -174,7 +174,7 @@ namespace AVFoundation {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V9.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V10.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (This.Handle, Selector.GetHandle ("loadTracksWithMediaCharacteristic:completionHandler:"), nsmediaCharacteristic, (IntPtr) block_ptr_completionHandler);
CFString.ReleaseNative (nsmediaCharacteristic);
block_ptr_completionHandler->CleanupBlock ();
@@ -202,7 +202,7 @@ namespace AVFoundation {
[SupportedOSPlatform ("ios15.0")]
[SupportedOSPlatform ("maccatalyst15.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static void LoadTracksWithMediaType (this AVMutableComposition This, string mediaType, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V9))]global::System.Action<NSArray<AVMutableCompositionTrack>, NSError> completionHandler)
+ public unsafe static void LoadTracksWithMediaType (this AVMutableComposition This, string mediaType, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V10))]global::System.Action<NSArray<AVMutableCompositionTrack>, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -216,7 +216,7 @@ namespace AVFoundation {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V9.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V10.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (This.Handle, Selector.GetHandle ("loadTracksWithMediaType:completionHandler:"), nsmediaType, (IntPtr) block_ptr_completionHandler);
CFString.ReleaseNative (nsmediaType);
block_ptr_completionHandler->CleanupBlock ();
diff --git a/old/dotnet/ios/generated-sources/AVFoundation/AVMutableMovie.g.cs b/new/dotnet/ios/generated-sources/AVFoundation/AVMutableMovie.g.cs
index f29013d..aa1518f 100644
--- a/old/dotnet/ios/generated-sources/AVFoundation/AVMutableMovie.g.cs
+++ b/new/dotnet/ios/generated-sources/AVFoundation/AVMutableMovie.g.cs
@@ -231,7 +231,7 @@ namespace AVFoundation {
[SupportedOSPlatform ("maccatalyst15.0")]
[UnsupportedOSPlatform ("tvos")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void LoadTrack (int trackId, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V21))]global::System.Action<AVMovieTrack, NSError> completionHandler)
+ public unsafe virtual void LoadTrack (int trackId, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V22))]global::System.Action<AVMovieTrack, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -242,7 +242,7 @@ namespace AVFoundation {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V21.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V22.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_int_NativeHandle (this.Handle, Selector.GetHandle ("loadTrackWithTrackID:completionHandler:"), trackId, (IntPtr) block_ptr_completionHandler);
} else {
@@ -275,7 +275,7 @@ namespace AVFoundation {
[SupportedOSPlatform ("maccatalyst15.0")]
[UnsupportedOSPlatform ("tvos")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void LoadTracksWithMediaCharacteristic (string mediaCharacteristic, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V22))]global::System.Action<NSArray<AVMovieTrack>, NSError> completionHandler)
+ public unsafe virtual void LoadTracksWithMediaCharacteristic (string mediaCharacteristic, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V23))]global::System.Action<NSArray<AVMovieTrack>, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -289,7 +289,7 @@ namespace AVFoundation {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V22.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V23.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("loadTracksWithMediaCharacteristic:completionHandler:"), nsmediaCharacteristic, (IntPtr) block_ptr_completionHandler);
} else {
@@ -323,7 +323,7 @@ namespace AVFoundation {
[SupportedOSPlatform ("maccatalyst15.0")]
[UnsupportedOSPlatform ("tvos")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void LoadTracksWithMediaType (string mediaType, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V22))]global::System.Action<NSArray<AVMovieTrack>, NSError> completionHandler)
+ public unsafe virtual void LoadTracksWithMediaType (string mediaType, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V23))]global::System.Action<NSArray<AVMovieTrack>, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -337,7 +337,7 @@ namespace AVFoundation {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V22.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V23.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("loadTracksWithMediaType:completionHandler:"), nsmediaType, (IntPtr) block_ptr_completionHandler);
} else {
diff --git a/old/dotnet/ios/generated-sources/AVFoundation/AVUrlAsset.g.cs b/new/dotnet/ios/generated-sources/AVFoundation/AVUrlAsset.g.cs
index 834e7ea..d516ab4 100644
--- a/old/dotnet/ios/generated-sources/AVFoundation/AVUrlAsset.g.cs
+++ b/new/dotnet/ios/generated-sources/AVFoundation/AVUrlAsset.g.cs
@@ -165,7 +165,7 @@ namespace AVFoundation {
[SupportedOSPlatform ("ios15.0")]
[SupportedOSPlatform ("maccatalyst15.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void FindCompatibleTrack (AVCompositionTrack compositionTrack, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V23))]global::System.Action<AVAssetTrack, NSError> completionHandler)
+ public unsafe virtual void FindCompatibleTrack (AVCompositionTrack compositionTrack, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V24))]global::System.Action<AVAssetTrack, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -177,7 +177,7 @@ namespace AVFoundation {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V23.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V24.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("findCompatibleTrackForCompositionTrack:completionHandler:"), compositionTrack__handle__, (IntPtr) block_ptr_completionHandler);
} else {
diff --git a/old/dotnet/ios/generated-sources/AVKit/AVAudioSession_AVPlaybackRouteSelecting.g.cs b/new/dotnet/ios/generated-sources/AVKit/AVAudioSession_AVPlaybackRouteSelecting.g.cs
index e184f4a..0ba5f17 100644
--- a/old/dotnet/ios/generated-sources/AVKit/AVAudioSession_AVPlaybackRouteSelecting.g.cs
+++ b/new/dotnet/ios/generated-sources/AVKit/AVAudioSession_AVPlaybackRouteSelecting.g.cs
@@ -68,7 +68,7 @@ namespace AVKit {
[SupportedOSPlatform ("ios13.0.0")]
[SupportedOSPlatform ("maccatalyst13.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static void PrepareRouteSelectionForPlayback (this global::AVFoundation.AVAudioSession This, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V24))]global::System.Action<bool, AVAudioSessionRouteSelection> completionHandler)
+ public unsafe static void PrepareRouteSelectionForPlayback (this global::AVFoundation.AVAudioSession This, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V25))]global::System.Action<bool, AVAudioSessionRouteSelection> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -79,7 +79,7 @@ namespace AVKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V24.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V25.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (This.Handle, Selector.GetHandle ("prepareRouteSelectionForPlaybackWithCompletionHandler:"), (IntPtr) block_ptr_completionHandler);
block_ptr_completionHandler->CleanupBlock ();
#endif
diff --git a/old/dotnet/ios/generated-sources/Accounts/ACAccountStore.g.cs b/new/dotnet/ios/generated-sources/Accounts/ACAccountStore.g.cs
index 900fb85..c11a1dc 100644
--- a/old/dotnet/ios/generated-sources/Accounts/ACAccountStore.g.cs
+++ b/new/dotnet/ios/generated-sources/Accounts/ACAccountStore.g.cs
@@ -256,7 +256,7 @@ namespace Accounts {
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("maccatalyst")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void RenewCredentials (ACAccount account, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V25))]global::System.Action<ACAccountCredentialRenewResult, NSError> completionHandler)
+ public unsafe virtual void RenewCredentials (ACAccount account, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V26))]global::System.Action<ACAccountCredentialRenewResult, NSError> completionHandler)
{
var account__handle__ = account!.GetNonNullHandle (nameof (account));
if (completionHandler is null)
@@ -265,7 +265,7 @@ namespace Accounts {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V25.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V26.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("renewCredentialsForAccount:completion:"), account__handle__, (IntPtr) block_ptr_completionHandler);
} else {
diff --git a/old/dotnet/ios/generated-sources/AssetsLibrary/ALAsset.g.cs b/new/dotnet/ios/generated-sources/AssetsLibrary/ALAsset.g.cs
index a08c8de..35b0bd2 100644
--- a/old/dotnet/ios/generated-sources/AssetsLibrary/ALAsset.g.cs
+++ b/new/dotnet/ios/generated-sources/AssetsLibrary/ALAsset.g.cs
@@ -142,7 +142,7 @@ namespace AssetsLibrary {
[UnsupportedOSPlatform ("maccatalyst9.0.0")]
[SupportedOSPlatform ("ios")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void SetImageData (NSData imageData, NSDictionary metadata, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V26))]global::System.Action<NSUrl, NSError>? completionBlock)
+ public unsafe virtual void SetImageData (NSData imageData, NSDictionary metadata, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V27))]global::System.Action<NSUrl, NSError>? completionBlock)
{
var imageData__handle__ = imageData!.GetNonNullHandle (nameof (imageData));
var metadata__handle__ = metadata!.GetNonNullHandle (nameof (metadata));
@@ -153,7 +153,7 @@ namespace AssetsLibrary {
} else {
block_completionBlock = new BlockLiteral ();
block_ptr_completionBlock = &block_completionBlock;
- block_completionBlock.SetupBlockUnsafe (Trampolines.SDActionArity2V26.Handler, completionBlock);
+ block_completionBlock.SetupBlockUnsafe (Trampolines.SDActionArity2V27.Handler, completionBlock);
}
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("setImageData:metadata:completionBlock:"), imageData__handle__, metadata__handle__, (IntPtr) block_ptr_completionBlock);
@@ -195,7 +195,7 @@ namespace AssetsLibrary {
[UnsupportedOSPlatform ("maccatalyst9.0.0")]
[SupportedOSPlatform ("ios")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void SetVideoAtPath (NSUrl videoPathURL, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V26))]global::System.Action<NSUrl, NSError>? completionBlock)
+ public unsafe virtual void SetVideoAtPath (NSUrl videoPathURL, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V27))]global::System.Action<NSUrl, NSError>? completionBlock)
{
var videoPathURL__handle__ = videoPathURL!.GetNonNullHandle (nameof (videoPathURL));
BlockLiteral *block_ptr_completionBlock;
@@ -205,7 +205,7 @@ namespace AssetsLibrary {
} else {
block_completionBlock = new BlockLiteral ();
block_ptr_completionBlock = &block_completionBlock;
- block_completionBlock.SetupBlockUnsafe (Trampolines.SDActionArity2V26.Handler, completionBlock);
+ block_completionBlock.SetupBlockUnsafe (Trampolines.SDActionArity2V27.Handler, completionBlock);
}
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("setVideoAtPath:completionBlock:"), videoPathURL__handle__, (IntPtr) block_ptr_completionBlock);
@@ -267,7 +267,7 @@ namespace AssetsLibrary {
[UnsupportedOSPlatform ("maccatalyst9.0.0")]
[SupportedOSPlatform ("ios")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void WriteModifiedImageToSavedToPhotosAlbum (NSData imageData, NSDictionary metadata, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V26))]global::System.Action<NSUrl, NSError>? completionBlock)
+ public unsafe virtual void WriteModifiedImageToSavedToPhotosAlbum (NSData imageData, NSDictionary metadata, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V27))]global::System.Action<NSUrl, NSError>? completionBlock)
{
var imageData__handle__ = imageData!.GetNonNullHandle (nameof (imageData));
var metadata__handle__ = metadata!.GetNonNullHandle (nameof (metadata));
@@ -278,7 +278,7 @@ namespace AssetsLibrary {
} else {
block_completionBlock = new BlockLiteral ();
block_ptr_completionBlock = &block_completionBlock;
- block_completionBlock.SetupBlockUnsafe (Trampolines.SDActionArity2V26.Handler, completionBlock);
+ block_completionBlock.SetupBlockUnsafe (Trampolines.SDActionArity2V27.Handler, completionBlock);
}
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("writeModifiedImageDataToSavedPhotosAlbum:metadata:completionBlock:"), imageData__handle__, metadata__handle__, (IntPtr) block_ptr_completionBlock);
@@ -320,7 +320,7 @@ namespace AssetsLibrary {
[UnsupportedOSPlatform ("maccatalyst9.0.0")]
[SupportedOSPlatform ("ios")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void WriteModifiedVideoToSavedPhotosAlbum (NSUrl videoPathURL, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V26))]global::System.Action<NSUrl, NSError>? completionBlock)
+ public unsafe virtual void WriteModifiedVideoToSavedPhotosAlbum (NSUrl videoPathURL, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V27))]global::System.Action<NSUrl, NSError>? completionBlock)
{
var videoPathURL__handle__ = videoPathURL!.GetNonNullHandle (nameof (videoPathURL));
BlockLiteral *block_ptr_completionBlock;
@@ -330,7 +330,7 @@ namespace AssetsLibrary {
} else {
block_completionBlock = new BlockLiteral ();
block_ptr_completionBlock = &block_completionBlock;
- block_completionBlock.SetupBlockUnsafe (Trampolines.SDActionArity2V26.Handler, completionBlock);
+ block_completionBlock.SetupBlockUnsafe (Trampolines.SDActionArity2V27.Handler, completionBlock);
}
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("writeModifiedVideoAtPathToSavedPhotosAlbum:completionBlock:"), videoPathURL__handle__, (IntPtr) block_ptr_completionBlock);
diff --git a/old/dotnet/ios/generated-sources/AssetsLibrary/ALAssetsLibrary.g.cs b/new/dotnet/ios/generated-sources/AssetsLibrary/ALAssetsLibrary.g.cs
index f6fb06a..dc39477 100644
--- a/old/dotnet/ios/generated-sources/AssetsLibrary/ALAssetsLibrary.g.cs
+++ b/new/dotnet/ios/generated-sources/AssetsLibrary/ALAssetsLibrary.g.cs
@@ -279,7 +279,7 @@ namespace AssetsLibrary {
[UnsupportedOSPlatform ("maccatalyst9.0.0")]
[SupportedOSPlatform ("ios")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void WriteImageToSavedPhotosAlbum (NSData imageData, NSDictionary metadata, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V26))]global::System.Action<NSUrl, NSError>? completionBlock)
+ public unsafe virtual void WriteImageToSavedPhotosAlbum (NSData imageData, NSDictionary metadata, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V27))]global::System.Action<NSUrl, NSError>? completionBlock)
{
var imageData__handle__ = imageData!.GetNonNullHandle (nameof (imageData));
var metadata__handle__ = metadata!.GetNonNullHandle (nameof (metadata));
@@ -290,7 +290,7 @@ namespace AssetsLibrary {
} else {
block_completionBlock = new BlockLiteral ();
block_ptr_completionBlock = &block_completionBlock;
- block_completionBlock.SetupBlockUnsafe (Trampolines.SDActionArity2V26.Handler, completionBlock);
+ block_completionBlock.SetupBlockUnsafe (Trampolines.SDActionArity2V27.Handler, completionBlock);
}
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("writeImageDataToSavedPhotosAlbum:metadata:completionBlock:"), imageData__handle__, metadata__handle__, (IntPtr) block_ptr_completionBlock);
@@ -332,7 +332,7 @@ namespace AssetsLibrary {
[UnsupportedOSPlatform ("maccatalyst9.0.0")]
[SupportedOSPlatform ("ios")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void WriteImageToSavedPhotosAlbum (CGImage imageData, NSDictionary metadata, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V26))]global::System.Action<NSUrl, NSError>? completionBlock)
+ public unsafe virtual void WriteImageToSavedPhotosAlbum (CGImage imageData, NSDictionary metadata, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V27))]global::System.Action<NSUrl, NSError>? completionBlock)
{
var imageData__handle__ = imageData!.GetNonNullHandle (nameof (imageData));
var metadata__handle__ = metadata!.GetNonNullHandle (nameof (metadata));
@@ -343,7 +343,7 @@ namespace AssetsLibrary {
} else {
block_completionBlock = new BlockLiteral ();
block_ptr_completionBlock = &block_completionBlock;
- block_completionBlock.SetupBlockUnsafe (Trampolines.SDActionArity2V26.Handler, completionBlock);
+ block_completionBlock.SetupBlockUnsafe (Trampolines.SDActionArity2V27.Handler, completionBlock);
}
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("writeImageToSavedPhotosAlbum:metadata:completionBlock:"), imageData.Handle, metadata__handle__, (IntPtr) block_ptr_completionBlock);
@@ -385,7 +385,7 @@ namespace AssetsLibrary {
[UnsupportedOSPlatform ("maccatalyst9.0.0")]
[SupportedOSPlatform ("ios")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void WriteImageToSavedPhotosAlbum (CGImage imageData, ALAssetOrientation orientation, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V26))]global::System.Action<NSUrl, NSError>? completionBlock)
+ public unsafe virtual void WriteImageToSavedPhotosAlbum (CGImage imageData, ALAssetOrientation orientation, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V27))]global::System.Action<NSUrl, NSError>? completionBlock)
{
var imageData__handle__ = imageData!.GetNonNullHandle (nameof (imageData));
BlockLiteral *block_ptr_completionBlock;
@@ -395,7 +395,7 @@ namespace AssetsLibrary {
} else {
block_completionBlock = new BlockLiteral ();
block_ptr_completionBlock = &block_completionBlock;
- block_completionBlock.SetupBlockUnsafe (Trampolines.SDActionArity2V26.Handler, completionBlock);
+ block_completionBlock.SetupBlockUnsafe (Trampolines.SDActionArity2V27.Handler, completionBlock);
}
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_IntPtr_NativeHandle (this.Handle, Selector.GetHandle ("writeImageToSavedPhotosAlbum:orientation:completionBlock:"), imageData.Handle, (IntPtr) (long) orientation, (IntPtr) block_ptr_completionBlock);
@@ -437,7 +437,7 @@ namespace AssetsLibrary {
[UnsupportedOSPlatform ("maccatalyst9.0.0")]
[SupportedOSPlatform ("ios")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void WriteVideoToSavedPhotosAlbum (NSUrl videoPathURL, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V26))]global::System.Action<NSUrl, NSError>? completionBlock)
+ public unsafe virtual void WriteVideoToSavedPhotosAlbum (NSUrl videoPathURL, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V27))]global::System.Action<NSUrl, NSError>? completionBlock)
{
var videoPathURL__handle__ = videoPathURL!.GetNonNullHandle (nameof (videoPathURL));
BlockLiteral *block_ptr_completionBlock;
@@ -447,7 +447,7 @@ namespace AssetsLibrary {
} else {
block_completionBlock = new BlockLiteral ();
block_ptr_completionBlock = &block_completionBlock;
- block_completionBlock.SetupBlockUnsafe (Trampolines.SDActionArity2V26.Handler, completionBlock);
+ block_completionBlock.SetupBlockUnsafe (Trampolines.SDActionArity2V27.Handler, completionBlock);
}
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("writeVideoAtPathToSavedPhotosAlbum:completionBlock:"), videoPathURL__handle__, (IntPtr) block_ptr_completionBlock);
diff --git a/old/dotnet/ios/generated-sources/AudioUnit/AUAudioUnit.g.cs b/new/dotnet/ios/generated-sources/AudioUnit/AUAudioUnit.g.cs
index a07cabd..6d01f97 100644
--- a/old/dotnet/ios/generated-sources/AudioUnit/AUAudioUnit.g.cs
+++ b/new/dotnet/ios/generated-sources/AudioUnit/AUAudioUnit.g.cs
@@ -212,7 +212,7 @@ namespace AudioUnit {
[SupportedOSPlatform ("tvos")]
[SupportedOSPlatform ("maccatalyst9.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static void FromComponentDescription (AudioComponentDescription componentDescription, AudioComponentInstantiationOptions options, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V27))]global::System.Action<AUAudioUnit, NSError> completionHandler)
+ public unsafe static void FromComponentDescription (AudioComponentDescription componentDescription, AudioComponentInstantiationOptions options, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V28))]global::System.Action<AUAudioUnit, NSError> completionHandler)
{
if (completionHandler is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (completionHandler));
@@ -220,7 +220,7 @@ namespace AudioUnit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V27.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V28.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_AudioComponentDescription_UInt32_NativeHandle (class_ptr, Selector.GetHandle ("instantiateWithComponentDescription:options:completionHandler:"), componentDescription, (UInt32)options, (IntPtr) block_ptr_completionHandler);
block_ptr_completionHandler->CleanupBlock ();
}
diff --git a/old/dotnet/ios/generated-sources/AuthenticationServices/ASAccountAuthenticationModificationExtensionContext.g.cs b/new/dotnet/ios/generated-sources/AuthenticationServices/ASAccountAuthenticationModificationExtensionContext.g.cs
index 92fbdef..685cf1f 100644
--- a/old/dotnet/ios/generated-sources/AuthenticationServices/ASAccountAuthenticationModificationExtensionContext.g.cs
+++ b/new/dotnet/ios/generated-sources/AuthenticationServices/ASAccountAuthenticationModificationExtensionContext.g.cs
@@ -140,7 +140,7 @@ namespace AuthenticationServices {
[SupportedOSPlatform ("maccatalyst14.0.0")]
[SupportedOSPlatform ("ios14.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void GetSignInWithAppleUpgradeAuthorization (string? state, string? nonce, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V28))]global::System.Action<ASAuthorizationAppleIdCredential, NSError> completionHandler)
+ public unsafe virtual void GetSignInWithAppleUpgradeAuthorization (string? state, string? nonce, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V29))]global::System.Action<ASAuthorizationAppleIdCredential, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -153,7 +153,7 @@ namespace AuthenticationServices {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V28.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V29.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("getSignInWithAppleUpgradeAuthorizationWithState:nonce:completionHandler:"), nsstate, nsnonce, (IntPtr) block_ptr_completionHandler);
} else {
diff --git a/old/dotnet/ios/generated-sources/AuthenticationServices/ASAuthorizationAppleIdProvider.g.cs b/new/dotnet/ios/generated-sources/AuthenticationServices/ASAuthorizationAppleIdProvider.g.cs
index 3b09c33..168d98f 100644
--- a/old/dotnet/ios/generated-sources/AuthenticationServices/ASAuthorizationAppleIdProvider.g.cs
+++ b/new/dotnet/ios/generated-sources/AuthenticationServices/ASAuthorizationAppleIdProvider.g.cs
@@ -116,7 +116,7 @@ namespace AuthenticationServices {
[SupportedOSPlatform ("ios13.0.0")]
[SupportedOSPlatform ("maccatalyst13.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void GetCredentialState (string userID, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V29))]global::System.Action<ASAuthorizationAppleIdProviderCredentialState, NSError> completion)
+ public unsafe virtual void GetCredentialState (string userID, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V30))]global::System.Action<ASAuthorizationAppleIdProviderCredentialState, NSError> completion)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -130,7 +130,7 @@ namespace AuthenticationServices {
BlockLiteral block_completion;
block_completion = new BlockLiteral ();
block_ptr_completion = &block_completion;
- block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V29.Handler, completion);
+ block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V30.Handler, completion);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("getCredentialStateForUserID:completion:"), nsuserID, (IntPtr) block_ptr_completion);
} else {
diff --git a/old/dotnet/ios/generated-sources/CallKit/CXCallDirectoryManager.g.cs b/new/dotnet/ios/generated-sources/CallKit/CXCallDirectoryManager.g.cs
index 3d48aa3..54a6b63 100644
--- a/old/dotnet/ios/generated-sources/CallKit/CXCallDirectoryManager.g.cs
+++ b/new/dotnet/ios/generated-sources/CallKit/CXCallDirectoryManager.g.cs
@@ -86,7 +86,7 @@ namespace CallKit {
[SupportedOSPlatform ("ios10.0.0")]
[SupportedOSPlatform ("maccatalyst10.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void GetEnabledStatusForExtension (string identifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V30))]global::System.Action<CXCallDirectoryEnabledStatus, NSError> completion)
+ public unsafe virtual void GetEnabledStatusForExtension (string identifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V31))]global::System.Action<CXCallDirectoryEnabledStatus, NSError> completion)
{
if (identifier is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (identifier));
@@ -97,7 +97,7 @@ namespace CallKit {
BlockLiteral block_completion;
block_completion = new BlockLiteral ();
block_ptr_completion = &block_completion;
- block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V30.Handler, completion);
+ block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V31.Handler, completion);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("getEnabledStatusForExtensionWithIdentifier:completionHandler:"), nsidentifier, (IntPtr) block_ptr_completion);
} else {
diff --git a/old/dotnet/ios/generated-sources/ClassKit/CLSContext.g.cs b/new/dotnet/ios/generated-sources/ClassKit/CLSContext.g.cs
index 4ca0248..00b393a 100644
--- a/old/dotnet/ios/generated-sources/ClassKit/CLSContext.g.cs
+++ b/new/dotnet/ios/generated-sources/ClassKit/CLSContext.g.cs
@@ -220,7 +220,7 @@ namespace ClassKit {
[SupportedOSPlatform ("macos11.0.0")]
[SupportedOSPlatform ("ios11.4.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void FindDescendantMatching (string[] identifierPath, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V31))]global::System.Action<CLSContext, NSError> completion)
+ public unsafe virtual void FindDescendantMatching (string[] identifierPath, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V32))]global::System.Action<CLSContext, NSError> completion)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -234,7 +234,7 @@ namespace ClassKit {
BlockLiteral block_completion;
block_completion = new BlockLiteral ();
block_ptr_completion = &block_completion;
- block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V31.Handler, completion);
+ block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V32.Handler, completion);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("descendantMatchingIdentifierPath:completion:"), nsa_identifierPath.Handle, (IntPtr) block_ptr_completion);
} else {
diff --git a/old/dotnet/ios/generated-sources/ClassKit/CLSDataStore.g.cs b/new/dotnet/ios/generated-sources/ClassKit/CLSDataStore.g.cs
index d97ac78..dde0c35 100644
--- a/old/dotnet/ios/generated-sources/ClassKit/CLSDataStore.g.cs
+++ b/new/dotnet/ios/generated-sources/ClassKit/CLSDataStore.g.cs
@@ -104,7 +104,7 @@ namespace ClassKit {
[SupportedOSPlatform ("ios14.5")]
[UnsupportedOSPlatform ("tvos")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void FetchActivity (NSUrl url, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V32))]global::System.Action<CLSActivity, NSError> completion)
+ public unsafe virtual void FetchActivity (NSUrl url, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V33))]global::System.Action<CLSActivity, NSError> completion)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -116,7 +116,7 @@ namespace ClassKit {
BlockLiteral block_completion;
block_completion = new BlockLiteral ();
block_ptr_completion = &block_completion;
- block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V32.Handler, completion);
+ block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V33.Handler, completion);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("fetchActivityForURL:completion:"), url__handle__, (IntPtr) block_ptr_completion);
} else {
@@ -147,7 +147,7 @@ namespace ClassKit {
[SupportedOSPlatform ("macos11.0.0")]
[SupportedOSPlatform ("ios11.4.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void FindContextsMatching (NSPredicate predicate, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V33))]global::System.Action<CLSContext[], NSError> completion)
+ public unsafe virtual void FindContextsMatching (NSPredicate predicate, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V34))]global::System.Action<CLSContext[], NSError> completion)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -159,7 +159,7 @@ namespace ClassKit {
BlockLiteral block_completion;
block_completion = new BlockLiteral ();
block_ptr_completion = &block_completion;
- block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V33.Handler, completion);
+ block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V34.Handler, completion);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("contextsMatchingPredicate:completion:"), predicate__handle__, (IntPtr) block_ptr_completion);
} else {
@@ -190,7 +190,7 @@ namespace ClassKit {
[SupportedOSPlatform ("macos11.0.0")]
[SupportedOSPlatform ("ios11.4.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void FindContextsMatching (string[] identifierPath, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V33))]global::System.Action<CLSContext[], NSError> completion)
+ public unsafe virtual void FindContextsMatching (string[] identifierPath, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V34))]global::System.Action<CLSContext[], NSError> completion)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -204,7 +204,7 @@ namespace ClassKit {
BlockLiteral block_completion;
block_completion = new BlockLiteral ();
block_ptr_completion = &block_completion;
- block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V33.Handler, completion);
+ block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V34.Handler, completion);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("contextsMatchingIdentifierPath:completion:"), nsa_identifierPath.Handle, (IntPtr) block_ptr_completion);
} else {
diff --git a/old/dotnet/ios/generated-sources/CloudKit/CKContainer.g.cs b/new/dotnet/ios/generated-sources/CloudKit/CKContainer.g.cs
index 260c809..3651902 100644
--- a/old/dotnet/ios/generated-sources/CloudKit/CKContainer.g.cs
+++ b/new/dotnet/ios/generated-sources/CloudKit/CKContainer.g.cs
@@ -76,7 +76,7 @@ namespace CloudKit {
[SupportedOSPlatform ("macos10.12")]
[SupportedOSPlatform ("maccatalyst10.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void AcceptShareMetadata (CKShareMetadata metadata, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V34))]global::System.Action<CKShare, NSError> completionHandler)
+ public unsafe virtual void AcceptShareMetadata (CKShareMetadata metadata, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V35))]global::System.Action<CKShare, NSError> completionHandler)
{
var metadata__handle__ = metadata!.GetNonNullHandle (nameof (metadata));
if (completionHandler is null)
@@ -85,7 +85,7 @@ namespace CloudKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V34.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V35.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("acceptShareMetadata:completionHandler:"), metadata__handle__, (IntPtr) block_ptr_completionHandler);
} else {
@@ -130,7 +130,7 @@ namespace CloudKit {
[UnsupportedOSPlatform ("tvos")]
[SupportedOSPlatform ("maccatalyst10.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void DiscoverAllIdentities ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V35))]global::System.Action<CKUserIdentity[], NSError> completionHandler)
+ public unsafe virtual void DiscoverAllIdentities ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V36))]global::System.Action<CKUserIdentity[], NSError> completionHandler)
{
if (completionHandler is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (completionHandler));
@@ -138,7 +138,7 @@ namespace CloudKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V35.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V36.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("discoverAllIdentitiesWithCompletionHandler:"), (IntPtr) block_ptr_completionHandler);
} else {
@@ -168,7 +168,7 @@ namespace CloudKit {
[SupportedOSPlatform ("macos10.12")]
[SupportedOSPlatform ("maccatalyst10.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void DiscoverUserIdentity (CKRecordID userRecordID, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V36))]global::System.Action<CKUserIdentity, NSError> completionHandler)
+ public unsafe virtual void DiscoverUserIdentity (CKRecordID userRecordID, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V37))]global::System.Action<CKUserIdentity, NSError> completionHandler)
{
var userRecordID__handle__ = userRecordID!.GetNonNullHandle (nameof (userRecordID));
if (completionHandler is null)
@@ -177,7 +177,7 @@ namespace CloudKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V36.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V37.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("discoverUserIdentityWithUserRecordID:completionHandler:"), userRecordID__handle__, (IntPtr) block_ptr_completionHandler);
} else {
@@ -207,7 +207,7 @@ namespace CloudKit {
[SupportedOSPlatform ("macos10.12")]
[SupportedOSPlatform ("maccatalyst10.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void DiscoverUserIdentityWithEmailAddress (string email, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V36))]global::System.Action<CKUserIdentity, NSError> completionHandler)
+ public unsafe virtual void DiscoverUserIdentityWithEmailAddress (string email, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V37))]global::System.Action<CKUserIdentity, NSError> completionHandler)
{
if (email is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (email));
@@ -218,7 +218,7 @@ namespace CloudKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V36.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V37.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("discoverUserIdentityWithEmailAddress:completionHandler:"), nsemail, (IntPtr) block_ptr_completionHandler);
} else {
@@ -249,7 +249,7 @@ namespace CloudKit {
[SupportedOSPlatform ("macos10.12")]
[SupportedOSPlatform ("maccatalyst10.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void DiscoverUserIdentityWithPhoneNumber (string phoneNumber, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V36))]global::System.Action<CKUserIdentity, NSError> completionHandler)
+ public unsafe virtual void DiscoverUserIdentityWithPhoneNumber (string phoneNumber, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V37))]global::System.Action<CKUserIdentity, NSError> completionHandler)
{
if (phoneNumber is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (phoneNumber));
@@ -260,7 +260,7 @@ namespace CloudKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V36.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V37.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("discoverUserIdentityWithPhoneNumber:completionHandler:"), nsphoneNumber, (IntPtr) block_ptr_completionHandler);
} else {
@@ -291,7 +291,7 @@ namespace CloudKit {
[UnsupportedOSPlatform ("tvos")]
[SupportedOSPlatform ("maccatalyst9.3.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void FetchAllLongLivedOperationIDs ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V37))]global::System.Action<NSDictionary<NSString, NSOperation>, NSError> completionHandler)
+ public unsafe virtual void FetchAllLongLivedOperationIDs ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V38))]global::System.Action<NSDictionary<NSString, NSOperation>, NSError> completionHandler)
{
if (completionHandler is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (completionHandler));
@@ -299,7 +299,7 @@ namespace CloudKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V37.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V38.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("fetchAllLongLivedOperationIDsWithCompletionHandler:"), (IntPtr) block_ptr_completionHandler);
} else {
@@ -329,7 +329,7 @@ namespace CloudKit {
[UnsupportedOSPlatform ("tvos")]
[SupportedOSPlatform ("maccatalyst9.3.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void FetchLongLivedOperation (string[] operationID, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V37))]global::System.Action<NSDictionary<NSString, NSOperation>, NSError> completionHandler)
+ public unsafe virtual void FetchLongLivedOperation (string[] operationID, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V38))]global::System.Action<NSDictionary<NSString, NSOperation>, NSError> completionHandler)
{
if (operationID is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (operationID));
@@ -340,7 +340,7 @@ namespace CloudKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V37.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V38.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("fetchLongLivedOperationWithID:completionHandler:"), nsa_operationID.Handle, (IntPtr) block_ptr_completionHandler);
} else {
@@ -371,7 +371,7 @@ namespace CloudKit {
[SupportedOSPlatform ("macos10.12")]
[SupportedOSPlatform ("maccatalyst10.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void FetchShareMetadata (NSUrl url, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V38))]global::System.Action<CKShareMetadata, NSError> completionHandler)
+ public unsafe virtual void FetchShareMetadata (NSUrl url, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V39))]global::System.Action<CKShareMetadata, NSError> completionHandler)
{
var url__handle__ = url!.GetNonNullHandle (nameof (url));
if (completionHandler is null)
@@ -380,7 +380,7 @@ namespace CloudKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V38.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V39.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("fetchShareMetadataWithURL:completionHandler:"), url__handle__, (IntPtr) block_ptr_completionHandler);
} else {
@@ -410,7 +410,7 @@ namespace CloudKit {
[SupportedOSPlatform ("macos10.12")]
[SupportedOSPlatform ("maccatalyst10.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void FetchShareParticipant (CKRecordID userRecordID, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V39))]global::System.Action<CKShareParticipant, NSError> completionHandler)
+ public unsafe virtual void FetchShareParticipant (CKRecordID userRecordID, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V40))]global::System.Action<CKShareParticipant, NSError> completionHandler)
{
var userRecordID__handle__ = userRecordID!.GetNonNullHandle (nameof (userRecordID));
if (completionHandler is null)
@@ -419,7 +419,7 @@ namespace CloudKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V39.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V40.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("fetchShareParticipantWithUserRecordID:completionHandler:"), userRecordID__handle__, (IntPtr) block_ptr_completionHandler);
} else {
@@ -449,7 +449,7 @@ namespace CloudKit {
[SupportedOSPlatform ("macos10.12")]
[SupportedOSPlatform ("maccatalyst10.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void FetchShareParticipantWithEmailAddress (string emailAddress, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V39))]global::System.Action<CKShareParticipant, NSError> completionHandler)
+ public unsafe virtual void FetchShareParticipantWithEmailAddress (string emailAddress, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V40))]global::System.Action<CKShareParticipant, NSError> completionHandler)
{
if (emailAddress is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (emailAddress));
@@ -460,7 +460,7 @@ namespace CloudKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V39.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V40.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("fetchShareParticipantWithEmailAddress:completionHandler:"), nsemailAddress, (IntPtr) block_ptr_completionHandler);
} else {
@@ -491,7 +491,7 @@ namespace CloudKit {
[SupportedOSPlatform ("macos10.12")]
[SupportedOSPlatform ("maccatalyst10.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void FetchShareParticipantWithPhoneNumber (string phoneNumber, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V39))]global::System.Action<CKShareParticipant, NSError> completionHandler)
+ public unsafe virtual void FetchShareParticipantWithPhoneNumber (string phoneNumber, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V40))]global::System.Action<CKShareParticipant, NSError> completionHandler)
{
if (phoneNumber is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (phoneNumber));
@@ -502,7 +502,7 @@ namespace CloudKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V39.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V40.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("fetchShareParticipantWithPhoneNumber:completionHandler:"), nsphoneNumber, (IntPtr) block_ptr_completionHandler);
} else {
@@ -533,7 +533,7 @@ namespace CloudKit {
[SupportedOSPlatform ("tvos")]
[SupportedOSPlatform ("maccatalyst8.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void FetchUserRecordId ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V40))]global::System.Action<CKRecordID, NSError> completionHandler)
+ public unsafe virtual void FetchUserRecordId ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V41))]global::System.Action<CKRecordID, NSError> completionHandler)
{
if (completionHandler is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (completionHandler));
@@ -541,7 +541,7 @@ namespace CloudKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V40.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V41.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("fetchUserRecordIDWithCompletionHandler:"), (IntPtr) block_ptr_completionHandler);
} else {
@@ -587,7 +587,7 @@ namespace CloudKit {
[SupportedOSPlatform ("tvos")]
[SupportedOSPlatform ("maccatalyst8.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void GetAccountStatus ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V41))]global::System.Action<CKAccountStatus, NSError> completionHandler)
+ public unsafe virtual void GetAccountStatus ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V42))]global::System.Action<CKAccountStatus, NSError> completionHandler)
{
if (completionHandler is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (completionHandler));
@@ -595,7 +595,7 @@ namespace CloudKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V41.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V42.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("accountStatusWithCompletionHandler:"), (IntPtr) block_ptr_completionHandler);
} else {
@@ -639,7 +639,7 @@ namespace CloudKit {
[SupportedOSPlatform ("tvos")]
[SupportedOSPlatform ("maccatalyst8.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void RequestApplicationPermission (CKApplicationPermissions applicationPermission, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V42))]global::System.Action<CKApplicationPermissionStatus, NSError> completionHandler)
+ public unsafe virtual void RequestApplicationPermission (CKApplicationPermissions applicationPermission, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V43))]global::System.Action<CKApplicationPermissionStatus, NSError> completionHandler)
{
if (completionHandler is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (completionHandler));
@@ -647,7 +647,7 @@ namespace CloudKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V42.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V43.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_UIntPtr_NativeHandle (this.Handle, Selector.GetHandle ("requestApplicationPermission:completionHandler:"), (UIntPtr) (ulong) applicationPermission, (IntPtr) block_ptr_completionHandler);
} else {
@@ -677,7 +677,7 @@ namespace CloudKit {
[SupportedOSPlatform ("tvos")]
[SupportedOSPlatform ("maccatalyst8.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void StatusForApplicationPermission (CKApplicationPermissions applicationPermission, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V42))]global::System.Action<CKApplicationPermissionStatus, NSError> completionHandler)
+ public unsafe virtual void StatusForApplicationPermission (CKApplicationPermissions applicationPermission, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V43))]global::System.Action<CKApplicationPermissionStatus, NSError> completionHandler)
{
if (completionHandler is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (completionHandler));
@@ -685,7 +685,7 @@ namespace CloudKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V42.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V43.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_UIntPtr_NativeHandle (this.Handle, Selector.GetHandle ("statusForApplicationPermission:completionHandler:"), (UIntPtr) (ulong) applicationPermission, (IntPtr) block_ptr_completionHandler);
} else {
diff --git a/old/dotnet/ios/generated-sources/CloudKit/CKDatabase.g.cs b/new/dotnet/ios/generated-sources/CloudKit/CKDatabase.g.cs
index 9081d66..291cbf4 100644
--- a/old/dotnet/ios/generated-sources/CloudKit/CKDatabase.g.cs
+++ b/new/dotnet/ios/generated-sources/CloudKit/CKDatabase.g.cs
@@ -91,7 +91,7 @@ namespace CloudKit {
[SupportedOSPlatform ("tvos")]
[SupportedOSPlatform ("maccatalyst8.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void DeleteRecord (CKRecordID recordId, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V40))]global::System.Action<CKRecordID, NSError> completionHandler)
+ public unsafe virtual void DeleteRecord (CKRecordID recordId, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V41))]global::System.Action<CKRecordID, NSError> completionHandler)
{
var recordId__handle__ = recordId!.GetNonNullHandle (nameof (recordId));
if (completionHandler is null)
@@ -100,7 +100,7 @@ namespace CloudKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V40.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V41.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("deleteRecordWithID:completionHandler:"), recordId__handle__, (IntPtr) block_ptr_completionHandler);
} else {
@@ -130,7 +130,7 @@ namespace CloudKit {
[SupportedOSPlatform ("tvos")]
[SupportedOSPlatform ("maccatalyst8.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void DeleteRecordZone (CKRecordZoneID zoneId, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V43))]global::System.Action<CKRecordZoneID, NSError> completionHandler)
+ public unsafe virtual void DeleteRecordZone (CKRecordZoneID zoneId, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V44))]global::System.Action<CKRecordZoneID, NSError> completionHandler)
{
var zoneId__handle__ = zoneId!.GetNonNullHandle (nameof (zoneId));
if (completionHandler is null)
@@ -139,7 +139,7 @@ namespace CloudKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V43.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V44.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("deleteRecordZoneWithID:completionHandler:"), zoneId__handle__, (IntPtr) block_ptr_completionHandler);
} else {
@@ -211,7 +211,7 @@ namespace CloudKit {
[SupportedOSPlatform ("tvos")]
[SupportedOSPlatform ("maccatalyst8.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void FetchAllRecordZones ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V44))]global::System.Action<CKRecordZone[], NSError> completionHandler)
+ public unsafe virtual void FetchAllRecordZones ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V45))]global::System.Action<CKRecordZone[], NSError> completionHandler)
{
if (completionHandler is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (completionHandler));
@@ -219,7 +219,7 @@ namespace CloudKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V44.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V45.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("fetchAllRecordZonesWithCompletionHandler:"), (IntPtr) block_ptr_completionHandler);
} else {
@@ -249,7 +249,7 @@ namespace CloudKit {
[SupportedOSPlatform ("tvos")]
[SupportedOSPlatform ("maccatalyst8.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void FetchAllSubscriptions ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V45))]global::System.Action<CKSubscription[], NSError> completionHandler)
+ public unsafe virtual void FetchAllSubscriptions ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V46))]global::System.Action<CKSubscription[], NSError> completionHandler)
{
if (completionHandler is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (completionHandler));
@@ -257,7 +257,7 @@ namespace CloudKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V45.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V46.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("fetchAllSubscriptionsWithCompletionHandler:"), (IntPtr) block_ptr_completionHandler);
} else {
@@ -287,7 +287,7 @@ namespace CloudKit {
[SupportedOSPlatform ("tvos")]
[SupportedOSPlatform ("maccatalyst8.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void FetchRecord (CKRecordID recordId, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V46))]global::System.Action<CKRecord, NSError> completionHandler)
+ public unsafe virtual void FetchRecord (CKRecordID recordId, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V47))]global::System.Action<CKRecord, NSError> completionHandler)
{
var recordId__handle__ = recordId!.GetNonNullHandle (nameof (recordId));
if (completionHandler is null)
@@ -296,7 +296,7 @@ namespace CloudKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V46.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V47.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("fetchRecordWithID:completionHandler:"), recordId__handle__, (IntPtr) block_ptr_completionHandler);
} else {
@@ -326,7 +326,7 @@ namespace CloudKit {
[SupportedOSPlatform ("tvos")]
[SupportedOSPlatform ("maccatalyst8.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void FetchRecordZone (CKRecordZoneID zoneId, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V47))]global::System.Action<CKRecordZone, NSError> completionHandler)
+ public unsafe virtual void FetchRecordZone (CKRecordZoneID zoneId, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V48))]global::System.Action<CKRecordZone, NSError> completionHandler)
{
var zoneId__handle__ = zoneId!.GetNonNullHandle (nameof (zoneId));
if (completionHandler is null)
@@ -335,7 +335,7 @@ namespace CloudKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V47.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V48.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("fetchRecordZoneWithID:completionHandler:"), zoneId__handle__, (IntPtr) block_ptr_completionHandler);
} else {
@@ -365,7 +365,7 @@ namespace CloudKit {
[SupportedOSPlatform ("tvos")]
[SupportedOSPlatform ("maccatalyst8.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void FetchSubscription (string subscriptionId, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V48))]global::System.Action<CKSubscription, NSError> completionHandler)
+ public unsafe virtual void FetchSubscription (string subscriptionId, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V49))]global::System.Action<CKSubscription, NSError> completionHandler)
{
if (subscriptionId is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (subscriptionId));
@@ -376,7 +376,7 @@ namespace CloudKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V48.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V49.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("fetchSubscriptionWithID:completionHandler:"), nssubscriptionId, (IntPtr) block_ptr_completionHandler);
} else {
@@ -407,7 +407,7 @@ namespace CloudKit {
[SupportedOSPlatform ("tvos")]
[SupportedOSPlatform ("maccatalyst8.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void PerformQuery (CKQuery query, CKRecordZoneID? zoneId, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V49))]global::System.Action<CKRecord[], NSError> completionHandler)
+ public unsafe virtual void PerformQuery (CKQuery query, CKRecordZoneID? zoneId, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V50))]global::System.Action<CKRecord[], NSError> completionHandler)
{
var query__handle__ = query!.GetNonNullHandle (nameof (query));
var zoneId__handle__ = zoneId.GetHandle ();
@@ -417,7 +417,7 @@ namespace CloudKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V49.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V50.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("performQuery:inZoneWithID:completionHandler:"), query__handle__, zoneId__handle__, (IntPtr) block_ptr_completionHandler);
} else {
@@ -447,7 +447,7 @@ namespace CloudKit {
[SupportedOSPlatform ("tvos")]
[SupportedOSPlatform ("maccatalyst8.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void SaveRecord (CKRecord record, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V46))]global::System.Action<CKRecord, NSError> completionHandler)
+ public unsafe virtual void SaveRecord (CKRecord record, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V47))]global::System.Action<CKRecord, NSError> completionHandler)
{
var record__handle__ = record!.GetNonNullHandle (nameof (record));
if (completionHandler is null)
@@ -456,7 +456,7 @@ namespace CloudKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V46.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V47.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("saveRecord:completionHandler:"), record__handle__, (IntPtr) block_ptr_completionHandler);
} else {
@@ -486,7 +486,7 @@ namespace CloudKit {
[SupportedOSPlatform ("tvos")]
[SupportedOSPlatform ("maccatalyst8.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void SaveRecordZone (CKRecordZone zone, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V47))]global::System.Action<CKRecordZone, NSError> completionHandler)
+ public unsafe virtual void SaveRecordZone (CKRecordZone zone, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V48))]global::System.Action<CKRecordZone, NSError> completionHandler)
{
var zone__handle__ = zone!.GetNonNullHandle (nameof (zone));
if (completionHandler is null)
@@ -495,7 +495,7 @@ namespace CloudKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V47.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V48.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("saveRecordZone:completionHandler:"), zone__handle__, (IntPtr) block_ptr_completionHandler);
} else {
@@ -525,7 +525,7 @@ namespace CloudKit {
[SupportedOSPlatform ("tvos")]
[SupportedOSPlatform ("maccatalyst8.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void SaveSubscription (CKSubscription subscription, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V48))]global::System.Action<CKSubscription, NSError> completionHandler)
+ public unsafe virtual void SaveSubscription (CKSubscription subscription, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V49))]global::System.Action<CKSubscription, NSError> completionHandler)
{
var subscription__handle__ = subscription!.GetNonNullHandle (nameof (subscription));
if (completionHandler is null)
@@ -534,7 +534,7 @@ namespace CloudKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V48.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V49.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("saveSubscription:completionHandler:"), subscription__handle__, (IntPtr) block_ptr_completionHandler);
} else {
diff --git a/old/dotnet/ios/generated-sources/CloudKit/CKDiscoverUserIdentitiesOperation.g.cs b/new/dotnet/ios/generated-sources/CloudKit/CKDiscoverUserIdentitiesOperation.g.cs
index fd23152..9098722 100644
--- a/old/dotnet/ios/generated-sources/CloudKit/CKDiscoverUserIdentitiesOperation.g.cs
+++ b/new/dotnet/ios/generated-sources/CloudKit/CKDiscoverUserIdentitiesOperation.g.cs
@@ -152,7 +152,7 @@ namespace CloudKit {
[SupportedOSPlatform ("macos10.12.0")]
[SupportedOSPlatform ("maccatalyst10.0.0")]
public unsafe virtual global::System.Action<CKUserIdentity, CKUserIdentityLookupInfo>? Discovered {
- [return: DelegateProxy (typeof (ObjCRuntime.Trampolines.SDActionArity2V50))]
+ [return: DelegateProxy (typeof (ObjCRuntime.Trampolines.SDActionArity2V51))]
[Export ("userIdentityDiscoveredBlock", ArgumentSemantic.Copy)]
[SupportedOSPlatform ("ios10.0.0")]
[SupportedOSPlatform ("tvos10.0.0")]
@@ -165,9 +165,9 @@ namespace CloudKit {
} else {
ret = global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("userIdentityDiscoveredBlock"));
}
- return global::ObjCRuntime.Trampolines.NIDActionArity2V50.Create (ret)!;
+ return global::ObjCRuntime.Trampolines.NIDActionArity2V51.Create (ret)!;
}
- [param: BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V50))]
+ [param: BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V51))]
[Export ("setUserIdentityDiscoveredBlock:", ArgumentSemantic.Copy)]
[SupportedOSPlatform ("ios10.0.0")]
[SupportedOSPlatform ("tvos10.0.0")]
@@ -178,7 +178,7 @@ namespace CloudKit {
BlockLiteral block_value;
block_value = new BlockLiteral ();
block_ptr_value = &block_value;
- block_value.SetupBlockUnsafe (Trampolines.SDActionArity2V50.Handler, value);
+ block_value.SetupBlockUnsafe (Trampolines.SDActionArity2V51.Handler, value);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("setUserIdentityDiscoveredBlock:"), (IntPtr) block_ptr_value);
} else {
diff --git a/old/dotnet/ios/generated-sources/CloudKit/CKFetchNotificationChangesOperation.g.cs b/new/dotnet/ios/generated-sources/CloudKit/CKFetchNotificationChangesOperation.g.cs
index deb2947..2368005 100644
--- a/old/dotnet/ios/generated-sources/CloudKit/CKFetchNotificationChangesOperation.g.cs
+++ b/new/dotnet/ios/generated-sources/CloudKit/CKFetchNotificationChangesOperation.g.cs
@@ -172,7 +172,7 @@ namespace CloudKit {
[SupportedOSPlatform ("macos10.10.0")]
[SupportedOSPlatform ("maccatalyst8.0.0")]
public unsafe virtual global::System.Action<CKServerChangeToken, NSError>? Completed {
- [return: DelegateProxy (typeof (ObjCRuntime.Trampolines.SDActionArity2V51))]
+ [return: DelegateProxy (typeof (ObjCRuntime.Trampolines.SDActionArity2V52))]
[Export ("fetchNotificationChangesCompletionBlock", ArgumentSemantic.Copy)]
#if __IOS__
[Advice ("Starting with ios11.0.0 Use 'CKDatabaseSubscription', 'CKFetchDatabaseChangesOperation' and 'CKFetchRecordZoneChangesOperation' instead.")]
@@ -201,9 +201,9 @@ namespace CloudKit {
} else {
ret = global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("fetchNotificationChangesCompletionBlock"));
}
- return global::ObjCRuntime.Trampolines.NIDActionArity2V51.Create (ret)!;
+ return global::ObjCRuntime.Trampolines.NIDActionArity2V52.Create (ret)!;
}
- [param: BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V51))]
+ [param: BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V52))]
[Export ("setFetchNotificationChangesCompletionBlock:", ArgumentSemantic.Copy)]
#if __IOS__
[Advice ("Starting with ios11.0.0 Use 'CKDatabaseSubscription', 'CKFetchDatabaseChangesOperation' and 'CKFetchRecordZoneChangesOperation' instead.")]
@@ -230,7 +230,7 @@ namespace CloudKit {
BlockLiteral block_value;
block_value = new BlockLiteral ();
block_ptr_value = &block_value;
- block_value.SetupBlockUnsafe (Trampolines.SDActionArity2V51.Handler, value);
+ block_value.SetupBlockUnsafe (Trampolines.SDActionArity2V52.Handler, value);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("setFetchNotificationChangesCompletionBlock:"), (IntPtr) block_ptr_value);
} else {
diff --git a/old/dotnet/ios/generated-sources/CloudKit/CKFetchRecordsOperation.g.cs b/new/dotnet/ios/generated-sources/CloudKit/CKFetchRecordsOperation.g.cs
index 20460c7..270f238 100644
--- a/old/dotnet/ios/generated-sources/CloudKit/CKFetchRecordsOperation.g.cs
+++ b/new/dotnet/ios/generated-sources/CloudKit/CKFetchRecordsOperation.g.cs
@@ -234,7 +234,7 @@ namespace CloudKit {
[SupportedOSPlatform ("macos10.10.0")]
[SupportedOSPlatform ("maccatalyst8.0.0")]
public unsafe virtual global::System.Action<CKRecordID, double>? PerRecordProgress {
- [return: DelegateProxy (typeof (ObjCRuntime.Trampolines.SDActionArity2V52))]
+ [return: DelegateProxy (typeof (ObjCRuntime.Trampolines.SDActionArity2V53))]
[Export ("perRecordProgressBlock", ArgumentSemantic.Copy)]
[SupportedOSPlatform ("ios8.0.0")]
[SupportedOSPlatform ("tvos10.0.0")]
@@ -247,9 +247,9 @@ namespace CloudKit {
} else {
ret = global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("perRecordProgressBlock"));
}
- return global::ObjCRuntime.Trampolines.NIDActionArity2V52.Create (ret)!;
+ return global::ObjCRuntime.Trampolines.NIDActionArity2V53.Create (ret)!;
}
- [param: BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V52))]
+ [param: BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V53))]
[Export ("setPerRecordProgressBlock:", ArgumentSemantic.Copy)]
[SupportedOSPlatform ("ios8.0.0")]
[SupportedOSPlatform ("tvos10.0.0")]
@@ -260,7 +260,7 @@ namespace CloudKit {
BlockLiteral block_value;
block_value = new BlockLiteral ();
block_ptr_value = &block_value;
- block_value.SetupBlockUnsafe (Trampolines.SDActionArity2V52.Handler, value);
+ block_value.SetupBlockUnsafe (Trampolines.SDActionArity2V53.Handler, value);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("setPerRecordProgressBlock:"), (IntPtr) block_ptr_value);
} else {
diff --git a/old/dotnet/ios/generated-sources/CloudKit/CKModifyRecordsOperation.g.cs b/new/dotnet/ios/generated-sources/CloudKit/CKModifyRecordsOperation.g.cs
index 0c212c0..3184f8f 100644
--- a/old/dotnet/ios/generated-sources/CloudKit/CKModifyRecordsOperation.g.cs
+++ b/new/dotnet/ios/generated-sources/CloudKit/CKModifyRecordsOperation.g.cs
@@ -232,7 +232,7 @@ namespace CloudKit {
[SupportedOSPlatform ("macos10.10.0")]
[SupportedOSPlatform ("maccatalyst8.0.0")]
public unsafe virtual global::System.Action<CKRecord, NSError>? PerRecordCompletion {
- [return: DelegateProxy (typeof (ObjCRuntime.Trampolines.SDActionArity2V46))]
+ [return: DelegateProxy (typeof (ObjCRuntime.Trampolines.SDActionArity2V47))]
[Export ("perRecordCompletionBlock", ArgumentSemantic.Copy)]
#if __TVOS__
[Advice ("Starting with tvos15.0.0 Use 'PerRecordResultHandler' instead.")]
@@ -261,9 +261,9 @@ namespace CloudKit {
} else {
ret = global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("perRecordCompletionBlock"));
}
- return global::ObjCRuntime.Trampolines.NIDActionArity2V46.Create (ret)!;
+ return global::ObjCRuntime.Trampolines.NIDActionArity2V47.Create (ret)!;
}
- [param: BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V46))]
+ [param: BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V47))]
[Export ("setPerRecordCompletionBlock:", ArgumentSemantic.Copy)]
#if __TVOS__
[Advice ("Starting with tvos15.0.0 Use 'PerRecordResultHandler' instead.")]
@@ -290,7 +290,7 @@ namespace CloudKit {
BlockLiteral block_value;
block_value = new BlockLiteral ();
block_ptr_value = &block_value;
- block_value.SetupBlockUnsafe (Trampolines.SDActionArity2V46.Handler, value);
+ block_value.SetupBlockUnsafe (Trampolines.SDActionArity2V47.Handler, value);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("setPerRecordCompletionBlock:"), (IntPtr) block_ptr_value);
} else {
@@ -354,7 +354,7 @@ namespace CloudKit {
[SupportedOSPlatform ("macos10.10.0")]
[SupportedOSPlatform ("maccatalyst8.0.0")]
public unsafe virtual global::System.Action<CKRecord, double>? PerRecordProgress {
- [return: DelegateProxy (typeof (ObjCRuntime.Trampolines.SDActionArity2V53))]
+ [return: DelegateProxy (typeof (ObjCRuntime.Trampolines.SDActionArity2V54))]
[Export ("perRecordProgressBlock", ArgumentSemantic.Copy)]
[SupportedOSPlatform ("ios8.0.0")]
[SupportedOSPlatform ("tvos10.0.0")]
@@ -367,9 +367,9 @@ namespace CloudKit {
} else {
ret = global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("perRecordProgressBlock"));
}
- return global::ObjCRuntime.Trampolines.NIDActionArity2V53.Create (ret)!;
+ return global::ObjCRuntime.Trampolines.NIDActionArity2V54.Create (ret)!;
}
- [param: BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V53))]
+ [param: BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V54))]
[Export ("setPerRecordProgressBlock:", ArgumentSemantic.Copy)]
[SupportedOSPlatform ("ios8.0.0")]
[SupportedOSPlatform ("tvos10.0.0")]
@@ -380,7 +380,7 @@ namespace CloudKit {
BlockLiteral block_value;
block_value = new BlockLiteral ();
block_ptr_value = &block_value;
- block_value.SetupBlockUnsafe (Trampolines.SDActionArity2V53.Handler, value);
+ block_value.SetupBlockUnsafe (Trampolines.SDActionArity2V54.Handler, value);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("setPerRecordProgressBlock:"), (IntPtr) block_ptr_value);
} else {
diff --git a/old/dotnet/ios/generated-sources/CloudKit/CKQueryOperation.g.cs b/new/dotnet/ios/generated-sources/CloudKit/CKQueryOperation.g.cs
index ed3759a..3532ea3 100644
--- a/old/dotnet/ios/generated-sources/CloudKit/CKQueryOperation.g.cs
+++ b/new/dotnet/ios/generated-sources/CloudKit/CKQueryOperation.g.cs
@@ -121,7 +121,7 @@ namespace CloudKit {
[SupportedOSPlatform ("macos10.10.0")]
[SupportedOSPlatform ("maccatalyst8.0.0")]
public unsafe virtual global::System.Action<CKQueryCursor, NSError>? Completed {
- [return: DelegateProxy (typeof (ObjCRuntime.Trampolines.SDActionArity2V54))]
+ [return: DelegateProxy (typeof (ObjCRuntime.Trampolines.SDActionArity2V55))]
[Export ("queryCompletionBlock", ArgumentSemantic.Copy)]
[SupportedOSPlatform ("ios8.0.0")]
[SupportedOSPlatform ("tvos10.0.0")]
@@ -134,9 +134,9 @@ namespace CloudKit {
} else {
ret = global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("queryCompletionBlock"));
}
- return global::ObjCRuntime.Trampolines.NIDActionArity2V54.Create (ret)!;
+ return global::ObjCRuntime.Trampolines.NIDActionArity2V55.Create (ret)!;
}
- [param: BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V54))]
+ [param: BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V55))]
[Export ("setQueryCompletionBlock:", ArgumentSemantic.Copy)]
[SupportedOSPlatform ("ios8.0.0")]
[SupportedOSPlatform ("tvos10.0.0")]
@@ -147,7 +147,7 @@ namespace CloudKit {
BlockLiteral block_value;
block_value = new BlockLiteral ();
block_ptr_value = &block_value;
- block_value.SetupBlockUnsafe (Trampolines.SDActionArity2V54.Handler, value);
+ block_value.SetupBlockUnsafe (Trampolines.SDActionArity2V55.Handler, value);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("setQueryCompletionBlock:"), (IntPtr) block_ptr_value);
} else {
diff --git a/old/dotnet/ios/generated-sources/Contacts/CNContact.g.cs b/new/dotnet/ios/generated-sources/Contacts/CNContact.g.cs
index 9873cbd..09875ae 100644
--- a/old/dotnet/ios/generated-sources/Contacts/CNContact.g.cs
+++ b/new/dotnet/ios/generated-sources/Contacts/CNContact.g.cs
@@ -343,7 +343,7 @@ namespace Contacts {
[SupportedOSPlatform ("maccatalyst9.0.0")]
[UnsupportedOSPlatform ("tvos")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual NSProgress? LoadData (string typeIdentifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V18))]global::System.Action<NSData, NSError> completionHandler)
+ public unsafe virtual NSProgress? LoadData (string typeIdentifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V19))]global::System.Action<NSData, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -357,7 +357,7 @@ namespace Contacts {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V18.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V19.Handler, completionHandler);
NSProgress? ret;
if (IsDirectBinding) {
ret = Runtime.GetNSObject<NSProgress> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("loadDataWithTypeIdentifier:forItemProviderCompletionHandler:"), nstypeIdentifier, (IntPtr) block_ptr_completionHandler))!;
diff --git a/old/dotnet/ios/generated-sources/CoreData/NSPersistentContainer.g.cs b/new/dotnet/ios/generated-sources/CoreData/NSPersistentContainer.g.cs
index 22732e0..06f59af 100644
--- a/old/dotnet/ios/generated-sources/CoreData/NSPersistentContainer.g.cs
+++ b/new/dotnet/ios/generated-sources/CoreData/NSPersistentContainer.g.cs
@@ -149,7 +149,7 @@ namespace CoreData {
[SupportedOSPlatform ("macos10.12.0")]
[SupportedOSPlatform ("maccatalyst10.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void LoadPersistentStores ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V55))]global::System.Action<NSPersistentStoreDescription, NSError> block)
+ public unsafe virtual void LoadPersistentStores ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V56))]global::System.Action<NSPersistentStoreDescription, NSError> block)
{
if (block is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (block));
@@ -157,7 +157,7 @@ namespace CoreData {
BlockLiteral block_block;
block_block = new BlockLiteral ();
block_ptr_block = &block_block;
- block_block.SetupBlockUnsafe (Trampolines.SDActionArity2V55.Handler, block);
+ block_block.SetupBlockUnsafe (Trampolines.SDActionArity2V56.Handler, block);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("loadPersistentStoresWithCompletionHandler:"), (IntPtr) block_ptr_block);
} else {
diff --git a/old/dotnet/ios/generated-sources/CoreData/NSPersistentStoreCoordinator.g.cs b/new/dotnet/ios/generated-sources/CoreData/NSPersistentStoreCoordinator.g.cs
index ed73bba..446c5ba 100644
--- a/old/dotnet/ios/generated-sources/CoreData/NSPersistentStoreCoordinator.g.cs
+++ b/new/dotnet/ios/generated-sources/CoreData/NSPersistentStoreCoordinator.g.cs
@@ -104,7 +104,7 @@ namespace CoreData {
[SupportedOSPlatform ("macos10.12")]
[SupportedOSPlatform ("maccatalyst10.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void AddPersistentStore (NSPersistentStoreDescription storeDescription, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V55))]global::System.Action<NSPersistentStoreDescription, NSError> block)
+ public unsafe virtual void AddPersistentStore (NSPersistentStoreDescription storeDescription, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V56))]global::System.Action<NSPersistentStoreDescription, NSError> block)
{
var storeDescription__handle__ = storeDescription!.GetNonNullHandle (nameof (storeDescription));
if (block is null)
@@ -113,7 +113,7 @@ namespace CoreData {
BlockLiteral block_block;
block_block = new BlockLiteral ();
block_ptr_block = &block_block;
- block_block.SetupBlockUnsafe (Trampolines.SDActionArity2V55.Handler, block);
+ block_block.SetupBlockUnsafe (Trampolines.SDActionArity2V56.Handler, block);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("addPersistentStoreWithDescription:completionHandler:"), storeDescription__handle__, (IntPtr) block_ptr_block);
} else {
diff --git a/old/dotnet/ios/generated-sources/CoreLocation/CLLocationManager.g.cs b/new/dotnet/ios/generated-sources/CoreLocation/CLLocationManager.g.cs
index 2058b99..90eddab 100644
--- a/old/dotnet/ios/generated-sources/CoreLocation/CLLocationManager.g.cs
+++ b/new/dotnet/ios/generated-sources/CoreLocation/CLLocationManager.g.cs
@@ -311,7 +311,7 @@ namespace CoreLocation {
[UnsupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("ios15.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void StartMonitoringLocationPushes ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V18))]global::System.Action<NSData, NSError>? completion)
+ public unsafe virtual void StartMonitoringLocationPushes ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V19))]global::System.Action<NSData, NSError>? completion)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -323,7 +323,7 @@ namespace CoreLocation {
} else {
block_completion = new BlockLiteral ();
block_ptr_completion = &block_completion;
- block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V18.Handler, completion);
+ block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V19.Handler, completion);
}
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("startMonitoringLocationPushesWithCompletion:"), (IntPtr) block_ptr_completion);
diff --git a/old/dotnet/ios/generated-sources/CoreML/MLModel.g.cs b/new/dotnet/ios/generated-sources/CoreML/MLModel.g.cs
index 3934d25..187b4dc 100644
--- a/old/dotnet/ios/generated-sources/CoreML/MLModel.g.cs
+++ b/new/dotnet/ios/generated-sources/CoreML/MLModel.g.cs
@@ -273,7 +273,7 @@ namespace CoreML {
[SupportedOSPlatform ("ios14.0")]
[SupportedOSPlatform ("maccatalyst14.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static void LoadContents (NSUrl url, MLModelConfiguration configuration, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V56))]global::System.Action<MLModel, NSError> handler)
+ public unsafe static void LoadContents (NSUrl url, MLModelConfiguration configuration, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V57))]global::System.Action<MLModel, NSError> handler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -286,7 +286,7 @@ namespace CoreML {
BlockLiteral block_handler;
block_handler = new BlockLiteral ();
block_ptr_handler = &block_handler;
- block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V56.Handler, handler);
+ block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V57.Handler, handler);
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle_NativeHandle (class_ptr, Selector.GetHandle ("loadContentsOfURL:configuration:completionHandler:"), url__handle__, configuration__handle__, (IntPtr) block_ptr_handler);
block_ptr_handler->CleanupBlock ();
#endif
diff --git a/old/dotnet/ios/generated-sources/CoreML/MLModelCollection.g.cs b/new/dotnet/ios/generated-sources/CoreML/MLModelCollection.g.cs
index 2216cd3..d54675f 100644
--- a/old/dotnet/ios/generated-sources/CoreML/MLModelCollection.g.cs
+++ b/new/dotnet/ios/generated-sources/CoreML/MLModelCollection.g.cs
@@ -82,7 +82,7 @@ namespace CoreML {
[SupportedOSPlatform ("ios14.0.0")]
[SupportedOSPlatform ("maccatalyst14.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static NSProgress BeginAccessingModelCollection (string identifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V57))]global::System.Action<MLModelCollection, NSError> completionHandler)
+ public unsafe static NSProgress BeginAccessingModelCollection (string identifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V58))]global::System.Action<MLModelCollection, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -96,7 +96,7 @@ namespace CoreML {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V57.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V58.Handler, completionHandler);
NSProgress? ret;
ret = Runtime.GetNSObject<NSProgress> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend_NativeHandle_NativeHandle (class_ptr, Selector.GetHandle ("beginAccessingModelCollectionWithIdentifier:completionHandler:"), nsidentifier, (IntPtr) block_ptr_completionHandler))!;
CFString.ReleaseNative (nsidentifier);
diff --git a/old/dotnet/ios/generated-sources/CoreMotion/CMAltimeter.g.cs b/new/dotnet/ios/generated-sources/CoreMotion/CMAltimeter.g.cs
index 97a4bab..3e9a4ac 100644
--- a/old/dotnet/ios/generated-sources/CoreMotion/CMAltimeter.g.cs
+++ b/new/dotnet/ios/generated-sources/CoreMotion/CMAltimeter.g.cs
@@ -87,7 +87,7 @@ namespace CoreMotion {
[SupportedOSPlatform ("ios15.0")]
[UnsupportedOSPlatform ("maccatalyst")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void StartAbsoluteAltitudeUpdates (NSOperationQueue queue, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V58))]global::System.Action<CMAbsoluteAltitudeData, NSError> handler)
+ public unsafe virtual void StartAbsoluteAltitudeUpdates (NSOperationQueue queue, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V59))]global::System.Action<CMAbsoluteAltitudeData, NSError> handler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -99,7 +99,7 @@ namespace CoreMotion {
BlockLiteral block_handler;
block_handler = new BlockLiteral ();
block_ptr_handler = &block_handler;
- block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V58.Handler, handler);
+ block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V59.Handler, handler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("startAbsoluteAltitudeUpdatesToQueue:withHandler:"), queue__handle__, (IntPtr) block_ptr_handler);
} else {
@@ -113,7 +113,7 @@ namespace CoreMotion {
[SupportedOSPlatform ("ios8.0.0")]
[SupportedOSPlatform ("maccatalyst8.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void StartRelativeAltitudeUpdates (NSOperationQueue queue, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V59))]global::System.Action<CMAltitudeData, NSError> handler)
+ public unsafe virtual void StartRelativeAltitudeUpdates (NSOperationQueue queue, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V60))]global::System.Action<CMAltitudeData, NSError> handler)
{
var queue__handle__ = queue!.GetNonNullHandle (nameof (queue));
if (handler is null)
@@ -122,7 +122,7 @@ namespace CoreMotion {
BlockLiteral block_handler;
block_handler = new BlockLiteral ();
block_ptr_handler = &block_handler;
- block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V59.Handler, handler);
+ block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V60.Handler, handler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("startRelativeAltitudeUpdatesToQueue:withHandler:"), queue__handle__, (IntPtr) block_ptr_handler);
} else {
diff --git a/old/dotnet/ios/generated-sources/CoreMotion/CMPedometer.g.cs b/new/dotnet/ios/generated-sources/CoreMotion/CMPedometer.g.cs
index 79edfbf..55ee164 100644
--- a/old/dotnet/ios/generated-sources/CoreMotion/CMPedometer.g.cs
+++ b/new/dotnet/ios/generated-sources/CoreMotion/CMPedometer.g.cs
@@ -86,7 +86,7 @@ namespace CoreMotion {
[SupportedOSPlatform ("ios8.0.0")]
[SupportedOSPlatform ("maccatalyst8.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void QueryPedometerData (NSDate start, NSDate end, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V60))]global::System.Action<CMPedometerData, NSError> handler)
+ public unsafe virtual void QueryPedometerData (NSDate start, NSDate end, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V61))]global::System.Action<CMPedometerData, NSError> handler)
{
var start__handle__ = start!.GetNonNullHandle (nameof (start));
var end__handle__ = end!.GetNonNullHandle (nameof (end));
@@ -96,7 +96,7 @@ namespace CoreMotion {
BlockLiteral block_handler;
block_handler = new BlockLiteral ();
block_ptr_handler = &block_handler;
- block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V60.Handler, handler);
+ block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V61.Handler, handler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("queryPedometerDataFromDate:toDate:withHandler:"), start__handle__, end__handle__, (IntPtr) block_ptr_handler);
} else {
@@ -124,7 +124,7 @@ namespace CoreMotion {
[SupportedOSPlatform ("maccatalyst10.0.0")]
[SupportedOSPlatform ("macos10.15.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void StartPedometerEventUpdates ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V61))]global::System.Action<CMPedometerEvent, NSError> handler)
+ public unsafe virtual void StartPedometerEventUpdates ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V62))]global::System.Action<CMPedometerEvent, NSError> handler)
{
if (handler is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (handler));
@@ -132,7 +132,7 @@ namespace CoreMotion {
BlockLiteral block_handler;
block_handler = new BlockLiteral ();
block_ptr_handler = &block_handler;
- block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V61.Handler, handler);
+ block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V62.Handler, handler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("startPedometerEventUpdatesWithHandler:"), (IntPtr) block_ptr_handler);
} else {
@@ -160,7 +160,7 @@ namespace CoreMotion {
[SupportedOSPlatform ("ios8.0.0")]
[SupportedOSPlatform ("maccatalyst8.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void StartPedometerUpdates (NSDate start, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V60))]global::System.Action<CMPedometerData, NSError> handler)
+ public unsafe virtual void StartPedometerUpdates (NSDate start, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V61))]global::System.Action<CMPedometerData, NSError> handler)
{
var start__handle__ = start!.GetNonNullHandle (nameof (start));
if (handler is null)
@@ -169,7 +169,7 @@ namespace CoreMotion {
BlockLiteral block_handler;
block_handler = new BlockLiteral ();
block_ptr_handler = &block_handler;
- block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V60.Handler, handler);
+ block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V61.Handler, handler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("startPedometerUpdatesFromDate:withHandler:"), start__handle__, (IntPtr) block_ptr_handler);
} else {
diff --git a/old/dotnet/ios/generated-sources/CoreNFC/NFCFeliCaTag.g.cs b/new/dotnet/ios/generated-sources/CoreNFC/NFCFeliCaTag.g.cs
index cd82eea..ec6b32a 100644
--- a/old/dotnet/ios/generated-sources/CoreNFC/NFCFeliCaTag.g.cs
+++ b/new/dotnet/ios/generated-sources/CoreNFC/NFCFeliCaTag.g.cs
@@ -53,15 +53,15 @@ namespace CoreNFC {
[SupportedOSPlatform ("maccatalyst13.0.0")]
[Protocol (Name = "NFCFeliCaTag", WrapperType = typeof (NFCFeliCaTagWrapper))]
[ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "Polling", Selector = "pollingWithSystemCode:requestCode:timeSlot:completionHandler:", ParameterType = new Type [] { typeof (NSData), typeof (CoreNFC.NFCFeliCaPollingRequestCode), typeof (CoreNFC.NFCFeliCaPollingTimeSlot), typeof (CoreNFC.NFCFeliCaPollingCompletionHandler) }, ParameterByRef = new bool [] { false, false, false, false }, ParameterBlockProxy = new Type? [] { null, null, null, typeof (ObjCRuntime.Trampolines.NIDNFCFeliCaPollingCompletionHandler) })]
- [ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "RequestService", Selector = "requestServiceWithNodeCodeList:completionHandler:", ParameterType = new Type [] { typeof (NSData[]), typeof (global::System.Action<NSData[], NSError>) }, ParameterByRef = new bool [] { false, false }, ParameterBlockProxy = new Type? [] { null, typeof (ObjCRuntime.Trampolines.NIDActionArity2V62) })]
- [ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "RequestResponse", Selector = "requestResponseWithCompletionHandler:", ParameterType = new Type [] { typeof (global::System.Action<nint, NSError>) }, ParameterByRef = new bool [] { false }, ParameterBlockProxy = new Type? [] { typeof (ObjCRuntime.Trampolines.NIDActionArity2V63) })]
+ [ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "RequestService", Selector = "requestServiceWithNodeCodeList:completionHandler:", ParameterType = new Type [] { typeof (NSData[]), typeof (global::System.Action<NSData[], NSError>) }, ParameterByRef = new bool [] { false, false }, ParameterBlockProxy = new Type? [] { null, typeof (ObjCRuntime.Trampolines.NIDActionArity2V63) })]
+ [ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "RequestResponse", Selector = "requestResponseWithCompletionHandler:", ParameterType = new Type [] { typeof (global::System.Action<nint, NSError>) }, ParameterByRef = new bool [] { false }, ParameterBlockProxy = new Type? [] { typeof (ObjCRuntime.Trampolines.NIDActionArity2V64) })]
[ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "ReadWithoutEncryption", Selector = "readWithoutEncryptionWithServiceCodeList:blockList:completionHandler:", ParameterType = new Type [] { typeof (NSData[]), typeof (NSData[]), typeof (CoreNFC.NFCFeliCaReadWithoutEncryptionCompletionHandler) }, ParameterByRef = new bool [] { false, false, false }, ParameterBlockProxy = new Type? [] { null, null, typeof (ObjCRuntime.Trampolines.NIDNFCFeliCaReadWithoutEncryptionCompletionHandler) })]
[ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "WriteWithoutEncryption", Selector = "writeWithoutEncryptionWithServiceCodeList:blockList:blockData:completionHandler:", ParameterType = new Type [] { typeof (NSData[]), typeof (NSData[]), typeof (NSData[]), typeof (CoreNFC.NFCFeliCaStatus1Status2CompletionHandler) }, ParameterByRef = new bool [] { false, false, false, false }, ParameterBlockProxy = new Type? [] { null, null, null, typeof (ObjCRuntime.Trampolines.NIDNFCFeliCaStatus1Status2CompletionHandler) })]
- [ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "RequestSystemCode", Selector = "requestSystemCodeWithCompletionHandler:", ParameterType = new Type [] { typeof (global::System.Action<NSData[], NSError>) }, ParameterByRef = new bool [] { false }, ParameterBlockProxy = new Type? [] { typeof (ObjCRuntime.Trampolines.NIDActionArity2V62) })]
+ [ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "RequestSystemCode", Selector = "requestSystemCodeWithCompletionHandler:", ParameterType = new Type [] { typeof (global::System.Action<NSData[], NSError>) }, ParameterByRef = new bool [] { false }, ParameterBlockProxy = new Type? [] { typeof (ObjCRuntime.Trampolines.NIDActionArity2V63) })]
[ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "RequestServiceV2", Selector = "requestServiceV2WithNodeCodeList:completionHandler:", ParameterType = new Type [] { typeof (NSData[]), typeof (CoreNFC.NFCFeliCaRequestServiceV2CompletionHandler) }, ParameterByRef = new bool [] { false, false }, ParameterBlockProxy = new Type? [] { null, typeof (ObjCRuntime.Trampolines.NIDNFCFeliCaRequestServiceV2CompletionHandler) })]
[ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "RequestSpecificationVersion", Selector = "requestSpecificationVersionWithCompletionHandler:", ParameterType = new Type [] { typeof (CoreNFC.NFCFeliCaRequestSpecificationVersionCompletionHandler) }, ParameterByRef = new bool [] { false }, ParameterBlockProxy = new Type? [] { typeof (ObjCRuntime.Trampolines.NIDNFCFeliCaRequestSpecificationVersionCompletionHandler) })]
[ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "ResetMode", Selector = "resetModeWithCompletionHandler:", ParameterType = new Type [] { typeof (CoreNFC.NFCFeliCaStatus1Status2CompletionHandler) }, ParameterByRef = new bool [] { false }, ParameterBlockProxy = new Type? [] { typeof (ObjCRuntime.Trampolines.NIDNFCFeliCaStatus1Status2CompletionHandler) })]
- [ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "Send", Selector = "sendFeliCaCommandPacket:completionHandler:", ParameterType = new Type [] { typeof (NSData), typeof (global::System.Action<NSData, NSError>) }, ParameterByRef = new bool [] { false, false }, ParameterBlockProxy = new Type? [] { null, typeof (ObjCRuntime.Trampolines.NIDActionArity2V18) })]
+ [ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "Send", Selector = "sendFeliCaCommandPacket:completionHandler:", ParameterType = new Type [] { typeof (NSData), typeof (global::System.Action<NSData, NSError>) }, ParameterByRef = new bool [] { false, false }, ParameterBlockProxy = new Type? [] { null, typeof (ObjCRuntime.Trampolines.NIDActionArity2V19) })]
[ProtocolMember (IsRequired = true, IsProperty = true, IsStatic = false, Name = "CurrentSystemCode", Selector = "currentSystemCode", PropertyType = typeof (NSData), GetterSelector = "currentSystemCode", ArgumentSemantic = ArgumentSemantic.Retain)]
[ProtocolMember (IsRequired = true, IsProperty = true, IsStatic = false, Name = "CurrentIdm", Selector = "currentIDm", PropertyType = typeof (NSData), GetterSelector = "currentIDm", ArgumentSemantic = ArgumentSemantic.Retain)]
public partial interface INFCFeliCaTag : INativeObject, IDisposable,
@@ -82,13 +82,13 @@ namespace CoreNFC {
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
[Export ("requestServiceWithNodeCodeList:completionHandler:")]
[Preserve (Conditional = true)]
- unsafe void RequestService (NSData[] nodeCodeList, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V62))]global::System.Action<NSData[], NSError> completionHandler);
+ unsafe void RequestService (NSData[] nodeCodeList, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V63))]global::System.Action<NSData[], NSError> completionHandler);
[SupportedOSPlatform ("ios13.0.0")]
[SupportedOSPlatform ("maccatalyst13.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
[Export ("requestResponseWithCompletionHandler:")]
[Preserve (Conditional = true)]
- unsafe void RequestResponse ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V63))]global::System.Action<nint, NSError> completionHandler);
+ unsafe void RequestResponse ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V64))]global::System.Action<nint, NSError> completionHandler);
[SupportedOSPlatform ("ios13.0.0")]
[SupportedOSPlatform ("maccatalyst13.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -106,7 +106,7 @@ namespace CoreNFC {
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
[Export ("requestSystemCodeWithCompletionHandler:")]
[Preserve (Conditional = true)]
- unsafe void RequestSystemCode ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V62))]global::System.Action<NSData[], NSError> completionHandler);
+ unsafe void RequestSystemCode ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V63))]global::System.Action<NSData[], NSError> completionHandler);
[SupportedOSPlatform ("ios13.0.0")]
[SupportedOSPlatform ("maccatalyst13.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -130,7 +130,7 @@ namespace CoreNFC {
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
[Export ("sendFeliCaCommandPacket:completionHandler:")]
[Preserve (Conditional = true)]
- unsafe void Send (NSData commandPacket, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V18))]global::System.Action<NSData, NSError> completionHandler);
+ unsafe void Send (NSData commandPacket, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V19))]global::System.Action<NSData, NSError> completionHandler);
[Preserve (Conditional = true)]
NSData CurrentSystemCode {
[Export ("currentSystemCode", ArgumentSemantic.Retain)]
@@ -169,7 +169,7 @@ namespace CoreNFC {
}
[Export ("requestServiceWithNodeCodeList:completionHandler:")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe void RequestService (NSData[] nodeCodeList, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V62))]global::System.Action<NSData[], NSError> completionHandler)
+ public unsafe void RequestService (NSData[] nodeCodeList, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V63))]global::System.Action<NSData[], NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -183,7 +183,7 @@ namespace CoreNFC {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V62.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V63.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("requestServiceWithNodeCodeList:completionHandler:"), nsa_nodeCodeList.Handle, (IntPtr) block_ptr_completionHandler);
nsa_nodeCodeList.Dispose ();
block_ptr_completionHandler->CleanupBlock ();
@@ -191,7 +191,7 @@ namespace CoreNFC {
}
[Export ("requestResponseWithCompletionHandler:")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe void RequestResponse ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V63))]global::System.Action<nint, NSError> completionHandler)
+ public unsafe void RequestResponse ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V64))]global::System.Action<nint, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -202,7 +202,7 @@ namespace CoreNFC {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V63.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V64.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("requestResponseWithCompletionHandler:"), (IntPtr) block_ptr_completionHandler);
block_ptr_completionHandler->CleanupBlock ();
#endif
@@ -265,7 +265,7 @@ namespace CoreNFC {
}
[Export ("requestSystemCodeWithCompletionHandler:")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe void RequestSystemCode ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V62))]global::System.Action<NSData[], NSError> completionHandler)
+ public unsafe void RequestSystemCode ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V63))]global::System.Action<NSData[], NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -276,7 +276,7 @@ namespace CoreNFC {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V62.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V63.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("requestSystemCodeWithCompletionHandler:"), (IntPtr) block_ptr_completionHandler);
block_ptr_completionHandler->CleanupBlock ();
#endif
@@ -341,7 +341,7 @@ namespace CoreNFC {
}
[Export ("sendFeliCaCommandPacket:completionHandler:")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe void Send (NSData commandPacket, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V18))]global::System.Action<NSData, NSError> completionHandler)
+ public unsafe void Send (NSData commandPacket, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V19))]global::System.Action<NSData, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -353,7 +353,7 @@ namespace CoreNFC {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V18.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V19.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("sendFeliCaCommandPacket:completionHandler:"), commandPacket__handle__, (IntPtr) block_ptr_completionHandler);
block_ptr_completionHandler->CleanupBlock ();
#endif
@@ -378,7 +378,7 @@ namespace CoreNFC {
}
[Export ("readNDEFWithCompletionHandler:")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe void ReadNdef ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V64))]global::System.Action<NFCNdefMessage, NSError> completionHandler)
+ public unsafe void ReadNdef ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V65))]global::System.Action<NFCNdefMessage, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -389,7 +389,7 @@ namespace CoreNFC {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V64.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V65.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("readNDEFWithCompletionHandler:"), (IntPtr) block_ptr_completionHandler);
block_ptr_completionHandler->CleanupBlock ();
#endif
diff --git a/old/dotnet/ios/generated-sources/CoreNFC/NFCIso15693Tag.g.cs b/new/dotnet/ios/generated-sources/CoreNFC/NFCIso15693Tag.g.cs
index 873b218..92520d3 100644
--- a/old/dotnet/ios/generated-sources/CoreNFC/NFCIso15693Tag.g.cs
+++ b/new/dotnet/ios/generated-sources/CoreNFC/NFCIso15693Tag.g.cs
@@ -52,13 +52,13 @@ namespace CoreNFC {
[SupportedOSPlatform ("ios11.0")]
[SupportedOSPlatform ("maccatalyst11.0.0")]
[Protocol (Name = "NFCISO15693Tag", WrapperType = typeof (NFCIso15693TagWrapper))]
- [ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "SendCustomCommand", Selector = "sendCustomCommandWithConfiguration:completionHandler:", ParameterType = new Type [] { typeof (CoreNFC.NFCIso15693CustomCommandConfiguration), typeof (global::System.Action<NSData, NSError>) }, ParameterByRef = new bool [] { false, false }, ParameterBlockProxy = new Type? [] { null, typeof (ObjCRuntime.Trampolines.NIDActionArity2V18) })]
- [ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "ReadMultipleBlocks", Selector = "readMultipleBlocksWithConfiguration:completionHandler:", ParameterType = new Type [] { typeof (CoreNFC.NFCIso15693ReadMultipleBlocksConfiguration), typeof (global::System.Action<NSData, NSError>) }, ParameterByRef = new bool [] { false, false }, ParameterBlockProxy = new Type? [] { null, typeof (ObjCRuntime.Trampolines.NIDActionArity2V18) })]
+ [ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "SendCustomCommand", Selector = "sendCustomCommandWithConfiguration:completionHandler:", ParameterType = new Type [] { typeof (CoreNFC.NFCIso15693CustomCommandConfiguration), typeof (global::System.Action<NSData, NSError>) }, ParameterByRef = new bool [] { false, false }, ParameterBlockProxy = new Type? [] { null, typeof (ObjCRuntime.Trampolines.NIDActionArity2V19) })]
+ [ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "ReadMultipleBlocks", Selector = "readMultipleBlocksWithConfiguration:completionHandler:", ParameterType = new Type [] { typeof (CoreNFC.NFCIso15693ReadMultipleBlocksConfiguration), typeof (global::System.Action<NSData, NSError>) }, ParameterByRef = new bool [] { false, false }, ParameterBlockProxy = new Type? [] { null, typeof (ObjCRuntime.Trampolines.NIDActionArity2V19) })]
[ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "StayQuiet", Selector = "stayQuietWithCompletionHandler:", ParameterType = new Type [] { typeof (global::System.Action<NSError>) }, ParameterByRef = new bool [] { false }, ParameterBlockProxy = new Type? [] { typeof (ObjCRuntime.Trampolines.NIDActionArity1V0) })]
- [ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "ReadSingleBlock", Selector = "readSingleBlockWithRequestFlags:blockNumber:completionHandler:", ParameterType = new Type [] { typeof (CoreNFC.NFCIso15693RequestFlag), typeof (byte), typeof (global::System.Action<NSData, NSError>) }, ParameterByRef = new bool [] { false, false, false }, ParameterBlockProxy = new Type? [] { null, null, typeof (ObjCRuntime.Trampolines.NIDActionArity2V18) })]
+ [ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "ReadSingleBlock", Selector = "readSingleBlockWithRequestFlags:blockNumber:completionHandler:", ParameterType = new Type [] { typeof (CoreNFC.NFCIso15693RequestFlag), typeof (byte), typeof (global::System.Action<NSData, NSError>) }, ParameterByRef = new bool [] { false, false, false }, ParameterBlockProxy = new Type? [] { null, null, typeof (ObjCRuntime.Trampolines.NIDActionArity2V19) })]
[ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "WriteSingleBlock", Selector = "writeSingleBlockWithRequestFlags:blockNumber:dataBlock:completionHandler:", ParameterType = new Type [] { typeof (CoreNFC.NFCIso15693RequestFlag), typeof (byte), typeof (NSData), typeof (global::System.Action<NSError>) }, ParameterByRef = new bool [] { false, false, false, false }, ParameterBlockProxy = new Type? [] { null, null, null, typeof (ObjCRuntime.Trampolines.NIDActionArity1V0) })]
[ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "LockBlock", Selector = "lockBlockWithRequestFlags:blockNumber:completionHandler:", ParameterType = new Type [] { typeof (CoreNFC.NFCIso15693RequestFlag), typeof (byte), typeof (global::System.Action<NSError>) }, ParameterByRef = new bool [] { false, false, false }, ParameterBlockProxy = new Type? [] { null, null, typeof (ObjCRuntime.Trampolines.NIDActionArity1V0) })]
- [ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "ReadMultipleBlocks", Selector = "readMultipleBlocksWithRequestFlags:blockRange:completionHandler:", ParameterType = new Type [] { typeof (CoreNFC.NFCIso15693RequestFlag), typeof (NSRange), typeof (global::System.Action<NSData[], NSError>) }, ParameterByRef = new bool [] { false, false, false }, ParameterBlockProxy = new Type? [] { null, null, typeof (ObjCRuntime.Trampolines.NIDActionArity2V62) })]
+ [ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "ReadMultipleBlocks", Selector = "readMultipleBlocksWithRequestFlags:blockRange:completionHandler:", ParameterType = new Type [] { typeof (CoreNFC.NFCIso15693RequestFlag), typeof (NSRange), typeof (global::System.Action<NSData[], NSError>) }, ParameterByRef = new bool [] { false, false, false }, ParameterBlockProxy = new Type? [] { null, null, typeof (ObjCRuntime.Trampolines.NIDActionArity2V63) })]
[ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "WriteMultipleBlocks", Selector = "writeMultipleBlocksWithRequestFlags:blockRange:dataBlocks:completionHandler:", ParameterType = new Type [] { typeof (CoreNFC.NFCIso15693RequestFlag), typeof (NSRange), typeof (NSData[]), typeof (global::System.Action<NSError>) }, ParameterByRef = new bool [] { false, false, false, false }, ParameterBlockProxy = new Type? [] { null, null, null, typeof (ObjCRuntime.Trampolines.NIDActionArity1V0) })]
[ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "Select", Selector = "selectWithRequestFlags:completionHandler:", ParameterType = new Type [] { typeof (CoreNFC.NFCIso15693RequestFlag), typeof (global::System.Action<NSError>) }, ParameterByRef = new bool [] { false, false }, ParameterBlockProxy = new Type? [] { null, typeof (ObjCRuntime.Trampolines.NIDActionArity1V0) })]
[ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "ResetToReady", Selector = "resetToReadyWithRequestFlags:completionHandler:", ParameterType = new Type [] { typeof (CoreNFC.NFCIso15693RequestFlag), typeof (global::System.Action<NSError>) }, ParameterByRef = new bool [] { false, false }, ParameterBlockProxy = new Type? [] { null, typeof (ObjCRuntime.Trampolines.NIDActionArity1V0) })]
@@ -67,12 +67,12 @@ namespace CoreNFC {
[ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "WriteDsfi", Selector = "writeDSFIDWithRequestFlag:dsfid:completionHandler:", ParameterType = new Type [] { typeof (CoreNFC.NFCIso15693RequestFlag), typeof (byte), typeof (global::System.Action<NSError>) }, ParameterByRef = new bool [] { false, false, false }, ParameterBlockProxy = new Type? [] { null, null, typeof (ObjCRuntime.Trampolines.NIDActionArity1V0) })]
[ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "LockDfsi", Selector = "lockDFSIDWithRequestFlag:completionHandler:", ParameterType = new Type [] { typeof (CoreNFC.NFCIso15693RequestFlag), typeof (global::System.Action<NSError>) }, ParameterByRef = new bool [] { false, false }, ParameterBlockProxy = new Type? [] { null, typeof (ObjCRuntime.Trampolines.NIDActionArity1V0) })]
[ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "GetSystemInfo", Selector = "getSystemInfoWithRequestFlag:completionHandler:", ParameterType = new Type [] { typeof (CoreNFC.NFCIso15693RequestFlag), typeof (CoreNFC.NFCGetSystemInfoCompletionHandler) }, ParameterByRef = new bool [] { false, false }, ParameterBlockProxy = new Type? [] { null, typeof (ObjCRuntime.Trampolines.NIDNFCGetSystemInfoCompletionHandler) })]
- [ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "GetMultipleBlockSecurityStatus", Selector = "getMultipleBlockSecurityStatusWithRequestFlag:blockRange:completionHandler:", ParameterType = new Type [] { typeof (CoreNFC.NFCIso15693RequestFlag), typeof (NSRange), typeof (global::System.Action<NSNumber[], NSError>) }, ParameterByRef = new bool [] { false, false, false }, ParameterBlockProxy = new Type? [] { null, null, typeof (ObjCRuntime.Trampolines.NIDActionArity2V65) })]
- [ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "CustomCommand", Selector = "customCommandWithRequestFlag:customCommandCode:customRequestParameters:completionHandler:", ParameterType = new Type [] { typeof (CoreNFC.NFCIso15693RequestFlag), typeof (IntPtr), typeof (NSData), typeof (global::System.Action<NSData, NSError>) }, ParameterByRef = new bool [] { false, false, false, false }, ParameterBlockProxy = new Type? [] { null, null, null, typeof (ObjCRuntime.Trampolines.NIDActionArity2V18) })]
- [ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "ExtendedReadSingleBlock", Selector = "extendedReadSingleBlockWithRequestFlags:blockNumber:completionHandler:", ParameterType = new Type [] { typeof (CoreNFC.NFCIso15693RequestFlag), typeof (IntPtr), typeof (global::System.Action<NSData, NSError>) }, ParameterByRef = new bool [] { false, false, false }, ParameterBlockProxy = new Type? [] { null, null, typeof (ObjCRuntime.Trampolines.NIDActionArity2V18) })]
+ [ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "GetMultipleBlockSecurityStatus", Selector = "getMultipleBlockSecurityStatusWithRequestFlag:blockRange:completionHandler:", ParameterType = new Type [] { typeof (CoreNFC.NFCIso15693RequestFlag), typeof (NSRange), typeof (global::System.Action<NSNumber[], NSError>) }, ParameterByRef = new bool [] { false, false, false }, ParameterBlockProxy = new Type? [] { null, null, typeof (ObjCRuntime.Trampolines.NIDActionArity2V66) })]
+ [ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "CustomCommand", Selector = "customCommandWithRequestFlag:customCommandCode:customRequestParameters:completionHandler:", ParameterType = new Type [] { typeof (CoreNFC.NFCIso15693RequestFlag), typeof (IntPtr), typeof (NSData), typeof (global::System.Action<NSData, NSError>) }, ParameterByRef = new bool [] { false, false, false, false }, ParameterBlockProxy = new Type? [] { null, null, null, typeof (ObjCRuntime.Trampolines.NIDActionArity2V19) })]
+ [ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "ExtendedReadSingleBlock", Selector = "extendedReadSingleBlockWithRequestFlags:blockNumber:completionHandler:", ParameterType = new Type [] { typeof (CoreNFC.NFCIso15693RequestFlag), typeof (IntPtr), typeof (global::System.Action<NSData, NSError>) }, ParameterByRef = new bool [] { false, false, false }, ParameterBlockProxy = new Type? [] { null, null, typeof (ObjCRuntime.Trampolines.NIDActionArity2V19) })]
[ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "ExtendedWriteSingleBlock", Selector = "extendedWriteSingleBlockWithRequestFlags:blockNumber:dataBlock:completionHandler:", ParameterType = new Type [] { typeof (CoreNFC.NFCIso15693RequestFlag), typeof (IntPtr), typeof (NSData), typeof (global::System.Action<NSError>) }, ParameterByRef = new bool [] { false, false, false, false }, ParameterBlockProxy = new Type? [] { null, null, null, typeof (ObjCRuntime.Trampolines.NIDActionArity1V0) })]
[ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "ExtendedLockBlock", Selector = "extendedLockBlockWithRequestFlags:blockNumber:completionHandler:", ParameterType = new Type [] { typeof (CoreNFC.NFCIso15693RequestFlag), typeof (IntPtr), typeof (global::System.Action<NSError>) }, ParameterByRef = new bool [] { false, false, false }, ParameterBlockProxy = new Type? [] { null, null, typeof (ObjCRuntime.Trampolines.NIDActionArity1V0) })]
- [ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "ExtendedReadMultipleBlocks", Selector = "extendedReadMultipleBlocksWithRequestFlags:blockRange:completionHandler:", ParameterType = new Type [] { typeof (CoreNFC.NFCIso15693RequestFlag), typeof (NSRange), typeof (global::System.Action<NSData[], NSError>) }, ParameterByRef = new bool [] { false, false, false }, ParameterBlockProxy = new Type? [] { null, null, typeof (ObjCRuntime.Trampolines.NIDActionArity2V62) })]
+ [ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "ExtendedReadMultipleBlocks", Selector = "extendedReadMultipleBlocksWithRequestFlags:blockRange:completionHandler:", ParameterType = new Type [] { typeof (CoreNFC.NFCIso15693RequestFlag), typeof (NSRange), typeof (global::System.Action<NSData[], NSError>) }, ParameterByRef = new bool [] { false, false, false }, ParameterBlockProxy = new Type? [] { null, null, typeof (ObjCRuntime.Trampolines.NIDActionArity2V63) })]
[ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "ExtendedWriteMultipleBlocks", Selector = "extendedWriteMultipleBlocksWithRequestFlags:blockRange:dataBlocks:completionHandler:", ParameterType = new Type [] { typeof (CoreNFC.NFCIso15693RequestFlag), typeof (NSRange), typeof (NSData[]), typeof (global::System.Action<NSError>) }, ParameterByRef = new bool [] { false, false, false, false }, ParameterBlockProxy = new Type? [] { null, null, null, typeof (ObjCRuntime.Trampolines.NIDActionArity1V0) })]
[ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "Authenticate", Selector = "authenticateWithRequestFlags:cryptoSuiteIdentifier:message:completionHandler:", ParameterType = new Type [] { typeof (CoreNFC.NFCIso15693RequestFlag), typeof (IntPtr), typeof (NSData), typeof (CoreNFC.NFCIso15693TagResponseCallback) }, ParameterByRef = new bool [] { false, false, false, false }, ParameterBlockProxy = new Type? [] { null, null, null, typeof (ObjCRuntime.Trampolines.NIDNFCIso15693TagResponseCallback) })]
[ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "KeyUpdate", Selector = "keyUpdateWithRequestFlags:keyIdentifier:message:completionHandler:", ParameterType = new Type [] { typeof (CoreNFC.NFCIso15693RequestFlag), typeof (IntPtr), typeof (NSData), typeof (CoreNFC.NFCIso15693TagResponseCallback) }, ParameterByRef = new bool [] { false, false, false, false }, ParameterBlockProxy = new Type? [] { null, null, null, typeof (ObjCRuntime.Trampolines.NIDNFCIso15693TagResponseCallback) })]
@@ -99,13 +99,13 @@ namespace CoreNFC {
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
[Export ("sendCustomCommandWithConfiguration:completionHandler:")]
[Preserve (Conditional = true)]
- unsafe void SendCustomCommand (NFCIso15693CustomCommandConfiguration commandConfiguration, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V18))]global::System.Action<NSData, NSError> completionHandler);
+ unsafe void SendCustomCommand (NFCIso15693CustomCommandConfiguration commandConfiguration, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V19))]global::System.Action<NSData, NSError> completionHandler);
[SupportedOSPlatform ("ios11.0.0")]
[SupportedOSPlatform ("maccatalyst11.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
[Export ("readMultipleBlocksWithConfiguration:completionHandler:")]
[Preserve (Conditional = true)]
- unsafe void ReadMultipleBlocks (NFCIso15693ReadMultipleBlocksConfiguration readConfiguration, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V18))]global::System.Action<NSData, NSError> completionHandler);
+ unsafe void ReadMultipleBlocks (NFCIso15693ReadMultipleBlocksConfiguration readConfiguration, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V19))]global::System.Action<NSData, NSError> completionHandler);
[SupportedOSPlatform ("ios13.0")]
[SupportedOSPlatform ("maccatalyst13.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -117,7 +117,7 @@ namespace CoreNFC {
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
[Export ("readSingleBlockWithRequestFlags:blockNumber:completionHandler:")]
[Preserve (Conditional = true)]
- unsafe void ReadSingleBlock (NFCIso15693RequestFlag flags, byte blockNumber, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V18))]global::System.Action<NSData, NSError> completionHandler);
+ unsafe void ReadSingleBlock (NFCIso15693RequestFlag flags, byte blockNumber, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V19))]global::System.Action<NSData, NSError> completionHandler);
[SupportedOSPlatform ("ios13.0")]
[SupportedOSPlatform ("maccatalyst13.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -135,7 +135,7 @@ namespace CoreNFC {
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
[Export ("readMultipleBlocksWithRequestFlags:blockRange:completionHandler:")]
[Preserve (Conditional = true)]
- unsafe void ReadMultipleBlocks (NFCIso15693RequestFlag flags, NSRange blockRange, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V62))]global::System.Action<NSData[], NSError> completionHandler);
+ unsafe void ReadMultipleBlocks (NFCIso15693RequestFlag flags, NSRange blockRange, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V63))]global::System.Action<NSData[], NSError> completionHandler);
[SupportedOSPlatform ("ios13.0")]
[SupportedOSPlatform ("maccatalyst13.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -189,19 +189,19 @@ namespace CoreNFC {
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
[Export ("getMultipleBlockSecurityStatusWithRequestFlag:blockRange:completionHandler:")]
[Preserve (Conditional = true)]
- unsafe void GetMultipleBlockSecurityStatus (NFCIso15693RequestFlag flags, NSRange blockRange, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V65))]global::System.Action<NSNumber[], NSError> completionHandler);
+ unsafe void GetMultipleBlockSecurityStatus (NFCIso15693RequestFlag flags, NSRange blockRange, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V66))]global::System.Action<NSNumber[], NSError> completionHandler);
[SupportedOSPlatform ("ios13.0")]
[SupportedOSPlatform ("maccatalyst13.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
[Export ("customCommandWithRequestFlag:customCommandCode:customRequestParameters:completionHandler:")]
[Preserve (Conditional = true)]
- unsafe void CustomCommand (NFCIso15693RequestFlag flags, nint customCommandCode, NSData customRequestParameters, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V18))]global::System.Action<NSData, NSError> completionHandler);
+ unsafe void CustomCommand (NFCIso15693RequestFlag flags, nint customCommandCode, NSData customRequestParameters, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V19))]global::System.Action<NSData, NSError> completionHandler);
[SupportedOSPlatform ("ios13.0")]
[SupportedOSPlatform ("maccatalyst13.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
[Export ("extendedReadSingleBlockWithRequestFlags:blockNumber:completionHandler:")]
[Preserve (Conditional = true)]
- unsafe void ExtendedReadSingleBlock (NFCIso15693RequestFlag flags, nint blockNumber, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V18))]global::System.Action<NSData, NSError> completionHandler);
+ unsafe void ExtendedReadSingleBlock (NFCIso15693RequestFlag flags, nint blockNumber, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V19))]global::System.Action<NSData, NSError> completionHandler);
[SupportedOSPlatform ("ios13.0")]
[SupportedOSPlatform ("maccatalyst13.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -219,7 +219,7 @@ namespace CoreNFC {
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
[Export ("extendedReadMultipleBlocksWithRequestFlags:blockRange:completionHandler:")]
[Preserve (Conditional = true)]
- unsafe void ExtendedReadMultipleBlocks (NFCIso15693RequestFlag flags, NSRange blockRange, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V62))]global::System.Action<NSData[], NSError> completionHandler);
+ unsafe void ExtendedReadMultipleBlocks (NFCIso15693RequestFlag flags, NSRange blockRange, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V63))]global::System.Action<NSData[], NSError> completionHandler);
[SupportedOSPlatform ("ios14.0")]
[SupportedOSPlatform ("maccatalyst14.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -310,7 +310,7 @@ namespace CoreNFC {
}
[Export ("sendCustomCommandWithConfiguration:completionHandler:")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe void SendCustomCommand (NFCIso15693CustomCommandConfiguration commandConfiguration, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V18))]global::System.Action<NSData, NSError> completionHandler)
+ public unsafe void SendCustomCommand (NFCIso15693CustomCommandConfiguration commandConfiguration, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V19))]global::System.Action<NSData, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -322,14 +322,14 @@ namespace CoreNFC {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V18.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V19.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("sendCustomCommandWithConfiguration:completionHandler:"), commandConfiguration__handle__, (IntPtr) block_ptr_completionHandler);
block_ptr_completionHandler->CleanupBlock ();
#endif
}
[Export ("readMultipleBlocksWithConfiguration:completionHandler:")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe void ReadMultipleBlocks (NFCIso15693ReadMultipleBlocksConfiguration readConfiguration, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V18))]global::System.Action<NSData, NSError> completionHandler)
+ public unsafe void ReadMultipleBlocks (NFCIso15693ReadMultipleBlocksConfiguration readConfiguration, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V19))]global::System.Action<NSData, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -341,7 +341,7 @@ namespace CoreNFC {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V18.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V19.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("readMultipleBlocksWithConfiguration:completionHandler:"), readConfiguration__handle__, (IntPtr) block_ptr_completionHandler);
block_ptr_completionHandler->CleanupBlock ();
#endif
@@ -366,7 +366,7 @@ namespace CoreNFC {
}
[Export ("readSingleBlockWithRequestFlags:blockNumber:completionHandler:")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe void ReadSingleBlock (NFCIso15693RequestFlag flags, byte blockNumber, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V18))]global::System.Action<NSData, NSError> completionHandler)
+ public unsafe void ReadSingleBlock (NFCIso15693RequestFlag flags, byte blockNumber, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V19))]global::System.Action<NSData, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -377,7 +377,7 @@ namespace CoreNFC {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V18.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V19.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_byte_byte_NativeHandle (this.Handle, Selector.GetHandle ("readSingleBlockWithRequestFlags:blockNumber:completionHandler:"), (byte)flags, blockNumber, (IntPtr) block_ptr_completionHandler);
block_ptr_completionHandler->CleanupBlock ();
#endif
@@ -421,7 +421,7 @@ namespace CoreNFC {
}
[Export ("readMultipleBlocksWithRequestFlags:blockRange:completionHandler:")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe void ReadMultipleBlocks (NFCIso15693RequestFlag flags, NSRange blockRange, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V62))]global::System.Action<NSData[], NSError> completionHandler)
+ public unsafe void ReadMultipleBlocks (NFCIso15693RequestFlag flags, NSRange blockRange, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V63))]global::System.Action<NSData[], NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -432,7 +432,7 @@ namespace CoreNFC {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V62.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V63.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_byte_NSRange_NativeHandle (this.Handle, Selector.GetHandle ("readMultipleBlocksWithRequestFlags:blockRange:completionHandler:"), (byte)flags, blockRange, (IntPtr) block_ptr_completionHandler);
block_ptr_completionHandler->CleanupBlock ();
#endif
@@ -587,7 +587,7 @@ namespace CoreNFC {
}
[Export ("getMultipleBlockSecurityStatusWithRequestFlag:blockRange:completionHandler:")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe void GetMultipleBlockSecurityStatus (NFCIso15693RequestFlag flags, NSRange blockRange, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V65))]global::System.Action<NSNumber[], NSError> completionHandler)
+ public unsafe void GetMultipleBlockSecurityStatus (NFCIso15693RequestFlag flags, NSRange blockRange, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V66))]global::System.Action<NSNumber[], NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -598,14 +598,14 @@ namespace CoreNFC {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V65.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V66.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_byte_NSRange_NativeHandle (this.Handle, Selector.GetHandle ("getMultipleBlockSecurityStatusWithRequestFlag:blockRange:completionHandler:"), (byte)flags, blockRange, (IntPtr) block_ptr_completionHandler);
block_ptr_completionHandler->CleanupBlock ();
#endif
}
[Export ("customCommandWithRequestFlag:customCommandCode:customRequestParameters:completionHandler:")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe void CustomCommand (NFCIso15693RequestFlag flags, nint customCommandCode, NSData customRequestParameters, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V18))]global::System.Action<NSData, NSError> completionHandler)
+ public unsafe void CustomCommand (NFCIso15693RequestFlag flags, nint customCommandCode, NSData customRequestParameters, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V19))]global::System.Action<NSData, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -617,14 +617,14 @@ namespace CoreNFC {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V18.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V19.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_byte_IntPtr_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("customCommandWithRequestFlag:customCommandCode:customRequestParameters:completionHandler:"), (byte)flags, customCommandCode, customRequestParameters__handle__, (IntPtr) block_ptr_completionHandler);
block_ptr_completionHandler->CleanupBlock ();
#endif
}
[Export ("extendedReadSingleBlockWithRequestFlags:blockNumber:completionHandler:")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe void ExtendedReadSingleBlock (NFCIso15693RequestFlag flags, nint blockNumber, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V18))]global::System.Action<NSData, NSError> completionHandler)
+ public unsafe void ExtendedReadSingleBlock (NFCIso15693RequestFlag flags, nint blockNumber, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V19))]global::System.Action<NSData, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -635,7 +635,7 @@ namespace CoreNFC {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V18.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V19.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_byte_IntPtr_NativeHandle (this.Handle, Selector.GetHandle ("extendedReadSingleBlockWithRequestFlags:blockNumber:completionHandler:"), (byte)flags, blockNumber, (IntPtr) block_ptr_completionHandler);
block_ptr_completionHandler->CleanupBlock ();
#endif
@@ -679,7 +679,7 @@ namespace CoreNFC {
}
[Export ("extendedReadMultipleBlocksWithRequestFlags:blockRange:completionHandler:")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe void ExtendedReadMultipleBlocks (NFCIso15693RequestFlag flags, NSRange blockRange, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V62))]global::System.Action<NSData[], NSError> completionHandler)
+ public unsafe void ExtendedReadMultipleBlocks (NFCIso15693RequestFlag flags, NSRange blockRange, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V63))]global::System.Action<NSData[], NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -690,7 +690,7 @@ namespace CoreNFC {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V62.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V63.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_byte_NSRange_NativeHandle (this.Handle, Selector.GetHandle ("extendedReadMultipleBlocksWithRequestFlags:blockRange:completionHandler:"), (byte)flags, blockRange, (IntPtr) block_ptr_completionHandler);
block_ptr_completionHandler->CleanupBlock ();
#endif
@@ -921,7 +921,7 @@ namespace CoreNFC {
}
[Export ("readNDEFWithCompletionHandler:")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe void ReadNdef ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V64))]global::System.Action<NFCNdefMessage, NSError> completionHandler)
+ public unsafe void ReadNdef ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V65))]global::System.Action<NFCNdefMessage, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -932,7 +932,7 @@ namespace CoreNFC {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V64.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V65.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("readNDEFWithCompletionHandler:"), (IntPtr) block_ptr_completionHandler);
block_ptr_completionHandler->CleanupBlock ();
#endif
diff --git a/old/dotnet/ios/generated-sources/CoreNFC/NFCIso7816Tag.g.cs b/new/dotnet/ios/generated-sources/CoreNFC/NFCIso7816Tag.g.cs
index 0996ff7..0f32708 100644
--- a/old/dotnet/ios/generated-sources/CoreNFC/NFCIso7816Tag.g.cs
+++ b/new/dotnet/ios/generated-sources/CoreNFC/NFCIso7816Tag.g.cs
@@ -142,7 +142,7 @@ namespace CoreNFC {
}
[Export ("readNDEFWithCompletionHandler:")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe void ReadNdef ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V64))]global::System.Action<NFCNdefMessage, NSError> completionHandler)
+ public unsafe void ReadNdef ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V65))]global::System.Action<NFCNdefMessage, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -153,7 +153,7 @@ namespace CoreNFC {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V64.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V65.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("readNDEFWithCompletionHandler:"), (IntPtr) block_ptr_completionHandler);
block_ptr_completionHandler->CleanupBlock ();
#endif
diff --git a/old/dotnet/ios/generated-sources/CoreNFC/NFCMiFareTag.g.cs b/new/dotnet/ios/generated-sources/CoreNFC/NFCMiFareTag.g.cs
index 533df3e..5fcf69f 100644
--- a/old/dotnet/ios/generated-sources/CoreNFC/NFCMiFareTag.g.cs
+++ b/new/dotnet/ios/generated-sources/CoreNFC/NFCMiFareTag.g.cs
@@ -52,7 +52,7 @@ namespace CoreNFC {
[SupportedOSPlatform ("ios13.0")]
[SupportedOSPlatform ("maccatalyst13.0.0")]
[Protocol (Name = "NFCMiFareTag", WrapperType = typeof (NFCMiFareTagWrapper))]
- [ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "SendMiFareCommand", Selector = "sendMiFareCommand:completionHandler:", ParameterType = new Type [] { typeof (NSData), typeof (global::System.Action<NSData, NSError>) }, ParameterByRef = new bool [] { false, false }, ParameterBlockProxy = new Type? [] { null, typeof (ObjCRuntime.Trampolines.NIDActionArity2V18) })]
+ [ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "SendMiFareCommand", Selector = "sendMiFareCommand:completionHandler:", ParameterType = new Type [] { typeof (NSData), typeof (global::System.Action<NSData, NSError>) }, ParameterByRef = new bool [] { false, false }, ParameterBlockProxy = new Type? [] { null, typeof (ObjCRuntime.Trampolines.NIDActionArity2V19) })]
[ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "SendMiFareIso7816Command", Selector = "sendMiFareISO7816Command:completionHandler:", ParameterType = new Type [] { typeof (CoreNFC.NFCIso7816Apdu), typeof (CoreNFC.NFCIso7816SendCompletionHandler) }, ParameterByRef = new bool [] { false, false }, ParameterBlockProxy = new Type? [] { null, typeof (ObjCRuntime.Trampolines.NIDNFCIso7816SendCompletionHandler) })]
[ProtocolMember (IsRequired = true, IsProperty = true, IsStatic = false, Name = "MifareFamily", Selector = "mifareFamily", PropertyType = typeof (CoreNFC.NFCMiFareFamily), GetterSelector = "mifareFamily", ArgumentSemantic = ArgumentSemantic.UnsafeUnretained)]
[ProtocolMember (IsRequired = true, IsProperty = true, IsStatic = false, Name = "Identifier", Selector = "identifier", PropertyType = typeof (NSData), GetterSelector = "identifier", ArgumentSemantic = ArgumentSemantic.Copy)]
@@ -69,7 +69,7 @@ namespace CoreNFC {
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
[Export ("sendMiFareCommand:completionHandler:")]
[Preserve (Conditional = true)]
- unsafe void SendMiFareCommand (NSData command, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V18))]global::System.Action<NSData, NSError> completionHandler);
+ unsafe void SendMiFareCommand (NSData command, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V19))]global::System.Action<NSData, NSError> completionHandler);
[SupportedOSPlatform ("ios13.0.0")]
[SupportedOSPlatform ("maccatalyst13.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -100,7 +100,7 @@ namespace CoreNFC {
}
[Export ("sendMiFareCommand:completionHandler:")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe void SendMiFareCommand (NSData command, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V18))]global::System.Action<NSData, NSError> completionHandler)
+ public unsafe void SendMiFareCommand (NSData command, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V19))]global::System.Action<NSData, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -112,7 +112,7 @@ namespace CoreNFC {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V18.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V19.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("sendMiFareCommand:completionHandler:"), command__handle__, (IntPtr) block_ptr_completionHandler);
block_ptr_completionHandler->CleanupBlock ();
#endif
@@ -156,7 +156,7 @@ namespace CoreNFC {
}
[Export ("readNDEFWithCompletionHandler:")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe void ReadNdef ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V64))]global::System.Action<NFCNdefMessage, NSError> completionHandler)
+ public unsafe void ReadNdef ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V65))]global::System.Action<NFCNdefMessage, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -167,7 +167,7 @@ namespace CoreNFC {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V64.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V65.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("readNDEFWithCompletionHandler:"), (IntPtr) block_ptr_completionHandler);
block_ptr_completionHandler->CleanupBlock ();
#endif
diff --git a/old/dotnet/ios/generated-sources/CoreNFC/NFCNdefTag.g.cs b/new/dotnet/ios/generated-sources/CoreNFC/NFCNdefTag.g.cs
index ff75662..c48498d 100644
--- a/old/dotnet/ios/generated-sources/CoreNFC/NFCNdefTag.g.cs
+++ b/new/dotnet/ios/generated-sources/CoreNFC/NFCNdefTag.g.cs
@@ -53,7 +53,7 @@ namespace CoreNFC {
[SupportedOSPlatform ("maccatalyst13.0.0")]
[Protocol (Name = "NFCNDEFTag", WrapperType = typeof (NFCNdefTagWrapper))]
[ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "QueryNdefStatus", Selector = "queryNDEFStatusWithCompletionHandler:", ParameterType = new Type [] { typeof (CoreNFC.NFCQueryNdefStatusCompletionHandler) }, ParameterByRef = new bool [] { false }, ParameterBlockProxy = new Type? [] { typeof (ObjCRuntime.Trampolines.NIDNFCQueryNdefStatusCompletionHandler) })]
- [ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "ReadNdef", Selector = "readNDEFWithCompletionHandler:", ParameterType = new Type [] { typeof (global::System.Action<global::CoreNFC.NFCNdefMessage, NSError>) }, ParameterByRef = new bool [] { false }, ParameterBlockProxy = new Type? [] { typeof (ObjCRuntime.Trampolines.NIDActionArity2V64) })]
+ [ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "ReadNdef", Selector = "readNDEFWithCompletionHandler:", ParameterType = new Type [] { typeof (global::System.Action<global::CoreNFC.NFCNdefMessage, NSError>) }, ParameterByRef = new bool [] { false }, ParameterBlockProxy = new Type? [] { typeof (ObjCRuntime.Trampolines.NIDActionArity2V65) })]
[ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "WriteNdef", Selector = "writeNDEF:completionHandler:", ParameterType = new Type [] { typeof (CoreNFC.NFCNdefMessage), typeof (global::System.Action<NSError>) }, ParameterByRef = new bool [] { false, false }, ParameterBlockProxy = new Type? [] { null, typeof (ObjCRuntime.Trampolines.NIDActionArity1V0) })]
[ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "WriteLock", Selector = "writeLockWithCompletionHandler:", ParameterType = new Type [] { typeof (global::System.Action<NSError>) }, ParameterByRef = new bool [] { false }, ParameterBlockProxy = new Type? [] { typeof (ObjCRuntime.Trampolines.NIDActionArity1V0) })]
[ProtocolMember (IsRequired = true, IsProperty = true, IsStatic = false, Name = "Available", Selector = "available", PropertyType = typeof (bool), GetterSelector = "isAvailable", ArgumentSemantic = ArgumentSemantic.None)]
@@ -73,7 +73,7 @@ namespace CoreNFC {
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
[Export ("readNDEFWithCompletionHandler:")]
[Preserve (Conditional = true)]
- unsafe void ReadNdef ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V64))]global::System.Action<NFCNdefMessage, NSError> completionHandler);
+ unsafe void ReadNdef ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V65))]global::System.Action<NFCNdefMessage, NSError> completionHandler);
[SupportedOSPlatform ("ios13.0.0")]
[SupportedOSPlatform ("maccatalyst13.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -118,7 +118,7 @@ namespace CoreNFC {
}
[Export ("readNDEFWithCompletionHandler:")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe void ReadNdef ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V64))]global::System.Action<NFCNdefMessage, NSError> completionHandler)
+ public unsafe void ReadNdef ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V65))]global::System.Action<NFCNdefMessage, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -129,7 +129,7 @@ namespace CoreNFC {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V64.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V65.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("readNDEFWithCompletionHandler:"), (IntPtr) block_ptr_completionHandler);
block_ptr_completionHandler->CleanupBlock ();
#endif
diff --git a/old/dotnet/ios/generated-sources/DeviceCheck/DCAppAttestService.g.cs b/new/dotnet/ios/generated-sources/DeviceCheck/DCAppAttestService.g.cs
index ebd57d3..ab67af8 100644
--- a/old/dotnet/ios/generated-sources/DeviceCheck/DCAppAttestService.g.cs
+++ b/new/dotnet/ios/generated-sources/DeviceCheck/DCAppAttestService.g.cs
@@ -82,7 +82,7 @@ namespace DeviceCheck {
[SupportedOSPlatform ("tvos15.0.0")]
[SupportedOSPlatform ("maccatalyst14.5.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void AttestKey (string keyId, NSData clientDataHash, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V18))]global::System.Action<NSData, NSError> completionHandler)
+ public unsafe virtual void AttestKey (string keyId, NSData clientDataHash, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V19))]global::System.Action<NSData, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -97,7 +97,7 @@ namespace DeviceCheck {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V18.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V19.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("attestKey:clientDataHash:completionHandler:"), nskeyId, clientDataHash__handle__, (IntPtr) block_ptr_completionHandler);
} else {
@@ -129,7 +129,7 @@ namespace DeviceCheck {
[SupportedOSPlatform ("tvos15.0.0")]
[SupportedOSPlatform ("maccatalyst14.5.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void GenerateAssertion (string keyId, NSData clientDataHash, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V18))]global::System.Action<NSData, NSError> completionHandler)
+ public unsafe virtual void GenerateAssertion (string keyId, NSData clientDataHash, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V19))]global::System.Action<NSData, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -144,7 +144,7 @@ namespace DeviceCheck {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V18.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V19.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("generateAssertion:clientDataHash:completionHandler:"), nskeyId, clientDataHash__handle__, (IntPtr) block_ptr_completionHandler);
} else {
@@ -176,7 +176,7 @@ namespace DeviceCheck {
[SupportedOSPlatform ("tvos15.0.0")]
[SupportedOSPlatform ("maccatalyst14.5.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void GenerateKey ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V66))]global::System.Action<string, NSError> completionHandler)
+ public unsafe virtual void GenerateKey ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V67))]global::System.Action<string, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -187,7 +187,7 @@ namespace DeviceCheck {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V66.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V67.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("generateKeyWithCompletionHandler:"), (IntPtr) block_ptr_completionHandler);
} else {
diff --git a/old/dotnet/ios/generated-sources/FileProvider/NSFileProviderExtension.g.cs b/new/dotnet/ios/generated-sources/FileProvider/NSFileProviderExtension.g.cs
index 5739372..6c35a46 100644
--- a/old/dotnet/ios/generated-sources/FileProvider/NSFileProviderExtension.g.cs
+++ b/new/dotnet/ios/generated-sources/FileProvider/NSFileProviderExtension.g.cs
@@ -89,7 +89,7 @@ namespace FileProvider {
[UnsupportedOSPlatform ("macos")]
[UnsupportedOSPlatform ("maccatalyst")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void CreateDirectory (string directoryName, string parentItemIdentifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V67))]global::System.Action<INSFileProviderItem, NSError> completionHandler)
+ public unsafe virtual void CreateDirectory (string directoryName, string parentItemIdentifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V68))]global::System.Action<INSFileProviderItem, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -106,7 +106,7 @@ namespace FileProvider {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V67.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V68.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("createDirectoryWithName:inParentItemIdentifier:completionHandler:"), nsdirectoryName, nsparentItemIdentifier, (IntPtr) block_ptr_completionHandler);
} else {
@@ -382,7 +382,7 @@ namespace FileProvider {
[UnsupportedOSPlatform ("macos")]
[UnsupportedOSPlatform ("maccatalyst")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void ImportDocument (NSUrl fileUrl, string parentItemIdentifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V67))]global::System.Action<INSFileProviderItem, NSError> completionHandler)
+ public unsafe virtual void ImportDocument (NSUrl fileUrl, string parentItemIdentifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V68))]global::System.Action<INSFileProviderItem, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -397,7 +397,7 @@ namespace FileProvider {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V67.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V68.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("importDocumentAtURL:toParentItemIdentifier:completionHandler:"), fileUrl__handle__, nsparentItemIdentifier, (IntPtr) block_ptr_completionHandler);
} else {
@@ -483,7 +483,7 @@ namespace FileProvider {
[UnsupportedOSPlatform ("macos")]
[UnsupportedOSPlatform ("maccatalyst")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void RenameItem (string itemIdentifier, string itemName, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V67))]global::System.Action<INSFileProviderItem, NSError> completionHandler)
+ public unsafe virtual void RenameItem (string itemIdentifier, string itemName, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V68))]global::System.Action<INSFileProviderItem, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -500,7 +500,7 @@ namespace FileProvider {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V67.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V68.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("renameItemWithIdentifier:toName:completionHandler:"), nsitemIdentifier, nsitemName, (IntPtr) block_ptr_completionHandler);
} else {
@@ -533,7 +533,7 @@ namespace FileProvider {
[UnsupportedOSPlatform ("macos")]
[UnsupportedOSPlatform ("maccatalyst")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void ReparentItem (string itemIdentifier, string parentItemIdentifier, string? newName, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V67))]global::System.Action<INSFileProviderItem, NSError> completionHandler)
+ public unsafe virtual void ReparentItem (string itemIdentifier, string parentItemIdentifier, string? newName, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V68))]global::System.Action<INSFileProviderItem, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -551,7 +551,7 @@ namespace FileProvider {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V67.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V68.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("reparentItemWithIdentifier:toParentItemWithIdentifier:newName:completionHandler:"), nsitemIdentifier, nsparentItemIdentifier, nsnewName, (IntPtr) block_ptr_completionHandler);
} else {
@@ -585,7 +585,7 @@ namespace FileProvider {
[UnsupportedOSPlatform ("macos")]
[UnsupportedOSPlatform ("maccatalyst")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void SetFavoriteRank (NSNumber? favoriteRank, string itemIdentifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V67))]global::System.Action<INSFileProviderItem, NSError> completionHandler)
+ public unsafe virtual void SetFavoriteRank (NSNumber? favoriteRank, string itemIdentifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V68))]global::System.Action<INSFileProviderItem, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -600,7 +600,7 @@ namespace FileProvider {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V67.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V68.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("setFavoriteRank:forItemIdentifier:completionHandler:"), favoriteRank__handle__, nsitemIdentifier, (IntPtr) block_ptr_completionHandler);
} else {
@@ -632,7 +632,7 @@ namespace FileProvider {
[UnsupportedOSPlatform ("macos")]
[UnsupportedOSPlatform ("maccatalyst")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void SetLastUsedDate (NSDate? lastUsedDate, string itemIdentifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V67))]global::System.Action<INSFileProviderItem, NSError> completionHandler)
+ public unsafe virtual void SetLastUsedDate (NSDate? lastUsedDate, string itemIdentifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V68))]global::System.Action<INSFileProviderItem, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -647,7 +647,7 @@ namespace FileProvider {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V67.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V68.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("setLastUsedDate:forItemIdentifier:completionHandler:"), lastUsedDate__handle__, nsitemIdentifier, (IntPtr) block_ptr_completionHandler);
} else {
@@ -679,7 +679,7 @@ namespace FileProvider {
[UnsupportedOSPlatform ("macos")]
[UnsupportedOSPlatform ("maccatalyst")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void SetTagData (NSData? tagData, string itemIdentifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V67))]global::System.Action<INSFileProviderItem, NSError> completionHandler)
+ public unsafe virtual void SetTagData (NSData? tagData, string itemIdentifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V68))]global::System.Action<INSFileProviderItem, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -694,7 +694,7 @@ namespace FileProvider {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V67.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V68.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("setTagData:forItemIdentifier:completionHandler:"), tagData__handle__, nsitemIdentifier, (IntPtr) block_ptr_completionHandler);
} else {
@@ -780,7 +780,7 @@ namespace FileProvider {
[UnsupportedOSPlatform ("macos")]
[UnsupportedOSPlatform ("maccatalyst")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void TrashItem (string itemIdentifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V67))]global::System.Action<INSFileProviderItem, NSError> completionHandler)
+ public unsafe virtual void TrashItem (string itemIdentifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V68))]global::System.Action<INSFileProviderItem, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -794,7 +794,7 @@ namespace FileProvider {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V67.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V68.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("trashItemWithIdentifier:completionHandler:"), nsitemIdentifier, (IntPtr) block_ptr_completionHandler);
} else {
@@ -826,7 +826,7 @@ namespace FileProvider {
[UnsupportedOSPlatform ("macos")]
[UnsupportedOSPlatform ("maccatalyst")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void UntrashItem (string itemIdentifier, string? parentItemIdentifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V67))]global::System.Action<INSFileProviderItem, NSError> completionHandler)
+ public unsafe virtual void UntrashItem (string itemIdentifier, string? parentItemIdentifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V68))]global::System.Action<INSFileProviderItem, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -841,7 +841,7 @@ namespace FileProvider {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V67.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V68.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("untrashItemWithIdentifier:toParentItemIdentifier:completionHandler:"), nsitemIdentifier, nsparentItemIdentifier, (IntPtr) block_ptr_completionHandler);
} else {
diff --git a/old/dotnet/ios/generated-sources/FileProvider/NSFileProviderManager.g.cs b/new/dotnet/ios/generated-sources/FileProvider/NSFileProviderManager.g.cs
index 6d166fd..832f721 100644
--- a/old/dotnet/ios/generated-sources/FileProvider/NSFileProviderManager.g.cs
+++ b/new/dotnet/ios/generated-sources/FileProvider/NSFileProviderManager.g.cs
@@ -132,7 +132,7 @@ namespace FileProvider {
[SupportedOSPlatform ("ios11.0.0")]
[SupportedOSPlatform ("macos11.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static void GetDomains ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V68))]global::System.Action<NSFileProviderDomain[], NSError> completionHandler)
+ public unsafe static void GetDomains ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V69))]global::System.Action<NSFileProviderDomain[], NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -143,7 +143,7 @@ namespace FileProvider {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V68.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V69.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (class_ptr, Selector.GetHandle ("getDomainsWithCompletionHandler:"), (IntPtr) block_ptr_completionHandler);
block_ptr_completionHandler->CleanupBlock ();
#endif
diff --git a/old/dotnet/ios/generated-sources/Foundation/NSAttributedString.g.cs b/new/dotnet/ios/generated-sources/Foundation/NSAttributedString.g.cs
index 0f51eba..2278904 100644
--- a/old/dotnet/ios/generated-sources/Foundation/NSAttributedString.g.cs
+++ b/new/dotnet/ios/generated-sources/Foundation/NSAttributedString.g.cs
@@ -541,7 +541,7 @@ namespace Foundation {
[SupportedOSPlatform ("ios11.0")]
[SupportedOSPlatform ("maccatalyst11.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual NSProgress? LoadData (string typeIdentifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V18))]global::System.Action<NSData, NSError> completionHandler)
+ public unsafe virtual NSProgress? LoadData (string typeIdentifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V19))]global::System.Action<NSData, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -555,7 +555,7 @@ namespace Foundation {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V18.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V19.Handler, completionHandler);
NSProgress? ret;
if (IsDirectBinding) {
ret = Runtime.GetNSObject<NSProgress> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("loadDataWithTypeIdentifier:forItemProviderCompletionHandler:"), nstypeIdentifier, (IntPtr) block_ptr_completionHandler))!;
diff --git a/old/dotnet/ios/generated-sources/Foundation/NSData.g.cs b/new/dotnet/ios/generated-sources/Foundation/NSData.g.cs
index 679f60e..8060616 100644
--- a/old/dotnet/ios/generated-sources/Foundation/NSData.g.cs
+++ b/new/dotnet/ios/generated-sources/Foundation/NSData.g.cs
@@ -132,7 +132,7 @@ namespace Foundation {
[SupportedOSPlatform ("maccatalyst7.0.0")]
[SupportedOSPlatform ("tvos")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NSData (nint bytes, nuint length, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V69))]global::System.Action<nint, nuint>? deallocator)
+ public unsafe NSData (nint bytes, nuint length, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V70))]global::System.Action<nint, nuint>? deallocator)
: base (NSObjectFlag.Empty)
{
BlockLiteral *block_ptr_deallocator;
@@ -142,7 +142,7 @@ namespace Foundation {
} else {
block_deallocator = new BlockLiteral ();
block_ptr_deallocator = &block_deallocator;
- block_deallocator.SetupBlockUnsafe (Trampolines.SDActionArity2V69.Handler, deallocator);
+ block_deallocator.SetupBlockUnsafe (Trampolines.SDActionArity2V70.Handler, deallocator);
}
if (IsDirectBinding) {
InitializeHandle (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend_IntPtr_UIntPtr_NativeHandle (this.Handle, Selector.GetHandle ("initWithBytesNoCopy:length:deallocator:"), bytes, length, (IntPtr) block_ptr_deallocator), "initWithBytesNoCopy:length:deallocator:");
diff --git a/old/dotnet/ios/generated-sources/Foundation/NSFileManager.g.cs b/new/dotnet/ios/generated-sources/Foundation/NSFileManager.g.cs
index 81879f1..011c0dc 100644
--- a/old/dotnet/ios/generated-sources/Foundation/NSFileManager.g.cs
+++ b/new/dotnet/ios/generated-sources/Foundation/NSFileManager.g.cs
@@ -469,7 +469,7 @@ namespace Foundation {
[SupportedOSPlatform ("ios11.0")]
[SupportedOSPlatform ("maccatalyst11.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void GetFileProviderServices (NSUrl url, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V70))]global::System.Action<NSDictionary<NSString, NSFileProviderService>, NSError> completionHandler)
+ public unsafe virtual void GetFileProviderServices (NSUrl url, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V71))]global::System.Action<NSDictionary<NSString, NSFileProviderService>, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -481,7 +481,7 @@ namespace Foundation {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V70.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V71.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("getFileProviderServicesForItemAtURL:completionHandler:"), url__handle__, (IntPtr) block_ptr_completionHandler);
} else {
diff --git a/old/dotnet/ios/generated-sources/Foundation/NSItemProvider.g.cs b/new/dotnet/ios/generated-sources/Foundation/NSItemProvider.g.cs
index 4f35abe..05b6e8e 100644
--- a/old/dotnet/ios/generated-sources/Foundation/NSItemProvider.g.cs
+++ b/new/dotnet/ios/generated-sources/Foundation/NSItemProvider.g.cs
@@ -260,7 +260,7 @@ namespace Foundation {
[SupportedOSPlatform ("ios11.0")]
[SupportedOSPlatform ("maccatalyst11.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual NSProgress LoadDataRepresentation (string typeIdentifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V18))]global::System.Action<NSData, NSError> completionHandler)
+ public unsafe virtual NSProgress LoadDataRepresentation (string typeIdentifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V19))]global::System.Action<NSData, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -274,7 +274,7 @@ namespace Foundation {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V18.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V19.Handler, completionHandler);
NSProgress? ret;
if (IsDirectBinding) {
ret = Runtime.GetNSObject<NSProgress> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("loadDataRepresentationForTypeIdentifier:completionHandler:"), nstypeIdentifier, (IntPtr) block_ptr_completionHandler))!;
@@ -324,7 +324,7 @@ namespace Foundation {
[SupportedOSPlatform ("ios11.0")]
[SupportedOSPlatform ("maccatalyst11.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual NSProgress LoadFileRepresentation (string typeIdentifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V26))]global::System.Action<NSUrl, NSError> completionHandler)
+ public unsafe virtual NSProgress LoadFileRepresentation (string typeIdentifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V27))]global::System.Action<NSUrl, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -338,7 +338,7 @@ namespace Foundation {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V26.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V27.Handler, completionHandler);
NSProgress? ret;
if (IsDirectBinding) {
ret = Runtime.GetNSObject<NSProgress> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("loadFileRepresentationForTypeIdentifier:completionHandler:"), nstypeIdentifier, (IntPtr) block_ptr_completionHandler))!;
@@ -452,7 +452,7 @@ namespace Foundation {
[SupportedOSPlatform ("tvos")]
[SupportedOSPlatform ("maccatalyst8.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void LoadItem (string typeIdentifier, NSDictionary? options, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V71))]global::System.Action<NSObject, NSError>? completionHandler)
+ public unsafe virtual void LoadItem (string typeIdentifier, NSDictionary? options, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V72))]global::System.Action<NSObject, NSError>? completionHandler)
{
if (typeIdentifier is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (typeIdentifier));
@@ -465,7 +465,7 @@ namespace Foundation {
} else {
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V71.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V72.Handler, completionHandler);
}
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("loadItemForTypeIdentifier:options:completionHandler:"), nstypeIdentifier, options__handle__, (IntPtr) block_ptr_completionHandler);
@@ -498,7 +498,7 @@ namespace Foundation {
[SupportedOSPlatform ("ios11.0")]
[SupportedOSPlatform ("maccatalyst11.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual NSProgress LoadObject (Class aClass, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V72))]global::System.Action<INSItemProviderReading, NSError> completionHandler)
+ public unsafe virtual NSProgress LoadObject (Class aClass, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V73))]global::System.Action<INSItemProviderReading, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -510,7 +510,7 @@ namespace Foundation {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V72.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V73.Handler, completionHandler);
NSProgress? ret;
if (IsDirectBinding) {
ret = Runtime.GetNSObject<NSProgress> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("loadObjectOfClass:completionHandler:"), aClass.Handle, (IntPtr) block_ptr_completionHandler))!;
@@ -559,7 +559,7 @@ namespace Foundation {
[SupportedOSPlatform ("tvos")]
[SupportedOSPlatform ("maccatalyst8.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void LoadPreviewImage (NSDictionary options, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V71))]global::System.Action<NSObject, NSError> completionHandler)
+ public unsafe virtual void LoadPreviewImage (NSDictionary options, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V72))]global::System.Action<NSObject, NSError> completionHandler)
{
var options__handle__ = options!.GetNonNullHandle (nameof (options));
if (completionHandler is null)
@@ -568,7 +568,7 @@ namespace Foundation {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V71.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V72.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("loadPreviewImageWithOptions:completionHandler:"), options__handle__, (IntPtr) block_ptr_completionHandler);
} else {
diff --git a/old/dotnet/ios/generated-sources/Foundation/NSItemProviderWriting.g.cs b/new/dotnet/ios/generated-sources/Foundation/NSItemProviderWriting.g.cs
index 5bbd6ec..eaac159 100644
--- a/old/dotnet/ios/generated-sources/Foundation/NSItemProviderWriting.g.cs
+++ b/new/dotnet/ios/generated-sources/Foundation/NSItemProviderWriting.g.cs
@@ -55,7 +55,7 @@ namespace Foundation {
[SupportedOSPlatform ("maccatalyst11.0.0")]
[Protocol (Name = "NSItemProviderWriting", WrapperType = typeof (NSItemProviderWritingWrapper))]
[ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "GetItemProviderVisibilityForTypeIdentifier", Selector = "itemProviderVisibilityForRepresentationWithTypeIdentifier:", ReturnType = typeof (NSItemProviderRepresentationVisibility), ParameterType = new Type [] { typeof (string) }, ParameterByRef = new bool [] { false })]
- [ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "LoadData", Selector = "loadDataWithTypeIdentifier:forItemProviderCompletionHandler:", ReturnType = typeof (NSProgress), ParameterType = new Type [] { typeof (string), typeof (global::System.Action<NSData, NSError>) }, ParameterByRef = new bool [] { false, false }, ParameterBlockProxy = new Type? [] { null, typeof (ObjCRuntime.Trampolines.NIDActionArity2V18) })]
+ [ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "LoadData", Selector = "loadDataWithTypeIdentifier:forItemProviderCompletionHandler:", ReturnType = typeof (NSProgress), ParameterType = new Type [] { typeof (string), typeof (global::System.Action<NSData, NSError>) }, ParameterByRef = new bool [] { false, false }, ParameterBlockProxy = new Type? [] { null, typeof (ObjCRuntime.Trampolines.NIDActionArity2V19) })]
[ProtocolMember (IsRequired = true, IsProperty = true, IsStatic = true, Name = "WritableTypeIdentifiers", Selector = "writableTypeIdentifiersForItemProvider", PropertyType = typeof (String[]), GetterSelector = "writableTypeIdentifiersForItemProvider", ArgumentSemantic = ArgumentSemantic.Copy)]
[ProtocolMember (IsRequired = false, IsProperty = true, IsStatic = false, Name = "WritableTypeIdentifiersForItemProvider", Selector = "writableTypeIdentifiersForItemProvider", PropertyType = typeof (String[]), GetterSelector = "writableTypeIdentifiersForItemProvider", ArgumentSemantic = ArgumentSemantic.Copy)]
public partial interface INSItemProviderWriting : INativeObject, IDisposable
@@ -67,7 +67,7 @@ namespace Foundation {
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
[Export ("loadDataWithTypeIdentifier:forItemProviderCompletionHandler:")]
[Preserve (Conditional = true)]
- unsafe NSProgress? LoadData (string typeIdentifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V18))]global::System.Action<NSData, NSError> completionHandler);
+ unsafe NSProgress? LoadData (string typeIdentifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V19))]global::System.Action<NSData, NSError> completionHandler);
}
public static partial class NSItemProviderWriting_Extensions {
[SupportedOSPlatform ("tvos11.0.0")]
@@ -143,7 +143,7 @@ namespace Foundation {
}
[Export ("loadDataWithTypeIdentifier:forItemProviderCompletionHandler:")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NSProgress? LoadData (string typeIdentifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V18))]global::System.Action<NSData, NSError> completionHandler)
+ public unsafe NSProgress? LoadData (string typeIdentifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V19))]global::System.Action<NSData, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -157,7 +157,7 @@ namespace Foundation {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V18.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V19.Handler, completionHandler);
NSProgress? ret;
ret = Runtime.GetNSObject<NSProgress> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("loadDataWithTypeIdentifier:forItemProviderCompletionHandler:"), nstypeIdentifier, (IntPtr) block_ptr_completionHandler))!;
CFString.ReleaseNative (nstypeIdentifier);
diff --git a/old/dotnet/ios/generated-sources/Foundation/NSString.g.cs b/new/dotnet/ios/generated-sources/Foundation/NSString.g.cs
index b749fda..1a28c8b 100644
--- a/old/dotnet/ios/generated-sources/Foundation/NSString.g.cs
+++ b/new/dotnet/ios/generated-sources/Foundation/NSString.g.cs
@@ -511,7 +511,7 @@ namespace Foundation {
[SupportedOSPlatform ("ios11.0")]
[SupportedOSPlatform ("maccatalyst11.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual NSProgress? LoadData (string typeIdentifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V18))]global::System.Action<NSData, NSError> completionHandler)
+ public unsafe virtual NSProgress? LoadData (string typeIdentifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V19))]global::System.Action<NSData, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -525,7 +525,7 @@ namespace Foundation {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V18.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V19.Handler, completionHandler);
NSProgress? ret;
if (IsDirectBinding) {
ret = Runtime.GetNSObject<NSProgress> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("loadDataWithTypeIdentifier:forItemProviderCompletionHandler:"), nstypeIdentifier, (IntPtr) block_ptr_completionHandler))!;
diff --git a/old/dotnet/ios/generated-sources/Foundation/NSUrl.g.cs b/new/dotnet/ios/generated-sources/Foundation/NSUrl.g.cs
index f338ae2..3361487 100644
--- a/old/dotnet/ios/generated-sources/Foundation/NSUrl.g.cs
+++ b/new/dotnet/ios/generated-sources/Foundation/NSUrl.g.cs
@@ -527,7 +527,7 @@ namespace Foundation {
[SupportedOSPlatform ("ios11.0")]
[SupportedOSPlatform ("maccatalyst11.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual NSProgress? LoadData (string typeIdentifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V18))]global::System.Action<NSData, NSError> completionHandler)
+ public unsafe virtual NSProgress? LoadData (string typeIdentifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V19))]global::System.Action<NSData, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -541,7 +541,7 @@ namespace Foundation {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V18.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V19.Handler, completionHandler);
NSProgress? ret;
if (IsDirectBinding) {
ret = Runtime.GetNSObject<NSProgress> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("loadDataWithTypeIdentifier:forItemProviderCompletionHandler:"), nstypeIdentifier, (IntPtr) block_ptr_completionHandler))!;
diff --git a/old/dotnet/ios/generated-sources/Foundation/NSUrlSessionDelegate.g.cs b/new/dotnet/ios/generated-sources/Foundation/NSUrlSessionDelegate.g.cs
index 4d77beb..cf8bd02 100644
--- a/old/dotnet/ios/generated-sources/Foundation/NSUrlSessionDelegate.g.cs
+++ b/new/dotnet/ios/generated-sources/Foundation/NSUrlSessionDelegate.g.cs
@@ -55,7 +55,7 @@ namespace Foundation {
[SupportedOSPlatform ("tvos")]
[Protocol (Name = "NSURLSessionDelegate", WrapperType = typeof (NSUrlSessionDelegateWrapper))]
[ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "DidBecomeInvalid", Selector = "URLSession:didBecomeInvalidWithError:", ParameterType = new Type [] { typeof (NSUrlSession), typeof (NSError) }, ParameterByRef = new bool [] { false, false })]
- [ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "DidReceiveChallenge", Selector = "URLSession:didReceiveChallenge:completionHandler:", ParameterType = new Type [] { typeof (NSUrlSession), typeof (NSUrlAuthenticationChallenge), typeof (global::System.Action<NSUrlSessionAuthChallengeDisposition, NSUrlCredential>) }, ParameterByRef = new bool [] { false, false, false }, ParameterBlockProxy = new Type? [] { null, null, typeof (ObjCRuntime.Trampolines.NIDActionArity2V10) })]
+ [ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "DidReceiveChallenge", Selector = "URLSession:didReceiveChallenge:completionHandler:", ParameterType = new Type [] { typeof (NSUrlSession), typeof (NSUrlAuthenticationChallenge), typeof (global::System.Action<NSUrlSessionAuthChallengeDisposition, NSUrlCredential>) }, ParameterByRef = new bool [] { false, false, false }, ParameterBlockProxy = new Type? [] { null, null, typeof (ObjCRuntime.Trampolines.NIDActionArity2V11) })]
[ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "DidFinishEventsForBackgroundSession", Selector = "URLSessionDidFinishEventsForBackgroundURLSession:", ParameterType = new Type [] { typeof (NSUrlSession) }, ParameterByRef = new bool [] { false })]
public partial interface INSUrlSessionDelegate : INativeObject, IDisposable
{
@@ -77,7 +77,7 @@ namespace Foundation {
[SupportedOSPlatform ("tvos")]
[SupportedOSPlatform ("maccatalyst7.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static void DidReceiveChallenge (this INSUrlSessionDelegate This, NSUrlSession session, NSUrlAuthenticationChallenge challenge, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V10))]global::System.Action<NSUrlSessionAuthChallengeDisposition, NSUrlCredential> completionHandler)
+ public unsafe static void DidReceiveChallenge (this INSUrlSessionDelegate This, NSUrlSession session, NSUrlAuthenticationChallenge challenge, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V11))]global::System.Action<NSUrlSessionAuthChallengeDisposition, NSUrlCredential> completionHandler)
{
var session__handle__ = session!.GetNonNullHandle (nameof (session));
var challenge__handle__ = challenge!.GetNonNullHandle (nameof (challenge));
@@ -87,7 +87,7 @@ namespace Foundation {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V10.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V11.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle_NativeHandle (This.Handle, Selector.GetHandle ("URLSession:didReceiveChallenge:completionHandler:"), session__handle__, challenge__handle__, (IntPtr) block_ptr_completionHandler);
block_ptr_completionHandler->CleanupBlock ();
}
@@ -168,7 +168,7 @@ namespace Foundation {
[SupportedOSPlatform ("tvos")]
[SupportedOSPlatform ("maccatalyst7.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void DidReceiveChallenge (NSUrlSession session, NSUrlAuthenticationChallenge challenge, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V10))]global::System.Action<NSUrlSessionAuthChallengeDisposition, NSUrlCredential> completionHandler)
+ public unsafe virtual void DidReceiveChallenge (NSUrlSession session, NSUrlAuthenticationChallenge challenge, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V11))]global::System.Action<NSUrlSessionAuthChallengeDisposition, NSUrlCredential> completionHandler)
{
throw new You_Should_Not_Call_base_In_This_Method ();
}
diff --git a/old/dotnet/ios/generated-sources/Foundation/NSUrlSessionTaskDelegate.g.cs b/new/dotnet/ios/generated-sources/Foundation/NSUrlSessionTaskDelegate.g.cs
index 69efc74..703d710 100644
--- a/old/dotnet/ios/generated-sources/Foundation/NSUrlSessionTaskDelegate.g.cs
+++ b/new/dotnet/ios/generated-sources/Foundation/NSUrlSessionTaskDelegate.g.cs
@@ -55,12 +55,12 @@ namespace Foundation {
[SupportedOSPlatform ("tvos")]
[Protocol (Name = "NSURLSessionTaskDelegate", WrapperType = typeof (NSUrlSessionTaskDelegateWrapper))]
[ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "WillPerformHttpRedirection", Selector = "URLSession:task:willPerformHTTPRedirection:newRequest:completionHandler:", ParameterType = new Type [] { typeof (NSUrlSession), typeof (NSUrlSessionTask), typeof (NSHttpUrlResponse), typeof (NSUrlRequest), typeof (global::System.Action<NSUrlRequest>) }, ParameterByRef = new bool [] { false, false, false, false, false }, ParameterBlockProxy = new Type? [] { null, null, null, null, typeof (ObjCRuntime.Trampolines.NIDActionArity1V3) })]
- [ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "DidReceiveChallenge", Selector = "URLSession:task:didReceiveChallenge:completionHandler:", ParameterType = new Type [] { typeof (NSUrlSession), typeof (NSUrlSessionTask), typeof (NSUrlAuthenticationChallenge), typeof (global::System.Action<NSUrlSessionAuthChallengeDisposition, NSUrlCredential>) }, ParameterByRef = new bool [] { false, false, false, false }, ParameterBlockProxy = new Type? [] { null, null, null, typeof (ObjCRuntime.Trampolines.NIDActionArity2V10) })]
+ [ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "DidReceiveChallenge", Selector = "URLSession:task:didReceiveChallenge:completionHandler:", ParameterType = new Type [] { typeof (NSUrlSession), typeof (NSUrlSessionTask), typeof (NSUrlAuthenticationChallenge), typeof (global::System.Action<NSUrlSessionAuthChallengeDisposition, NSUrlCredential>) }, ParameterByRef = new bool [] { false, false, false, false }, ParameterBlockProxy = new Type? [] { null, null, null, typeof (ObjCRuntime.Trampolines.NIDActionArity2V11) })]
[ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "NeedNewBodyStream", Selector = "URLSession:task:needNewBodyStream:", ParameterType = new Type [] { typeof (NSUrlSession), typeof (NSUrlSessionTask), typeof (global::System.Action<NSInputStream>) }, ParameterByRef = new bool [] { false, false, false }, ParameterBlockProxy = new Type? [] { null, null, typeof (ObjCRuntime.Trampolines.NIDActionArity1V2) })]
[ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "DidSendBodyData", Selector = "URLSession:task:didSendBodyData:totalBytesSent:totalBytesExpectedToSend:", ParameterType = new Type [] { typeof (NSUrlSession), typeof (NSUrlSessionTask), typeof (long), typeof (long), typeof (long) }, ParameterByRef = new bool [] { false, false, false, false, false })]
[ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "DidCompleteWithError", Selector = "URLSession:task:didCompleteWithError:", ParameterType = new Type [] { typeof (NSUrlSession), typeof (NSUrlSessionTask), typeof (NSError) }, ParameterByRef = new bool [] { false, false, false })]
[ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "DidFinishCollectingMetrics", Selector = "URLSession:task:didFinishCollectingMetrics:", ParameterType = new Type [] { typeof (NSUrlSession), typeof (NSUrlSessionTask), typeof (NSUrlSessionTaskMetrics) }, ParameterByRef = new bool [] { false, false, false })]
- [ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "WillBeginDelayedRequest", Selector = "URLSession:task:willBeginDelayedRequest:completionHandler:", ParameterType = new Type [] { typeof (NSUrlSession), typeof (NSUrlSessionTask), typeof (NSUrlRequest), typeof (global::System.Action<NSUrlSessionDelayedRequestDisposition, NSUrlRequest>) }, ParameterByRef = new bool [] { false, false, false, false }, ParameterBlockProxy = new Type? [] { null, null, null, typeof (ObjCRuntime.Trampolines.NIDActionArity2V11) })]
+ [ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "WillBeginDelayedRequest", Selector = "URLSession:task:willBeginDelayedRequest:completionHandler:", ParameterType = new Type [] { typeof (NSUrlSession), typeof (NSUrlSessionTask), typeof (NSUrlRequest), typeof (global::System.Action<NSUrlSessionDelayedRequestDisposition, NSUrlRequest>) }, ParameterByRef = new bool [] { false, false, false, false }, ParameterBlockProxy = new Type? [] { null, null, null, typeof (ObjCRuntime.Trampolines.NIDActionArity2V12) })]
[ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "TaskIsWaitingForConnectivity", Selector = "URLSession:taskIsWaitingForConnectivity:", ParameterType = new Type [] { typeof (NSUrlSession), typeof (NSUrlSessionTask) }, ParameterByRef = new bool [] { false, false })]
public partial interface INSUrlSessionTaskDelegate : INativeObject, IDisposable,
Foundation.INSUrlSessionDelegate
@@ -93,7 +93,7 @@ namespace Foundation {
[SupportedOSPlatform ("tvos")]
[SupportedOSPlatform ("maccatalyst7.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static void DidReceiveChallenge (this INSUrlSessionTaskDelegate This, NSUrlSession session, NSUrlSessionTask task, NSUrlAuthenticationChallenge challenge, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V10))]global::System.Action<NSUrlSessionAuthChallengeDisposition, NSUrlCredential> completionHandler)
+ public unsafe static void DidReceiveChallenge (this INSUrlSessionTaskDelegate This, NSUrlSession session, NSUrlSessionTask task, NSUrlAuthenticationChallenge challenge, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V11))]global::System.Action<NSUrlSessionAuthChallengeDisposition, NSUrlCredential> completionHandler)
{
var session__handle__ = session!.GetNonNullHandle (nameof (session));
var task__handle__ = task!.GetNonNullHandle (nameof (task));
@@ -104,7 +104,7 @@ namespace Foundation {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V10.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V11.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle_NativeHandle_NativeHandle (This.Handle, Selector.GetHandle ("URLSession:task:didReceiveChallenge:completionHandler:"), session__handle__, task__handle__, challenge__handle__, (IntPtr) block_ptr_completionHandler);
block_ptr_completionHandler->CleanupBlock ();
}
@@ -167,7 +167,7 @@ namespace Foundation {
[SupportedOSPlatform ("ios11.0")]
[SupportedOSPlatform ("maccatalyst11.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static void WillBeginDelayedRequest (this INSUrlSessionTaskDelegate This, NSUrlSession session, NSUrlSessionTask task, NSUrlRequest request, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V11))]global::System.Action<NSUrlSessionDelayedRequestDisposition, NSUrlRequest> completionHandler)
+ public unsafe static void WillBeginDelayedRequest (this INSUrlSessionTaskDelegate This, NSUrlSession session, NSUrlSessionTask task, NSUrlRequest request, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V12))]global::System.Action<NSUrlSessionDelayedRequestDisposition, NSUrlRequest> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -181,7 +181,7 @@ namespace Foundation {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V11.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V12.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle_NativeHandle_NativeHandle (This.Handle, Selector.GetHandle ("URLSession:task:willBeginDelayedRequest:completionHandler:"), session__handle__, task__handle__, request__handle__, (IntPtr) block_ptr_completionHandler);
block_ptr_completionHandler->CleanupBlock ();
#endif
@@ -268,7 +268,7 @@ namespace Foundation {
[SupportedOSPlatform ("tvos")]
[SupportedOSPlatform ("maccatalyst7.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void DidReceiveChallenge (NSUrlSession session, NSUrlSessionTask task, NSUrlAuthenticationChallenge challenge, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V10))]global::System.Action<NSUrlSessionAuthChallengeDisposition, NSUrlCredential> completionHandler)
+ public unsafe virtual void DidReceiveChallenge (NSUrlSession session, NSUrlSessionTask task, NSUrlAuthenticationChallenge challenge, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V11))]global::System.Action<NSUrlSessionAuthChallengeDisposition, NSUrlCredential> completionHandler)
{
throw new You_Should_Not_Call_base_In_This_Method ();
}
@@ -312,7 +312,7 @@ namespace Foundation {
[SupportedOSPlatform ("ios11.0")]
[SupportedOSPlatform ("maccatalyst11.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void WillBeginDelayedRequest (NSUrlSession session, NSUrlSessionTask task, NSUrlRequest request, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V11))]global::System.Action<NSUrlSessionDelayedRequestDisposition, NSUrlRequest> completionHandler)
+ public unsafe virtual void WillBeginDelayedRequest (NSUrlSession session, NSUrlSessionTask task, NSUrlRequest request, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V12))]global::System.Action<NSUrlSessionDelayedRequestDisposition, NSUrlRequest> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
diff --git a/old/dotnet/ios/generated-sources/Foundation/NSUrlSessionWebSocketTask.g.cs b/new/dotnet/ios/generated-sources/Foundation/NSUrlSessionWebSocketTask.g.cs
index 3df64e8..2cd0669 100644
--- a/old/dotnet/ios/generated-sources/Foundation/NSUrlSessionWebSocketTask.g.cs
+++ b/new/dotnet/ios/generated-sources/Foundation/NSUrlSessionWebSocketTask.g.cs
@@ -101,7 +101,7 @@ namespace Foundation {
[SupportedOSPlatform ("ios13.0.0")]
[SupportedOSPlatform ("maccatalyst13.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void ReceiveMessage ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V73))]global::System.Action<NSUrlSessionWebSocketMessage, NSError> completionHandler)
+ public unsafe virtual void ReceiveMessage ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V74))]global::System.Action<NSUrlSessionWebSocketMessage, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -112,7 +112,7 @@ namespace Foundation {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V73.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V74.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("receiveMessageWithCompletionHandler:"), (IntPtr) block_ptr_completionHandler);
} else {
diff --git a/old/dotnet/ios/generated-sources/Foundation/NSUserActivity.g.cs b/new/dotnet/ios/generated-sources/Foundation/NSUserActivity.g.cs
index 592dac7..5eae841 100644
--- a/old/dotnet/ios/generated-sources/Foundation/NSUserActivity.g.cs
+++ b/new/dotnet/ios/generated-sources/Foundation/NSUserActivity.g.cs
@@ -298,7 +298,7 @@ namespace Foundation {
[SupportedOSPlatform ("tvos9.0.0")]
[SupportedOSPlatform ("maccatalyst8.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual NSProgress? LoadData (string typeIdentifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V18))]global::System.Action<NSData, NSError> completionHandler)
+ public unsafe virtual NSProgress? LoadData (string typeIdentifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V19))]global::System.Action<NSData, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -312,7 +312,7 @@ namespace Foundation {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V18.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V19.Handler, completionHandler);
NSProgress? ret;
if (IsDirectBinding) {
ret = Runtime.GetNSObject<NSProgress> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("loadDataWithTypeIdentifier:forItemProviderCompletionHandler:"), nstypeIdentifier, (IntPtr) block_ptr_completionHandler))!;
diff --git a/old/dotnet/ios/generated-sources/GameKit/GKAchievement.g.cs b/new/dotnet/ios/generated-sources/GameKit/GKAchievement.g.cs
index c92385f..596342b 100644
--- a/old/dotnet/ios/generated-sources/GameKit/GKAchievement.g.cs
+++ b/new/dotnet/ios/generated-sources/GameKit/GKAchievement.g.cs
@@ -557,7 +557,7 @@ namespace GameKit {
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("maccatalyst")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void SelectChallengeablePlayerIDs (string[]? playerIDs, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V74))]global::System.Action<string[], NSError>? completionHandler)
+ public unsafe virtual void SelectChallengeablePlayerIDs (string[]? playerIDs, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V75))]global::System.Action<string[], NSError>? completionHandler)
{
global::UIKit.UIApplication.EnsureUIThread ();
var nsa_playerIDs = playerIDs is null ? null : NSArray.FromStrings (playerIDs);
@@ -568,7 +568,7 @@ namespace GameKit {
} else {
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V74.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V75.Handler, completionHandler);
}
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("selectChallengeablePlayerIDs:withCompletionHandler:"), nsa_playerIDs.GetHandle (), (IntPtr) block_ptr_completionHandler);
@@ -614,7 +614,7 @@ namespace GameKit {
[SupportedOSPlatform ("maccatalyst8.0.0")]
[SupportedOSPlatform ("tvos")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void SelectChallengeablePlayers (GKPlayer[] players, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V75))]global::System.Action<GKPlayer[], NSError>? completionHandler)
+ public unsafe virtual void SelectChallengeablePlayers (GKPlayer[] players, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V76))]global::System.Action<GKPlayer[], NSError>? completionHandler)
{
global::UIKit.UIApplication.EnsureUIThread ();
if (players is null)
@@ -627,7 +627,7 @@ namespace GameKit {
} else {
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V75.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V76.Handler, completionHandler);
}
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("selectChallengeablePlayers:withCompletionHandler:"), nsa_players.Handle, (IntPtr) block_ptr_completionHandler);
diff --git a/old/dotnet/ios/generated-sources/GameKit/GKChallenge.g.cs b/new/dotnet/ios/generated-sources/GameKit/GKChallenge.g.cs
index d4fec37..1ca6c83 100644
--- a/old/dotnet/ios/generated-sources/GameKit/GKChallenge.g.cs
+++ b/new/dotnet/ios/generated-sources/GameKit/GKChallenge.g.cs
@@ -134,7 +134,7 @@ namespace GameKit {
[SupportedOSPlatform ("tvos")]
[SupportedOSPlatform ("maccatalyst")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static void LoadReceivedChallenges ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V76))]global::System.Action<GKChallenge[], NSError>? completionHandler)
+ public unsafe static void LoadReceivedChallenges ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V77))]global::System.Action<GKChallenge[], NSError>? completionHandler)
{
global::UIKit.UIApplication.EnsureUIThread ();
BlockLiteral *block_ptr_completionHandler;
@@ -144,7 +144,7 @@ namespace GameKit {
} else {
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V76.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V77.Handler, completionHandler);
}
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (class_ptr, Selector.GetHandle ("loadReceivedChallengesWithCompletionHandler:"), (IntPtr) block_ptr_completionHandler);
if (block_ptr_completionHandler != null)
diff --git a/old/dotnet/ios/generated-sources/GameKit/GKCloudPlayer.g.cs b/new/dotnet/ios/generated-sources/GameKit/GKCloudPlayer.g.cs
index a6d673f..9f4ff40 100644
--- a/old/dotnet/ios/generated-sources/GameKit/GKCloudPlayer.g.cs
+++ b/new/dotnet/ios/generated-sources/GameKit/GKCloudPlayer.g.cs
@@ -121,7 +121,7 @@ namespace GameKit {
[SupportedOSPlatform ("tvos10.0.0")]
[SupportedOSPlatform ("maccatalyst10.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static void GetCurrentSignedInPlayer (string? containerName, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V77))]global::System.Action<GKCloudPlayer, NSError> handler)
+ public unsafe static void GetCurrentSignedInPlayer (string? containerName, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V78))]global::System.Action<GKCloudPlayer, NSError> handler)
{
global::UIKit.UIApplication.EnsureUIThread ();
if (handler is null)
@@ -131,7 +131,7 @@ namespace GameKit {
BlockLiteral block_handler;
block_handler = new BlockLiteral ();
block_ptr_handler = &block_handler;
- block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V77.Handler, handler);
+ block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V78.Handler, handler);
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (class_ptr, Selector.GetHandle ("getCurrentSignedInPlayerForContainer:completionHandler:"), nscontainerName, (IntPtr) block_ptr_handler);
CFString.ReleaseNative (nscontainerName);
block_ptr_handler->CleanupBlock ();
diff --git a/old/dotnet/ios/generated-sources/GameKit/GKGameSession.g.cs b/new/dotnet/ios/generated-sources/GameKit/GKGameSession.g.cs
index eea1570..f03d88c 100644
--- a/old/dotnet/ios/generated-sources/GameKit/GKGameSession.g.cs
+++ b/new/dotnet/ios/generated-sources/GameKit/GKGameSession.g.cs
@@ -224,7 +224,7 @@ namespace GameKit {
[SupportedOSPlatform ("tvos10.0.0")]
[SupportedOSPlatform ("maccatalyst10.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static void CreateSession (string? containerName, string title, nint maxPlayers, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V78))]global::System.Action<GKGameSession, NSError> completionHandler)
+ public unsafe static void CreateSession (string? containerName, string title, nint maxPlayers, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V79))]global::System.Action<GKGameSession, NSError> completionHandler)
{
global::UIKit.UIApplication.EnsureUIThread ();
if (title is null)
@@ -237,7 +237,7 @@ namespace GameKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V78.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V79.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle_IntPtr_NativeHandle (class_ptr, Selector.GetHandle ("createSessionInContainer:withTitle:maxConnectedPlayers:completionHandler:"), nscontainerName, nstitle, maxPlayers, (IntPtr) block_ptr_completionHandler);
CFString.ReleaseNative (nscontainerName);
CFString.ReleaseNative (nstitle);
@@ -328,7 +328,7 @@ namespace GameKit {
[SupportedOSPlatform ("tvos10.0.0")]
[SupportedOSPlatform ("maccatalyst10.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void GetShareUrl ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V26))]global::System.Action<NSUrl, NSError> completionHandler)
+ public unsafe virtual void GetShareUrl ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V27))]global::System.Action<NSUrl, NSError> completionHandler)
{
global::UIKit.UIApplication.EnsureUIThread ();
if (completionHandler is null)
@@ -337,7 +337,7 @@ namespace GameKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V26.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V27.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("getShareURLWithCompletionHandler:"), (IntPtr) block_ptr_completionHandler);
} else {
@@ -399,7 +399,7 @@ namespace GameKit {
[SupportedOSPlatform ("tvos10.0.0")]
[SupportedOSPlatform ("maccatalyst10.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void LoadData ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V18))]global::System.Action<NSData, NSError> completionHandler)
+ public unsafe virtual void LoadData ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V19))]global::System.Action<NSData, NSError> completionHandler)
{
global::UIKit.UIApplication.EnsureUIThread ();
if (completionHandler is null)
@@ -408,7 +408,7 @@ namespace GameKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V18.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V19.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("loadDataWithCompletionHandler:"), (IntPtr) block_ptr_completionHandler);
} else {
@@ -470,7 +470,7 @@ namespace GameKit {
[SupportedOSPlatform ("tvos10.0.0")]
[SupportedOSPlatform ("maccatalyst10.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static void LoadSession (string identifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V78))]global::System.Action<GKGameSession, NSError> completionHandler)
+ public unsafe static void LoadSession (string identifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V79))]global::System.Action<GKGameSession, NSError> completionHandler)
{
global::UIKit.UIApplication.EnsureUIThread ();
if (identifier is null)
@@ -482,7 +482,7 @@ namespace GameKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V78.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V79.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (class_ptr, Selector.GetHandle ("loadSessionWithIdentifier:completionHandler:"), nsidentifier, (IntPtr) block_ptr_completionHandler);
CFString.ReleaseNative (nsidentifier);
block_ptr_completionHandler->CleanupBlock ();
@@ -541,7 +541,7 @@ namespace GameKit {
[SupportedOSPlatform ("tvos10.0.0")]
[SupportedOSPlatform ("maccatalyst10.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static void LoadSessions (string? containerName, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V79))]global::System.Action<GKGameSession[], NSError> completionHandler)
+ public unsafe static void LoadSessions (string? containerName, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V80))]global::System.Action<GKGameSession[], NSError> completionHandler)
{
global::UIKit.UIApplication.EnsureUIThread ();
if (completionHandler is null)
@@ -551,7 +551,7 @@ namespace GameKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V79.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V80.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (class_ptr, Selector.GetHandle ("loadSessionsInContainer:completionHandler:"), nscontainerName, (IntPtr) block_ptr_completionHandler);
CFString.ReleaseNative (nscontainerName);
block_ptr_completionHandler->CleanupBlock ();
@@ -709,7 +709,7 @@ namespace GameKit {
[SupportedOSPlatform ("tvos10.0.0")]
[SupportedOSPlatform ("maccatalyst10.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void SaveData (NSData data, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V18))]global::System.Action<NSData, NSError> completionHandler)
+ public unsafe virtual void SaveData (NSData data, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V19))]global::System.Action<NSData, NSError> completionHandler)
{
global::UIKit.UIApplication.EnsureUIThread ();
var data__handle__ = data!.GetNonNullHandle (nameof (data));
@@ -719,7 +719,7 @@ namespace GameKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V18.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V19.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("saveData:completionHandler:"), data__handle__, (IntPtr) block_ptr_completionHandler);
} else {
diff --git a/old/dotnet/ios/generated-sources/GameKit/GKLeaderboard.g.cs b/new/dotnet/ios/generated-sources/GameKit/GKLeaderboard.g.cs
index fbb8c54..076d2d2 100644
--- a/old/dotnet/ios/generated-sources/GameKit/GKLeaderboard.g.cs
+++ b/new/dotnet/ios/generated-sources/GameKit/GKLeaderboard.g.cs
@@ -385,7 +385,7 @@ namespace GameKit {
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("maccatalyst")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static void LoadLeaderboards ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V80))]global::System.Action<GKLeaderboard[], NSError>? completionHandler)
+ public unsafe static void LoadLeaderboards ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V81))]global::System.Action<GKLeaderboard[], NSError>? completionHandler)
{
global::UIKit.UIApplication.EnsureUIThread ();
BlockLiteral *block_ptr_completionHandler;
@@ -395,7 +395,7 @@ namespace GameKit {
} else {
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V80.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V81.Handler, completionHandler);
}
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (class_ptr, Selector.GetHandle ("loadLeaderboardsWithCompletionHandler:"), (IntPtr) block_ptr_completionHandler);
if (block_ptr_completionHandler != null)
diff --git a/old/dotnet/ios/generated-sources/GameKit/GKLocalPlayer.g.cs b/new/dotnet/ios/generated-sources/GameKit/GKLocalPlayer.g.cs
index 77f9c75..286c398 100644
--- a/old/dotnet/ios/generated-sources/GameKit/GKLocalPlayer.g.cs
+++ b/new/dotnet/ios/generated-sources/GameKit/GKLocalPlayer.g.cs
@@ -262,7 +262,7 @@ namespace GameKit {
[SupportedOSPlatform ("macos10.10")]
[SupportedOSPlatform ("maccatalyst8.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void FetchSavedGames ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V81))]global::System.Action<GKSavedGame[], NSError>? handler)
+ public unsafe virtual void FetchSavedGames ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V82))]global::System.Action<GKSavedGame[], NSError>? handler)
{
global::UIKit.UIApplication.EnsureUIThread ();
BlockLiteral *block_ptr_handler;
@@ -272,7 +272,7 @@ namespace GameKit {
} else {
block_handler = new BlockLiteral ();
block_ptr_handler = &block_handler;
- block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V81.Handler, handler);
+ block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V82.Handler, handler);
}
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("fetchSavedGamesWithCompletionHandler:"), (IntPtr) block_ptr_handler);
@@ -382,7 +382,7 @@ namespace GameKit {
[SupportedOSPlatform ("ios13.0")]
[SupportedOSPlatform ("maccatalyst13.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void LoadChallengeableFriends ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V75))]global::System.Action<GKPlayer[], NSError>? completionHandler)
+ public unsafe virtual void LoadChallengeableFriends ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V76))]global::System.Action<GKPlayer[], NSError>? completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -395,7 +395,7 @@ namespace GameKit {
} else {
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V75.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V76.Handler, completionHandler);
}
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("loadChallengableFriendsWithCompletionHandler:"), (IntPtr) block_ptr_completionHandler);
@@ -440,7 +440,7 @@ namespace GameKit {
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("maccatalyst")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void LoadDefaultLeaderboardCategoryID ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V66))]global::System.Action<string, NSError>? completionHandler)
+ public unsafe virtual void LoadDefaultLeaderboardCategoryID ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V67))]global::System.Action<string, NSError>? completionHandler)
{
global::UIKit.UIApplication.EnsureUIThread ();
BlockLiteral *block_ptr_completionHandler;
@@ -450,7 +450,7 @@ namespace GameKit {
} else {
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V66.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V67.Handler, completionHandler);
}
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("loadDefaultLeaderboardCategoryIDWithCompletionHandler:"), (IntPtr) block_ptr_completionHandler);
@@ -494,7 +494,7 @@ namespace GameKit {
[SupportedOSPlatform ("maccatalyst7.0.0")]
[SupportedOSPlatform ("tvos")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void LoadDefaultLeaderboardIdentifier ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V66))]global::System.Action<string, NSError>? completionHandler)
+ public unsafe virtual void LoadDefaultLeaderboardIdentifier ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V67))]global::System.Action<string, NSError>? completionHandler)
{
global::UIKit.UIApplication.EnsureUIThread ();
BlockLiteral *block_ptr_completionHandler;
@@ -504,7 +504,7 @@ namespace GameKit {
} else {
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V66.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V67.Handler, completionHandler);
}
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("loadDefaultLeaderboardIdentifierWithCompletionHandler:"), (IntPtr) block_ptr_completionHandler);
@@ -548,7 +548,7 @@ namespace GameKit {
[UnsupportedOSPlatform ("maccatalyst10.0.0")]
[SupportedOSPlatform ("tvos")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void LoadFriendPlayers ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V75))]global::System.Action<GKPlayer[], NSError>? completionHandler)
+ public unsafe virtual void LoadFriendPlayers ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V76))]global::System.Action<GKPlayer[], NSError>? completionHandler)
{
global::UIKit.UIApplication.EnsureUIThread ();
BlockLiteral *block_ptr_completionHandler;
@@ -558,7 +558,7 @@ namespace GameKit {
} else {
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V75.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V76.Handler, completionHandler);
}
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("loadFriendPlayersWithCompletionHandler:"), (IntPtr) block_ptr_completionHandler);
@@ -668,7 +668,7 @@ namespace GameKit {
[SupportedOSPlatform ("ios14.5")]
[SupportedOSPlatform ("maccatalyst14.5")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void LoadFriendsAuthorizationStatus ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V82))]global::System.Action<GKFriendsAuthorizationStatus, NSError> completionHandler)
+ public unsafe virtual void LoadFriendsAuthorizationStatus ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V83))]global::System.Action<GKFriendsAuthorizationStatus, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -680,7 +680,7 @@ namespace GameKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V82.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V83.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("loadFriendsAuthorizationStatus:"), (IntPtr) block_ptr_completionHandler);
} else {
@@ -711,7 +711,7 @@ namespace GameKit {
[SupportedOSPlatform ("ios14.5")]
[SupportedOSPlatform ("maccatalyst14.5")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void LoadFriendsList ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V75))]global::System.Action<GKPlayer[], NSError> completionHandler)
+ public unsafe virtual void LoadFriendsList ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V76))]global::System.Action<GKPlayer[], NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -723,7 +723,7 @@ namespace GameKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V75.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V76.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("loadFriends:"), (IntPtr) block_ptr_completionHandler);
} else {
@@ -754,7 +754,7 @@ namespace GameKit {
[SupportedOSPlatform ("ios14.5")]
[SupportedOSPlatform ("maccatalyst14.5")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void LoadFriendsList (string[] identifiers, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V75))]global::System.Action<GKPlayer[], NSError> completionHandler)
+ public unsafe virtual void LoadFriendsList (string[] identifiers, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V76))]global::System.Action<GKPlayer[], NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -769,7 +769,7 @@ namespace GameKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V75.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V76.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("loadFriendsWithIdentifiers:completionHandler:"), nsa_identifiers.Handle, (IntPtr) block_ptr_completionHandler);
} else {
@@ -801,7 +801,7 @@ namespace GameKit {
[SupportedOSPlatform ("maccatalyst10.0.0")]
[SupportedOSPlatform ("tvos")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void LoadRecentPlayers ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V75))]global::System.Action<GKPlayer[], NSError>? completionHandler)
+ public unsafe virtual void LoadRecentPlayers ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V76))]global::System.Action<GKPlayer[], NSError>? completionHandler)
{
global::UIKit.UIApplication.EnsureUIThread ();
BlockLiteral *block_ptr_completionHandler;
@@ -811,7 +811,7 @@ namespace GameKit {
} else {
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V75.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V76.Handler, completionHandler);
}
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("loadRecentPlayersWithCompletionHandler:"), (IntPtr) block_ptr_completionHandler);
@@ -887,7 +887,7 @@ namespace GameKit {
[SupportedOSPlatform ("macos10.10")]
[SupportedOSPlatform ("maccatalyst8.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void ResolveConflictingSavedGames (GKSavedGame[] conflictingSavedGames, NSData data, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V81))]global::System.Action<GKSavedGame[], NSError>? handler)
+ public unsafe virtual void ResolveConflictingSavedGames (GKSavedGame[] conflictingSavedGames, NSData data, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V82))]global::System.Action<GKSavedGame[], NSError>? handler)
{
global::UIKit.UIApplication.EnsureUIThread ();
if (conflictingSavedGames is null)
@@ -901,7 +901,7 @@ namespace GameKit {
} else {
block_handler = new BlockLiteral ();
block_ptr_handler = &block_handler;
- block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V81.Handler, handler);
+ block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V82.Handler, handler);
}
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("resolveConflictingSavedGames:withData:completionHandler:"), nsa_conflictingSavedGames.Handle, data__handle__, (IntPtr) block_ptr_handler);
@@ -918,7 +918,7 @@ namespace GameKit {
[SupportedOSPlatform ("macos10.10")]
[SupportedOSPlatform ("maccatalyst8.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void SaveGameData (NSData data, string name, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V83))]global::System.Action<GKSavedGame, NSError>? handler)
+ public unsafe virtual void SaveGameData (NSData data, string name, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V84))]global::System.Action<GKSavedGame, NSError>? handler)
{
global::UIKit.UIApplication.EnsureUIThread ();
var data__handle__ = data!.GetNonNullHandle (nameof (data));
@@ -932,7 +932,7 @@ namespace GameKit {
} else {
block_handler = new BlockLiteral ();
block_ptr_handler = &block_handler;
- block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V83.Handler, handler);
+ block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V84.Handler, handler);
}
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("saveGameData:withName:completionHandler:"), data__handle__, nsname, (IntPtr) block_ptr_handler);
@@ -1098,7 +1098,7 @@ namespace GameKit {
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("maccatalyst")]
public unsafe virtual global::System.Action<global::UIKit.UIViewController, NSError>? AuthenticateHandler {
- [return: DelegateProxy (typeof (ObjCRuntime.Trampolines.SDActionArity2V84))]
+ [return: DelegateProxy (typeof (ObjCRuntime.Trampolines.SDActionArity2V85))]
[Export ("authenticateHandler", ArgumentSemantic.Copy)]
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("tvos")]
@@ -1112,9 +1112,9 @@ namespace GameKit {
} else {
ret = global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("authenticateHandler"));
}
- return global::ObjCRuntime.Trampolines.NIDActionArity2V84.Create (ret)!;
+ return global::ObjCRuntime.Trampolines.NIDActionArity2V85.Create (ret)!;
}
- [param: BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V84))]
+ [param: BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V85))]
[Export ("setAuthenticateHandler:", ArgumentSemantic.Copy)]
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("tvos")]
@@ -1126,7 +1126,7 @@ namespace GameKit {
BlockLiteral block_value;
block_value = new BlockLiteral ();
block_ptr_value = &block_value;
- block_value.SetupBlockUnsafe (Trampolines.SDActionArity2V84.Handler, value);
+ block_value.SetupBlockUnsafe (Trampolines.SDActionArity2V85.Handler, value);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("setAuthenticateHandler:"), (IntPtr) block_ptr_value);
} else {
diff --git a/old/dotnet/ios/generated-sources/GameKit/GKMatch.g.cs b/new/dotnet/ios/generated-sources/GameKit/GKMatch.g.cs
index 4d747e1..b19e1ff 100644
--- a/old/dotnet/ios/generated-sources/GameKit/GKMatch.g.cs
+++ b/new/dotnet/ios/generated-sources/GameKit/GKMatch.g.cs
@@ -187,7 +187,7 @@ namespace GameKit {
[SupportedOSPlatform ("tvos")]
[SupportedOSPlatform ("maccatalyst")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void Rematch ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V85))]global::System.Action<GKMatch, NSError>? completionHandler)
+ public unsafe virtual void Rematch ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V86))]global::System.Action<GKMatch, NSError>? completionHandler)
{
global::UIKit.UIApplication.EnsureUIThread ();
BlockLiteral *block_ptr_completionHandler;
@@ -197,7 +197,7 @@ namespace GameKit {
} else {
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V85.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V86.Handler, completionHandler);
}
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("rematchWithCompletionHandler:"), (IntPtr) block_ptr_completionHandler);
diff --git a/old/dotnet/ios/generated-sources/GameKit/GKMatchRequest.g.cs b/new/dotnet/ios/generated-sources/GameKit/GKMatchRequest.g.cs
index 715e680..949d07c 100644
--- a/old/dotnet/ios/generated-sources/GameKit/GKMatchRequest.g.cs
+++ b/new/dotnet/ios/generated-sources/GameKit/GKMatchRequest.g.cs
@@ -180,7 +180,7 @@ namespace GameKit {
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("maccatalyst")]
public unsafe virtual global::System.Action<string, GKInviteeResponse>? InviteeResponseHandler {
- [return: DelegateProxy (typeof (ObjCRuntime.Trampolines.SDActionArity2V86))]
+ [return: DelegateProxy (typeof (ObjCRuntime.Trampolines.SDActionArity2V87))]
[Export ("inviteeResponseHandler", ArgumentSemantic.Copy)]
[UnsupportedOSPlatform ("tvos")]
#if __IOS__
@@ -206,9 +206,9 @@ namespace GameKit {
} else {
ret = global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("inviteeResponseHandler"));
}
- return global::ObjCRuntime.Trampolines.NIDActionArity2V86.Create (ret)!;
+ return global::ObjCRuntime.Trampolines.NIDActionArity2V87.Create (ret)!;
}
- [param: BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V86))]
+ [param: BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V87))]
[Export ("setInviteeResponseHandler:", ArgumentSemantic.Copy)]
[UnsupportedOSPlatform ("tvos")]
#if __IOS__
@@ -232,7 +232,7 @@ namespace GameKit {
BlockLiteral block_value;
block_value = new BlockLiteral ();
block_ptr_value = &block_value;
- block_value.SetupBlockUnsafe (Trampolines.SDActionArity2V86.Handler, value);
+ block_value.SetupBlockUnsafe (Trampolines.SDActionArity2V87.Handler, value);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("setInviteeResponseHandler:"), (IntPtr) block_ptr_value);
} else {
@@ -451,7 +451,7 @@ namespace GameKit {
[SupportedOSPlatform ("maccatalyst8.0.0")]
[SupportedOSPlatform ("tvos")]
public unsafe virtual global::System.Action<GKPlayer, GKInviteRecipientResponse>? RecipientResponseHandler {
- [return: DelegateProxy (typeof (ObjCRuntime.Trampolines.SDActionArity2V87))]
+ [return: DelegateProxy (typeof (ObjCRuntime.Trampolines.SDActionArity2V88))]
[Export ("recipientResponseHandler", ArgumentSemantic.Copy)]
[SupportedOSPlatform ("ios8.0.0")]
[SupportedOSPlatform ("macos10.10.0")]
@@ -465,9 +465,9 @@ namespace GameKit {
} else {
ret = global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("recipientResponseHandler"));
}
- return global::ObjCRuntime.Trampolines.NIDActionArity2V87.Create (ret)!;
+ return global::ObjCRuntime.Trampolines.NIDActionArity2V88.Create (ret)!;
}
- [param: BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V87))]
+ [param: BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V88))]
[Export ("setRecipientResponseHandler:", ArgumentSemantic.Copy)]
[SupportedOSPlatform ("ios8.0.0")]
[SupportedOSPlatform ("macos10.10.0")]
@@ -479,7 +479,7 @@ namespace GameKit {
BlockLiteral block_value;
block_value = new BlockLiteral ();
block_ptr_value = &block_value;
- block_value.SetupBlockUnsafe (Trampolines.SDActionArity2V87.Handler, value);
+ block_value.SetupBlockUnsafe (Trampolines.SDActionArity2V88.Handler, value);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("setRecipientResponseHandler:"), (IntPtr) block_ptr_value);
} else {
diff --git a/old/dotnet/ios/generated-sources/GameKit/GKMatchmaker.g.cs b/new/dotnet/ios/generated-sources/GameKit/GKMatchmaker.g.cs
index f3c56a6..96f2e94 100644
--- a/old/dotnet/ios/generated-sources/GameKit/GKMatchmaker.g.cs
+++ b/new/dotnet/ios/generated-sources/GameKit/GKMatchmaker.g.cs
@@ -305,7 +305,7 @@ namespace GameKit {
[SupportedOSPlatform ("maccatalyst8.0.0")]
[SupportedOSPlatform ("tvos")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void FindPlayersForHostedRequest (GKMatchRequest request, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V75))]global::System.Action<GKPlayer[], NSError>? completionHandler)
+ public unsafe virtual void FindPlayersForHostedRequest (GKMatchRequest request, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V76))]global::System.Action<GKPlayer[], NSError>? completionHandler)
{
global::UIKit.UIApplication.EnsureUIThread ();
var request__handle__ = request!.GetNonNullHandle (nameof (request));
@@ -316,7 +316,7 @@ namespace GameKit {
} else {
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V75.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V76.Handler, completionHandler);
}
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("findPlayersForHostedRequest:withCompletionHandler:"), request__handle__, (IntPtr) block_ptr_completionHandler);
@@ -364,7 +364,7 @@ namespace GameKit {
[SupportedOSPlatform ("tvos")]
[SupportedOSPlatform ("maccatalyst")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void Match (GKInvite invite, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V85))]global::System.Action<GKMatch, NSError>? completionHandler)
+ public unsafe virtual void Match (GKInvite invite, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V86))]global::System.Action<GKMatch, NSError>? completionHandler)
{
global::UIKit.UIApplication.EnsureUIThread ();
var invite__handle__ = invite!.GetNonNullHandle (nameof (invite));
@@ -375,7 +375,7 @@ namespace GameKit {
} else {
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V85.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V86.Handler, completionHandler);
}
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("matchForInvite:completionHandler:"), invite__handle__, (IntPtr) block_ptr_completionHandler);
@@ -503,7 +503,7 @@ namespace GameKit {
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void StartBrowsingForNearbyPlayers ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V88))]global::System.Action<string, bool>? reachableHandler)
+ public unsafe virtual void StartBrowsingForNearbyPlayers ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V89))]global::System.Action<string, bool>? reachableHandler)
{
global::UIKit.UIApplication.EnsureUIThread ();
BlockLiteral *block_ptr_reachableHandler;
@@ -513,7 +513,7 @@ namespace GameKit {
} else {
block_reachableHandler = new BlockLiteral ();
block_ptr_reachableHandler = &block_reachableHandler;
- block_reachableHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V88.Handler, reachableHandler);
+ block_reachableHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V89.Handler, reachableHandler);
}
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("startBrowsingForNearbyPlayersWithReachableHandler:"), (IntPtr) block_ptr_reachableHandler);
@@ -529,7 +529,7 @@ namespace GameKit {
[SupportedOSPlatform ("maccatalyst8.0.0")]
[SupportedOSPlatform ("tvos")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void StartBrowsingForNearbyPlayers ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V89))]global::System.Action<GKPlayer, bool>? handler)
+ public unsafe virtual void StartBrowsingForNearbyPlayers ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V90))]global::System.Action<GKPlayer, bool>? handler)
{
global::UIKit.UIApplication.EnsureUIThread ();
BlockLiteral *block_ptr_handler;
@@ -539,7 +539,7 @@ namespace GameKit {
} else {
block_handler = new BlockLiteral ();
block_ptr_handler = &block_handler;
- block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V89.Handler, handler);
+ block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V90.Handler, handler);
}
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("startBrowsingForNearbyPlayersWithHandler:"), (IntPtr) block_ptr_handler);
diff --git a/old/dotnet/ios/generated-sources/GameKit/GKSavedGame.g.cs b/new/dotnet/ios/generated-sources/GameKit/GKSavedGame.g.cs
index d3ed079..66c32e0 100644
--- a/old/dotnet/ios/generated-sources/GameKit/GKSavedGame.g.cs
+++ b/new/dotnet/ios/generated-sources/GameKit/GKSavedGame.g.cs
@@ -110,7 +110,7 @@ namespace GameKit {
[SupportedOSPlatform ("macos10.10.0")]
[SupportedOSPlatform ("maccatalyst8.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void LoadData ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V18))]global::System.Action<NSData, NSError>? handler)
+ public unsafe virtual void LoadData ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V19))]global::System.Action<NSData, NSError>? handler)
{
global::UIKit.UIApplication.EnsureUIThread ();
BlockLiteral *block_ptr_handler;
@@ -120,7 +120,7 @@ namespace GameKit {
} else {
block_handler = new BlockLiteral ();
block_ptr_handler = &block_handler;
- block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V18.Handler, handler);
+ block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V19.Handler, handler);
}
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("loadDataWithCompletionHandler:"), (IntPtr) block_ptr_handler);
diff --git a/old/dotnet/ios/generated-sources/GameKit/GKTurnBasedMatch.g.cs b/new/dotnet/ios/generated-sources/GameKit/GKTurnBasedMatch.g.cs
index 7b18694..43ee46f 100644
--- a/old/dotnet/ios/generated-sources/GameKit/GKTurnBasedMatch.g.cs
+++ b/new/dotnet/ios/generated-sources/GameKit/GKTurnBasedMatch.g.cs
@@ -89,7 +89,7 @@ namespace GameKit {
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("maccatalyst")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void AcceptInvite ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V90))]global::System.Action<GKTurnBasedMatch, NSError>? completionHandler)
+ public unsafe virtual void AcceptInvite ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V91))]global::System.Action<GKTurnBasedMatch, NSError>? completionHandler)
{
global::UIKit.UIApplication.EnsureUIThread ();
BlockLiteral *block_ptr_completionHandler;
@@ -99,7 +99,7 @@ namespace GameKit {
} else {
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V90.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V91.Handler, completionHandler);
}
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("acceptInviteWithCompletionHandler:"), (IntPtr) block_ptr_completionHandler);
@@ -131,7 +131,7 @@ namespace GameKit {
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("maccatalyst")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void DeclineInvite ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V90))]global::System.Action<GKTurnBasedMatch, NSError>? completionHandler)
+ public unsafe virtual void DeclineInvite ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V91))]global::System.Action<GKTurnBasedMatch, NSError>? completionHandler)
{
global::UIKit.UIApplication.EnsureUIThread ();
BlockLiteral *block_ptr_completionHandler;
@@ -141,7 +141,7 @@ namespace GameKit {
} else {
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V90.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V91.Handler, completionHandler);
}
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("declineInviteWithCompletionHandler:"), (IntPtr) block_ptr_completionHandler);
@@ -492,7 +492,7 @@ namespace GameKit {
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("maccatalyst")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static void LoadMatch (string matchId, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V90))]global::System.Action<GKTurnBasedMatch, NSError>? completionHandler)
+ public unsafe static void LoadMatch (string matchId, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V91))]global::System.Action<GKTurnBasedMatch, NSError>? completionHandler)
{
global::UIKit.UIApplication.EnsureUIThread ();
if (matchId is null)
@@ -505,7 +505,7 @@ namespace GameKit {
} else {
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V90.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V91.Handler, completionHandler);
}
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (class_ptr, Selector.GetHandle ("loadMatchWithID:withCompletionHandler:"), nsmatchId, (IntPtr) block_ptr_completionHandler);
CFString.ReleaseNative (nsmatchId);
@@ -771,7 +771,7 @@ namespace GameKit {
[SupportedOSPlatform ("tvos")]
[SupportedOSPlatform ("maccatalyst")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void Rematch ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V90))]global::System.Action<GKTurnBasedMatch, NSError>? completionHandler)
+ public unsafe virtual void Rematch ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V91))]global::System.Action<GKTurnBasedMatch, NSError>? completionHandler)
{
global::UIKit.UIApplication.EnsureUIThread ();
BlockLiteral *block_ptr_completionHandler;
@@ -781,7 +781,7 @@ namespace GameKit {
} else {
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V90.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V91.Handler, completionHandler);
}
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("rematchWithCompletionHandler:"), (IntPtr) block_ptr_completionHandler);
@@ -945,7 +945,7 @@ namespace GameKit {
[SupportedOSPlatform ("maccatalyst7.0.0")]
[SupportedOSPlatform ("tvos")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void SendExchange (GKTurnBasedParticipant[] participants, NSData data, string localizableMessage, NSObject[] arguments, double timeout, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V91))]global::System.Action<GKTurnBasedExchange, NSError>? completionHandler)
+ public unsafe virtual void SendExchange (GKTurnBasedParticipant[] participants, NSData data, string localizableMessage, NSObject[] arguments, double timeout, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V92))]global::System.Action<GKTurnBasedExchange, NSError>? completionHandler)
{
global::UIKit.UIApplication.EnsureUIThread ();
if (participants is null)
@@ -965,7 +965,7 @@ namespace GameKit {
} else {
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V91.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V92.Handler, completionHandler);
}
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle_NativeHandle_NativeHandle_Double_NativeHandle (this.Handle, Selector.GetHandle ("sendExchangeToParticipants:data:localizableMessageKey:arguments:timeout:completionHandler:"), nsa_participants.Handle, data__handle__, nslocalizableMessage, nsa_arguments.Handle, timeout, (IntPtr) block_ptr_completionHandler);
diff --git a/old/dotnet/ios/generated-sources/GameKit/GKVoiceChat.g.cs b/new/dotnet/ios/generated-sources/GameKit/GKVoiceChat.g.cs
index 2c5e852..a1f036c 100644
--- a/old/dotnet/ios/generated-sources/GameKit/GKVoiceChat.g.cs
+++ b/new/dotnet/ios/generated-sources/GameKit/GKVoiceChat.g.cs
@@ -147,7 +147,7 @@ namespace GameKit {
[SupportedOSPlatform ("maccatalyst8.0.0")]
[SupportedOSPlatform ("tvos")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void SetPlayerVoiceChatStateChangeHandler ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V92))]global::System.Action<GKPlayer, GKVoiceChatPlayerState> handler)
+ public unsafe virtual void SetPlayerVoiceChatStateChangeHandler ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V93))]global::System.Action<GKPlayer, GKVoiceChatPlayerState> handler)
{
global::UIKit.UIApplication.EnsureUIThread ();
if (handler is null)
@@ -156,7 +156,7 @@ namespace GameKit {
BlockLiteral block_handler;
block_handler = new BlockLiteral ();
block_ptr_handler = &block_handler;
- block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V92.Handler, handler);
+ block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V93.Handler, handler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("setPlayerVoiceChatStateDidChangeHandler:"), (IntPtr) block_ptr_handler);
} else {
diff --git a/old/dotnet/ios/generated-sources/HealthKit/HKHealthStore.g.cs b/new/dotnet/ios/generated-sources/HealthKit/HKHealthStore.g.cs
index 7f4b660..f6f1606 100644
--- a/old/dotnet/ios/generated-sources/HealthKit/HKHealthStore.g.cs
+++ b/new/dotnet/ios/generated-sources/HealthKit/HKHealthStore.g.cs
@@ -429,7 +429,7 @@ namespace HealthKit {
[SupportedOSPlatform ("ios8.2")]
[SupportedOSPlatform ("maccatalyst8.2.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void GetPreferredUnits (NSSet quantityTypes, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V93))]global::System.Action<NSDictionary, NSError> completion)
+ public unsafe virtual void GetPreferredUnits (NSSet quantityTypes, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V94))]global::System.Action<NSDictionary, NSError> completion)
{
var quantityTypes__handle__ = quantityTypes!.GetNonNullHandle (nameof (quantityTypes));
if (completion is null)
@@ -438,7 +438,7 @@ namespace HealthKit {
BlockLiteral block_completion;
block_completion = new BlockLiteral ();
block_ptr_completion = &block_completion;
- block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V93.Handler, completion);
+ block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V94.Handler, completion);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("preferredUnitsForQuantityTypes:completion:"), quantityTypes__handle__, (IntPtr) block_ptr_completion);
} else {
diff --git a/old/dotnet/ios/generated-sources/HealthKit/HKHeartbeatSeriesBuilder.g.cs b/new/dotnet/ios/generated-sources/HealthKit/HKHeartbeatSeriesBuilder.g.cs
index 6475357..8f6b436 100644
--- a/old/dotnet/ios/generated-sources/HealthKit/HKHeartbeatSeriesBuilder.g.cs
+++ b/new/dotnet/ios/generated-sources/HealthKit/HKHeartbeatSeriesBuilder.g.cs
@@ -187,7 +187,7 @@ namespace HealthKit {
[SupportedOSPlatform ("ios13.0.0")]
[SupportedOSPlatform ("maccatalyst13.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void FinishSeries ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V94))]global::System.Action<HKHeartbeatSeriesSample, NSError> completion)
+ public unsafe virtual void FinishSeries ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V95))]global::System.Action<HKHeartbeatSeriesSample, NSError> completion)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -198,7 +198,7 @@ namespace HealthKit {
BlockLiteral block_completion;
block_completion = new BlockLiteral ();
block_ptr_completion = &block_completion;
- block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V94.Handler, completion);
+ block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V95.Handler, completion);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("finishSeriesWithCompletion:"), (IntPtr) block_ptr_completion);
} else {
diff --git a/old/dotnet/ios/generated-sources/HealthKit/HKWorkoutRouteBuilder.g.cs b/new/dotnet/ios/generated-sources/HealthKit/HKWorkoutRouteBuilder.g.cs
index 07ded87..e036723 100644
--- a/old/dotnet/ios/generated-sources/HealthKit/HKWorkoutRouteBuilder.g.cs
+++ b/new/dotnet/ios/generated-sources/HealthKit/HKWorkoutRouteBuilder.g.cs
@@ -172,7 +172,7 @@ namespace HealthKit {
[SupportedOSPlatform ("ios11.0.0")]
[SupportedOSPlatform ("maccatalyst11.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- protected unsafe virtual void FinishRoute (HKWorkout workout, NSDictionary? metadata, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V95))]global::System.Action<HKWorkoutRoute, NSError> completion)
+ protected unsafe virtual void FinishRoute (HKWorkout workout, NSDictionary? metadata, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V96))]global::System.Action<HKWorkoutRoute, NSError> completion)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -185,7 +185,7 @@ namespace HealthKit {
BlockLiteral block_completion;
block_completion = new BlockLiteral ();
block_ptr_completion = &block_completion;
- block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V95.Handler, completion);
+ block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V96.Handler, completion);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("finishRouteWithWorkout:metadata:completion:"), workout__handle__, metadata__handle__, (IntPtr) block_ptr_completion);
} else {
@@ -211,7 +211,7 @@ namespace HealthKit {
[SupportedOSPlatform ("ios11.0.0")]
[SupportedOSPlatform ("maccatalyst11.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe void FinishRoute (HKWorkout workout, HKMetadata metadata, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V95))]global::System.Action<HKWorkoutRoute, NSError> completion)
+ public unsafe void FinishRoute (HKWorkout workout, HKMetadata metadata, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V96))]global::System.Action<HKWorkoutRoute, NSError> completion)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
diff --git a/old/dotnet/ios/generated-sources/HomeKit/HMAccessorySetupManager.g.cs b/new/dotnet/ios/generated-sources/HomeKit/HMAccessorySetupManager.g.cs
index 60d475d..ea1a977 100644
--- a/old/dotnet/ios/generated-sources/HomeKit/HMAccessorySetupManager.g.cs
+++ b/new/dotnet/ios/generated-sources/HomeKit/HMAccessorySetupManager.g.cs
@@ -145,7 +145,7 @@ namespace HomeKit {
[UnsupportedOSPlatform ("tvos")]
[UnsupportedOSPlatform ("maccatalyst")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void PerformAccessorySetup (HMAccessorySetupRequest request, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V96))]global::System.Action<HMAccessorySetupResult, NSError> completion)
+ public unsafe virtual void PerformAccessorySetup (HMAccessorySetupRequest request, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V97))]global::System.Action<HMAccessorySetupResult, NSError> completion)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -157,7 +157,7 @@ namespace HomeKit {
BlockLiteral block_completion;
block_completion = new BlockLiteral ();
block_ptr_completion = &block_completion;
- block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V96.Handler, completion);
+ block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V97.Handler, completion);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("performAccessorySetupUsingRequest:completionHandler:"), request__handle__, (IntPtr) block_ptr_completion);
} else {
diff --git a/old/dotnet/ios/generated-sources/HomeKit/HMHome.g.cs b/new/dotnet/ios/generated-sources/HomeKit/HMHome.g.cs
index d213509..89f6497 100644
--- a/old/dotnet/ios/generated-sources/HomeKit/HMHome.g.cs
+++ b/new/dotnet/ios/generated-sources/HomeKit/HMHome.g.cs
@@ -111,7 +111,7 @@ namespace HomeKit {
[SupportedOSPlatform ("ios8.0.0")]
[SupportedOSPlatform ("maccatalyst14.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void AddActionSet (string actionSetName, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V97))]global::System.Action<HMActionSet, NSError> completion)
+ public unsafe virtual void AddActionSet (string actionSetName, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V98))]global::System.Action<HMActionSet, NSError> completion)
{
if (actionSetName is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (actionSetName));
@@ -122,7 +122,7 @@ namespace HomeKit {
BlockLiteral block_completion;
block_completion = new BlockLiteral ();
block_ptr_completion = &block_completion;
- block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V97.Handler, completion);
+ block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V98.Handler, completion);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("addActionSetWithName:completionHandler:"), nsactionSetName, (IntPtr) block_ptr_completion);
} else {
@@ -199,7 +199,7 @@ namespace HomeKit {
[SupportedOSPlatform ("ios11.3")]
[UnsupportedOSPlatform ("maccatalyst")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void AddAndSetupAccessories (HMAccessorySetupPayload payload, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V98))]global::System.Action<HMAccessory[], NSError> completion)
+ public unsafe virtual void AddAndSetupAccessories (HMAccessorySetupPayload payload, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V99))]global::System.Action<HMAccessory[], NSError> completion)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -211,7 +211,7 @@ namespace HomeKit {
BlockLiteral block_completion;
block_completion = new BlockLiteral ();
block_ptr_completion = &block_completion;
- block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V98.Handler, completion);
+ block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V99.Handler, completion);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("addAndSetupAccessoriesWithPayload:completionHandler:"), payload__handle__, (IntPtr) block_ptr_completion);
} else {
@@ -244,7 +244,7 @@ namespace HomeKit {
[SupportedOSPlatform ("ios8.0.0")]
[SupportedOSPlatform ("maccatalyst14.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void AddRoom (string roomName, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V99))]global::System.Action<HMRoom, NSError> completion)
+ public unsafe virtual void AddRoom (string roomName, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V100))]global::System.Action<HMRoom, NSError> completion)
{
if (roomName is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (roomName));
@@ -255,7 +255,7 @@ namespace HomeKit {
BlockLiteral block_completion;
block_completion = new BlockLiteral ();
block_ptr_completion = &block_completion;
- block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V99.Handler, completion);
+ block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V100.Handler, completion);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("addRoomWithName:completionHandler:"), nsroomName, (IntPtr) block_ptr_completion);
} else {
@@ -284,7 +284,7 @@ namespace HomeKit {
[SupportedOSPlatform ("ios8.0.0")]
[SupportedOSPlatform ("maccatalyst14.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void AddServiceGroup (string serviceGroupName, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V100))]global::System.Action<HMServiceGroup, NSError> completion)
+ public unsafe virtual void AddServiceGroup (string serviceGroupName, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V101))]global::System.Action<HMServiceGroup, NSError> completion)
{
if (serviceGroupName is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (serviceGroupName));
@@ -295,7 +295,7 @@ namespace HomeKit {
BlockLiteral block_completion;
block_completion = new BlockLiteral ();
block_ptr_completion = &block_completion;
- block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V100.Handler, completion);
+ block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V101.Handler, completion);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("addServiceGroupWithName:completionHandler:"), nsserviceGroupName, (IntPtr) block_ptr_completion);
} else {
@@ -369,7 +369,7 @@ namespace HomeKit {
[SupportedOSPlatform ("ios8.0.0")]
[SupportedOSPlatform ("maccatalyst14.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void AddUser ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V101))]global::System.Action<HMUser, NSError> completion)
+ public unsafe virtual void AddUser ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V102))]global::System.Action<HMUser, NSError> completion)
{
if (completion is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (completion));
@@ -377,7 +377,7 @@ namespace HomeKit {
BlockLiteral block_completion;
block_completion = new BlockLiteral ();
block_ptr_completion = &block_completion;
- block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V101.Handler, completion);
+ block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V102.Handler, completion);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("addUserWithCompletionHandler:"), (IntPtr) block_ptr_completion);
} else {
@@ -413,7 +413,7 @@ namespace HomeKit {
[SupportedOSPlatform ("ios8.0.0")]
[SupportedOSPlatform ("maccatalyst14.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void AddZone (string zoneName, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V102))]global::System.Action<HMZone, NSError> completion)
+ public unsafe virtual void AddZone (string zoneName, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V103))]global::System.Action<HMZone, NSError> completion)
{
if (zoneName is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (zoneName));
@@ -424,7 +424,7 @@ namespace HomeKit {
BlockLiteral block_completion;
block_completion = new BlockLiteral ();
block_ptr_completion = &block_completion;
- block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V102.Handler, completion);
+ block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V103.Handler, completion);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("addZoneWithName:completionHandler:"), nszoneName, (IntPtr) block_ptr_completion);
} else {
diff --git a/old/dotnet/ios/generated-sources/HomeKit/HMHomeManager.g.cs b/new/dotnet/ios/generated-sources/HomeKit/HMHomeManager.g.cs
index 3ad29a1..877d698 100644
--- a/old/dotnet/ios/generated-sources/HomeKit/HMHomeManager.g.cs
+++ b/new/dotnet/ios/generated-sources/HomeKit/HMHomeManager.g.cs
@@ -86,7 +86,7 @@ namespace HomeKit {
[SupportedOSPlatform ("ios8.0.0")]
[SupportedOSPlatform ("maccatalyst14.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void AddHome (string homeName, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V103))]global::System.Action<HMHome, NSError> completion)
+ public unsafe virtual void AddHome (string homeName, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V104))]global::System.Action<HMHome, NSError> completion)
{
if (homeName is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (homeName));
@@ -97,7 +97,7 @@ namespace HomeKit {
BlockLiteral block_completion;
block_completion = new BlockLiteral ();
block_ptr_completion = &block_completion;
- block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V103.Handler, completion);
+ block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V104.Handler, completion);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("addHomeWithName:completionHandler:"), nshomeName, (IntPtr) block_ptr_completion);
} else {
diff --git a/old/dotnet/ios/generated-sources/IdentityLookup/ILMessageFilterExtensionContext.g.cs b/new/dotnet/ios/generated-sources/IdentityLookup/ILMessageFilterExtensionContext.g.cs
index fc30b7d..7e39403 100644
--- a/old/dotnet/ios/generated-sources/IdentityLookup/ILMessageFilterExtensionContext.g.cs
+++ b/new/dotnet/ios/generated-sources/IdentityLookup/ILMessageFilterExtensionContext.g.cs
@@ -82,7 +82,7 @@ namespace IdentityLookup {
[SupportedOSPlatform ("ios11.0.0")]
[SupportedOSPlatform ("maccatalyst11.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void DeferQueryRequestToNetwork ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V104))]global::System.Action<ILNetworkResponse, NSError> completion)
+ public unsafe virtual void DeferQueryRequestToNetwork ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V105))]global::System.Action<ILNetworkResponse, NSError> completion)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -93,7 +93,7 @@ namespace IdentityLookup {
BlockLiteral block_completion;
block_completion = new BlockLiteral ();
block_ptr_completion = &block_completion;
- block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V104.Handler, completion);
+ block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V105.Handler, completion);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("deferQueryRequestToNetworkWithCompletion:"), (IntPtr) block_ptr_completion);
} else {
diff --git a/old/dotnet/ios/generated-sources/Intents/INVoiceShortcutCenter.g.cs b/new/dotnet/ios/generated-sources/Intents/INVoiceShortcutCenter.g.cs
index 16c7b25..7e8b4b5 100644
--- a/old/dotnet/ios/generated-sources/Intents/INVoiceShortcutCenter.g.cs
+++ b/new/dotnet/ios/generated-sources/Intents/INVoiceShortcutCenter.g.cs
@@ -124,7 +124,7 @@ namespace Intents {
[SupportedOSPlatform ("ios12.0.0")]
[SupportedOSPlatform ("maccatalyst12.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void GetVoiceShortcut (NSUuid identifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V105))]global::System.Action<INVoiceShortcut, NSError> completionHandler)
+ public unsafe virtual void GetVoiceShortcut (NSUuid identifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V106))]global::System.Action<INVoiceShortcut, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -136,7 +136,7 @@ namespace Intents {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V105.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V106.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("getVoiceShortcutWithIdentifier:completion:"), identifier__handle__, (IntPtr) block_ptr_completionHandler);
} else {
diff --git a/old/dotnet/ios/generated-sources/LinkPresentation/LPMetadataProvider.g.cs b/new/dotnet/ios/generated-sources/LinkPresentation/LPMetadataProvider.g.cs
index 7ccf19a..162792e 100644
--- a/old/dotnet/ios/generated-sources/LinkPresentation/LPMetadataProvider.g.cs
+++ b/new/dotnet/ios/generated-sources/LinkPresentation/LPMetadataProvider.g.cs
@@ -116,7 +116,7 @@ namespace LinkPresentation {
[SupportedOSPlatform ("ios13.0.0")]
[SupportedOSPlatform ("maccatalyst13.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void StartFetchingMetadata (NSUrl url, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V106))]global::System.Action<LPLinkMetadata, NSError> completionHandler)
+ public unsafe virtual void StartFetchingMetadata (NSUrl url, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V107))]global::System.Action<LPLinkMetadata, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -128,7 +128,7 @@ namespace LinkPresentation {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V106.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V107.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("startFetchingMetadataForURL:completionHandler:"), url__handle__, (IntPtr) block_ptr_completionHandler);
} else {
@@ -159,7 +159,7 @@ namespace LinkPresentation {
[SupportedOSPlatform ("maccatalyst15.0")]
[UnsupportedOSPlatform ("tvos")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void StartFetchingMetadata (NSUrlRequest request, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V106))]global::System.Action<LPLinkMetadata, NSError> completionHandler)
+ public unsafe virtual void StartFetchingMetadata (NSUrlRequest request, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V107))]global::System.Action<LPLinkMetadata, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -171,7 +171,7 @@ namespace LinkPresentation {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V106.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V107.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("startFetchingMetadataForRequest:completionHandler:"), request__handle__, (IntPtr) block_ptr_completionHandler);
} else {
diff --git a/old/dotnet/ios/generated-sources/MLCompute/MLCTensorData.g.cs b/new/dotnet/ios/generated-sources/MLCompute/MLCTensorData.g.cs
index 28e2322..c7ce345 100644
--- a/old/dotnet/ios/generated-sources/MLCompute/MLCTensorData.g.cs
+++ b/new/dotnet/ios/generated-sources/MLCompute/MLCTensorData.g.cs
@@ -96,7 +96,7 @@ namespace MLCompute {
[SupportedOSPlatform ("ios14.5")]
[SupportedOSPlatform ("maccatalyst14.5.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static MLCTensorData CreateFromBytesNoCopy (nint bytes, nuint length, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V69))]global::System.Action<nint, nuint> deallocator)
+ public unsafe static MLCTensorData CreateFromBytesNoCopy (nint bytes, nuint length, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V70))]global::System.Action<nint, nuint> deallocator)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -107,7 +107,7 @@ namespace MLCompute {
BlockLiteral block_deallocator;
block_deallocator = new BlockLiteral ();
block_ptr_deallocator = &block_deallocator;
- block_deallocator.SetupBlockUnsafe (Trampolines.SDActionArity2V69.Handler, deallocator);
+ block_deallocator.SetupBlockUnsafe (Trampolines.SDActionArity2V70.Handler, deallocator);
MLCTensorData? ret;
ret = Runtime.GetNSObject<MLCTensorData> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend_IntPtr_UIntPtr_NativeHandle (class_ptr, Selector.GetHandle ("dataWithBytesNoCopy:length:deallocator:"), bytes, length, (IntPtr) block_ptr_deallocator))!;
block_ptr_deallocator->CleanupBlock ();
diff --git a/old/dotnet/ios/generated-sources/MapKit/MKMapItem.g.cs b/new/dotnet/ios/generated-sources/MapKit/MKMapItem.g.cs
index 43a6b55..d84648e 100644
--- a/old/dotnet/ios/generated-sources/MapKit/MKMapItem.g.cs
+++ b/new/dotnet/ios/generated-sources/MapKit/MKMapItem.g.cs
@@ -185,7 +185,7 @@ namespace MapKit {
[SupportedOSPlatform ("ios11.0.0")]
[SupportedOSPlatform ("maccatalyst11.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual NSProgress? LoadData (string typeIdentifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V18))]global::System.Action<NSData, NSError> completionHandler)
+ public unsafe virtual NSProgress? LoadData (string typeIdentifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V19))]global::System.Action<NSData, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -200,7 +200,7 @@ namespace MapKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V18.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V19.Handler, completionHandler);
NSProgress? ret;
if (IsDirectBinding) {
ret = Runtime.GetNSObject<NSProgress> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("loadDataWithTypeIdentifier:forItemProviderCompletionHandler:"), nstypeIdentifier, (IntPtr) block_ptr_completionHandler))!;
diff --git a/old/dotnet/ios/generated-sources/MediaPlayer/MPMediaLibrary.g.cs b/new/dotnet/ios/generated-sources/MediaPlayer/MPMediaLibrary.g.cs
index 82185ac..0b50313 100644
--- a/old/dotnet/ios/generated-sources/MediaPlayer/MPMediaLibrary.g.cs
+++ b/new/dotnet/ios/generated-sources/MediaPlayer/MPMediaLibrary.g.cs
@@ -101,7 +101,7 @@ namespace MediaPlayer {
[UnsupportedOSPlatform ("tvos")]
[SupportedOSPlatform ("maccatalyst9.3.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void AddItem (string productID, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V107))]global::System.Action<MPMediaEntity[], NSError>? completionHandler)
+ public unsafe virtual void AddItem (string productID, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V108))]global::System.Action<MPMediaEntity[], NSError>? completionHandler)
{
if (productID is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (productID));
@@ -113,7 +113,7 @@ namespace MediaPlayer {
} else {
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V107.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V108.Handler, completionHandler);
}
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("addItemWithProductID:completionHandler:"), nsproductID, (IntPtr) block_ptr_completionHandler);
@@ -189,7 +189,7 @@ namespace MediaPlayer {
[UnsupportedOSPlatform ("tvos")]
[SupportedOSPlatform ("maccatalyst9.3.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void GetPlaylist (NSUuid uuid, MPMediaPlaylistCreationMetadata? creationMetadata, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V108))]global::System.Action<MPMediaPlaylist, NSError> completionHandler)
+ public unsafe virtual void GetPlaylist (NSUuid uuid, MPMediaPlaylistCreationMetadata? creationMetadata, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V109))]global::System.Action<MPMediaPlaylist, NSError> completionHandler)
{
var uuid__handle__ = uuid!.GetNonNullHandle (nameof (uuid));
var creationMetadata__handle__ = creationMetadata.GetHandle ();
@@ -199,7 +199,7 @@ namespace MediaPlayer {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V108.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V109.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("getPlaylistWithUUID:creationMetadata:completionHandler:"), uuid__handle__, creationMetadata__handle__, (IntPtr) block_ptr_completionHandler);
} else {
diff --git a/old/dotnet/ios/generated-sources/MediaPlayer/MPMusicPlayerApplicationController.g.cs b/new/dotnet/ios/generated-sources/MediaPlayer/MPMusicPlayerApplicationController.g.cs
index c484c10..01526e0 100644
--- a/old/dotnet/ios/generated-sources/MediaPlayer/MPMusicPlayerApplicationController.g.cs
+++ b/new/dotnet/ios/generated-sources/MediaPlayer/MPMusicPlayerApplicationController.g.cs
@@ -88,7 +88,7 @@ namespace MediaPlayer {
[SupportedOSPlatform ("tvos14.0.0")]
[SupportedOSPlatform ("maccatalyst10.3.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void Perform ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity1V203))]global::System.Action<MPMusicPlayerControllerMutableQueue> queueTransaction, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V109))]global::System.Action<MPMusicPlayerControllerQueue, NSError> completionHandler)
+ public unsafe virtual void Perform ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity1V203))]global::System.Action<MPMusicPlayerControllerMutableQueue> queueTransaction, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V110))]global::System.Action<MPMusicPlayerControllerQueue, NSError> completionHandler)
{
if (queueTransaction is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (queueTransaction));
@@ -103,7 +103,7 @@ namespace MediaPlayer {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V109.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V110.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("performQueueTransaction:completionHandler:"), (IntPtr) block_ptr_queueTransaction, (IntPtr) block_ptr_completionHandler);
} else {
diff --git a/old/dotnet/ios/generated-sources/MediaPlayer/MPPlayableContentDataSource.g.cs b/new/dotnet/ios/generated-sources/MediaPlayer/MPPlayableContentDataSource.g.cs
index 696e30b..e63cf34 100644
--- a/old/dotnet/ios/generated-sources/MediaPlayer/MPPlayableContentDataSource.g.cs
+++ b/new/dotnet/ios/generated-sources/MediaPlayer/MPPlayableContentDataSource.g.cs
@@ -58,7 +58,7 @@ namespace MediaPlayer {
[ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "BeginLoadingChildItems", Selector = "beginLoadingChildItemsAtIndexPath:completionHandler:", ParameterType = new Type [] { typeof (NSIndexPath), typeof (global::System.Action<NSError>) }, ParameterByRef = new bool [] { false, false }, ParameterBlockProxy = new Type? [] { null, typeof (ObjCRuntime.Trampolines.NIDActionArity1V0) })]
[ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "ChildItemsDisplayPlaybackProgress", Selector = "childItemsDisplayPlaybackProgressAtIndexPath:", ReturnType = typeof (bool), ParameterType = new Type [] { typeof (NSIndexPath) }, ParameterByRef = new bool [] { false })]
[ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "NumberOfChildItems", Selector = "numberOfChildItemsAtIndexPath:", ReturnType = typeof (IntPtr), ParameterType = new Type [] { typeof (NSIndexPath) }, ParameterByRef = new bool [] { false })]
- [ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "GetContentItem", Selector = "contentItemForIdentifier:completionHandler:", ParameterType = new Type [] { typeof (string), typeof (global::System.Action<global::MediaPlayer.MPContentItem, NSError>) }, ParameterByRef = new bool [] { false, false }, ParameterBlockProxy = new Type? [] { null, typeof (ObjCRuntime.Trampolines.NIDActionArity2V110) })]
+ [ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "GetContentItem", Selector = "contentItemForIdentifier:completionHandler:", ParameterType = new Type [] { typeof (string), typeof (global::System.Action<global::MediaPlayer.MPContentItem, NSError>) }, ParameterByRef = new bool [] { false, false }, ParameterBlockProxy = new Type? [] { null, typeof (ObjCRuntime.Trampolines.NIDActionArity2V111) })]
public partial interface IMPPlayableContentDataSource : INativeObject, IDisposable
{
[UnsupportedOSPlatform ("macos")]
@@ -120,7 +120,7 @@ namespace MediaPlayer {
#endif
[UnsupportedOSPlatform ("maccatalyst14.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static void GetContentItem (this IMPPlayableContentDataSource This, string identifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V110))]global::System.Action<MPContentItem, NSError> completionHandler)
+ public unsafe static void GetContentItem (this IMPPlayableContentDataSource This, string identifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V111))]global::System.Action<MPContentItem, NSError> completionHandler)
{
if (identifier is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (identifier));
@@ -131,7 +131,7 @@ namespace MediaPlayer {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V110.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V111.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (This.Handle, Selector.GetHandle ("contentItemForIdentifier:completionHandler:"), nsidentifier, (IntPtr) block_ptr_completionHandler);
CFString.ReleaseNative (nsidentifier);
block_ptr_completionHandler->CleanupBlock ();
@@ -259,7 +259,7 @@ namespace MediaPlayer {
#endif
[UnsupportedOSPlatform ("maccatalyst14.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void GetContentItem (string identifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V110))]global::System.Action<MPContentItem, NSError> completionHandler)
+ public unsafe virtual void GetContentItem (string identifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V111))]global::System.Action<MPContentItem, NSError> completionHandler)
{
throw new You_Should_Not_Call_base_In_This_Method ();
}
diff --git a/old/dotnet/ios/generated-sources/Metal/MTLDevice.g.cs b/new/dotnet/ios/generated-sources/Metal/MTLDevice.g.cs
index d9195a4..eefb1d1 100644
--- a/old/dotnet/ios/generated-sources/Metal/MTLDevice.g.cs
+++ b/new/dotnet/ios/generated-sources/Metal/MTLDevice.g.cs
@@ -72,14 +72,14 @@ namespace Metal {
[ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "CreateLibrary", Selector = "newLibraryWithFile:error:", ReturnType = typeof (IMTLLibrary), ParameterType = new Type [] { typeof (string), typeof (NSError) }, ParameterByRef = new bool [] { false, true })]
[ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "CreateLibrary", Selector = "newLibraryWithData:error:", ReturnType = typeof (IMTLLibrary), ParameterType = new Type [] { typeof (DispatchData), typeof (NSError) }, ParameterByRef = new bool [] { false, true })]
[ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "CreateLibrary", Selector = "newLibraryWithSource:options:error:", ReturnType = typeof (IMTLLibrary), ParameterType = new Type [] { typeof (string), typeof (MTLCompileOptions), typeof (NSError) }, ParameterByRef = new bool [] { false, false, true })]
- [ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "CreateLibrary", Selector = "newLibraryWithSource:options:completionHandler:", ParameterType = new Type [] { typeof (string), typeof (MTLCompileOptions), typeof (global::System.Action<global::Metal.IMTLLibrary, NSError>) }, ParameterByRef = new bool [] { false, false, false }, ParameterBlockProxy = new Type? [] { null, null, typeof (ObjCRuntime.Trampolines.NIDActionArity2V111) })]
+ [ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "CreateLibrary", Selector = "newLibraryWithSource:options:completionHandler:", ParameterType = new Type [] { typeof (string), typeof (MTLCompileOptions), typeof (global::System.Action<global::Metal.IMTLLibrary, NSError>) }, ParameterByRef = new bool [] { false, false, false }, ParameterBlockProxy = new Type? [] { null, null, typeof (ObjCRuntime.Trampolines.NIDActionArity2V112) })]
[ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "CreateDefaultLibrary", Selector = "newDefaultLibraryWithBundle:error:", ReturnType = typeof (IMTLLibrary), ParameterType = new Type [] { typeof (NSBundle), typeof (NSError) }, ParameterByRef = new bool [] { false, true })]
[ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "CreateRenderPipelineState", Selector = "newRenderPipelineStateWithDescriptor:error:", ReturnType = typeof (IMTLRenderPipelineState), ParameterType = new Type [] { typeof (MTLRenderPipelineDescriptor), typeof (NSError) }, ParameterByRef = new bool [] { false, true })]
- [ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "CreateRenderPipelineState", Selector = "newRenderPipelineStateWithDescriptor:completionHandler:", ParameterType = new Type [] { typeof (MTLRenderPipelineDescriptor), typeof (global::System.Action<global::Metal.IMTLRenderPipelineState, NSError>) }, ParameterByRef = new bool [] { false, false }, ParameterBlockProxy = new Type? [] { null, typeof (ObjCRuntime.Trampolines.NIDActionArity2V112) })]
+ [ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "CreateRenderPipelineState", Selector = "newRenderPipelineStateWithDescriptor:completionHandler:", ParameterType = new Type [] { typeof (MTLRenderPipelineDescriptor), typeof (global::System.Action<global::Metal.IMTLRenderPipelineState, NSError>) }, ParameterByRef = new bool [] { false, false }, ParameterBlockProxy = new Type? [] { null, typeof (ObjCRuntime.Trampolines.NIDActionArity2V113) })]
[ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "CreateRenderPipelineState", Selector = "newRenderPipelineStateWithDescriptor:options:reflection:error:", ReturnType = typeof (IMTLRenderPipelineState), ParameterType = new Type [] { typeof (MTLRenderPipelineDescriptor), typeof (MTLPipelineOption), typeof (MTLRenderPipelineReflection), typeof (NSError) }, ParameterByRef = new bool [] { false, false, true, true })]
[ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "CreateRenderPipelineState", Selector = "newRenderPipelineStateWithDescriptor:options:completionHandler:", ParameterType = new Type [] { typeof (MTLRenderPipelineDescriptor), typeof (MTLPipelineOption), typeof (global::System.Action<global::Metal.IMTLRenderPipelineState, global::Metal.MTLRenderPipelineReflection, NSError>) }, ParameterByRef = new bool [] { false, false, false }, ParameterBlockProxy = new Type? [] { null, null, typeof (ObjCRuntime.Trampolines.NIDActionArity3V7) })]
[ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "CreateComputePipelineState", Selector = "newComputePipelineStateWithFunction:options:reflection:error:", ReturnType = typeof (IMTLComputePipelineState), ParameterType = new Type [] { typeof (IMTLFunction), typeof (MTLPipelineOption), typeof (MTLComputePipelineReflection), typeof (NSError) }, ParameterByRef = new bool [] { false, false, true, true })]
- [ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "CreateComputePipelineState", Selector = "newComputePipelineStateWithFunction:completionHandler:", ParameterType = new Type [] { typeof (IMTLFunction), typeof (global::System.Action<global::Metal.IMTLComputePipelineState, NSError>) }, ParameterByRef = new bool [] { false, false }, ParameterBlockProxy = new Type? [] { null, typeof (ObjCRuntime.Trampolines.NIDActionArity2V113) })]
+ [ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "CreateComputePipelineState", Selector = "newComputePipelineStateWithFunction:completionHandler:", ParameterType = new Type [] { typeof (IMTLFunction), typeof (global::System.Action<global::Metal.IMTLComputePipelineState, NSError>) }, ParameterByRef = new bool [] { false, false }, ParameterBlockProxy = new Type? [] { null, typeof (ObjCRuntime.Trampolines.NIDActionArity2V114) })]
[ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "CreateComputePipelineState", Selector = "newComputePipelineStateWithFunction:error:", ReturnType = typeof (IMTLComputePipelineState), ParameterType = new Type [] { typeof (IMTLFunction), typeof (NSError) }, ParameterByRef = new bool [] { false, true })]
[ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "CreateComputePipelineState", Selector = "newComputePipelineStateWithFunction:options:completionHandler:", ParameterType = new Type [] { typeof (IMTLFunction), typeof (MTLPipelineOption), typeof (global::System.Action<global::Metal.IMTLComputePipelineState, global::Metal.MTLComputePipelineReflection, NSError>) }, ParameterByRef = new bool [] { false, false, false }, ParameterBlockProxy = new Type? [] { null, null, typeof (ObjCRuntime.Trampolines.NIDActionArity3V8) })]
[ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "CreateComputePipelineState", Selector = "newComputePipelineStateWithDescriptor:options:reflection:error:", ReturnType = typeof (IMTLComputePipelineState), ParameterType = new Type [] { typeof (MTLComputePipelineDescriptor), typeof (MTLPipelineOption), typeof (MTLComputePipelineReflection), typeof (NSError) }, ParameterByRef = new bool [] { false, false, true, true })]
@@ -115,7 +115,7 @@ namespace Metal {
[ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "CreateAccelerationStructure", Selector = "newAccelerationStructureWithSize:", ReturnType = typeof (IMTLAccelerationStructure), ParameterType = new Type [] { typeof (UIntPtr) }, ParameterByRef = new bool [] { false })]
[ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "CreateAccelerationStructure", Selector = "newAccelerationStructureWithDescriptor:", ReturnType = typeof (IMTLAccelerationStructure), ParameterType = new Type [] { typeof (MTLAccelerationStructureDescriptor) }, ParameterByRef = new bool [] { false })]
[ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "CreateLibrary", Selector = "newLibraryWithStitchedDescriptor:error:", ReturnType = typeof (IMTLLibrary), ParameterType = new Type [] { typeof (MTLStitchedLibraryDescriptor), typeof (NSError) }, ParameterByRef = new bool [] { false, true })]
- [ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "CreateLibrary", Selector = "newLibraryWithStitchedDescriptor:completionHandler:", ParameterType = new Type [] { typeof (MTLStitchedLibraryDescriptor), typeof (global::System.Action<global::Metal.IMTLLibrary, NSError>) }, ParameterByRef = new bool [] { false, false }, ParameterBlockProxy = new Type? [] { null, typeof (ObjCRuntime.Trampolines.NIDActionArity2V111) })]
+ [ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "CreateLibrary", Selector = "newLibraryWithStitchedDescriptor:completionHandler:", ParameterType = new Type [] { typeof (MTLStitchedLibraryDescriptor), typeof (global::System.Action<global::Metal.IMTLLibrary, NSError>) }, ParameterByRef = new bool [] { false, false }, ParameterBlockProxy = new Type? [] { null, typeof (ObjCRuntime.Trampolines.NIDActionArity2V112) })]
[ProtocolMember (IsRequired = true, IsProperty = true, IsStatic = false, Name = "Name", Selector = "name", PropertyType = typeof (string), GetterSelector = "name", ArgumentSemantic = ArgumentSemantic.None)]
[ProtocolMember (IsRequired = true, IsProperty = true, IsStatic = false, Name = "MaxThreadsPerThreadgroup", Selector = "maxThreadsPerThreadgroup", PropertyType = typeof (MTLSize), GetterSelector = "maxThreadsPerThreadgroup", ArgumentSemantic = ArgumentSemantic.None)]
[ProtocolMember (IsRequired = true, IsProperty = true, IsStatic = false, Name = "ReadWriteTextureSupport", Selector = "readWriteTextureSupport", PropertyType = typeof (MTLReadWriteTextureTier), GetterSelector = "readWriteTextureSupport", ArgumentSemantic = ArgumentSemantic.None)]
@@ -312,7 +312,7 @@ namespace Metal {
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
[Export ("newLibraryWithSource:options:completionHandler:")]
[Preserve (Conditional = true)]
- unsafe void CreateLibrary (string source, MTLCompileOptions options, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V111))]global::System.Action<IMTLLibrary, NSError> completionHandler);
+ unsafe void CreateLibrary (string source, MTLCompileOptions options, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V112))]global::System.Action<IMTLLibrary, NSError> completionHandler);
[return: ReleaseAttribute ()]
[SupportedOSPlatform ("ios10.0")]
[SupportedOSPlatform ("tvos10.0")]
@@ -338,7 +338,7 @@ namespace Metal {
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
[Export ("newRenderPipelineStateWithDescriptor:completionHandler:")]
[Preserve (Conditional = true)]
- unsafe void CreateRenderPipelineState (MTLRenderPipelineDescriptor descriptor, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V112))]global::System.Action<IMTLRenderPipelineState, NSError> completionHandler);
+ unsafe void CreateRenderPipelineState (MTLRenderPipelineDescriptor descriptor, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V113))]global::System.Action<IMTLRenderPipelineState, NSError> completionHandler);
[return: ReleaseAttribute ()]
[SupportedOSPlatform ("ios8.0.0")]
[SupportedOSPlatform ("macos10.11.0")]
@@ -372,7 +372,7 @@ namespace Metal {
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
[Export ("newComputePipelineStateWithFunction:completionHandler:")]
[Preserve (Conditional = true)]
- unsafe void CreateComputePipelineState (IMTLFunction computeFunction, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V113))]global::System.Action<IMTLComputePipelineState, NSError> completionHandler);
+ unsafe void CreateComputePipelineState (IMTLFunction computeFunction, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V114))]global::System.Action<IMTLComputePipelineState, NSError> completionHandler);
[return: ReleaseAttribute ()]
[SupportedOSPlatform ("ios8.0.0")]
[SupportedOSPlatform ("macos10.11.0")]
@@ -662,7 +662,7 @@ namespace Metal {
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
[Export ("newLibraryWithStitchedDescriptor:completionHandler:")]
[Preserve (Conditional = true)]
- unsafe void CreateLibrary (MTLStitchedLibraryDescriptor descriptor, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V111))]global::System.Action<IMTLLibrary, NSError> completionHandler);
+ unsafe void CreateLibrary (MTLStitchedLibraryDescriptor descriptor, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V112))]global::System.Action<IMTLLibrary, NSError> completionHandler);
[Preserve (Conditional = true)]
string Name {
[Export ("name")]
@@ -1120,7 +1120,7 @@ namespace Metal {
}
[Export ("newLibraryWithSource:options:completionHandler:")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe void CreateLibrary (string source, MTLCompileOptions options, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V111))]global::System.Action<IMTLLibrary, NSError> completionHandler)
+ public unsafe void CreateLibrary (string source, MTLCompileOptions options, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V112))]global::System.Action<IMTLLibrary, NSError> completionHandler)
{
if (source is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (source));
@@ -1132,7 +1132,7 @@ namespace Metal {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V111.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V112.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("newLibraryWithSource:options:completionHandler:"), nssource, options__handle__, (IntPtr) block_ptr_completionHandler);
CFString.ReleaseNative (nssource);
block_ptr_completionHandler->CleanupBlock ();
@@ -1167,7 +1167,7 @@ namespace Metal {
}
[Export ("newRenderPipelineStateWithDescriptor:completionHandler:")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe void CreateRenderPipelineState (MTLRenderPipelineDescriptor descriptor, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V112))]global::System.Action<IMTLRenderPipelineState, NSError> completionHandler)
+ public unsafe void CreateRenderPipelineState (MTLRenderPipelineDescriptor descriptor, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V113))]global::System.Action<IMTLRenderPipelineState, NSError> completionHandler)
{
var descriptor__handle__ = descriptor!.GetNonNullHandle (nameof (descriptor));
if (completionHandler is null)
@@ -1176,7 +1176,7 @@ namespace Metal {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V112.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V113.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("newRenderPipelineStateWithDescriptor:completionHandler:"), descriptor__handle__, (IntPtr) block_ptr_completionHandler);
block_ptr_completionHandler->CleanupBlock ();
}
@@ -1229,7 +1229,7 @@ namespace Metal {
}
[Export ("newComputePipelineStateWithFunction:completionHandler:")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe void CreateComputePipelineState (IMTLFunction computeFunction, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V113))]global::System.Action<IMTLComputePipelineState, NSError> completionHandler)
+ public unsafe void CreateComputePipelineState (IMTLFunction computeFunction, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V114))]global::System.Action<IMTLComputePipelineState, NSError> completionHandler)
{
var computeFunction__handle__ = computeFunction!.GetNonNullHandle (nameof (computeFunction));
if (completionHandler is null)
@@ -1238,7 +1238,7 @@ namespace Metal {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V113.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V114.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("newComputePipelineStateWithFunction:completionHandler:"), computeFunction__handle__, (IntPtr) block_ptr_completionHandler);
block_ptr_completionHandler->CleanupBlock ();
}
@@ -1723,7 +1723,7 @@ namespace Metal {
}
[Export ("newLibraryWithStitchedDescriptor:completionHandler:")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe void CreateLibrary (MTLStitchedLibraryDescriptor descriptor, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V111))]global::System.Action<IMTLLibrary, NSError> completionHandler)
+ public unsafe void CreateLibrary (MTLStitchedLibraryDescriptor descriptor, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V112))]global::System.Action<IMTLLibrary, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -1735,7 +1735,7 @@ namespace Metal {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V111.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V112.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("newLibraryWithStitchedDescriptor:completionHandler:"), descriptor__handle__, (IntPtr) block_ptr_completionHandler);
block_ptr_completionHandler->CleanupBlock ();
#endif
diff --git a/old/dotnet/ios/generated-sources/Metal/MTLLibrary.g.cs b/new/dotnet/ios/generated-sources/Metal/MTLLibrary.g.cs
index 709b9fe..ee67031 100644
--- a/old/dotnet/ios/generated-sources/Metal/MTLLibrary.g.cs
+++ b/new/dotnet/ios/generated-sources/Metal/MTLLibrary.g.cs
@@ -56,10 +56,10 @@ namespace Metal {
[Protocol (Name = "MTLLibrary", WrapperType = typeof (MTLLibraryWrapper))]
[ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "CreateFunction", Selector = "newFunctionWithName:", ReturnType = typeof (IMTLFunction), ParameterType = new Type [] { typeof (string) }, ParameterByRef = new bool [] { false })]
[ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "CreateFunction", Selector = "newFunctionWithName:constantValues:error:", ReturnType = typeof (IMTLFunction), ParameterType = new Type [] { typeof (string), typeof (MTLFunctionConstantValues), typeof (NSError) }, ParameterByRef = new bool [] { false, false, true })]
- [ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "CreateFunction", Selector = "newFunctionWithName:constantValues:completionHandler:", ParameterType = new Type [] { typeof (string), typeof (MTLFunctionConstantValues), typeof (global::System.Action<global::Metal.IMTLFunction, NSError>) }, ParameterByRef = new bool [] { false, false, false }, ParameterBlockProxy = new Type? [] { null, null, typeof (ObjCRuntime.Trampolines.NIDActionArity2V114) })]
- [ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "CreateFunction", Selector = "newFunctionWithDescriptor:completionHandler:", ParameterType = new Type [] { typeof (MTLFunctionDescriptor), typeof (global::System.Action<global::Metal.IMTLFunction, NSError>) }, ParameterByRef = new bool [] { false, false }, ParameterBlockProxy = new Type? [] { null, typeof (ObjCRuntime.Trampolines.NIDActionArity2V114) })]
+ [ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "CreateFunction", Selector = "newFunctionWithName:constantValues:completionHandler:", ParameterType = new Type [] { typeof (string), typeof (MTLFunctionConstantValues), typeof (global::System.Action<global::Metal.IMTLFunction, NSError>) }, ParameterByRef = new bool [] { false, false, false }, ParameterBlockProxy = new Type? [] { null, null, typeof (ObjCRuntime.Trampolines.NIDActionArity2V115) })]
+ [ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "CreateFunction", Selector = "newFunctionWithDescriptor:completionHandler:", ParameterType = new Type [] { typeof (MTLFunctionDescriptor), typeof (global::System.Action<global::Metal.IMTLFunction, NSError>) }, ParameterByRef = new bool [] { false, false }, ParameterBlockProxy = new Type? [] { null, typeof (ObjCRuntime.Trampolines.NIDActionArity2V115) })]
[ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "CreateFunction", Selector = "newFunctionWithDescriptor:error:", ReturnType = typeof (IMTLFunction), ParameterType = new Type [] { typeof (MTLFunctionDescriptor), typeof (NSError) }, ParameterByRef = new bool [] { false, true })]
- [ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "CreateIntersectionFunction", Selector = "newIntersectionFunctionWithDescriptor:completionHandler:", ParameterType = new Type [] { typeof (MTLIntersectionFunctionDescriptor), typeof (global::System.Action<global::Metal.IMTLFunction, NSError>) }, ParameterByRef = new bool [] { false, false }, ParameterBlockProxy = new Type? [] { null, typeof (ObjCRuntime.Trampolines.NIDActionArity2V114) })]
+ [ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "CreateIntersectionFunction", Selector = "newIntersectionFunctionWithDescriptor:completionHandler:", ParameterType = new Type [] { typeof (MTLIntersectionFunctionDescriptor), typeof (global::System.Action<global::Metal.IMTLFunction, NSError>) }, ParameterByRef = new bool [] { false, false }, ParameterBlockProxy = new Type? [] { null, typeof (ObjCRuntime.Trampolines.NIDActionArity2V115) })]
[ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "CreateIntersectionFunction", Selector = "newIntersectionFunctionWithDescriptor:error:", ReturnType = typeof (IMTLFunction), ParameterType = new Type [] { typeof (MTLIntersectionFunctionDescriptor), typeof (NSError) }, ParameterByRef = new bool [] { false, true })]
[ProtocolMember (IsRequired = true, IsProperty = true, IsStatic = false, Name = "Label", Selector = "label", PropertyType = typeof (string), GetterSelector = "label", SetterSelector = "setLabel:", ArgumentSemantic = ArgumentSemantic.None)]
[ProtocolMember (IsRequired = true, IsProperty = true, IsStatic = false, Name = "Device", Selector = "device", PropertyType = typeof (IMTLDevice), GetterSelector = "device", ArgumentSemantic = ArgumentSemantic.None)]
@@ -93,7 +93,7 @@ namespace Metal {
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
[Export ("newFunctionWithName:constantValues:completionHandler:")]
[Preserve (Conditional = true)]
- unsafe void CreateFunction (string name, MTLFunctionConstantValues constantValues, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V114))]global::System.Action<IMTLFunction, NSError> completionHandler);
+ unsafe void CreateFunction (string name, MTLFunctionConstantValues constantValues, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V115))]global::System.Action<IMTLFunction, NSError> completionHandler);
[SupportedOSPlatform ("macos11.0")]
[SupportedOSPlatform ("ios14.0")]
[SupportedOSPlatform ("tvos14.0")]
@@ -101,7 +101,7 @@ namespace Metal {
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
[Export ("newFunctionWithDescriptor:completionHandler:")]
[Preserve (Conditional = true)]
- unsafe void CreateFunction (MTLFunctionDescriptor descriptor, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V114))]global::System.Action<IMTLFunction, NSError> completionHandler);
+ unsafe void CreateFunction (MTLFunctionDescriptor descriptor, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V115))]global::System.Action<IMTLFunction, NSError> completionHandler);
[return: ReleaseAttribute ()]
[SupportedOSPlatform ("macos11.0")]
[SupportedOSPlatform ("ios14.0")]
@@ -118,7 +118,7 @@ namespace Metal {
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
[Export ("newIntersectionFunctionWithDescriptor:completionHandler:")]
[Preserve (Conditional = true)]
- unsafe void CreateIntersectionFunction (MTLIntersectionFunctionDescriptor descriptor, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V114))]global::System.Action<IMTLFunction, NSError> completionHandler);
+ unsafe void CreateIntersectionFunction (MTLIntersectionFunctionDescriptor descriptor, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V115))]global::System.Action<IMTLFunction, NSError> completionHandler);
[return: ReleaseAttribute ()]
[SupportedOSPlatform ("macos11.0")]
[SupportedOSPlatform ("ios14.0")]
@@ -215,7 +215,7 @@ namespace Metal {
}
[Export ("newFunctionWithName:constantValues:completionHandler:")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe void CreateFunction (string name, MTLFunctionConstantValues constantValues, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V114))]global::System.Action<IMTLFunction, NSError> completionHandler)
+ public unsafe void CreateFunction (string name, MTLFunctionConstantValues constantValues, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V115))]global::System.Action<IMTLFunction, NSError> completionHandler)
{
if (name is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (name));
@@ -227,14 +227,14 @@ namespace Metal {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V114.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V115.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("newFunctionWithName:constantValues:completionHandler:"), nsname, constantValues__handle__, (IntPtr) block_ptr_completionHandler);
CFString.ReleaseNative (nsname);
block_ptr_completionHandler->CleanupBlock ();
}
[Export ("newFunctionWithDescriptor:completionHandler:")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe void CreateFunction (MTLFunctionDescriptor descriptor, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V114))]global::System.Action<IMTLFunction, NSError> completionHandler)
+ public unsafe void CreateFunction (MTLFunctionDescriptor descriptor, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V115))]global::System.Action<IMTLFunction, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -246,7 +246,7 @@ namespace Metal {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V114.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V115.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("newFunctionWithDescriptor:completionHandler:"), descriptor__handle__, (IntPtr) block_ptr_completionHandler);
block_ptr_completionHandler->CleanupBlock ();
#endif
@@ -271,7 +271,7 @@ namespace Metal {
}
[Export ("newIntersectionFunctionWithDescriptor:completionHandler:")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe void CreateIntersectionFunction (MTLIntersectionFunctionDescriptor descriptor, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V114))]global::System.Action<IMTLFunction, NSError> completionHandler)
+ public unsafe void CreateIntersectionFunction (MTLIntersectionFunctionDescriptor descriptor, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V115))]global::System.Action<IMTLFunction, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -283,7 +283,7 @@ namespace Metal {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V114.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V115.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("newIntersectionFunctionWithDescriptor:completionHandler:"), descriptor__handle__, (IntPtr) block_ptr_completionHandler);
block_ptr_completionHandler->CleanupBlock ();
#endif
diff --git a/old/dotnet/ios/generated-sources/MetalPerformanceShaders/MPSNNGraph.g.cs b/new/dotnet/ios/generated-sources/MetalPerformanceShaders/MPSNNGraph.g.cs
index 5d00a6a..b094f67 100644
--- a/old/dotnet/ios/generated-sources/MetalPerformanceShaders/MPSNNGraph.g.cs
+++ b/new/dotnet/ios/generated-sources/MetalPerformanceShaders/MPSNNGraph.g.cs
@@ -365,7 +365,7 @@ namespace MetalPerformanceShaders {
[SupportedOSPlatform ("ios11.0.0")]
[SupportedOSPlatform ("maccatalyst11.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual MPSImage Execute (MPSImage[] sourceImages, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V115))]global::System.Action<MPSImage, NSError> handler)
+ public unsafe virtual MPSImage Execute (MPSImage[] sourceImages, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V116))]global::System.Action<MPSImage, NSError> handler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -379,7 +379,7 @@ namespace MetalPerformanceShaders {
BlockLiteral block_handler;
block_handler = new BlockLiteral ();
block_ptr_handler = &block_handler;
- block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V115.Handler, handler);
+ block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V116.Handler, handler);
MPSImage? ret;
if (IsDirectBinding) {
ret = Runtime.GetNSObject<MPSImage> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("executeAsyncWithSourceImages:completionHandler:"), nsa_sourceImages.Handle, (IntPtr) block_ptr_handler))!;
diff --git a/old/dotnet/ios/generated-sources/NaturalLanguage/NLTagger.g.cs b/new/dotnet/ios/generated-sources/NaturalLanguage/NLTagger.g.cs
index 855c2d7..907a283 100644
--- a/old/dotnet/ios/generated-sources/NaturalLanguage/NLTagger.g.cs
+++ b/new/dotnet/ios/generated-sources/NaturalLanguage/NLTagger.g.cs
@@ -448,7 +448,7 @@ namespace NaturalLanguage {
[SupportedOSPlatform ("ios13.0")]
[SupportedOSPlatform ("maccatalyst13.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static void RequestAssets (NSString language, NSString tagScheme, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V116))]global::System.Action<NLTaggerAssetsResult, NSError> completionHandler)
+ public unsafe static void RequestAssets (NSString language, NSString tagScheme, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V117))]global::System.Action<NLTaggerAssetsResult, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -461,7 +461,7 @@ namespace NaturalLanguage {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V116.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V117.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle_NativeHandle (class_ptr, Selector.GetHandle ("requestAssetsForLanguage:tagScheme:completionHandler:"), language__handle__, tagScheme__handle__, (IntPtr) block_ptr_completionHandler);
block_ptr_completionHandler->CleanupBlock ();
#endif
@@ -488,7 +488,7 @@ namespace NaturalLanguage {
[SupportedOSPlatform ("ios13.0")]
[SupportedOSPlatform ("maccatalyst13.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static void RequestAssets (NLLanguage language, NLTagScheme tagScheme, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V116))]global::System.Action<NLTaggerAssetsResult, NSError> completionHandler)
+ public unsafe static void RequestAssets (NLLanguage language, NLTagScheme tagScheme, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V117))]global::System.Action<NLTaggerAssetsResult, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
diff --git a/old/dotnet/ios/generated-sources/NetworkExtension/NEAppProxyProviderManager.g.cs b/new/dotnet/ios/generated-sources/NetworkExtension/NEAppProxyProviderManager.g.cs
index ab579b8..2ccb22d 100644
--- a/old/dotnet/ios/generated-sources/NetworkExtension/NEAppProxyProviderManager.g.cs
+++ b/new/dotnet/ios/generated-sources/NetworkExtension/NEAppProxyProviderManager.g.cs
@@ -74,7 +74,7 @@ namespace NetworkExtension {
[SupportedOSPlatform ("macos10.11.0")]
[SupportedOSPlatform ("maccatalyst9.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static void LoadAllFromPreferences ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V117))]global::System.Action<NSArray, NSError> completionHandler)
+ public unsafe static void LoadAllFromPreferences ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V118))]global::System.Action<NSArray, NSError> completionHandler)
{
if (completionHandler is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (completionHandler));
@@ -82,7 +82,7 @@ namespace NetworkExtension {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V117.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V118.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (class_ptr, Selector.GetHandle ("loadAllFromPreferencesWithCompletionHandler:"), (IntPtr) block_ptr_completionHandler);
block_ptr_completionHandler->CleanupBlock ();
}
diff --git a/old/dotnet/ios/generated-sources/NetworkExtension/NEAppProxyTcpFlow.g.cs b/new/dotnet/ios/generated-sources/NetworkExtension/NEAppProxyTcpFlow.g.cs
index cd6d2a7..6946337 100644
--- a/old/dotnet/ios/generated-sources/NetworkExtension/NEAppProxyTcpFlow.g.cs
+++ b/new/dotnet/ios/generated-sources/NetworkExtension/NEAppProxyTcpFlow.g.cs
@@ -74,7 +74,7 @@ namespace NetworkExtension {
[SupportedOSPlatform ("macos10.11.0")]
[SupportedOSPlatform ("maccatalyst9.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void ReadData ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V18))]global::System.Action<NSData, NSError> completionHandler)
+ public unsafe virtual void ReadData ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V19))]global::System.Action<NSData, NSError> completionHandler)
{
if (completionHandler is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (completionHandler));
@@ -82,7 +82,7 @@ namespace NetworkExtension {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V18.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V19.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("readDataWithCompletionHandler:"), (IntPtr) block_ptr_completionHandler);
} else {
diff --git a/old/dotnet/ios/generated-sources/NetworkExtension/NEAppPushManager.g.cs b/new/dotnet/ios/generated-sources/NetworkExtension/NEAppPushManager.g.cs
index 7e49537..0945c7d 100644
--- a/old/dotnet/ios/generated-sources/NetworkExtension/NEAppPushManager.g.cs
+++ b/new/dotnet/ios/generated-sources/NetworkExtension/NEAppPushManager.g.cs
@@ -98,7 +98,7 @@ namespace NetworkExtension {
[SupportedOSPlatform ("ios14.0.0")]
[SupportedOSPlatform ("maccatalyst14.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static void LoadAllFromPreferences ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V118))]global::System.Action<NEAppPushManager[], NSError> completionHandler)
+ public unsafe static void LoadAllFromPreferences ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V119))]global::System.Action<NEAppPushManager[], NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -109,7 +109,7 @@ namespace NetworkExtension {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V118.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V119.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (class_ptr, Selector.GetHandle ("loadAllFromPreferencesWithCompletionHandler:"), (IntPtr) block_ptr_completionHandler);
block_ptr_completionHandler->CleanupBlock ();
#endif
diff --git a/old/dotnet/ios/generated-sources/NetworkExtension/NEPacketTunnelFlow.g.cs b/new/dotnet/ios/generated-sources/NetworkExtension/NEPacketTunnelFlow.g.cs
index 8d7c215..872613c 100644
--- a/old/dotnet/ios/generated-sources/NetworkExtension/NEPacketTunnelFlow.g.cs
+++ b/new/dotnet/ios/generated-sources/NetworkExtension/NEPacketTunnelFlow.g.cs
@@ -119,7 +119,7 @@ namespace NetworkExtension {
[SupportedOSPlatform ("macos10.11.0")]
[SupportedOSPlatform ("maccatalyst9.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void ReadPackets ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V119))]global::System.Action<NSData[], NSNumber[]> completionHandler)
+ public unsafe virtual void ReadPackets ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V120))]global::System.Action<NSData[], NSNumber[]> completionHandler)
{
if (completionHandler is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (completionHandler));
@@ -127,7 +127,7 @@ namespace NetworkExtension {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V119.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V120.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("readPacketsWithCompletionHandler:"), (IntPtr) block_ptr_completionHandler);
} else {
diff --git a/old/dotnet/ios/generated-sources/NetworkExtension/NETunnelProviderManager.g.cs b/new/dotnet/ios/generated-sources/NetworkExtension/NETunnelProviderManager.g.cs
index 600fea4..cc30717 100644
--- a/old/dotnet/ios/generated-sources/NetworkExtension/NETunnelProviderManager.g.cs
+++ b/new/dotnet/ios/generated-sources/NetworkExtension/NETunnelProviderManager.g.cs
@@ -99,7 +99,7 @@ namespace NetworkExtension {
[SupportedOSPlatform ("macos10.11.0")]
[SupportedOSPlatform ("maccatalyst9.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static void LoadAllFromPreferences ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V117))]global::System.Action<NSArray, NSError> completionHandler)
+ public unsafe static void LoadAllFromPreferences ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V118))]global::System.Action<NSArray, NSError> completionHandler)
{
if (completionHandler is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (completionHandler));
@@ -107,7 +107,7 @@ namespace NetworkExtension {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V117.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V118.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (class_ptr, Selector.GetHandle ("loadAllFromPreferencesWithCompletionHandler:"), (IntPtr) block_ptr_completionHandler);
block_ptr_completionHandler->CleanupBlock ();
}
diff --git a/old/dotnet/ios/generated-sources/NetworkExtension/NWTcpConnection.g.cs b/new/dotnet/ios/generated-sources/NetworkExtension/NWTcpConnection.g.cs
index 13cea8b..cbe725e 100644
--- a/old/dotnet/ios/generated-sources/NetworkExtension/NWTcpConnection.g.cs
+++ b/new/dotnet/ios/generated-sources/NetworkExtension/NWTcpConnection.g.cs
@@ -114,7 +114,7 @@ namespace NetworkExtension {
[SupportedOSPlatform ("macos10.11.0")]
[SupportedOSPlatform ("maccatalyst9.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void ReadLength (nuint length, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V18))]global::System.Action<NSData, NSError> completion)
+ public unsafe virtual void ReadLength (nuint length, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V19))]global::System.Action<NSData, NSError> completion)
{
if (completion is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (completion));
@@ -122,7 +122,7 @@ namespace NetworkExtension {
BlockLiteral block_completion;
block_completion = new BlockLiteral ();
block_ptr_completion = &block_completion;
- block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V18.Handler, completion);
+ block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V19.Handler, completion);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_UIntPtr_NativeHandle (this.Handle, Selector.GetHandle ("readLength:completionHandler:"), length, (IntPtr) block_ptr_completion);
} else {
@@ -150,7 +150,7 @@ namespace NetworkExtension {
[SupportedOSPlatform ("macos10.11.0")]
[SupportedOSPlatform ("maccatalyst9.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void ReadMinimumLength (nuint minimum, nuint maximum, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V18))]global::System.Action<NSData, NSError> completion)
+ public unsafe virtual void ReadMinimumLength (nuint minimum, nuint maximum, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V19))]global::System.Action<NSData, NSError> completion)
{
if (completion is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (completion));
@@ -158,7 +158,7 @@ namespace NetworkExtension {
BlockLiteral block_completion;
block_completion = new BlockLiteral ();
block_ptr_completion = &block_completion;
- block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V18.Handler, completion);
+ block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V19.Handler, completion);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_UIntPtr_UIntPtr_NativeHandle (this.Handle, Selector.GetHandle ("readMinimumLength:maximumLength:completionHandler:"), minimum, maximum, (IntPtr) block_ptr_completion);
} else {
diff --git a/old/dotnet/ios/generated-sources/NetworkExtension/NWTcpConnectionAuthenticationDelegate.g.cs b/new/dotnet/ios/generated-sources/NetworkExtension/NWTcpConnectionAuthenticationDelegate.g.cs
index ff346e9..4c5fbcd 100644
--- a/old/dotnet/ios/generated-sources/NetworkExtension/NWTcpConnectionAuthenticationDelegate.g.cs
+++ b/new/dotnet/ios/generated-sources/NetworkExtension/NWTcpConnectionAuthenticationDelegate.g.cs
@@ -54,7 +54,7 @@ namespace NetworkExtension {
[SupportedOSPlatform ("maccatalyst9.0.0")]
[Protocol (Name = "NWTCPConnectionAuthenticationDelegate", WrapperType = typeof (NWTcpConnectionAuthenticationDelegateWrapper))]
[ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "ShouldProvideIdentity", Selector = "shouldProvideIdentityForConnection:", ReturnType = typeof (bool), ParameterType = new Type [] { typeof (NWTcpConnection) }, ParameterByRef = new bool [] { false })]
- [ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "ProvideIdentity", Selector = "provideIdentityForConnection:completionHandler:", ParameterType = new Type [] { typeof (NWTcpConnection), typeof (global::System.Action<global::Security.SecIdentity, NSArray>) }, ParameterByRef = new bool [] { false, false }, ParameterBlockProxy = new Type? [] { null, typeof (ObjCRuntime.Trampolines.NIDActionArity2V120) })]
+ [ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "ProvideIdentity", Selector = "provideIdentityForConnection:completionHandler:", ParameterType = new Type [] { typeof (NWTcpConnection), typeof (global::System.Action<global::Security.SecIdentity, NSArray>) }, ParameterByRef = new bool [] { false, false }, ParameterBlockProxy = new Type? [] { null, typeof (ObjCRuntime.Trampolines.NIDActionArity2V121) })]
[ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "ShouldEvaluateTrust", Selector = "shouldEvaluateTrustForConnection:", ReturnType = typeof (bool), ParameterType = new Type [] { typeof (NWTcpConnection) }, ParameterByRef = new bool [] { false })]
[ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "EvaluateTrust", Selector = "evaluateTrustForConnection:peerCertificateChain:completionHandler:", ParameterType = new Type [] { typeof (NWTcpConnection), typeof (NSArray), typeof (global::System.Action<global::Security.SecTrust>) }, ParameterByRef = new bool [] { false, false, false }, ParameterBlockProxy = new Type? [] { null, null, typeof (ObjCRuntime.Trampolines.NIDActionArity1V209) })]
public partial interface INWTcpConnectionAuthenticationDelegate : INativeObject, IDisposable
@@ -74,7 +74,7 @@ namespace NetworkExtension {
[SupportedOSPlatform ("macos10.11.0")]
[SupportedOSPlatform ("maccatalyst9.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static void ProvideIdentity (this INWTcpConnectionAuthenticationDelegate This, NWTcpConnection connection, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V120))]global::System.Action<global::Security.SecIdentity, NSArray> completion)
+ public unsafe static void ProvideIdentity (this INWTcpConnectionAuthenticationDelegate This, NWTcpConnection connection, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V121))]global::System.Action<global::Security.SecIdentity, NSArray> completion)
{
var connection__handle__ = connection!.GetNonNullHandle (nameof (connection));
if (completion is null)
@@ -83,7 +83,7 @@ namespace NetworkExtension {
BlockLiteral block_completion;
block_completion = new BlockLiteral ();
block_ptr_completion = &block_completion;
- block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V120.Handler, completion);
+ block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V121.Handler, completion);
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (This.Handle, Selector.GetHandle ("provideIdentityForConnection:completionHandler:"), connection__handle__, (IntPtr) block_ptr_completion);
block_ptr_completion->CleanupBlock ();
}
@@ -180,7 +180,7 @@ namespace NetworkExtension {
[SupportedOSPlatform ("macos10.11.0")]
[SupportedOSPlatform ("maccatalyst9.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void ProvideIdentity (NWTcpConnection connection, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V120))]global::System.Action<global::Security.SecIdentity, NSArray> completion)
+ public unsafe virtual void ProvideIdentity (NWTcpConnection connection, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V121))]global::System.Action<global::Security.SecIdentity, NSArray> completion)
{
throw new You_Should_Not_Call_base_In_This_Method ();
}
diff --git a/old/dotnet/ios/generated-sources/NetworkExtension/NWUdpSession.g.cs b/new/dotnet/ios/generated-sources/NetworkExtension/NWUdpSession.g.cs
index 9efa99e..4a2e5e6 100644
--- a/old/dotnet/ios/generated-sources/NetworkExtension/NWUdpSession.g.cs
+++ b/new/dotnet/ios/generated-sources/NetworkExtension/NWUdpSession.g.cs
@@ -114,7 +114,7 @@ namespace NetworkExtension {
[SupportedOSPlatform ("macos10.11.0")]
[SupportedOSPlatform ("maccatalyst9.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void SetReadHandler ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V117))]global::System.Action<NSArray, NSError> handler, nuint maxDatagrams)
+ public unsafe virtual void SetReadHandler ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V118))]global::System.Action<NSArray, NSError> handler, nuint maxDatagrams)
{
if (handler is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (handler));
@@ -122,7 +122,7 @@ namespace NetworkExtension {
BlockLiteral block_handler;
block_handler = new BlockLiteral ();
block_ptr_handler = &block_handler;
- block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V117.Handler, handler);
+ block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V118.Handler, handler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_UIntPtr (this.Handle, Selector.GetHandle ("setReadHandler:maxDatagrams:"), (IntPtr) block_ptr_handler, maxDatagrams);
} else {
diff --git a/old/dotnet/ios/generated-sources/ObjCRuntime/Trampolines.g.cs b/new/dotnet/ios/generated-sources/ObjCRuntime/Trampolines.g.cs
index 3565b10..2671d6d 100644
--- a/old/dotnet/ios/generated-sources/ObjCRuntime/Trampolines.g.cs
+++ b/new/dotnet/ios/generated-sources/ObjCRuntime/Trampolines.g.cs
@@ -23900,7 +23900,7 @@ namespace ObjCRuntime {
}
} /* class NIDActionArity1V265 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
- [UserDelegateType (typeof (global::System.Action<global::ARKit.ARReferenceObject, NSError>))]
+ [UserDelegateType (typeof (global::System.Action<global::ARKit.ARFrame, NSError>))]
internal delegate void DActionArity2V1 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
@@ -23912,9 +23912,9 @@ namespace ObjCRuntime {
[MonoPInvokeCallback (typeof (DActionArity2V1))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
- var del = (global::System.Action<global::ARKit.ARReferenceObject, NSError>) (descriptor->Target);
+ var del = (global::System.Action<global::ARKit.ARFrame, NSError>) (descriptor->Target);
if (del != null)
- del ( Runtime.GetNSObject<ARKit.ARReferenceObject> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
+ del ( Runtime.GetNSObject<ARKit.ARFrame> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
} /* class SDActionArity2V1 */
internal sealed class NIDActionArity2V1 : TrampolineBlockBase {
@@ -23926,15 +23926,15 @@ namespace ObjCRuntime {
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static global::System.Action<global::ARKit.ARReferenceObject, NSError>? Create (IntPtr block)
+ public unsafe static global::System.Action<global::ARKit.ARFrame, NSError>? Create (IntPtr block)
{
if (block == IntPtr.Zero)
return null;
- var del = (global::System.Action<global::ARKit.ARReferenceObject, NSError>) GetExistingManagedDelegate (block);
+ var del = (global::System.Action<global::ARKit.ARFrame, NSError>) GetExistingManagedDelegate (block);
return del ?? new NIDActionArity2V1 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- unsafe void Invoke (global::ARKit.ARReferenceObject arg1, NSError arg2)
+ unsafe void Invoke (global::ARKit.ARFrame arg1, NSError arg2)
{
var arg1__handle__ = arg1.GetHandle ();
var arg2__handle__ = arg2.GetHandle ();
@@ -23942,7 +23942,7 @@ namespace ObjCRuntime {
}
} /* class NIDActionArity2V1 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
- [UserDelegateType (typeof (global::System.Action<global::ARKit.ARWorldMap, NSError>))]
+ [UserDelegateType (typeof (global::System.Action<global::ARKit.ARReferenceObject, NSError>))]
internal delegate void DActionArity2V2 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
@@ -23954,9 +23954,9 @@ namespace ObjCRuntime {
[MonoPInvokeCallback (typeof (DActionArity2V2))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
- var del = (global::System.Action<global::ARKit.ARWorldMap, NSError>) (descriptor->Target);
+ var del = (global::System.Action<global::ARKit.ARReferenceObject, NSError>) (descriptor->Target);
if (del != null)
- del ( Runtime.GetNSObject<ARKit.ARWorldMap> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
+ del ( Runtime.GetNSObject<ARKit.ARReferenceObject> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
} /* class SDActionArity2V2 */
internal sealed class NIDActionArity2V2 : TrampolineBlockBase {
@@ -23968,12 +23968,54 @@ namespace ObjCRuntime {
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public unsafe static global::System.Action<global::ARKit.ARReferenceObject, NSError>? Create (IntPtr block)
+ {
+ if (block == IntPtr.Zero)
+ return null;
+ var del = (global::System.Action<global::ARKit.ARReferenceObject, NSError>) GetExistingManagedDelegate (block);
+ return del ?? new NIDActionArity2V2 ((BlockLiteral *) block).Invoke;
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ unsafe void Invoke (global::ARKit.ARReferenceObject arg1, NSError arg2)
+ {
+ var arg1__handle__ = arg1.GetHandle ();
+ var arg2__handle__ = arg2.GetHandle ();
+ invoker (BlockPointer, arg1__handle__, arg2__handle__);
+ }
+ } /* class NIDActionArity2V2 */
+ [UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
+ [UserDelegateType (typeof (global::System.Action<global::ARKit.ARWorldMap, NSError>))]
+ internal delegate void DActionArity2V3 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ //
+ // This class bridges native block invocations that call into C#
+ //
+ static internal class SDActionArity2V3 {
+ static internal readonly DActionArity2V3 Handler = Invoke;
+ [Preserve (Conditional = true)]
+ [global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
+ [MonoPInvokeCallback (typeof (DActionArity2V3))]
+ static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
+ var descriptor = (BlockLiteral *) block;
+ var del = (global::System.Action<global::ARKit.ARWorldMap, NSError>) (descriptor->Target);
+ if (del != null)
+ del ( Runtime.GetNSObject<ARKit.ARWorldMap> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
+ }
+ } /* class SDActionArity2V3 */
+ internal sealed class NIDActionArity2V3 : TrampolineBlockBase {
+ DActionArity2V3 invoker;
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public unsafe NIDActionArity2V3 (BlockLiteral *block) : base (block)
+ {
+ invoker = block->GetDelegateForBlock<DActionArity2V3> ();
+ }
+ [Preserve (Conditional=true)]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
public unsafe static global::System.Action<global::ARKit.ARWorldMap, NSError>? Create (IntPtr block)
{
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::ARKit.ARWorldMap, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V2 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V3 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::ARKit.ARWorldMap arg1, NSError arg2)
@@ -23982,31 +24024,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V2 */
+ } /* class NIDActionArity2V3 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::AVFoundation.AVAssetTrack, NSError>))]
- internal delegate void DActionArity2V23 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V24 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V23 {
- static internal readonly DActionArity2V23 Handler = Invoke;
+ static internal class SDActionArity2V24 {
+ static internal readonly DActionArity2V24 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V23))]
+ [MonoPInvokeCallback (typeof (DActionArity2V24))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::AVFoundation.AVAssetTrack, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<AVAssetTrack> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V23 */
- internal sealed class NIDActionArity2V23 : TrampolineBlockBase {
- DActionArity2V23 invoker;
+ } /* class SDActionArity2V24 */
+ internal sealed class NIDActionArity2V24 : TrampolineBlockBase {
+ DActionArity2V24 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V23 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V24 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V23> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V24> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -24015,7 +24057,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::AVFoundation.AVAssetTrack, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V23 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V24 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::AVFoundation.AVAssetTrack arg1, NSError arg2)
@@ -24024,31 +24066,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V23 */
+ } /* class NIDActionArity2V24 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::AVFoundation.AVAssetTrackSegment, NSError>))]
- internal delegate void DActionArity2V15 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V16 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V15 {
- static internal readonly DActionArity2V15 Handler = Invoke;
+ static internal class SDActionArity2V16 {
+ static internal readonly DActionArity2V16 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V15))]
+ [MonoPInvokeCallback (typeof (DActionArity2V16))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::AVFoundation.AVAssetTrackSegment, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<AVAssetTrackSegment> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V15 */
- internal sealed class NIDActionArity2V15 : TrampolineBlockBase {
- DActionArity2V15 invoker;
+ } /* class SDActionArity2V16 */
+ internal sealed class NIDActionArity2V16 : TrampolineBlockBase {
+ DActionArity2V16 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V15 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V16 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V15> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V16> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -24057,7 +24099,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::AVFoundation.AVAssetTrackSegment, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V15 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V16 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::AVFoundation.AVAssetTrackSegment arg1, NSError arg2)
@@ -24066,31 +24108,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V15 */
+ } /* class NIDActionArity2V16 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::AVFoundation.AVAudioUnit, NSError>))]
- internal delegate void DActionArity2V16 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V17 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V16 {
- static internal readonly DActionArity2V16 Handler = Invoke;
+ static internal class SDActionArity2V17 {
+ static internal readonly DActionArity2V17 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V16))]
+ [MonoPInvokeCallback (typeof (DActionArity2V17))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::AVFoundation.AVAudioUnit, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<AVAudioUnit> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V16 */
- internal sealed class NIDActionArity2V16 : TrampolineBlockBase {
- DActionArity2V16 invoker;
+ } /* class SDActionArity2V17 */
+ internal sealed class NIDActionArity2V17 : TrampolineBlockBase {
+ DActionArity2V17 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V16 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V17 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V16> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V17> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -24099,7 +24141,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::AVFoundation.AVAudioUnit, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V16 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V17 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::AVFoundation.AVAudioUnit arg1, NSError arg2)
@@ -24108,31 +24150,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V16 */
+ } /* class NIDActionArity2V17 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::AVFoundation.AVCompositionTrack, NSError>))]
- internal delegate void DActionArity2V7 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V8 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V7 {
- static internal readonly DActionArity2V7 Handler = Invoke;
+ static internal class SDActionArity2V8 {
+ static internal readonly DActionArity2V8 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V7))]
+ [MonoPInvokeCallback (typeof (DActionArity2V8))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::AVFoundation.AVCompositionTrack, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<AVCompositionTrack> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V7 */
- internal sealed class NIDActionArity2V7 : TrampolineBlockBase {
- DActionArity2V7 invoker;
+ } /* class SDActionArity2V8 */
+ internal sealed class NIDActionArity2V8 : TrampolineBlockBase {
+ DActionArity2V8 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V7 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V8 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V7> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V8> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -24141,7 +24183,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::AVFoundation.AVCompositionTrack, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V7 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V8 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::AVFoundation.AVCompositionTrack arg1, NSError arg2)
@@ -24150,31 +24192,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V7 */
+ } /* class NIDActionArity2V8 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::AVFoundation.AVFragmentedAssetTrack, NSError>))]
- internal delegate void DActionArity2V19 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V20 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V19 {
- static internal readonly DActionArity2V19 Handler = Invoke;
+ static internal class SDActionArity2V20 {
+ static internal readonly DActionArity2V20 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V19))]
+ [MonoPInvokeCallback (typeof (DActionArity2V20))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::AVFoundation.AVFragmentedAssetTrack, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<AVFragmentedAssetTrack> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V19 */
- internal sealed class NIDActionArity2V19 : TrampolineBlockBase {
- DActionArity2V19 invoker;
+ } /* class SDActionArity2V20 */
+ internal sealed class NIDActionArity2V20 : TrampolineBlockBase {
+ DActionArity2V20 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V19 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V20 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V19> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V20> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -24183,7 +24225,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::AVFoundation.AVFragmentedAssetTrack, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V19 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V20 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::AVFoundation.AVFragmentedAssetTrack arg1, NSError arg2)
@@ -24192,31 +24234,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V19 */
+ } /* class NIDActionArity2V20 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::AVFoundation.AVMediaSelectionGroup, NSError>))]
- internal delegate void DActionArity2V5 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V6 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V5 {
- static internal readonly DActionArity2V5 Handler = Invoke;
+ static internal class SDActionArity2V6 {
+ static internal readonly DActionArity2V6 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V5))]
+ [MonoPInvokeCallback (typeof (DActionArity2V6))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::AVFoundation.AVMediaSelectionGroup, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<AVMediaSelectionGroup> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V5 */
- internal sealed class NIDActionArity2V5 : TrampolineBlockBase {
- DActionArity2V5 invoker;
+ } /* class SDActionArity2V6 */
+ internal sealed class NIDActionArity2V6 : TrampolineBlockBase {
+ DActionArity2V6 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V5 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V6 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V5> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V6> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -24225,7 +24267,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::AVFoundation.AVMediaSelectionGroup, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V5 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V6 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::AVFoundation.AVMediaSelectionGroup arg1, NSError arg2)
@@ -24234,31 +24276,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V5 */
+ } /* class NIDActionArity2V6 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::AVFoundation.AVMovieTrack, NSError>))]
- internal delegate void DActionArity2V21 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V22 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V21 {
- static internal readonly DActionArity2V21 Handler = Invoke;
+ static internal class SDActionArity2V22 {
+ static internal readonly DActionArity2V22 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V21))]
+ [MonoPInvokeCallback (typeof (DActionArity2V22))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::AVFoundation.AVMovieTrack, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<AVMovieTrack> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V21 */
- internal sealed class NIDActionArity2V21 : TrampolineBlockBase {
- DActionArity2V21 invoker;
+ } /* class SDActionArity2V22 */
+ internal sealed class NIDActionArity2V22 : TrampolineBlockBase {
+ DActionArity2V22 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V21 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V22 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V21> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V22> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -24267,7 +24309,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::AVFoundation.AVMovieTrack, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V21 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V22 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::AVFoundation.AVMovieTrack arg1, NSError arg2)
@@ -24276,31 +24318,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V21 */
+ } /* class NIDActionArity2V22 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::AVFoundation.AVMutableCompositionTrack, NSError>))]
- internal delegate void DActionArity2V17 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V18 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V17 {
- static internal readonly DActionArity2V17 Handler = Invoke;
+ static internal class SDActionArity2V18 {
+ static internal readonly DActionArity2V18 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V17))]
+ [MonoPInvokeCallback (typeof (DActionArity2V18))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::AVFoundation.AVMutableCompositionTrack, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<AVMutableCompositionTrack> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V17 */
- internal sealed class NIDActionArity2V17 : TrampolineBlockBase {
- DActionArity2V17 invoker;
+ } /* class SDActionArity2V18 */
+ internal sealed class NIDActionArity2V18 : TrampolineBlockBase {
+ DActionArity2V18 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V17 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V18 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V17> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V18> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -24309,7 +24351,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::AVFoundation.AVMutableCompositionTrack, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V17 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V18 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::AVFoundation.AVMutableCompositionTrack arg1, NSError arg2)
@@ -24318,31 +24360,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V17 */
+ } /* class NIDActionArity2V18 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::Accounts.ACAccountCredentialRenewResult, NSError>))]
- internal delegate void DActionArity2V25 (IntPtr block, IntPtr arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V26 (IntPtr block, IntPtr arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V25 {
- static internal readonly DActionArity2V25 Handler = Invoke;
+ static internal class SDActionArity2V26 {
+ static internal readonly DActionArity2V26 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V25))]
+ [MonoPInvokeCallback (typeof (DActionArity2V26))]
static unsafe void Invoke (IntPtr block, IntPtr arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::Accounts.ACAccountCredentialRenewResult, NSError>) (descriptor->Target);
if (del != null)
del ((Accounts.ACAccountCredentialRenewResult) (long) arg1, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V25 */
- internal sealed class NIDActionArity2V25 : TrampolineBlockBase {
- DActionArity2V25 invoker;
+ } /* class SDActionArity2V26 */
+ internal sealed class NIDActionArity2V26 : TrampolineBlockBase {
+ DActionArity2V26 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V25 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V26 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V25> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V26> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -24351,7 +24393,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::Accounts.ACAccountCredentialRenewResult, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V25 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V26 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::Accounts.ACAccountCredentialRenewResult arg1, NSError arg2)
@@ -24359,31 +24401,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, (IntPtr) (long) arg1, arg2__handle__);
}
- } /* class NIDActionArity2V25 */
+ } /* class NIDActionArity2V26 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::AudioUnit.AUAudioUnit, NSError>))]
- internal delegate void DActionArity2V27 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V28 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V27 {
- static internal readonly DActionArity2V27 Handler = Invoke;
+ static internal class SDActionArity2V28 {
+ static internal readonly DActionArity2V28 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V27))]
+ [MonoPInvokeCallback (typeof (DActionArity2V28))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::AudioUnit.AUAudioUnit, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<AUAudioUnit> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V27 */
- internal sealed class NIDActionArity2V27 : TrampolineBlockBase {
- DActionArity2V27 invoker;
+ } /* class SDActionArity2V28 */
+ internal sealed class NIDActionArity2V28 : TrampolineBlockBase {
+ DActionArity2V28 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V27 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V28 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V27> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V28> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -24392,7 +24434,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::AudioUnit.AUAudioUnit, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V27 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V28 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::AudioUnit.AUAudioUnit arg1, NSError arg2)
@@ -24401,31 +24443,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V27 */
+ } /* class NIDActionArity2V28 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::AuthenticationServices.ASAuthorizationAppleIdCredential, NSError>))]
- internal delegate void DActionArity2V28 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V29 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V28 {
- static internal readonly DActionArity2V28 Handler = Invoke;
+ static internal class SDActionArity2V29 {
+ static internal readonly DActionArity2V29 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V28))]
+ [MonoPInvokeCallback (typeof (DActionArity2V29))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::AuthenticationServices.ASAuthorizationAppleIdCredential, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<AuthenticationServices.ASAuthorizationAppleIdCredential> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V28 */
- internal sealed class NIDActionArity2V28 : TrampolineBlockBase {
- DActionArity2V28 invoker;
+ } /* class SDActionArity2V29 */
+ internal sealed class NIDActionArity2V29 : TrampolineBlockBase {
+ DActionArity2V29 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V28 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V29 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V28> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V29> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -24434,7 +24476,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::AuthenticationServices.ASAuthorizationAppleIdCredential, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V28 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V29 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::AuthenticationServices.ASAuthorizationAppleIdCredential arg1, NSError arg2)
@@ -24443,31 +24485,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V28 */
+ } /* class NIDActionArity2V29 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::AuthenticationServices.ASAuthorizationAppleIdProviderCredentialState, NSError>))]
- internal delegate void DActionArity2V29 (IntPtr block, IntPtr arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V30 (IntPtr block, IntPtr arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V29 {
- static internal readonly DActionArity2V29 Handler = Invoke;
+ static internal class SDActionArity2V30 {
+ static internal readonly DActionArity2V30 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V29))]
+ [MonoPInvokeCallback (typeof (DActionArity2V30))]
static unsafe void Invoke (IntPtr block, IntPtr arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::AuthenticationServices.ASAuthorizationAppleIdProviderCredentialState, NSError>) (descriptor->Target);
if (del != null)
del ((AuthenticationServices.ASAuthorizationAppleIdProviderCredentialState) (long) arg1, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V29 */
- internal sealed class NIDActionArity2V29 : TrampolineBlockBase {
- DActionArity2V29 invoker;
+ } /* class SDActionArity2V30 */
+ internal sealed class NIDActionArity2V30 : TrampolineBlockBase {
+ DActionArity2V30 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V29 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V30 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V29> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V30> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -24476,7 +24518,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::AuthenticationServices.ASAuthorizationAppleIdProviderCredentialState, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V29 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V30 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::AuthenticationServices.ASAuthorizationAppleIdProviderCredentialState arg1, NSError arg2)
@@ -24484,31 +24526,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, (IntPtr) (long) arg1, arg2__handle__);
}
- } /* class NIDActionArity2V29 */
+ } /* class NIDActionArity2V30 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::CallKit.CXCallDirectoryEnabledStatus, NSError>))]
- internal delegate void DActionArity2V30 (IntPtr block, IntPtr arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V31 (IntPtr block, IntPtr arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V30 {
- static internal readonly DActionArity2V30 Handler = Invoke;
+ static internal class SDActionArity2V31 {
+ static internal readonly DActionArity2V31 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V30))]
+ [MonoPInvokeCallback (typeof (DActionArity2V31))]
static unsafe void Invoke (IntPtr block, IntPtr arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::CallKit.CXCallDirectoryEnabledStatus, NSError>) (descriptor->Target);
if (del != null)
del ((CallKit.CXCallDirectoryEnabledStatus) (long) arg1, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V30 */
- internal sealed class NIDActionArity2V30 : TrampolineBlockBase {
- DActionArity2V30 invoker;
+ } /* class SDActionArity2V31 */
+ internal sealed class NIDActionArity2V31 : TrampolineBlockBase {
+ DActionArity2V31 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V30 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V31 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V30> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V31> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -24517,7 +24559,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::CallKit.CXCallDirectoryEnabledStatus, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V30 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V31 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::CallKit.CXCallDirectoryEnabledStatus arg1, NSError arg2)
@@ -24525,31 +24567,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, (IntPtr) (long) arg1, arg2__handle__);
}
- } /* class NIDActionArity2V30 */
+ } /* class NIDActionArity2V31 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::ClassKit.CLSActivity, NSError>))]
- internal delegate void DActionArity2V32 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V33 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V32 {
- static internal readonly DActionArity2V32 Handler = Invoke;
+ static internal class SDActionArity2V33 {
+ static internal readonly DActionArity2V33 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V32))]
+ [MonoPInvokeCallback (typeof (DActionArity2V33))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::ClassKit.CLSActivity, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<ClassKit.CLSActivity> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V32 */
- internal sealed class NIDActionArity2V32 : TrampolineBlockBase {
- DActionArity2V32 invoker;
+ } /* class SDActionArity2V33 */
+ internal sealed class NIDActionArity2V33 : TrampolineBlockBase {
+ DActionArity2V33 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V32 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V33 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V32> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V33> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -24558,7 +24600,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::ClassKit.CLSActivity, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V32 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V33 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::ClassKit.CLSActivity arg1, NSError arg2)
@@ -24567,31 +24609,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V32 */
+ } /* class NIDActionArity2V33 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::ClassKit.CLSContext, NSError>))]
- internal delegate void DActionArity2V31 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V32 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V31 {
- static internal readonly DActionArity2V31 Handler = Invoke;
+ static internal class SDActionArity2V32 {
+ static internal readonly DActionArity2V32 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V31))]
+ [MonoPInvokeCallback (typeof (DActionArity2V32))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::ClassKit.CLSContext, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<ClassKit.CLSContext> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V31 */
- internal sealed class NIDActionArity2V31 : TrampolineBlockBase {
- DActionArity2V31 invoker;
+ } /* class SDActionArity2V32 */
+ internal sealed class NIDActionArity2V32 : TrampolineBlockBase {
+ DActionArity2V32 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V31 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V32 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V31> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V32> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -24600,7 +24642,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::ClassKit.CLSContext, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V31 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V32 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::ClassKit.CLSContext arg1, NSError arg2)
@@ -24609,31 +24651,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V31 */
+ } /* class NIDActionArity2V32 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::ClassKit.CLSContext[], NSError>))]
- internal delegate void DActionArity2V33 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V34 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V33 {
- static internal readonly DActionArity2V33 Handler = Invoke;
+ static internal class SDActionArity2V34 {
+ static internal readonly DActionArity2V34 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V33))]
+ [MonoPInvokeCallback (typeof (DActionArity2V34))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::ClassKit.CLSContext[], NSError>) (descriptor->Target);
if (del != null)
del (CFArray.ArrayFromHandle<global::ClassKit.CLSContext> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V33 */
- internal sealed class NIDActionArity2V33 : TrampolineBlockBase {
- DActionArity2V33 invoker;
+ } /* class SDActionArity2V34 */
+ internal sealed class NIDActionArity2V34 : TrampolineBlockBase {
+ DActionArity2V34 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V33 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V34 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V33> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V34> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -24642,7 +24684,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::ClassKit.CLSContext[], NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V33 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V34 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::ClassKit.CLSContext[] arg1, NSError arg2)
@@ -24655,31 +24697,31 @@ namespace ObjCRuntime {
if (nsa_arg1 != null)
nsa_arg1.Dispose ();
}
- } /* class NIDActionArity2V33 */
+ } /* class NIDActionArity2V34 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::CloudKit.CKAccountStatus, NSError>))]
- internal delegate void DActionArity2V41 (IntPtr block, IntPtr arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V42 (IntPtr block, IntPtr arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V41 {
- static internal readonly DActionArity2V41 Handler = Invoke;
+ static internal class SDActionArity2V42 {
+ static internal readonly DActionArity2V42 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V41))]
+ [MonoPInvokeCallback (typeof (DActionArity2V42))]
static unsafe void Invoke (IntPtr block, IntPtr arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::CloudKit.CKAccountStatus, NSError>) (descriptor->Target);
if (del != null)
del ((CloudKit.CKAccountStatus) (long) arg1, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V41 */
- internal sealed class NIDActionArity2V41 : TrampolineBlockBase {
- DActionArity2V41 invoker;
+ } /* class SDActionArity2V42 */
+ internal sealed class NIDActionArity2V42 : TrampolineBlockBase {
+ DActionArity2V42 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V41 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V42 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V41> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V42> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -24688,7 +24730,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::CloudKit.CKAccountStatus, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V41 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V42 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::CloudKit.CKAccountStatus arg1, NSError arg2)
@@ -24696,31 +24738,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, (IntPtr) (long) arg1, arg2__handle__);
}
- } /* class NIDActionArity2V41 */
+ } /* class NIDActionArity2V42 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::CloudKit.CKApplicationPermissionStatus, NSError>))]
- internal delegate void DActionArity2V42 (IntPtr block, IntPtr arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V43 (IntPtr block, IntPtr arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V42 {
- static internal readonly DActionArity2V42 Handler = Invoke;
+ static internal class SDActionArity2V43 {
+ static internal readonly DActionArity2V43 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V42))]
+ [MonoPInvokeCallback (typeof (DActionArity2V43))]
static unsafe void Invoke (IntPtr block, IntPtr arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::CloudKit.CKApplicationPermissionStatus, NSError>) (descriptor->Target);
if (del != null)
del ((CloudKit.CKApplicationPermissionStatus) (long) arg1, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V42 */
- internal sealed class NIDActionArity2V42 : TrampolineBlockBase {
- DActionArity2V42 invoker;
+ } /* class SDActionArity2V43 */
+ internal sealed class NIDActionArity2V43 : TrampolineBlockBase {
+ DActionArity2V43 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V42 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V43 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V42> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V43> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -24729,7 +24771,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::CloudKit.CKApplicationPermissionStatus, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V42 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V43 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::CloudKit.CKApplicationPermissionStatus arg1, NSError arg2)
@@ -24737,31 +24779,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, (IntPtr) (long) arg1, arg2__handle__);
}
- } /* class NIDActionArity2V42 */
+ } /* class NIDActionArity2V43 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::CloudKit.CKQueryCursor, NSError>))]
- internal delegate void DActionArity2V54 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V55 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V54 {
- static internal readonly DActionArity2V54 Handler = Invoke;
+ static internal class SDActionArity2V55 {
+ static internal readonly DActionArity2V55 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V54))]
+ [MonoPInvokeCallback (typeof (DActionArity2V55))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::CloudKit.CKQueryCursor, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<CloudKit.CKQueryCursor> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V54 */
- internal sealed class NIDActionArity2V54 : TrampolineBlockBase {
- DActionArity2V54 invoker;
+ } /* class SDActionArity2V55 */
+ internal sealed class NIDActionArity2V55 : TrampolineBlockBase {
+ DActionArity2V55 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V54 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V55 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V54> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V55> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -24770,7 +24812,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::CloudKit.CKQueryCursor, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V54 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V55 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::CloudKit.CKQueryCursor arg1, NSError arg2)
@@ -24779,31 +24821,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V54 */
+ } /* class NIDActionArity2V55 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::CloudKit.CKRecord, NSError>))]
- internal delegate void DActionArity2V46 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V47 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V46 {
- static internal readonly DActionArity2V46 Handler = Invoke;
+ static internal class SDActionArity2V47 {
+ static internal readonly DActionArity2V47 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V46))]
+ [MonoPInvokeCallback (typeof (DActionArity2V47))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::CloudKit.CKRecord, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<CloudKit.CKRecord> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V46 */
- internal sealed class NIDActionArity2V46 : TrampolineBlockBase {
- DActionArity2V46 invoker;
+ } /* class SDActionArity2V47 */
+ internal sealed class NIDActionArity2V47 : TrampolineBlockBase {
+ DActionArity2V47 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V46 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V47 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V46> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V47> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -24812,7 +24854,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::CloudKit.CKRecord, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V46 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V47 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::CloudKit.CKRecord arg1, NSError arg2)
@@ -24821,31 +24863,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V46 */
+ } /* class NIDActionArity2V47 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::CloudKit.CKRecord, double>))]
- internal delegate void DActionArity2V53 (IntPtr block, NativeHandle arg1, double arg2);
+ internal delegate void DActionArity2V54 (IntPtr block, NativeHandle arg1, double arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V53 {
- static internal readonly DActionArity2V53 Handler = Invoke;
+ static internal class SDActionArity2V54 {
+ static internal readonly DActionArity2V54 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V53))]
+ [MonoPInvokeCallback (typeof (DActionArity2V54))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, double arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::CloudKit.CKRecord, double>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<CloudKit.CKRecord> (arg1)!, arg2);
}
- } /* class SDActionArity2V53 */
- internal sealed class NIDActionArity2V53 : TrampolineBlockBase {
- DActionArity2V53 invoker;
+ } /* class SDActionArity2V54 */
+ internal sealed class NIDActionArity2V54 : TrampolineBlockBase {
+ DActionArity2V54 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V53 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V54 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V53> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V54> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -24854,7 +24896,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::CloudKit.CKRecord, double>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V53 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V54 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::CloudKit.CKRecord arg1, double arg2)
@@ -24862,31 +24904,31 @@ namespace ObjCRuntime {
var arg1__handle__ = arg1.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2);
}
- } /* class NIDActionArity2V53 */
+ } /* class NIDActionArity2V54 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::CloudKit.CKRecordID, NSError>))]
- internal delegate void DActionArity2V40 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V41 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V40 {
- static internal readonly DActionArity2V40 Handler = Invoke;
+ static internal class SDActionArity2V41 {
+ static internal readonly DActionArity2V41 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V40))]
+ [MonoPInvokeCallback (typeof (DActionArity2V41))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::CloudKit.CKRecordID, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<CloudKit.CKRecordID> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V40 */
- internal sealed class NIDActionArity2V40 : TrampolineBlockBase {
- DActionArity2V40 invoker;
+ } /* class SDActionArity2V41 */
+ internal sealed class NIDActionArity2V41 : TrampolineBlockBase {
+ DActionArity2V41 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V40 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V41 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V40> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V41> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -24895,7 +24937,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::CloudKit.CKRecordID, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V40 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V41 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::CloudKit.CKRecordID arg1, NSError arg2)
@@ -24904,31 +24946,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V40 */
+ } /* class NIDActionArity2V41 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::CloudKit.CKRecordID, double>))]
- internal delegate void DActionArity2V52 (IntPtr block, NativeHandle arg1, double arg2);
+ internal delegate void DActionArity2V53 (IntPtr block, NativeHandle arg1, double arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V52 {
- static internal readonly DActionArity2V52 Handler = Invoke;
+ static internal class SDActionArity2V53 {
+ static internal readonly DActionArity2V53 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V52))]
+ [MonoPInvokeCallback (typeof (DActionArity2V53))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, double arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::CloudKit.CKRecordID, double>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<CloudKit.CKRecordID> (arg1)!, arg2);
}
- } /* class SDActionArity2V52 */
- internal sealed class NIDActionArity2V52 : TrampolineBlockBase {
- DActionArity2V52 invoker;
+ } /* class SDActionArity2V53 */
+ internal sealed class NIDActionArity2V53 : TrampolineBlockBase {
+ DActionArity2V53 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V52 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V53 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V52> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V53> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -24937,7 +24979,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::CloudKit.CKRecordID, double>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V52 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V53 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::CloudKit.CKRecordID arg1, double arg2)
@@ -24945,31 +24987,31 @@ namespace ObjCRuntime {
var arg1__handle__ = arg1.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2);
}
- } /* class NIDActionArity2V52 */
+ } /* class NIDActionArity2V53 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::CloudKit.CKRecordZone, NSError>))]
- internal delegate void DActionArity2V47 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V48 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V47 {
- static internal readonly DActionArity2V47 Handler = Invoke;
+ static internal class SDActionArity2V48 {
+ static internal readonly DActionArity2V48 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V47))]
+ [MonoPInvokeCallback (typeof (DActionArity2V48))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::CloudKit.CKRecordZone, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<CloudKit.CKRecordZone> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V47 */
- internal sealed class NIDActionArity2V47 : TrampolineBlockBase {
- DActionArity2V47 invoker;
+ } /* class SDActionArity2V48 */
+ internal sealed class NIDActionArity2V48 : TrampolineBlockBase {
+ DActionArity2V48 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V47 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V48 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V47> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V48> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -24978,7 +25020,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::CloudKit.CKRecordZone, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V47 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V48 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::CloudKit.CKRecordZone arg1, NSError arg2)
@@ -24987,31 +25029,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V47 */
+ } /* class NIDActionArity2V48 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::CloudKit.CKRecordZoneID, NSError>))]
- internal delegate void DActionArity2V43 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V44 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V43 {
- static internal readonly DActionArity2V43 Handler = Invoke;
+ static internal class SDActionArity2V44 {
+ static internal readonly DActionArity2V44 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V43))]
+ [MonoPInvokeCallback (typeof (DActionArity2V44))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::CloudKit.CKRecordZoneID, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<CloudKit.CKRecordZoneID> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V43 */
- internal sealed class NIDActionArity2V43 : TrampolineBlockBase {
- DActionArity2V43 invoker;
+ } /* class SDActionArity2V44 */
+ internal sealed class NIDActionArity2V44 : TrampolineBlockBase {
+ DActionArity2V44 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V43 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V44 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V43> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V44> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -25020,7 +25062,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::CloudKit.CKRecordZoneID, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V43 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V44 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::CloudKit.CKRecordZoneID arg1, NSError arg2)
@@ -25029,31 +25071,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V43 */
+ } /* class NIDActionArity2V44 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::CloudKit.CKRecordZone[], NSError>))]
- internal delegate void DActionArity2V44 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V45 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V44 {
- static internal readonly DActionArity2V44 Handler = Invoke;
+ static internal class SDActionArity2V45 {
+ static internal readonly DActionArity2V45 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V44))]
+ [MonoPInvokeCallback (typeof (DActionArity2V45))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::CloudKit.CKRecordZone[], NSError>) (descriptor->Target);
if (del != null)
del (CFArray.ArrayFromHandle<global::CloudKit.CKRecordZone> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V44 */
- internal sealed class NIDActionArity2V44 : TrampolineBlockBase {
- DActionArity2V44 invoker;
+ } /* class SDActionArity2V45 */
+ internal sealed class NIDActionArity2V45 : TrampolineBlockBase {
+ DActionArity2V45 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V44 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V45 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V44> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V45> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -25062,7 +25104,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::CloudKit.CKRecordZone[], NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V44 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V45 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::CloudKit.CKRecordZone[] arg1, NSError arg2)
@@ -25075,31 +25117,31 @@ namespace ObjCRuntime {
if (nsa_arg1 != null)
nsa_arg1.Dispose ();
}
- } /* class NIDActionArity2V44 */
+ } /* class NIDActionArity2V45 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::CloudKit.CKRecord[], NSError>))]
- internal delegate void DActionArity2V49 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V50 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V49 {
- static internal readonly DActionArity2V49 Handler = Invoke;
+ static internal class SDActionArity2V50 {
+ static internal readonly DActionArity2V50 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V49))]
+ [MonoPInvokeCallback (typeof (DActionArity2V50))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::CloudKit.CKRecord[], NSError>) (descriptor->Target);
if (del != null)
del (CFArray.ArrayFromHandle<global::CloudKit.CKRecord> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V49 */
- internal sealed class NIDActionArity2V49 : TrampolineBlockBase {
- DActionArity2V49 invoker;
+ } /* class SDActionArity2V50 */
+ internal sealed class NIDActionArity2V50 : TrampolineBlockBase {
+ DActionArity2V50 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V49 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V50 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V49> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V50> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -25108,7 +25150,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::CloudKit.CKRecord[], NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V49 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V50 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::CloudKit.CKRecord[] arg1, NSError arg2)
@@ -25121,31 +25163,31 @@ namespace ObjCRuntime {
if (nsa_arg1 != null)
nsa_arg1.Dispose ();
}
- } /* class NIDActionArity2V49 */
+ } /* class NIDActionArity2V50 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::CloudKit.CKServerChangeToken, NSError>))]
- internal delegate void DActionArity2V51 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V52 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V51 {
- static internal readonly DActionArity2V51 Handler = Invoke;
+ static internal class SDActionArity2V52 {
+ static internal readonly DActionArity2V52 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V51))]
+ [MonoPInvokeCallback (typeof (DActionArity2V52))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::CloudKit.CKServerChangeToken, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<CloudKit.CKServerChangeToken> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V51 */
- internal sealed class NIDActionArity2V51 : TrampolineBlockBase {
- DActionArity2V51 invoker;
+ } /* class SDActionArity2V52 */
+ internal sealed class NIDActionArity2V52 : TrampolineBlockBase {
+ DActionArity2V52 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V51 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V52 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V51> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V52> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -25154,7 +25196,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::CloudKit.CKServerChangeToken, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V51 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V52 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::CloudKit.CKServerChangeToken arg1, NSError arg2)
@@ -25163,31 +25205,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V51 */
+ } /* class NIDActionArity2V52 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::CloudKit.CKShare, NSError>))]
- internal delegate void DActionArity2V34 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V35 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V34 {
- static internal readonly DActionArity2V34 Handler = Invoke;
+ static internal class SDActionArity2V35 {
+ static internal readonly DActionArity2V35 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V34))]
+ [MonoPInvokeCallback (typeof (DActionArity2V35))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::CloudKit.CKShare, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<CloudKit.CKShare> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V34 */
- internal sealed class NIDActionArity2V34 : TrampolineBlockBase {
- DActionArity2V34 invoker;
+ } /* class SDActionArity2V35 */
+ internal sealed class NIDActionArity2V35 : TrampolineBlockBase {
+ DActionArity2V35 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V34 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V35 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V34> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V35> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -25196,7 +25238,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::CloudKit.CKShare, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V34 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V35 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::CloudKit.CKShare arg1, NSError arg2)
@@ -25205,31 +25247,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V34 */
+ } /* class NIDActionArity2V35 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::CloudKit.CKShareMetadata, NSError>))]
- internal delegate void DActionArity2V38 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V39 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V38 {
- static internal readonly DActionArity2V38 Handler = Invoke;
+ static internal class SDActionArity2V39 {
+ static internal readonly DActionArity2V39 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V38))]
+ [MonoPInvokeCallback (typeof (DActionArity2V39))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::CloudKit.CKShareMetadata, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<CloudKit.CKShareMetadata> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V38 */
- internal sealed class NIDActionArity2V38 : TrampolineBlockBase {
- DActionArity2V38 invoker;
+ } /* class SDActionArity2V39 */
+ internal sealed class NIDActionArity2V39 : TrampolineBlockBase {
+ DActionArity2V39 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V38 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V39 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V38> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V39> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -25238,7 +25280,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::CloudKit.CKShareMetadata, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V38 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V39 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::CloudKit.CKShareMetadata arg1, NSError arg2)
@@ -25247,31 +25289,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V38 */
+ } /* class NIDActionArity2V39 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::CloudKit.CKShareParticipant, NSError>))]
- internal delegate void DActionArity2V39 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V40 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V39 {
- static internal readonly DActionArity2V39 Handler = Invoke;
+ static internal class SDActionArity2V40 {
+ static internal readonly DActionArity2V40 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V39))]
+ [MonoPInvokeCallback (typeof (DActionArity2V40))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::CloudKit.CKShareParticipant, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<CloudKit.CKShareParticipant> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V39 */
- internal sealed class NIDActionArity2V39 : TrampolineBlockBase {
- DActionArity2V39 invoker;
+ } /* class SDActionArity2V40 */
+ internal sealed class NIDActionArity2V40 : TrampolineBlockBase {
+ DActionArity2V40 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V39 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V40 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V39> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V40> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -25280,7 +25322,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::CloudKit.CKShareParticipant, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V39 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V40 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::CloudKit.CKShareParticipant arg1, NSError arg2)
@@ -25289,31 +25331,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V39 */
+ } /* class NIDActionArity2V40 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::CloudKit.CKSubscription, NSError>))]
- internal delegate void DActionArity2V48 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V49 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V48 {
- static internal readonly DActionArity2V48 Handler = Invoke;
+ static internal class SDActionArity2V49 {
+ static internal readonly DActionArity2V49 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V48))]
+ [MonoPInvokeCallback (typeof (DActionArity2V49))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::CloudKit.CKSubscription, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<CloudKit.CKSubscription> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V48 */
- internal sealed class NIDActionArity2V48 : TrampolineBlockBase {
- DActionArity2V48 invoker;
+ } /* class SDActionArity2V49 */
+ internal sealed class NIDActionArity2V49 : TrampolineBlockBase {
+ DActionArity2V49 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V48 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V49 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V48> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V49> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -25322,7 +25364,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::CloudKit.CKSubscription, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V48 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V49 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::CloudKit.CKSubscription arg1, NSError arg2)
@@ -25331,31 +25373,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V48 */
+ } /* class NIDActionArity2V49 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::CloudKit.CKSubscription[], NSError>))]
- internal delegate void DActionArity2V45 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V46 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V45 {
- static internal readonly DActionArity2V45 Handler = Invoke;
+ static internal class SDActionArity2V46 {
+ static internal readonly DActionArity2V46 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V45))]
+ [MonoPInvokeCallback (typeof (DActionArity2V46))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::CloudKit.CKSubscription[], NSError>) (descriptor->Target);
if (del != null)
del (CFArray.ArrayFromHandle<global::CloudKit.CKSubscription> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V45 */
- internal sealed class NIDActionArity2V45 : TrampolineBlockBase {
- DActionArity2V45 invoker;
+ } /* class SDActionArity2V46 */
+ internal sealed class NIDActionArity2V46 : TrampolineBlockBase {
+ DActionArity2V46 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V45 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V46 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V45> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V46> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -25364,7 +25406,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::CloudKit.CKSubscription[], NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V45 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V46 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::CloudKit.CKSubscription[] arg1, NSError arg2)
@@ -25377,31 +25419,31 @@ namespace ObjCRuntime {
if (nsa_arg1 != null)
nsa_arg1.Dispose ();
}
- } /* class NIDActionArity2V45 */
+ } /* class NIDActionArity2V46 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::CloudKit.CKUserIdentity, global::CloudKit.CKUserIdentityLookupInfo>))]
- internal delegate void DActionArity2V50 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V51 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V50 {
- static internal readonly DActionArity2V50 Handler = Invoke;
+ static internal class SDActionArity2V51 {
+ static internal readonly DActionArity2V51 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V50))]
+ [MonoPInvokeCallback (typeof (DActionArity2V51))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::CloudKit.CKUserIdentity, global::CloudKit.CKUserIdentityLookupInfo>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<CloudKit.CKUserIdentity> (arg1)!, Runtime.GetNSObject<CloudKit.CKUserIdentityLookupInfo> (arg2)!);
}
- } /* class SDActionArity2V50 */
- internal sealed class NIDActionArity2V50 : TrampolineBlockBase {
- DActionArity2V50 invoker;
+ } /* class SDActionArity2V51 */
+ internal sealed class NIDActionArity2V51 : TrampolineBlockBase {
+ DActionArity2V51 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V50 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V51 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V50> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V51> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -25410,7 +25452,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::CloudKit.CKUserIdentity, global::CloudKit.CKUserIdentityLookupInfo>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V50 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V51 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::CloudKit.CKUserIdentity arg1, global::CloudKit.CKUserIdentityLookupInfo arg2)
@@ -25419,31 +25461,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V50 */
+ } /* class NIDActionArity2V51 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::CloudKit.CKUserIdentity, NSError>))]
- internal delegate void DActionArity2V36 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V37 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V36 {
- static internal readonly DActionArity2V36 Handler = Invoke;
+ static internal class SDActionArity2V37 {
+ static internal readonly DActionArity2V37 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V36))]
+ [MonoPInvokeCallback (typeof (DActionArity2V37))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::CloudKit.CKUserIdentity, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<CloudKit.CKUserIdentity> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V36 */
- internal sealed class NIDActionArity2V36 : TrampolineBlockBase {
- DActionArity2V36 invoker;
+ } /* class SDActionArity2V37 */
+ internal sealed class NIDActionArity2V37 : TrampolineBlockBase {
+ DActionArity2V37 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V36 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V37 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V36> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V37> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -25452,7 +25494,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::CloudKit.CKUserIdentity, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V36 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V37 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::CloudKit.CKUserIdentity arg1, NSError arg2)
@@ -25461,31 +25503,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V36 */
+ } /* class NIDActionArity2V37 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::CloudKit.CKUserIdentity[], NSError>))]
- internal delegate void DActionArity2V35 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V36 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V35 {
- static internal readonly DActionArity2V35 Handler = Invoke;
+ static internal class SDActionArity2V36 {
+ static internal readonly DActionArity2V36 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V35))]
+ [MonoPInvokeCallback (typeof (DActionArity2V36))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::CloudKit.CKUserIdentity[], NSError>) (descriptor->Target);
if (del != null)
del (CFArray.ArrayFromHandle<global::CloudKit.CKUserIdentity> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V35 */
- internal sealed class NIDActionArity2V35 : TrampolineBlockBase {
- DActionArity2V35 invoker;
+ } /* class SDActionArity2V36 */
+ internal sealed class NIDActionArity2V36 : TrampolineBlockBase {
+ DActionArity2V36 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V35 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V36 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V35> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V36> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -25494,7 +25536,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::CloudKit.CKUserIdentity[], NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V35 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V36 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::CloudKit.CKUserIdentity[] arg1, NSError arg2)
@@ -25507,31 +25549,31 @@ namespace ObjCRuntime {
if (nsa_arg1 != null)
nsa_arg1.Dispose ();
}
- } /* class NIDActionArity2V35 */
+ } /* class NIDActionArity2V36 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::CoreData.NSPersistentStoreDescription, NSError>))]
- internal delegate void DActionArity2V55 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V56 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V55 {
- static internal readonly DActionArity2V55 Handler = Invoke;
+ static internal class SDActionArity2V56 {
+ static internal readonly DActionArity2V56 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V55))]
+ [MonoPInvokeCallback (typeof (DActionArity2V56))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::CoreData.NSPersistentStoreDescription, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<CoreData.NSPersistentStoreDescription> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V55 */
- internal sealed class NIDActionArity2V55 : TrampolineBlockBase {
- DActionArity2V55 invoker;
+ } /* class SDActionArity2V56 */
+ internal sealed class NIDActionArity2V56 : TrampolineBlockBase {
+ DActionArity2V56 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V55 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V56 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V55> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V56> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -25540,7 +25582,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::CoreData.NSPersistentStoreDescription, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V55 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V56 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::CoreData.NSPersistentStoreDescription arg1, NSError arg2)
@@ -25549,31 +25591,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V55 */
+ } /* class NIDActionArity2V56 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::CoreML.MLModel, NSError>))]
- internal delegate void DActionArity2V56 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V57 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V56 {
- static internal readonly DActionArity2V56 Handler = Invoke;
+ static internal class SDActionArity2V57 {
+ static internal readonly DActionArity2V57 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V56))]
+ [MonoPInvokeCallback (typeof (DActionArity2V57))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::CoreML.MLModel, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<MLModel> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V56 */
- internal sealed class NIDActionArity2V56 : TrampolineBlockBase {
- DActionArity2V56 invoker;
+ } /* class SDActionArity2V57 */
+ internal sealed class NIDActionArity2V57 : TrampolineBlockBase {
+ DActionArity2V57 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V56 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V57 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V56> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V57> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -25582,7 +25624,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::CoreML.MLModel, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V56 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V57 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::CoreML.MLModel arg1, NSError arg2)
@@ -25591,31 +25633,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V56 */
+ } /* class NIDActionArity2V57 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::CoreML.MLModelCollection, NSError>))]
- internal delegate void DActionArity2V57 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V58 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V57 {
- static internal readonly DActionArity2V57 Handler = Invoke;
+ static internal class SDActionArity2V58 {
+ static internal readonly DActionArity2V58 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V57))]
+ [MonoPInvokeCallback (typeof (DActionArity2V58))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::CoreML.MLModelCollection, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<MLModelCollection> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V57 */
- internal sealed class NIDActionArity2V57 : TrampolineBlockBase {
- DActionArity2V57 invoker;
+ } /* class SDActionArity2V58 */
+ internal sealed class NIDActionArity2V58 : TrampolineBlockBase {
+ DActionArity2V58 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V57 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V58 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V57> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V58> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -25624,7 +25666,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::CoreML.MLModelCollection, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V57 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V58 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::CoreML.MLModelCollection arg1, NSError arg2)
@@ -25633,31 +25675,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V57 */
+ } /* class NIDActionArity2V58 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::CoreMedia.CMTime, NSError>))]
- internal delegate void DActionArity2V12 (IntPtr block, global::CoreMedia.CMTime arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V13 (IntPtr block, global::CoreMedia.CMTime arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V12 {
- static internal readonly DActionArity2V12 Handler = Invoke;
+ static internal class SDActionArity2V13 {
+ static internal readonly DActionArity2V13 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V12))]
+ [MonoPInvokeCallback (typeof (DActionArity2V13))]
static unsafe void Invoke (IntPtr block, global::CoreMedia.CMTime arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::CoreMedia.CMTime, NSError>) (descriptor->Target);
if (del != null)
del (arg1, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V12 */
- internal sealed class NIDActionArity2V12 : TrampolineBlockBase {
- DActionArity2V12 invoker;
+ } /* class SDActionArity2V13 */
+ internal sealed class NIDActionArity2V13 : TrampolineBlockBase {
+ DActionArity2V13 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V12 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V13 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V12> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V13> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -25666,7 +25708,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::CoreMedia.CMTime, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V12 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V13 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::CoreMedia.CMTime arg1, NSError arg2)
@@ -25674,31 +25716,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1, arg2__handle__);
}
- } /* class NIDActionArity2V12 */
+ } /* class NIDActionArity2V13 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::CoreMotion.CMAbsoluteAltitudeData, NSError>))]
- internal delegate void DActionArity2V58 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V59 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V58 {
- static internal readonly DActionArity2V58 Handler = Invoke;
+ static internal class SDActionArity2V59 {
+ static internal readonly DActionArity2V59 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V58))]
+ [MonoPInvokeCallback (typeof (DActionArity2V59))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::CoreMotion.CMAbsoluteAltitudeData, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<CMAbsoluteAltitudeData> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V58 */
- internal sealed class NIDActionArity2V58 : TrampolineBlockBase {
- DActionArity2V58 invoker;
+ } /* class SDActionArity2V59 */
+ internal sealed class NIDActionArity2V59 : TrampolineBlockBase {
+ DActionArity2V59 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V58 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V59 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V58> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V59> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -25707,7 +25749,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::CoreMotion.CMAbsoluteAltitudeData, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V58 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V59 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::CoreMotion.CMAbsoluteAltitudeData arg1, NSError arg2)
@@ -25716,31 +25758,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V58 */
+ } /* class NIDActionArity2V59 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::CoreMotion.CMAltitudeData, NSError>))]
- internal delegate void DActionArity2V59 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V60 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V59 {
- static internal readonly DActionArity2V59 Handler = Invoke;
+ static internal class SDActionArity2V60 {
+ static internal readonly DActionArity2V60 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V59))]
+ [MonoPInvokeCallback (typeof (DActionArity2V60))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::CoreMotion.CMAltitudeData, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<CMAltitudeData> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V59 */
- internal sealed class NIDActionArity2V59 : TrampolineBlockBase {
- DActionArity2V59 invoker;
+ } /* class SDActionArity2V60 */
+ internal sealed class NIDActionArity2V60 : TrampolineBlockBase {
+ DActionArity2V60 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V59 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V60 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V59> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V60> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -25749,7 +25791,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::CoreMotion.CMAltitudeData, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V59 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V60 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::CoreMotion.CMAltitudeData arg1, NSError arg2)
@@ -25758,31 +25800,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V59 */
+ } /* class NIDActionArity2V60 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::CoreMotion.CMPedometerData, NSError>))]
- internal delegate void DActionArity2V60 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V61 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V60 {
- static internal readonly DActionArity2V60 Handler = Invoke;
+ static internal class SDActionArity2V61 {
+ static internal readonly DActionArity2V61 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V60))]
+ [MonoPInvokeCallback (typeof (DActionArity2V61))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::CoreMotion.CMPedometerData, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<CMPedometerData> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V60 */
- internal sealed class NIDActionArity2V60 : TrampolineBlockBase {
- DActionArity2V60 invoker;
+ } /* class SDActionArity2V61 */
+ internal sealed class NIDActionArity2V61 : TrampolineBlockBase {
+ DActionArity2V61 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V60 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V61 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V60> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V61> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -25791,7 +25833,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::CoreMotion.CMPedometerData, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V60 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V61 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::CoreMotion.CMPedometerData arg1, NSError arg2)
@@ -25800,31 +25842,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V60 */
+ } /* class NIDActionArity2V61 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::CoreMotion.CMPedometerEvent, NSError>))]
- internal delegate void DActionArity2V61 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V62 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V61 {
- static internal readonly DActionArity2V61 Handler = Invoke;
+ static internal class SDActionArity2V62 {
+ static internal readonly DActionArity2V62 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V61))]
+ [MonoPInvokeCallback (typeof (DActionArity2V62))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::CoreMotion.CMPedometerEvent, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<CMPedometerEvent> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V61 */
- internal sealed class NIDActionArity2V61 : TrampolineBlockBase {
- DActionArity2V61 invoker;
+ } /* class SDActionArity2V62 */
+ internal sealed class NIDActionArity2V62 : TrampolineBlockBase {
+ DActionArity2V62 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V61 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V62 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V61> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V62> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -25833,7 +25875,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::CoreMotion.CMPedometerEvent, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V61 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V62 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::CoreMotion.CMPedometerEvent arg1, NSError arg2)
@@ -25842,31 +25884,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V61 */
+ } /* class NIDActionArity2V62 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::CoreNFC.NFCNdefMessage, NSError>))]
- internal delegate void DActionArity2V64 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V65 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V64 {
- static internal readonly DActionArity2V64 Handler = Invoke;
+ static internal class SDActionArity2V65 {
+ static internal readonly DActionArity2V65 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V64))]
+ [MonoPInvokeCallback (typeof (DActionArity2V65))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::CoreNFC.NFCNdefMessage, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<CoreNFC.NFCNdefMessage> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V64 */
- internal sealed class NIDActionArity2V64 : TrampolineBlockBase {
- DActionArity2V64 invoker;
+ } /* class SDActionArity2V65 */
+ internal sealed class NIDActionArity2V65 : TrampolineBlockBase {
+ DActionArity2V65 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V64 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V65 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V64> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V65> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -25875,7 +25917,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::CoreNFC.NFCNdefMessage, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V64 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V65 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::CoreNFC.NFCNdefMessage arg1, NSError arg2)
@@ -25884,31 +25926,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V64 */
+ } /* class NIDActionArity2V65 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::FileProvider.INSFileProviderItem, NSError>))]
- internal delegate void DActionArity2V67 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V68 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V67 {
- static internal readonly DActionArity2V67 Handler = Invoke;
+ static internal class SDActionArity2V68 {
+ static internal readonly DActionArity2V68 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V67))]
+ [MonoPInvokeCallback (typeof (DActionArity2V68))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::FileProvider.INSFileProviderItem, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetINativeObject<FileProvider.INSFileProviderItem> (arg1, false)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V67 */
- internal sealed class NIDActionArity2V67 : TrampolineBlockBase {
- DActionArity2V67 invoker;
+ } /* class SDActionArity2V68 */
+ internal sealed class NIDActionArity2V68 : TrampolineBlockBase {
+ DActionArity2V68 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V67 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V68 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V67> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V68> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -25917,7 +25959,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::FileProvider.INSFileProviderItem, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V67 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V68 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::FileProvider.INSFileProviderItem arg1, NSError arg2)
@@ -25926,31 +25968,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V67 */
+ } /* class NIDActionArity2V68 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::FileProvider.NSFileProviderDomain[], NSError>))]
- internal delegate void DActionArity2V68 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V69 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V68 {
- static internal readonly DActionArity2V68 Handler = Invoke;
+ static internal class SDActionArity2V69 {
+ static internal readonly DActionArity2V69 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V68))]
+ [MonoPInvokeCallback (typeof (DActionArity2V69))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::FileProvider.NSFileProviderDomain[], NSError>) (descriptor->Target);
if (del != null)
del (CFArray.ArrayFromHandle<global::FileProvider.NSFileProviderDomain> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V68 */
- internal sealed class NIDActionArity2V68 : TrampolineBlockBase {
- DActionArity2V68 invoker;
+ } /* class SDActionArity2V69 */
+ internal sealed class NIDActionArity2V69 : TrampolineBlockBase {
+ DActionArity2V69 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V68 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V69 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V68> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V69> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -25959,7 +26001,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::FileProvider.NSFileProviderDomain[], NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V68 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V69 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::FileProvider.NSFileProviderDomain[] arg1, NSError arg2)
@@ -25972,31 +26014,31 @@ namespace ObjCRuntime {
if (nsa_arg1 != null)
nsa_arg1.Dispose ();
}
- } /* class NIDActionArity2V68 */
+ } /* class NIDActionArity2V69 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<INSItemProviderReading, NSError>))]
- internal delegate void DActionArity2V72 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V73 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V72 {
- static internal readonly DActionArity2V72 Handler = Invoke;
+ static internal class SDActionArity2V73 {
+ static internal readonly DActionArity2V73 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V72))]
+ [MonoPInvokeCallback (typeof (DActionArity2V73))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<INSItemProviderReading, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetINativeObject<Foundation.INSItemProviderReading> (arg1, false)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V72 */
- internal sealed class NIDActionArity2V72 : TrampolineBlockBase {
- DActionArity2V72 invoker;
+ } /* class SDActionArity2V73 */
+ internal sealed class NIDActionArity2V73 : TrampolineBlockBase {
+ DActionArity2V73 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V72 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V73 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V72> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V73> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -26005,7 +26047,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<INSItemProviderReading, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V72 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V73 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (INSItemProviderReading arg1, NSError arg2)
@@ -26014,31 +26056,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V72 */
+ } /* class NIDActionArity2V73 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSArray, NSError>))]
- internal delegate void DActionArity2V117 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V118 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V117 {
- static internal readonly DActionArity2V117 Handler = Invoke;
+ static internal class SDActionArity2V118 {
+ static internal readonly DActionArity2V118 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V117))]
+ [MonoPInvokeCallback (typeof (DActionArity2V118))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<NSArray, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<NSArray> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V117 */
- internal sealed class NIDActionArity2V117 : TrampolineBlockBase {
- DActionArity2V117 invoker;
+ } /* class SDActionArity2V118 */
+ internal sealed class NIDActionArity2V118 : TrampolineBlockBase {
+ DActionArity2V118 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V117 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V118 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V117> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V118> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -26047,7 +26089,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<NSArray, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V117 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V118 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSArray arg1, NSError arg2)
@@ -26056,31 +26098,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V117 */
+ } /* class NIDActionArity2V118 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSArray<global::AVFoundation.AVAssetTrack>, NSError>))]
- internal delegate void DActionArity2V14 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V15 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V14 {
- static internal readonly DActionArity2V14 Handler = Invoke;
+ static internal class SDActionArity2V15 {
+ static internal readonly DActionArity2V15 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V14))]
+ [MonoPInvokeCallback (typeof (DActionArity2V15))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<NSArray<global::AVFoundation.AVAssetTrack>, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<global::Foundation.NSArray<global::AVFoundation.AVAssetTrack>> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V14 */
- internal sealed class NIDActionArity2V14 : TrampolineBlockBase {
- DActionArity2V14 invoker;
+ } /* class SDActionArity2V15 */
+ internal sealed class NIDActionArity2V15 : TrampolineBlockBase {
+ DActionArity2V15 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V14 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V15 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V14> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V15> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -26089,7 +26131,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<NSArray<global::AVFoundation.AVAssetTrack>, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V14 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V15 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSArray<global::AVFoundation.AVAssetTrack> arg1, NSError arg2)
@@ -26098,31 +26140,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V14 */
+ } /* class NIDActionArity2V15 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSArray<global::AVFoundation.AVCompositionTrack>, NSError>))]
- internal delegate void DActionArity2V8 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V9 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V8 {
- static internal readonly DActionArity2V8 Handler = Invoke;
+ static internal class SDActionArity2V9 {
+ static internal readonly DActionArity2V9 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V8))]
+ [MonoPInvokeCallback (typeof (DActionArity2V9))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<NSArray<global::AVFoundation.AVCompositionTrack>, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<global::Foundation.NSArray<global::AVFoundation.AVCompositionTrack>> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V8 */
- internal sealed class NIDActionArity2V8 : TrampolineBlockBase {
- DActionArity2V8 invoker;
+ } /* class SDActionArity2V9 */
+ internal sealed class NIDActionArity2V9 : TrampolineBlockBase {
+ DActionArity2V9 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V8 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V9 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V8> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V9> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -26131,7 +26173,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<NSArray<global::AVFoundation.AVCompositionTrack>, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V8 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V9 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSArray<global::AVFoundation.AVCompositionTrack> arg1, NSError arg2)
@@ -26140,31 +26182,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V8 */
+ } /* class NIDActionArity2V9 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSArray<global::AVFoundation.AVFragmentedAssetTrack>, NSError>))]
- internal delegate void DActionArity2V20 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V21 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V20 {
- static internal readonly DActionArity2V20 Handler = Invoke;
+ static internal class SDActionArity2V21 {
+ static internal readonly DActionArity2V21 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V20))]
+ [MonoPInvokeCallback (typeof (DActionArity2V21))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<NSArray<global::AVFoundation.AVFragmentedAssetTrack>, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<global::Foundation.NSArray<global::AVFoundation.AVFragmentedAssetTrack>> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V20 */
- internal sealed class NIDActionArity2V20 : TrampolineBlockBase {
- DActionArity2V20 invoker;
+ } /* class SDActionArity2V21 */
+ internal sealed class NIDActionArity2V21 : TrampolineBlockBase {
+ DActionArity2V21 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V20 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V21 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V20> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V21> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -26173,7 +26215,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<NSArray<global::AVFoundation.AVFragmentedAssetTrack>, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V20 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V21 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSArray<global::AVFoundation.AVFragmentedAssetTrack> arg1, NSError arg2)
@@ -26182,31 +26224,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V20 */
+ } /* class NIDActionArity2V21 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSArray<global::AVFoundation.AVMetadataItem>, NSError>))]
- internal delegate void DActionArity2V6 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V7 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V6 {
- static internal readonly DActionArity2V6 Handler = Invoke;
+ static internal class SDActionArity2V7 {
+ static internal readonly DActionArity2V7 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V6))]
+ [MonoPInvokeCallback (typeof (DActionArity2V7))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<NSArray<global::AVFoundation.AVMetadataItem>, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<global::Foundation.NSArray<global::AVFoundation.AVMetadataItem>> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V6 */
- internal sealed class NIDActionArity2V6 : TrampolineBlockBase {
- DActionArity2V6 invoker;
+ } /* class SDActionArity2V7 */
+ internal sealed class NIDActionArity2V7 : TrampolineBlockBase {
+ DActionArity2V7 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V6 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V7 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V6> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V7> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -26215,7 +26257,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<NSArray<global::AVFoundation.AVMetadataItem>, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V6 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V7 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSArray<global::AVFoundation.AVMetadataItem> arg1, NSError arg2)
@@ -26224,31 +26266,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V6 */
+ } /* class NIDActionArity2V7 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSArray<global::AVFoundation.AVMovieTrack>, NSError>))]
- internal delegate void DActionArity2V22 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V23 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V22 {
- static internal readonly DActionArity2V22 Handler = Invoke;
+ static internal class SDActionArity2V23 {
+ static internal readonly DActionArity2V23 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V22))]
+ [MonoPInvokeCallback (typeof (DActionArity2V23))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<NSArray<global::AVFoundation.AVMovieTrack>, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<global::Foundation.NSArray<global::AVFoundation.AVMovieTrack>> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V22 */
- internal sealed class NIDActionArity2V22 : TrampolineBlockBase {
- DActionArity2V22 invoker;
+ } /* class SDActionArity2V23 */
+ internal sealed class NIDActionArity2V23 : TrampolineBlockBase {
+ DActionArity2V23 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V22 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V23 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V22> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V23> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -26257,7 +26299,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<NSArray<global::AVFoundation.AVMovieTrack>, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V22 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V23 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSArray<global::AVFoundation.AVMovieTrack> arg1, NSError arg2)
@@ -26266,31 +26308,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V22 */
+ } /* class NIDActionArity2V23 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSArray<global::AVFoundation.AVMutableCompositionTrack>, NSError>))]
- internal delegate void DActionArity2V9 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V10 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V9 {
- static internal readonly DActionArity2V9 Handler = Invoke;
+ static internal class SDActionArity2V10 {
+ static internal readonly DActionArity2V10 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V9))]
+ [MonoPInvokeCallback (typeof (DActionArity2V10))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<NSArray<global::AVFoundation.AVMutableCompositionTrack>, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<global::Foundation.NSArray<global::AVFoundation.AVMutableCompositionTrack>> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V9 */
- internal sealed class NIDActionArity2V9 : TrampolineBlockBase {
- DActionArity2V9 invoker;
+ } /* class SDActionArity2V10 */
+ internal sealed class NIDActionArity2V10 : TrampolineBlockBase {
+ DActionArity2V10 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V9 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V10 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V9> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V10> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -26299,7 +26341,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<NSArray<global::AVFoundation.AVMutableCompositionTrack>, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V9 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V10 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSArray<global::AVFoundation.AVMutableCompositionTrack> arg1, NSError arg2)
@@ -26308,31 +26350,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V9 */
+ } /* class NIDActionArity2V10 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSArray<global::AVFoundation.AVTimedMetadataGroup>, NSError>))]
- internal delegate void DActionArity2V4 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V5 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V4 {
- static internal readonly DActionArity2V4 Handler = Invoke;
+ static internal class SDActionArity2V5 {
+ static internal readonly DActionArity2V5 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V4))]
+ [MonoPInvokeCallback (typeof (DActionArity2V5))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<NSArray<global::AVFoundation.AVTimedMetadataGroup>, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<global::Foundation.NSArray<global::AVFoundation.AVTimedMetadataGroup>> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V4 */
- internal sealed class NIDActionArity2V4 : TrampolineBlockBase {
- DActionArity2V4 invoker;
+ } /* class SDActionArity2V5 */
+ internal sealed class NIDActionArity2V5 : TrampolineBlockBase {
+ DActionArity2V5 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V4 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V5 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V4> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V5> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -26341,7 +26383,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<NSArray<global::AVFoundation.AVTimedMetadataGroup>, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V4 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V5 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSArray<global::AVFoundation.AVTimedMetadataGroup> arg1, NSError arg2)
@@ -26350,31 +26392,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V4 */
+ } /* class NIDActionArity2V5 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSData, NSError>))]
- internal delegate void DActionArity2V18 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V19 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V18 {
- static internal readonly DActionArity2V18 Handler = Invoke;
+ static internal class SDActionArity2V19 {
+ static internal readonly DActionArity2V19 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V18))]
+ [MonoPInvokeCallback (typeof (DActionArity2V19))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<NSData, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<NSData> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V18 */
- internal sealed class NIDActionArity2V18 : TrampolineBlockBase {
- DActionArity2V18 invoker;
+ } /* class SDActionArity2V19 */
+ internal sealed class NIDActionArity2V19 : TrampolineBlockBase {
+ DActionArity2V19 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V18 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V19 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V18> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V19> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -26383,7 +26425,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<NSData, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V18 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V19 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSData arg1, NSError arg2)
@@ -26392,31 +26434,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V18 */
+ } /* class NIDActionArity2V19 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSData[], NSError>))]
- internal delegate void DActionArity2V62 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V63 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V62 {
- static internal readonly DActionArity2V62 Handler = Invoke;
+ static internal class SDActionArity2V63 {
+ static internal readonly DActionArity2V63 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V62))]
+ [MonoPInvokeCallback (typeof (DActionArity2V63))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<NSData[], NSError>) (descriptor->Target);
if (del != null)
del (CFArray.ArrayFromHandle<NSData> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V62 */
- internal sealed class NIDActionArity2V62 : TrampolineBlockBase {
- DActionArity2V62 invoker;
+ } /* class SDActionArity2V63 */
+ internal sealed class NIDActionArity2V63 : TrampolineBlockBase {
+ DActionArity2V63 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V62 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V63 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V62> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V63> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -26425,7 +26467,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<NSData[], NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V62 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V63 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSData[] arg1, NSError arg2)
@@ -26438,31 +26480,31 @@ namespace ObjCRuntime {
if (nsa_arg1 != null)
nsa_arg1.Dispose ();
}
- } /* class NIDActionArity2V62 */
+ } /* class NIDActionArity2V63 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSData[], NSNumber[]>))]
- internal delegate void DActionArity2V119 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V120 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V119 {
- static internal readonly DActionArity2V119 Handler = Invoke;
+ static internal class SDActionArity2V120 {
+ static internal readonly DActionArity2V120 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V119))]
+ [MonoPInvokeCallback (typeof (DActionArity2V120))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<NSData[], NSNumber[]>) (descriptor->Target);
if (del != null)
del (CFArray.ArrayFromHandle<NSData> (arg1)!, CFArray.ArrayFromHandle<NSNumber> (arg2)!);
}
- } /* class SDActionArity2V119 */
- internal sealed class NIDActionArity2V119 : TrampolineBlockBase {
- DActionArity2V119 invoker;
+ } /* class SDActionArity2V120 */
+ internal sealed class NIDActionArity2V120 : TrampolineBlockBase {
+ DActionArity2V120 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V119 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V120 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V119> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V120> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -26471,7 +26513,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<NSData[], NSNumber[]>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V119 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V120 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSData[] arg1, NSNumber[] arg2)
@@ -26488,31 +26530,31 @@ namespace ObjCRuntime {
if (nsa_arg2 != null)
nsa_arg2.Dispose ();
}
- } /* class NIDActionArity2V119 */
+ } /* class NIDActionArity2V120 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSDictionary, NSError>))]
- internal delegate void DActionArity2V93 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V94 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V93 {
- static internal readonly DActionArity2V93 Handler = Invoke;
+ static internal class SDActionArity2V94 {
+ static internal readonly DActionArity2V94 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V93))]
+ [MonoPInvokeCallback (typeof (DActionArity2V94))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<NSDictionary, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<NSDictionary> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V93 */
- internal sealed class NIDActionArity2V93 : TrampolineBlockBase {
- DActionArity2V93 invoker;
+ } /* class SDActionArity2V94 */
+ internal sealed class NIDActionArity2V94 : TrampolineBlockBase {
+ DActionArity2V94 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V93 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V94 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V93> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V94> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -26521,7 +26563,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<NSDictionary, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V93 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V94 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSDictionary arg1, NSError arg2)
@@ -26530,31 +26572,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V93 */
+ } /* class NIDActionArity2V94 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSDictionary<NSString, NSFileProviderService>, NSError>))]
- internal delegate void DActionArity2V70 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V71 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V70 {
- static internal readonly DActionArity2V70 Handler = Invoke;
+ static internal class SDActionArity2V71 {
+ static internal readonly DActionArity2V71 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V70))]
+ [MonoPInvokeCallback (typeof (DActionArity2V71))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<NSDictionary<NSString, NSFileProviderService>, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<global::Foundation.NSDictionary<NSString, NSFileProviderService>> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V70 */
- internal sealed class NIDActionArity2V70 : TrampolineBlockBase {
- DActionArity2V70 invoker;
+ } /* class SDActionArity2V71 */
+ internal sealed class NIDActionArity2V71 : TrampolineBlockBase {
+ DActionArity2V71 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V70 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V71 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V70> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V71> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -26563,7 +26605,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<NSDictionary<NSString, NSFileProviderService>, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V70 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V71 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSDictionary<NSString, NSFileProviderService> arg1, NSError arg2)
@@ -26572,31 +26614,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V70 */
+ } /* class NIDActionArity2V71 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSDictionary<NSString, NSObject>, NSError>))]
- internal delegate void DActionArity2V144 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V145 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V144 {
- static internal readonly DActionArity2V144 Handler = Invoke;
+ static internal class SDActionArity2V145 {
+ static internal readonly DActionArity2V145 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V144))]
+ [MonoPInvokeCallback (typeof (DActionArity2V145))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<NSDictionary<NSString, NSObject>, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<global::Foundation.NSDictionary<NSString, NSObject>> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V144 */
- internal sealed class NIDActionArity2V144 : TrampolineBlockBase {
- DActionArity2V144 invoker;
+ } /* class SDActionArity2V145 */
+ internal sealed class NIDActionArity2V145 : TrampolineBlockBase {
+ DActionArity2V145 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V144 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V145 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V144> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V145> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -26605,7 +26647,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<NSDictionary<NSString, NSObject>, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V144 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V145 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSDictionary<NSString, NSObject> arg1, NSError arg2)
@@ -26614,31 +26656,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V144 */
+ } /* class NIDActionArity2V145 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSDictionary<NSString, NSObject>[], NSError>))]
- internal delegate void DActionArity2V145 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V146 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V145 {
- static internal readonly DActionArity2V145 Handler = Invoke;
+ static internal class SDActionArity2V146 {
+ static internal readonly DActionArity2V146 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V145))]
+ [MonoPInvokeCallback (typeof (DActionArity2V146))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<NSDictionary<NSString, NSObject>[], NSError>) (descriptor->Target);
if (del != null)
del (CFArray.ArrayFromHandle<NSDictionary<NSString, NSObject>> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V145 */
- internal sealed class NIDActionArity2V145 : TrampolineBlockBase {
- DActionArity2V145 invoker;
+ } /* class SDActionArity2V146 */
+ internal sealed class NIDActionArity2V146 : TrampolineBlockBase {
+ DActionArity2V146 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V145 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V146 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V145> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V146> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -26647,7 +26689,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<NSDictionary<NSString, NSObject>[], NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V145 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V146 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSDictionary<NSString, NSObject>[] arg1, NSError arg2)
@@ -26660,31 +26702,31 @@ namespace ObjCRuntime {
if (nsa_arg1 != null)
nsa_arg1.Dispose ();
}
- } /* class NIDActionArity2V145 */
+ } /* class NIDActionArity2V146 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSDictionary<NSString, NSOperation>, NSError>))]
- internal delegate void DActionArity2V37 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V38 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V37 {
- static internal readonly DActionArity2V37 Handler = Invoke;
+ static internal class SDActionArity2V38 {
+ static internal readonly DActionArity2V38 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V37))]
+ [MonoPInvokeCallback (typeof (DActionArity2V38))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<NSDictionary<NSString, NSOperation>, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<global::Foundation.NSDictionary<NSString, NSOperation>> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V37 */
- internal sealed class NIDActionArity2V37 : TrampolineBlockBase {
- DActionArity2V37 invoker;
+ } /* class SDActionArity2V38 */
+ internal sealed class NIDActionArity2V38 : TrampolineBlockBase {
+ DActionArity2V38 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V37 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V38 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V37> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V38> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -26693,7 +26735,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<NSDictionary<NSString, NSOperation>, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V37 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V38 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSDictionary<NSString, NSOperation> arg1, NSError arg2)
@@ -26702,31 +26744,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V37 */
+ } /* class NIDActionArity2V38 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSNumber[], NSError>))]
- internal delegate void DActionArity2V65 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V66 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V65 {
- static internal readonly DActionArity2V65 Handler = Invoke;
+ static internal class SDActionArity2V66 {
+ static internal readonly DActionArity2V66 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V65))]
+ [MonoPInvokeCallback (typeof (DActionArity2V66))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<NSNumber[], NSError>) (descriptor->Target);
if (del != null)
del (CFArray.ArrayFromHandle<NSNumber> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V65 */
- internal sealed class NIDActionArity2V65 : TrampolineBlockBase {
- DActionArity2V65 invoker;
+ } /* class SDActionArity2V66 */
+ internal sealed class NIDActionArity2V66 : TrampolineBlockBase {
+ DActionArity2V66 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V65 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V66 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V65> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V66> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -26735,7 +26777,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<NSNumber[], NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V65 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V66 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSNumber[] arg1, NSError arg2)
@@ -26748,31 +26790,31 @@ namespace ObjCRuntime {
if (nsa_arg1 != null)
nsa_arg1.Dispose ();
}
- } /* class NIDActionArity2V65 */
+ } /* class NIDActionArity2V66 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSObject, NSError>))]
- internal delegate void DActionArity2V71 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V72 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V71 {
- static internal readonly DActionArity2V71 Handler = Invoke;
+ static internal class SDActionArity2V72 {
+ static internal readonly DActionArity2V72 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V71))]
+ [MonoPInvokeCallback (typeof (DActionArity2V72))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<NSObject, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<NSObject> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V71 */
- internal sealed class NIDActionArity2V71 : TrampolineBlockBase {
- DActionArity2V71 invoker;
+ } /* class SDActionArity2V72 */
+ internal sealed class NIDActionArity2V72 : TrampolineBlockBase {
+ DActionArity2V72 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V71 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V72 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V71> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V72> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -26781,7 +26823,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<NSObject, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V71 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V72 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSObject arg1, NSError arg2)
@@ -26790,31 +26832,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V71 */
+ } /* class NIDActionArity2V72 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSObject, NSString>))]
- internal delegate void DActionArity2V152 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V153 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V152 {
- static internal readonly DActionArity2V152 Handler = Invoke;
+ static internal class SDActionArity2V153 {
+ static internal readonly DActionArity2V153 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V152))]
+ [MonoPInvokeCallback (typeof (DActionArity2V153))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<NSObject, NSString>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<NSObject> (arg1)!, Runtime.GetNSObject<NSString> (arg2)!);
}
- } /* class SDActionArity2V152 */
- internal sealed class NIDActionArity2V152 : TrampolineBlockBase {
- DActionArity2V152 invoker;
+ } /* class SDActionArity2V153 */
+ internal sealed class NIDActionArity2V153 : TrampolineBlockBase {
+ DActionArity2V153 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V152 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V153 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V152> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V153> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -26823,7 +26865,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<NSObject, NSString>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V152 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V153 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSObject arg1, NSString arg2)
@@ -26832,31 +26874,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V152 */
+ } /* class NIDActionArity2V153 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSSet<NSString>, NSError>))]
- internal delegate void DActionArity2V142 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V143 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V142 {
- static internal readonly DActionArity2V142 Handler = Invoke;
+ static internal class SDActionArity2V143 {
+ static internal readonly DActionArity2V143 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V142))]
+ [MonoPInvokeCallback (typeof (DActionArity2V143))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<NSSet<NSString>, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<global::Foundation.NSSet<NSString>> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V142 */
- internal sealed class NIDActionArity2V142 : TrampolineBlockBase {
- DActionArity2V142 invoker;
+ } /* class SDActionArity2V143 */
+ internal sealed class NIDActionArity2V143 : TrampolineBlockBase {
+ DActionArity2V143 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V142 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V143 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V142> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V143> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -26865,7 +26907,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<NSSet<NSString>, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V142 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V143 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSSet<NSString> arg1, NSError arg2)
@@ -26874,31 +26916,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V142 */
+ } /* class NIDActionArity2V143 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSSet<NSString>[], NSError>))]
- internal delegate void DActionArity2V143 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V144 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V143 {
- static internal readonly DActionArity2V143 Handler = Invoke;
+ static internal class SDActionArity2V144 {
+ static internal readonly DActionArity2V144 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V143))]
+ [MonoPInvokeCallback (typeof (DActionArity2V144))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<NSSet<NSString>[], NSError>) (descriptor->Target);
if (del != null)
del (CFArray.ArrayFromHandle<NSSet<NSString>> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V143 */
- internal sealed class NIDActionArity2V143 : TrampolineBlockBase {
- DActionArity2V143 invoker;
+ } /* class SDActionArity2V144 */
+ internal sealed class NIDActionArity2V144 : TrampolineBlockBase {
+ DActionArity2V144 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V143 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V144 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V143> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V144> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -26907,7 +26949,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<NSSet<NSString>[], NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V143 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V144 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSSet<NSString>[] arg1, NSError arg2)
@@ -26920,31 +26962,31 @@ namespace ObjCRuntime {
if (nsa_arg1 != null)
nsa_arg1.Dispose ();
}
- } /* class NIDActionArity2V143 */
+ } /* class NIDActionArity2V144 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSSet<global::ThreadNetwork.THCredentials>, NSError>))]
- internal delegate void DActionArity2V137 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V138 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V137 {
- static internal readonly DActionArity2V137 Handler = Invoke;
+ static internal class SDActionArity2V138 {
+ static internal readonly DActionArity2V138 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V137))]
+ [MonoPInvokeCallback (typeof (DActionArity2V138))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<NSSet<global::ThreadNetwork.THCredentials>, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<global::Foundation.NSSet<global::ThreadNetwork.THCredentials>> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V137 */
- internal sealed class NIDActionArity2V137 : TrampolineBlockBase {
- DActionArity2V137 invoker;
+ } /* class SDActionArity2V138 */
+ internal sealed class NIDActionArity2V138 : TrampolineBlockBase {
+ DActionArity2V138 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V137 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V138 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V137> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V138> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -26953,7 +26995,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<NSSet<global::ThreadNetwork.THCredentials>, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V137 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V138 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSSet<global::ThreadNetwork.THCredentials> arg1, NSError arg2)
@@ -26962,31 +27004,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V137 */
+ } /* class NIDActionArity2V138 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSString, NSError>))]
- internal delegate void DActionArity2V134 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V135 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V134 {
- static internal readonly DActionArity2V134 Handler = Invoke;
+ static internal class SDActionArity2V135 {
+ static internal readonly DActionArity2V135 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V134))]
+ [MonoPInvokeCallback (typeof (DActionArity2V135))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<NSString, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<NSString> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V134 */
- internal sealed class NIDActionArity2V134 : TrampolineBlockBase {
- DActionArity2V134 invoker;
+ } /* class SDActionArity2V135 */
+ internal sealed class NIDActionArity2V135 : TrampolineBlockBase {
+ DActionArity2V135 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V134 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V135 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V134> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V135> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -26995,7 +27037,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<NSString, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V134 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V135 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSString arg1, NSError arg2)
@@ -27004,31 +27046,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V134 */
+ } /* class NIDActionArity2V135 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSString, bool>))]
- internal delegate void DActionArity2V140 (IntPtr block, NativeHandle arg1, bool arg2);
+ internal delegate void DActionArity2V141 (IntPtr block, NativeHandle arg1, bool arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V140 {
- static internal readonly DActionArity2V140 Handler = Invoke;
+ static internal class SDActionArity2V141 {
+ static internal readonly DActionArity2V141 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V140))]
+ [MonoPInvokeCallback (typeof (DActionArity2V141))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, bool arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<NSString, bool>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<NSString> (arg1)!, arg2);
}
- } /* class SDActionArity2V140 */
- internal sealed class NIDActionArity2V140 : TrampolineBlockBase {
- DActionArity2V140 invoker;
+ } /* class SDActionArity2V141 */
+ internal sealed class NIDActionArity2V141 : TrampolineBlockBase {
+ DActionArity2V141 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V140 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V141 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V140> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V141> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -27037,7 +27079,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<NSString, bool>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V140 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V141 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSString arg1, bool arg2)
@@ -27045,31 +27087,31 @@ namespace ObjCRuntime {
var arg1__handle__ = arg1.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2);
}
- } /* class NIDActionArity2V140 */
+ } /* class NIDActionArity2V141 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSUrl, NSError>))]
- internal delegate void DActionArity2V26 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V27 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V26 {
- static internal readonly DActionArity2V26 Handler = Invoke;
+ static internal class SDActionArity2V27 {
+ static internal readonly DActionArity2V27 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V26))]
+ [MonoPInvokeCallback (typeof (DActionArity2V27))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<NSUrl, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<NSUrl> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V26 */
- internal sealed class NIDActionArity2V26 : TrampolineBlockBase {
- DActionArity2V26 invoker;
+ } /* class SDActionArity2V27 */
+ internal sealed class NIDActionArity2V27 : TrampolineBlockBase {
+ DActionArity2V27 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V26 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V27 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V26> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V27> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -27078,7 +27120,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<NSUrl, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V26 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V27 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSUrl arg1, NSError arg2)
@@ -27087,31 +27129,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V26 */
+ } /* class NIDActionArity2V27 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSUrl, global::UIKit.UIDocumentBrowserImportMode>))]
- internal delegate void DActionArity2V141 (IntPtr block, NativeHandle arg1, UIntPtr arg2);
+ internal delegate void DActionArity2V142 (IntPtr block, NativeHandle arg1, UIntPtr arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V141 {
- static internal readonly DActionArity2V141 Handler = Invoke;
+ static internal class SDActionArity2V142 {
+ static internal readonly DActionArity2V142 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V141))]
+ [MonoPInvokeCallback (typeof (DActionArity2V142))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, UIntPtr arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<NSUrl, global::UIKit.UIDocumentBrowserImportMode>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<NSUrl> (arg1)!, (UIDocumentBrowserImportMode) (ulong) arg2);
}
- } /* class SDActionArity2V141 */
- internal sealed class NIDActionArity2V141 : TrampolineBlockBase {
- DActionArity2V141 invoker;
+ } /* class SDActionArity2V142 */
+ internal sealed class NIDActionArity2V142 : TrampolineBlockBase {
+ DActionArity2V142 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V141 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V142 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V141> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V142> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -27120,7 +27162,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<NSUrl, global::UIKit.UIDocumentBrowserImportMode>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V141 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V142 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSUrl arg1, global::UIKit.UIDocumentBrowserImportMode arg2)
@@ -27128,31 +27170,31 @@ namespace ObjCRuntime {
var arg1__handle__ = arg1.GetHandle ();
invoker (BlockPointer, arg1__handle__, (UIntPtr) (ulong) arg2);
}
- } /* class NIDActionArity2V141 */
+ } /* class NIDActionArity2V142 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSUrlSessionAuthChallengeDisposition, NSUrlCredential>))]
- internal delegate void DActionArity2V10 (IntPtr block, IntPtr arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V11 (IntPtr block, IntPtr arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V10 {
- static internal readonly DActionArity2V10 Handler = Invoke;
+ static internal class SDActionArity2V11 {
+ static internal readonly DActionArity2V11 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V10))]
+ [MonoPInvokeCallback (typeof (DActionArity2V11))]
static unsafe void Invoke (IntPtr block, IntPtr arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<NSUrlSessionAuthChallengeDisposition, NSUrlCredential>) (descriptor->Target);
if (del != null)
del ((NSUrlSessionAuthChallengeDisposition) (long) arg1, Runtime.GetNSObject<NSUrlCredential> (arg2)!);
}
- } /* class SDActionArity2V10 */
- internal sealed class NIDActionArity2V10 : TrampolineBlockBase {
- DActionArity2V10 invoker;
+ } /* class SDActionArity2V11 */
+ internal sealed class NIDActionArity2V11 : TrampolineBlockBase {
+ DActionArity2V11 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V10 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V11 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V10> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V11> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -27161,7 +27203,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<NSUrlSessionAuthChallengeDisposition, NSUrlCredential>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V10 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V11 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSUrlSessionAuthChallengeDisposition arg1, NSUrlCredential arg2)
@@ -27169,31 +27211,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, (IntPtr) (long) arg1, arg2__handle__);
}
- } /* class NIDActionArity2V10 */
+ } /* class NIDActionArity2V11 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSUrlSessionDelayedRequestDisposition, NSUrlRequest>))]
- internal delegate void DActionArity2V11 (IntPtr block, IntPtr arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V12 (IntPtr block, IntPtr arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V11 {
- static internal readonly DActionArity2V11 Handler = Invoke;
+ static internal class SDActionArity2V12 {
+ static internal readonly DActionArity2V12 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V11))]
+ [MonoPInvokeCallback (typeof (DActionArity2V12))]
static unsafe void Invoke (IntPtr block, IntPtr arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<NSUrlSessionDelayedRequestDisposition, NSUrlRequest>) (descriptor->Target);
if (del != null)
del ((NSUrlSessionDelayedRequestDisposition) (long) arg1, Runtime.GetNSObject<NSUrlRequest> (arg2)!);
}
- } /* class SDActionArity2V11 */
- internal sealed class NIDActionArity2V11 : TrampolineBlockBase {
- DActionArity2V11 invoker;
+ } /* class SDActionArity2V12 */
+ internal sealed class NIDActionArity2V12 : TrampolineBlockBase {
+ DActionArity2V12 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V11 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V12 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V11> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V12> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -27202,7 +27244,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<NSUrlSessionDelayedRequestDisposition, NSUrlRequest>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V11 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V12 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSUrlSessionDelayedRequestDisposition arg1, NSUrlRequest arg2)
@@ -27210,31 +27252,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, (IntPtr) (long) arg1, arg2__handle__);
}
- } /* class NIDActionArity2V11 */
+ } /* class NIDActionArity2V12 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSUrlSessionWebSocketMessage, NSError>))]
- internal delegate void DActionArity2V73 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V74 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V73 {
- static internal readonly DActionArity2V73 Handler = Invoke;
+ static internal class SDActionArity2V74 {
+ static internal readonly DActionArity2V74 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V73))]
+ [MonoPInvokeCallback (typeof (DActionArity2V74))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<NSUrlSessionWebSocketMessage, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<NSUrlSessionWebSocketMessage> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V73 */
- internal sealed class NIDActionArity2V73 : TrampolineBlockBase {
- DActionArity2V73 invoker;
+ } /* class SDActionArity2V74 */
+ internal sealed class NIDActionArity2V74 : TrampolineBlockBase {
+ DActionArity2V74 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V73 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V74 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V73> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V74> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -27243,7 +27285,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<NSUrlSessionWebSocketMessage, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V73 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V74 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSUrlSessionWebSocketMessage arg1, NSError arg2)
@@ -27252,31 +27294,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V73 */
+ } /* class NIDActionArity2V74 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::GameKit.GKChallenge[], NSError>))]
- internal delegate void DActionArity2V76 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V77 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V76 {
- static internal readonly DActionArity2V76 Handler = Invoke;
+ static internal class SDActionArity2V77 {
+ static internal readonly DActionArity2V77 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V76))]
+ [MonoPInvokeCallback (typeof (DActionArity2V77))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::GameKit.GKChallenge[], NSError>) (descriptor->Target);
if (del != null)
del (CFArray.ArrayFromHandle<global::GameKit.GKChallenge> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V76 */
- internal sealed class NIDActionArity2V76 : TrampolineBlockBase {
- DActionArity2V76 invoker;
+ } /* class SDActionArity2V77 */
+ internal sealed class NIDActionArity2V77 : TrampolineBlockBase {
+ DActionArity2V77 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V76 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V77 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V76> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V77> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -27285,7 +27327,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::GameKit.GKChallenge[], NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V76 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V77 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::GameKit.GKChallenge[] arg1, NSError arg2)
@@ -27298,31 +27340,31 @@ namespace ObjCRuntime {
if (nsa_arg1 != null)
nsa_arg1.Dispose ();
}
- } /* class NIDActionArity2V76 */
+ } /* class NIDActionArity2V77 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::GameKit.GKCloudPlayer, NSError>))]
- internal delegate void DActionArity2V77 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V78 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V77 {
- static internal readonly DActionArity2V77 Handler = Invoke;
+ static internal class SDActionArity2V78 {
+ static internal readonly DActionArity2V78 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V77))]
+ [MonoPInvokeCallback (typeof (DActionArity2V78))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::GameKit.GKCloudPlayer, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<GameKit.GKCloudPlayer> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V77 */
- internal sealed class NIDActionArity2V77 : TrampolineBlockBase {
- DActionArity2V77 invoker;
+ } /* class SDActionArity2V78 */
+ internal sealed class NIDActionArity2V78 : TrampolineBlockBase {
+ DActionArity2V78 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V77 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V78 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V77> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V78> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -27331,7 +27373,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::GameKit.GKCloudPlayer, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V77 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V78 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::GameKit.GKCloudPlayer arg1, NSError arg2)
@@ -27340,31 +27382,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V77 */
+ } /* class NIDActionArity2V78 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::GameKit.GKFriendsAuthorizationStatus, NSError>))]
- internal delegate void DActionArity2V82 (IntPtr block, IntPtr arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V83 (IntPtr block, IntPtr arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
- //
- static internal class SDActionArity2V82 {
- static internal readonly DActionArity2V82 Handler = Invoke;
+ //
+ static internal class SDActionArity2V83 {
+ static internal readonly DActionArity2V83 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V82))]
+ [MonoPInvokeCallback (typeof (DActionArity2V83))]
static unsafe void Invoke (IntPtr block, IntPtr arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::GameKit.GKFriendsAuthorizationStatus, NSError>) (descriptor->Target);
if (del != null)
del ((GameKit.GKFriendsAuthorizationStatus) (long) arg1, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V82 */
- internal sealed class NIDActionArity2V82 : TrampolineBlockBase {
- DActionArity2V82 invoker;
+ } /* class SDActionArity2V83 */
+ internal sealed class NIDActionArity2V83 : TrampolineBlockBase {
+ DActionArity2V83 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V82 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V83 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V82> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V83> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -27373,7 +27415,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::GameKit.GKFriendsAuthorizationStatus, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V82 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V83 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::GameKit.GKFriendsAuthorizationStatus arg1, NSError arg2)
@@ -27381,31 +27423,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, (IntPtr) (long) arg1, arg2__handle__);
}
- } /* class NIDActionArity2V82 */
+ } /* class NIDActionArity2V83 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::GameKit.GKGameSession, NSError>))]
- internal delegate void DActionArity2V78 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V79 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V78 {
- static internal readonly DActionArity2V78 Handler = Invoke;
+ static internal class SDActionArity2V79 {
+ static internal readonly DActionArity2V79 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V78))]
+ [MonoPInvokeCallback (typeof (DActionArity2V79))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::GameKit.GKGameSession, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<GameKit.GKGameSession> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V78 */
- internal sealed class NIDActionArity2V78 : TrampolineBlockBase {
- DActionArity2V78 invoker;
+ } /* class SDActionArity2V79 */
+ internal sealed class NIDActionArity2V79 : TrampolineBlockBase {
+ DActionArity2V79 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V78 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V79 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V78> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V79> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -27414,7 +27456,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::GameKit.GKGameSession, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V78 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V79 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::GameKit.GKGameSession arg1, NSError arg2)
@@ -27423,31 +27465,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V78 */
+ } /* class NIDActionArity2V79 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::GameKit.GKGameSession[], NSError>))]
- internal delegate void DActionArity2V79 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V80 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V79 {
- static internal readonly DActionArity2V79 Handler = Invoke;
+ static internal class SDActionArity2V80 {
+ static internal readonly DActionArity2V80 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V79))]
+ [MonoPInvokeCallback (typeof (DActionArity2V80))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::GameKit.GKGameSession[], NSError>) (descriptor->Target);
if (del != null)
del (CFArray.ArrayFromHandle<global::GameKit.GKGameSession> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V79 */
- internal sealed class NIDActionArity2V79 : TrampolineBlockBase {
- DActionArity2V79 invoker;
+ } /* class SDActionArity2V80 */
+ internal sealed class NIDActionArity2V80 : TrampolineBlockBase {
+ DActionArity2V80 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V79 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V80 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V79> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V80> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -27456,7 +27498,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::GameKit.GKGameSession[], NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V79 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V80 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::GameKit.GKGameSession[] arg1, NSError arg2)
@@ -27469,31 +27511,31 @@ namespace ObjCRuntime {
if (nsa_arg1 != null)
nsa_arg1.Dispose ();
}
- } /* class NIDActionArity2V79 */
+ } /* class NIDActionArity2V80 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::GameKit.GKLeaderboard[], NSError>))]
- internal delegate void DActionArity2V80 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V81 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V80 {
- static internal readonly DActionArity2V80 Handler = Invoke;
+ static internal class SDActionArity2V81 {
+ static internal readonly DActionArity2V81 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V80))]
+ [MonoPInvokeCallback (typeof (DActionArity2V81))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::GameKit.GKLeaderboard[], NSError>) (descriptor->Target);
if (del != null)
del (CFArray.ArrayFromHandle<global::GameKit.GKLeaderboard> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V80 */
- internal sealed class NIDActionArity2V80 : TrampolineBlockBase {
- DActionArity2V80 invoker;
+ } /* class SDActionArity2V81 */
+ internal sealed class NIDActionArity2V81 : TrampolineBlockBase {
+ DActionArity2V81 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V80 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V81 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V80> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V81> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -27502,7 +27544,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::GameKit.GKLeaderboard[], NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V80 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V81 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::GameKit.GKLeaderboard[] arg1, NSError arg2)
@@ -27515,31 +27557,31 @@ namespace ObjCRuntime {
if (nsa_arg1 != null)
nsa_arg1.Dispose ();
}
- } /* class NIDActionArity2V80 */
+ } /* class NIDActionArity2V81 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::GameKit.GKMatch, NSError>))]
- internal delegate void DActionArity2V85 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V86 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V85 {
- static internal readonly DActionArity2V85 Handler = Invoke;
+ static internal class SDActionArity2V86 {
+ static internal readonly DActionArity2V86 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V85))]
+ [MonoPInvokeCallback (typeof (DActionArity2V86))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::GameKit.GKMatch, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<GameKit.GKMatch> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V85 */
- internal sealed class NIDActionArity2V85 : TrampolineBlockBase {
- DActionArity2V85 invoker;
+ } /* class SDActionArity2V86 */
+ internal sealed class NIDActionArity2V86 : TrampolineBlockBase {
+ DActionArity2V86 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V85 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V86 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V85> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V86> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -27548,7 +27590,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::GameKit.GKMatch, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V85 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V86 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::GameKit.GKMatch arg1, NSError arg2)
@@ -27557,31 +27599,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V85 */
+ } /* class NIDActionArity2V86 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::GameKit.GKPlayer, global::GameKit.GKInviteRecipientResponse>))]
- internal delegate void DActionArity2V87 (IntPtr block, NativeHandle arg1, IntPtr arg2);
+ internal delegate void DActionArity2V88 (IntPtr block, NativeHandle arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V87 {
- static internal readonly DActionArity2V87 Handler = Invoke;
+ static internal class SDActionArity2V88 {
+ static internal readonly DActionArity2V88 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V87))]
+ [MonoPInvokeCallback (typeof (DActionArity2V88))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, IntPtr arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::GameKit.GKPlayer, global::GameKit.GKInviteRecipientResponse>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<GameKit.GKPlayer> (arg1)!, (GameKit.GKInviteRecipientResponse) (long) arg2);
}
- } /* class SDActionArity2V87 */
- internal sealed class NIDActionArity2V87 : TrampolineBlockBase {
- DActionArity2V87 invoker;
+ } /* class SDActionArity2V88 */
+ internal sealed class NIDActionArity2V88 : TrampolineBlockBase {
+ DActionArity2V88 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V87 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V88 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V87> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V88> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -27590,7 +27632,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::GameKit.GKPlayer, global::GameKit.GKInviteRecipientResponse>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V87 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V88 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::GameKit.GKPlayer arg1, global::GameKit.GKInviteRecipientResponse arg2)
@@ -27598,31 +27640,31 @@ namespace ObjCRuntime {
var arg1__handle__ = arg1.GetHandle ();
invoker (BlockPointer, arg1__handle__, (IntPtr) (long) arg2);
}
- } /* class NIDActionArity2V87 */
+ } /* class NIDActionArity2V88 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::GameKit.GKPlayer, global::GameKit.GKVoiceChatPlayerState>))]
- internal delegate void DActionArity2V92 (IntPtr block, NativeHandle arg1, IntPtr arg2);
+ internal delegate void DActionArity2V93 (IntPtr block, NativeHandle arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V92 {
- static internal readonly DActionArity2V92 Handler = Invoke;
+ static internal class SDActionArity2V93 {
+ static internal readonly DActionArity2V93 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V92))]
+ [MonoPInvokeCallback (typeof (DActionArity2V93))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, IntPtr arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::GameKit.GKPlayer, global::GameKit.GKVoiceChatPlayerState>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<GameKit.GKPlayer> (arg1)!, (GameKit.GKVoiceChatPlayerState) (long) arg2);
}
- } /* class SDActionArity2V92 */
- internal sealed class NIDActionArity2V92 : TrampolineBlockBase {
- DActionArity2V92 invoker;
+ } /* class SDActionArity2V93 */
+ internal sealed class NIDActionArity2V93 : TrampolineBlockBase {
+ DActionArity2V93 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V92 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V93 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V92> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V93> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -27631,7 +27673,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::GameKit.GKPlayer, global::GameKit.GKVoiceChatPlayerState>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V92 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V93 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::GameKit.GKPlayer arg1, global::GameKit.GKVoiceChatPlayerState arg2)
@@ -27639,31 +27681,31 @@ namespace ObjCRuntime {
var arg1__handle__ = arg1.GetHandle ();
invoker (BlockPointer, arg1__handle__, (IntPtr) (long) arg2);
}
- } /* class NIDActionArity2V92 */
+ } /* class NIDActionArity2V93 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::GameKit.GKPlayer, bool>))]
- internal delegate void DActionArity2V89 (IntPtr block, NativeHandle arg1, bool arg2);
+ internal delegate void DActionArity2V90 (IntPtr block, NativeHandle arg1, bool arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V89 {
- static internal readonly DActionArity2V89 Handler = Invoke;
+ static internal class SDActionArity2V90 {
+ static internal readonly DActionArity2V90 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V89))]
+ [MonoPInvokeCallback (typeof (DActionArity2V90))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, bool arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::GameKit.GKPlayer, bool>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<GameKit.GKPlayer> (arg1)!, arg2);
}
- } /* class SDActionArity2V89 */
- internal sealed class NIDActionArity2V89 : TrampolineBlockBase {
- DActionArity2V89 invoker;
+ } /* class SDActionArity2V90 */
+ internal sealed class NIDActionArity2V90 : TrampolineBlockBase {
+ DActionArity2V90 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V89 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V90 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V89> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V90> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -27672,7 +27714,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::GameKit.GKPlayer, bool>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V89 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V90 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::GameKit.GKPlayer arg1, bool arg2)
@@ -27680,31 +27722,31 @@ namespace ObjCRuntime {
var arg1__handle__ = arg1.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2);
}
- } /* class NIDActionArity2V89 */
+ } /* class NIDActionArity2V90 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::GameKit.GKPlayer[], NSError>))]
- internal delegate void DActionArity2V75 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V76 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V75 {
- static internal readonly DActionArity2V75 Handler = Invoke;
+ static internal class SDActionArity2V76 {
+ static internal readonly DActionArity2V76 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V75))]
+ [MonoPInvokeCallback (typeof (DActionArity2V76))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::GameKit.GKPlayer[], NSError>) (descriptor->Target);
if (del != null)
del (CFArray.ArrayFromHandle<global::GameKit.GKPlayer> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V75 */
- internal sealed class NIDActionArity2V75 : TrampolineBlockBase {
- DActionArity2V75 invoker;
+ } /* class SDActionArity2V76 */
+ internal sealed class NIDActionArity2V76 : TrampolineBlockBase {
+ DActionArity2V76 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V75 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V76 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V75> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V76> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -27713,7 +27755,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::GameKit.GKPlayer[], NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V75 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V76 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::GameKit.GKPlayer[] arg1, NSError arg2)
@@ -27726,31 +27768,31 @@ namespace ObjCRuntime {
if (nsa_arg1 != null)
nsa_arg1.Dispose ();
}
- } /* class NIDActionArity2V75 */
+ } /* class NIDActionArity2V76 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::GameKit.GKSavedGame, NSError>))]
- internal delegate void DActionArity2V83 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V84 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V83 {
- static internal readonly DActionArity2V83 Handler = Invoke;
+ static internal class SDActionArity2V84 {
+ static internal readonly DActionArity2V84 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V83))]
+ [MonoPInvokeCallback (typeof (DActionArity2V84))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::GameKit.GKSavedGame, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<GameKit.GKSavedGame> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V83 */
- internal sealed class NIDActionArity2V83 : TrampolineBlockBase {
- DActionArity2V83 invoker;
+ } /* class SDActionArity2V84 */
+ internal sealed class NIDActionArity2V84 : TrampolineBlockBase {
+ DActionArity2V84 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V83 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V84 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V83> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V84> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -27759,7 +27801,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::GameKit.GKSavedGame, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V83 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V84 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::GameKit.GKSavedGame arg1, NSError arg2)
@@ -27768,31 +27810,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V83 */
+ } /* class NIDActionArity2V84 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::GameKit.GKSavedGame[], NSError>))]
- internal delegate void DActionArity2V81 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V82 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V81 {
- static internal readonly DActionArity2V81 Handler = Invoke;
+ static internal class SDActionArity2V82 {
+ static internal readonly DActionArity2V82 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V81))]
+ [MonoPInvokeCallback (typeof (DActionArity2V82))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::GameKit.GKSavedGame[], NSError>) (descriptor->Target);
if (del != null)
del (CFArray.ArrayFromHandle<global::GameKit.GKSavedGame> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V81 */
- internal sealed class NIDActionArity2V81 : TrampolineBlockBase {
- DActionArity2V81 invoker;
+ } /* class SDActionArity2V82 */
+ internal sealed class NIDActionArity2V82 : TrampolineBlockBase {
+ DActionArity2V82 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V81 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V82 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V81> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V82> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -27801,7 +27843,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::GameKit.GKSavedGame[], NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V81 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V82 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::GameKit.GKSavedGame[] arg1, NSError arg2)
@@ -27814,31 +27856,31 @@ namespace ObjCRuntime {
if (nsa_arg1 != null)
nsa_arg1.Dispose ();
}
- } /* class NIDActionArity2V81 */
+ } /* class NIDActionArity2V82 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::GameKit.GKTurnBasedExchange, NSError>))]
- internal delegate void DActionArity2V91 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V92 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V91 {
- static internal readonly DActionArity2V91 Handler = Invoke;
+ static internal class SDActionArity2V92 {
+ static internal readonly DActionArity2V92 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V91))]
+ [MonoPInvokeCallback (typeof (DActionArity2V92))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::GameKit.GKTurnBasedExchange, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<GameKit.GKTurnBasedExchange> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V91 */
- internal sealed class NIDActionArity2V91 : TrampolineBlockBase {
- DActionArity2V91 invoker;
+ } /* class SDActionArity2V92 */
+ internal sealed class NIDActionArity2V92 : TrampolineBlockBase {
+ DActionArity2V92 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V91 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V92 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V91> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V92> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -27847,7 +27889,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::GameKit.GKTurnBasedExchange, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V91 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V92 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::GameKit.GKTurnBasedExchange arg1, NSError arg2)
@@ -27856,31 +27898,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V91 */
+ } /* class NIDActionArity2V92 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::GameKit.GKTurnBasedMatch, NSError>))]
- internal delegate void DActionArity2V90 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V91 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V90 {
- static internal readonly DActionArity2V90 Handler = Invoke;
+ static internal class SDActionArity2V91 {
+ static internal readonly DActionArity2V91 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V90))]
+ [MonoPInvokeCallback (typeof (DActionArity2V91))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::GameKit.GKTurnBasedMatch, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<GameKit.GKTurnBasedMatch> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V90 */
- internal sealed class NIDActionArity2V90 : TrampolineBlockBase {
- DActionArity2V90 invoker;
+ } /* class SDActionArity2V91 */
+ internal sealed class NIDActionArity2V91 : TrampolineBlockBase {
+ DActionArity2V91 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V90 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V91 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V90> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V91> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -27889,7 +27931,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::GameKit.GKTurnBasedMatch, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V90 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V91 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::GameKit.GKTurnBasedMatch arg1, NSError arg2)
@@ -27898,31 +27940,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V90 */
+ } /* class NIDActionArity2V91 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::HealthKit.HKHeartbeatSeriesSample, NSError>))]
- internal delegate void DActionArity2V94 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V95 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V94 {
- static internal readonly DActionArity2V94 Handler = Invoke;
+ static internal class SDActionArity2V95 {
+ static internal readonly DActionArity2V95 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V94))]
+ [MonoPInvokeCallback (typeof (DActionArity2V95))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::HealthKit.HKHeartbeatSeriesSample, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<HealthKit.HKHeartbeatSeriesSample> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V94 */
- internal sealed class NIDActionArity2V94 : TrampolineBlockBase {
- DActionArity2V94 invoker;
+ } /* class SDActionArity2V95 */
+ internal sealed class NIDActionArity2V95 : TrampolineBlockBase {
+ DActionArity2V95 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V94 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V95 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V94> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V95> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -27931,7 +27973,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::HealthKit.HKHeartbeatSeriesSample, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V94 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V95 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::HealthKit.HKHeartbeatSeriesSample arg1, NSError arg2)
@@ -27940,31 +27982,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V94 */
+ } /* class NIDActionArity2V95 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::HealthKit.HKWorkoutRoute, NSError>))]
- internal delegate void DActionArity2V95 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V96 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V95 {
- static internal readonly DActionArity2V95 Handler = Invoke;
+ static internal class SDActionArity2V96 {
+ static internal readonly DActionArity2V96 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V95))]
+ [MonoPInvokeCallback (typeof (DActionArity2V96))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::HealthKit.HKWorkoutRoute, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<HealthKit.HKWorkoutRoute> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V95 */
- internal sealed class NIDActionArity2V95 : TrampolineBlockBase {
- DActionArity2V95 invoker;
+ } /* class SDActionArity2V96 */
+ internal sealed class NIDActionArity2V96 : TrampolineBlockBase {
+ DActionArity2V96 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V95 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V96 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V95> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V96> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -27973,7 +28015,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::HealthKit.HKWorkoutRoute, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V95 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V96 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::HealthKit.HKWorkoutRoute arg1, NSError arg2)
@@ -27982,31 +28024,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V95 */
+ } /* class NIDActionArity2V96 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::HomeKit.HMAccessorySetupResult, NSError>))]
- internal delegate void DActionArity2V96 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V97 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V96 {
- static internal readonly DActionArity2V96 Handler = Invoke;
+ static internal class SDActionArity2V97 {
+ static internal readonly DActionArity2V97 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V96))]
+ [MonoPInvokeCallback (typeof (DActionArity2V97))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::HomeKit.HMAccessorySetupResult, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<HomeKit.HMAccessorySetupResult> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V96 */
- internal sealed class NIDActionArity2V96 : TrampolineBlockBase {
- DActionArity2V96 invoker;
+ } /* class SDActionArity2V97 */
+ internal sealed class NIDActionArity2V97 : TrampolineBlockBase {
+ DActionArity2V97 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V96 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V97 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V96> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V97> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -28015,7 +28057,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::HomeKit.HMAccessorySetupResult, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V96 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V97 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::HomeKit.HMAccessorySetupResult arg1, NSError arg2)
@@ -28024,31 +28066,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V96 */
+ } /* class NIDActionArity2V97 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::HomeKit.HMAccessory[], NSError>))]
- internal delegate void DActionArity2V98 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V99 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V98 {
- static internal readonly DActionArity2V98 Handler = Invoke;
+ static internal class SDActionArity2V99 {
+ static internal readonly DActionArity2V99 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V98))]
+ [MonoPInvokeCallback (typeof (DActionArity2V99))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::HomeKit.HMAccessory[], NSError>) (descriptor->Target);
if (del != null)
del (CFArray.ArrayFromHandle<global::HomeKit.HMAccessory> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V98 */
- internal sealed class NIDActionArity2V98 : TrampolineBlockBase {
- DActionArity2V98 invoker;
+ } /* class SDActionArity2V99 */
+ internal sealed class NIDActionArity2V99 : TrampolineBlockBase {
+ DActionArity2V99 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V98 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V99 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V98> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V99> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -28057,7 +28099,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::HomeKit.HMAccessory[], NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V98 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V99 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::HomeKit.HMAccessory[] arg1, NSError arg2)
@@ -28070,31 +28112,31 @@ namespace ObjCRuntime {
if (nsa_arg1 != null)
nsa_arg1.Dispose ();
}
- } /* class NIDActionArity2V98 */
+ } /* class NIDActionArity2V99 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::HomeKit.HMActionSet, NSError>))]
- internal delegate void DActionArity2V97 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V98 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V97 {
- static internal readonly DActionArity2V97 Handler = Invoke;
+ static internal class SDActionArity2V98 {
+ static internal readonly DActionArity2V98 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V97))]
+ [MonoPInvokeCallback (typeof (DActionArity2V98))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::HomeKit.HMActionSet, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<HomeKit.HMActionSet> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V97 */
- internal sealed class NIDActionArity2V97 : TrampolineBlockBase {
- DActionArity2V97 invoker;
+ } /* class SDActionArity2V98 */
+ internal sealed class NIDActionArity2V98 : TrampolineBlockBase {
+ DActionArity2V98 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V97 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V98 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V97> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V98> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -28103,7 +28145,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::HomeKit.HMActionSet, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V97 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V98 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::HomeKit.HMActionSet arg1, NSError arg2)
@@ -28112,31 +28154,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V97 */
+ } /* class NIDActionArity2V98 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::HomeKit.HMHome, NSError>))]
- internal delegate void DActionArity2V103 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V104 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V103 {
- static internal readonly DActionArity2V103 Handler = Invoke;
+ static internal class SDActionArity2V104 {
+ static internal readonly DActionArity2V104 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V103))]
+ [MonoPInvokeCallback (typeof (DActionArity2V104))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::HomeKit.HMHome, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<HomeKit.HMHome> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V103 */
- internal sealed class NIDActionArity2V103 : TrampolineBlockBase {
- DActionArity2V103 invoker;
+ } /* class SDActionArity2V104 */
+ internal sealed class NIDActionArity2V104 : TrampolineBlockBase {
+ DActionArity2V104 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V103 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V104 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V103> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V104> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -28145,7 +28187,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::HomeKit.HMHome, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V103 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V104 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::HomeKit.HMHome arg1, NSError arg2)
@@ -28154,31 +28196,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V103 */
+ } /* class NIDActionArity2V104 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::HomeKit.HMRoom, NSError>))]
- internal delegate void DActionArity2V99 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V100 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V99 {
- static internal readonly DActionArity2V99 Handler = Invoke;
+ static internal class SDActionArity2V100 {
+ static internal readonly DActionArity2V100 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V99))]
+ [MonoPInvokeCallback (typeof (DActionArity2V100))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::HomeKit.HMRoom, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<HomeKit.HMRoom> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V99 */
- internal sealed class NIDActionArity2V99 : TrampolineBlockBase {
- DActionArity2V99 invoker;
+ } /* class SDActionArity2V100 */
+ internal sealed class NIDActionArity2V100 : TrampolineBlockBase {
+ DActionArity2V100 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V99 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V100 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V99> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V100> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -28187,7 +28229,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::HomeKit.HMRoom, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V99 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V100 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::HomeKit.HMRoom arg1, NSError arg2)
@@ -28196,31 +28238,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V99 */
+ } /* class NIDActionArity2V100 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::HomeKit.HMServiceGroup, NSError>))]
- internal delegate void DActionArity2V100 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V101 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V100 {
- static internal readonly DActionArity2V100 Handler = Invoke;
+ static internal class SDActionArity2V101 {
+ static internal readonly DActionArity2V101 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V100))]
+ [MonoPInvokeCallback (typeof (DActionArity2V101))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::HomeKit.HMServiceGroup, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<HomeKit.HMServiceGroup> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V100 */
- internal sealed class NIDActionArity2V100 : TrampolineBlockBase {
- DActionArity2V100 invoker;
+ } /* class SDActionArity2V101 */
+ internal sealed class NIDActionArity2V101 : TrampolineBlockBase {
+ DActionArity2V101 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V100 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V101 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V100> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V101> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -28229,7 +28271,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::HomeKit.HMServiceGroup, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V100 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V101 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::HomeKit.HMServiceGroup arg1, NSError arg2)
@@ -28238,31 +28280,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V100 */
+ } /* class NIDActionArity2V101 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::HomeKit.HMUser, NSError>))]
- internal delegate void DActionArity2V101 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V102 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V101 {
- static internal readonly DActionArity2V101 Handler = Invoke;
+ static internal class SDActionArity2V102 {
+ static internal readonly DActionArity2V102 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V101))]
+ [MonoPInvokeCallback (typeof (DActionArity2V102))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::HomeKit.HMUser, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<HomeKit.HMUser> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V101 */
- internal sealed class NIDActionArity2V101 : TrampolineBlockBase {
- DActionArity2V101 invoker;
+ } /* class SDActionArity2V102 */
+ internal sealed class NIDActionArity2V102 : TrampolineBlockBase {
+ DActionArity2V102 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V101 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V102 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V101> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V102> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -28271,7 +28313,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::HomeKit.HMUser, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V101 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V102 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::HomeKit.HMUser arg1, NSError arg2)
@@ -28280,31 +28322,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V101 */
+ } /* class NIDActionArity2V102 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::HomeKit.HMZone, NSError>))]
- internal delegate void DActionArity2V102 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V103 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V102 {
- static internal readonly DActionArity2V102 Handler = Invoke;
+ static internal class SDActionArity2V103 {
+ static internal readonly DActionArity2V103 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V102))]
+ [MonoPInvokeCallback (typeof (DActionArity2V103))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::HomeKit.HMZone, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<HomeKit.HMZone> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V102 */
- internal sealed class NIDActionArity2V102 : TrampolineBlockBase {
- DActionArity2V102 invoker;
+ } /* class SDActionArity2V103 */
+ internal sealed class NIDActionArity2V103 : TrampolineBlockBase {
+ DActionArity2V103 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V102 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V103 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V102> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V103> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -28313,7 +28355,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::HomeKit.HMZone, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V102 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V103 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::HomeKit.HMZone arg1, NSError arg2)
@@ -28322,31 +28364,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V102 */
+ } /* class NIDActionArity2V103 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::IdentityLookup.ILNetworkResponse, NSError>))]
- internal delegate void DActionArity2V104 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V105 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V104 {
- static internal readonly DActionArity2V104 Handler = Invoke;
+ static internal class SDActionArity2V105 {
+ static internal readonly DActionArity2V105 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V104))]
+ [MonoPInvokeCallback (typeof (DActionArity2V105))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::IdentityLookup.ILNetworkResponse, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<IdentityLookup.ILNetworkResponse> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V104 */
- internal sealed class NIDActionArity2V104 : TrampolineBlockBase {
- DActionArity2V104 invoker;
+ } /* class SDActionArity2V105 */
+ internal sealed class NIDActionArity2V105 : TrampolineBlockBase {
+ DActionArity2V105 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V104 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V105 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V104> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V105> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -28355,7 +28397,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::IdentityLookup.ILNetworkResponse, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V104 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V105 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::IdentityLookup.ILNetworkResponse arg1, NSError arg2)
@@ -28364,31 +28406,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V104 */
+ } /* class NIDActionArity2V105 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::Intents.INVoiceShortcut, NSError>))]
- internal delegate void DActionArity2V105 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V106 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V105 {
- static internal readonly DActionArity2V105 Handler = Invoke;
+ static internal class SDActionArity2V106 {
+ static internal readonly DActionArity2V106 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V105))]
+ [MonoPInvokeCallback (typeof (DActionArity2V106))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::Intents.INVoiceShortcut, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<Intents.INVoiceShortcut> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V105 */
- internal sealed class NIDActionArity2V105 : TrampolineBlockBase {
- DActionArity2V105 invoker;
+ } /* class SDActionArity2V106 */
+ internal sealed class NIDActionArity2V106 : TrampolineBlockBase {
+ DActionArity2V106 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V105 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V106 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V105> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V106> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -28397,7 +28439,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::Intents.INVoiceShortcut, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V105 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V106 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::Intents.INVoiceShortcut arg1, NSError arg2)
@@ -28406,31 +28448,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V105 */
+ } /* class NIDActionArity2V106 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::LinkPresentation.LPLinkMetadata, NSError>))]
- internal delegate void DActionArity2V106 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V107 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V106 {
- static internal readonly DActionArity2V106 Handler = Invoke;
+ static internal class SDActionArity2V107 {
+ static internal readonly DActionArity2V107 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V106))]
+ [MonoPInvokeCallback (typeof (DActionArity2V107))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::LinkPresentation.LPLinkMetadata, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<LinkPresentation.LPLinkMetadata> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V106 */
- internal sealed class NIDActionArity2V106 : TrampolineBlockBase {
- DActionArity2V106 invoker;
+ } /* class SDActionArity2V107 */
+ internal sealed class NIDActionArity2V107 : TrampolineBlockBase {
+ DActionArity2V107 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V106 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V107 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V106> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V107> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -28439,7 +28481,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::LinkPresentation.LPLinkMetadata, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V106 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V107 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::LinkPresentation.LPLinkMetadata arg1, NSError arg2)
@@ -28448,31 +28490,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V106 */
+ } /* class NIDActionArity2V107 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::MediaPlayer.MPContentItem, NSError>))]
- internal delegate void DActionArity2V110 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V111 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V110 {
- static internal readonly DActionArity2V110 Handler = Invoke;
+ static internal class SDActionArity2V111 {
+ static internal readonly DActionArity2V111 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V110))]
+ [MonoPInvokeCallback (typeof (DActionArity2V111))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::MediaPlayer.MPContentItem, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<MPContentItem> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V110 */
- internal sealed class NIDActionArity2V110 : TrampolineBlockBase {
- DActionArity2V110 invoker;
+ } /* class SDActionArity2V111 */
+ internal sealed class NIDActionArity2V111 : TrampolineBlockBase {
+ DActionArity2V111 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V110 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V111 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V110> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V111> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -28481,7 +28523,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::MediaPlayer.MPContentItem, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V110 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V111 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::MediaPlayer.MPContentItem arg1, NSError arg2)
@@ -28490,31 +28532,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V110 */
+ } /* class NIDActionArity2V111 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::MediaPlayer.MPMediaEntity[], NSError>))]
- internal delegate void DActionArity2V107 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V108 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V107 {
- static internal readonly DActionArity2V107 Handler = Invoke;
+ static internal class SDActionArity2V108 {
+ static internal readonly DActionArity2V108 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V107))]
+ [MonoPInvokeCallback (typeof (DActionArity2V108))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::MediaPlayer.MPMediaEntity[], NSError>) (descriptor->Target);
if (del != null)
del (CFArray.ArrayFromHandle<global::MediaPlayer.MPMediaEntity> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V107 */
- internal sealed class NIDActionArity2V107 : TrampolineBlockBase {
- DActionArity2V107 invoker;
+ } /* class SDActionArity2V108 */
+ internal sealed class NIDActionArity2V108 : TrampolineBlockBase {
+ DActionArity2V108 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V107 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V108 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V107> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V108> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -28523,7 +28565,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::MediaPlayer.MPMediaEntity[], NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V107 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V108 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::MediaPlayer.MPMediaEntity[] arg1, NSError arg2)
@@ -28536,31 +28578,31 @@ namespace ObjCRuntime {
if (nsa_arg1 != null)
nsa_arg1.Dispose ();
}
- } /* class NIDActionArity2V107 */
+ } /* class NIDActionArity2V108 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::MediaPlayer.MPMediaPlaylist, NSError>))]
- internal delegate void DActionArity2V108 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V109 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V108 {
- static internal readonly DActionArity2V108 Handler = Invoke;
+ static internal class SDActionArity2V109 {
+ static internal readonly DActionArity2V109 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V108))]
+ [MonoPInvokeCallback (typeof (DActionArity2V109))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::MediaPlayer.MPMediaPlaylist, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<MPMediaPlaylist> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V108 */
- internal sealed class NIDActionArity2V108 : TrampolineBlockBase {
- DActionArity2V108 invoker;
+ } /* class SDActionArity2V109 */
+ internal sealed class NIDActionArity2V109 : TrampolineBlockBase {
+ DActionArity2V109 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V108 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V109 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V108> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V109> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -28569,7 +28611,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::MediaPlayer.MPMediaPlaylist, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V108 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V109 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::MediaPlayer.MPMediaPlaylist arg1, NSError arg2)
@@ -28578,31 +28620,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V108 */
+ } /* class NIDActionArity2V109 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::MediaPlayer.MPMusicPlayerControllerQueue, NSError>))]
- internal delegate void DActionArity2V109 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V110 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V109 {
- static internal readonly DActionArity2V109 Handler = Invoke;
+ static internal class SDActionArity2V110 {
+ static internal readonly DActionArity2V110 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V109))]
+ [MonoPInvokeCallback (typeof (DActionArity2V110))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::MediaPlayer.MPMusicPlayerControllerQueue, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<MPMusicPlayerControllerQueue> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V109 */
- internal sealed class NIDActionArity2V109 : TrampolineBlockBase {
- DActionArity2V109 invoker;
+ } /* class SDActionArity2V110 */
+ internal sealed class NIDActionArity2V110 : TrampolineBlockBase {
+ DActionArity2V110 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V109 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V110 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V109> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V110> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -28611,7 +28653,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::MediaPlayer.MPMusicPlayerControllerQueue, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V109 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V110 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::MediaPlayer.MPMusicPlayerControllerQueue arg1, NSError arg2)
@@ -28620,31 +28662,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V109 */
+ } /* class NIDActionArity2V110 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::Metal.IMTLComputePipelineState, NSError>))]
- internal delegate void DActionArity2V113 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V114 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V113 {
- static internal readonly DActionArity2V113 Handler = Invoke;
+ static internal class SDActionArity2V114 {
+ static internal readonly DActionArity2V114 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V113))]
+ [MonoPInvokeCallback (typeof (DActionArity2V114))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::Metal.IMTLComputePipelineState, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetINativeObject<Metal.IMTLComputePipelineState> (arg1, false)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V113 */
- internal sealed class NIDActionArity2V113 : TrampolineBlockBase {
- DActionArity2V113 invoker;
+ } /* class SDActionArity2V114 */
+ internal sealed class NIDActionArity2V114 : TrampolineBlockBase {
+ DActionArity2V114 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V113 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V114 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V113> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V114> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -28653,7 +28695,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::Metal.IMTLComputePipelineState, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V113 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V114 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::Metal.IMTLComputePipelineState arg1, NSError arg2)
@@ -28662,31 +28704,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V113 */
+ } /* class NIDActionArity2V114 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::Metal.IMTLFunction, NSError>))]
- internal delegate void DActionArity2V114 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V115 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V114 {
- static internal readonly DActionArity2V114 Handler = Invoke;
+ static internal class SDActionArity2V115 {
+ static internal readonly DActionArity2V115 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V114))]
+ [MonoPInvokeCallback (typeof (DActionArity2V115))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::Metal.IMTLFunction, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetINativeObject<Metal.IMTLFunction> (arg1, false)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V114 */
- internal sealed class NIDActionArity2V114 : TrampolineBlockBase {
- DActionArity2V114 invoker;
+ } /* class SDActionArity2V115 */
+ internal sealed class NIDActionArity2V115 : TrampolineBlockBase {
+ DActionArity2V115 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V114 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V115 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V114> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V115> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -28695,7 +28737,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::Metal.IMTLFunction, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V114 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V115 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::Metal.IMTLFunction arg1, NSError arg2)
@@ -28704,31 +28746,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V114 */
+ } /* class NIDActionArity2V115 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::Metal.IMTLLibrary, NSError>))]
- internal delegate void DActionArity2V111 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V112 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V111 {
- static internal readonly DActionArity2V111 Handler = Invoke;
+ static internal class SDActionArity2V112 {
+ static internal readonly DActionArity2V112 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V111))]
+ [MonoPInvokeCallback (typeof (DActionArity2V112))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::Metal.IMTLLibrary, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetINativeObject<Metal.IMTLLibrary> (arg1, false)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V111 */
- internal sealed class NIDActionArity2V111 : TrampolineBlockBase {
- DActionArity2V111 invoker;
+ } /* class SDActionArity2V112 */
+ internal sealed class NIDActionArity2V112 : TrampolineBlockBase {
+ DActionArity2V112 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V111 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V112 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V111> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V112> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -28737,7 +28779,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::Metal.IMTLLibrary, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V111 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V112 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::Metal.IMTLLibrary arg1, NSError arg2)
@@ -28746,31 +28788,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V111 */
+ } /* class NIDActionArity2V112 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::Metal.IMTLRenderPipelineState, NSError>))]
- internal delegate void DActionArity2V112 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V113 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V112 {
- static internal readonly DActionArity2V112 Handler = Invoke;
+ static internal class SDActionArity2V113 {
+ static internal readonly DActionArity2V113 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V112))]
+ [MonoPInvokeCallback (typeof (DActionArity2V113))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::Metal.IMTLRenderPipelineState, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetINativeObject<Metal.IMTLRenderPipelineState> (arg1, false)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V112 */
- internal sealed class NIDActionArity2V112 : TrampolineBlockBase {
- DActionArity2V112 invoker;
+ } /* class SDActionArity2V113 */
+ internal sealed class NIDActionArity2V113 : TrampolineBlockBase {
+ DActionArity2V113 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V112 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V113 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V112> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V113> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -28779,7 +28821,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::Metal.IMTLRenderPipelineState, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V112 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V113 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::Metal.IMTLRenderPipelineState arg1, NSError arg2)
@@ -28788,31 +28830,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V112 */
+ } /* class NIDActionArity2V113 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::MetalPerformanceShaders.MPSImage, NSError>))]
- internal delegate void DActionArity2V115 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V116 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V115 {
- static internal readonly DActionArity2V115 Handler = Invoke;
+ static internal class SDActionArity2V116 {
+ static internal readonly DActionArity2V116 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V115))]
+ [MonoPInvokeCallback (typeof (DActionArity2V116))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::MetalPerformanceShaders.MPSImage, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<MetalPerformanceShaders.MPSImage> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V115 */
- internal sealed class NIDActionArity2V115 : TrampolineBlockBase {
- DActionArity2V115 invoker;
+ } /* class SDActionArity2V116 */
+ internal sealed class NIDActionArity2V116 : TrampolineBlockBase {
+ DActionArity2V116 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V115 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V116 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V115> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V116> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -28821,7 +28863,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::MetalPerformanceShaders.MPSImage, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V115 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V116 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::MetalPerformanceShaders.MPSImage arg1, NSError arg2)
@@ -28830,31 +28872,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V115 */
+ } /* class NIDActionArity2V116 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::NaturalLanguage.NLTaggerAssetsResult, NSError>))]
- internal delegate void DActionArity2V116 (IntPtr block, IntPtr arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V117 (IntPtr block, IntPtr arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V116 {
- static internal readonly DActionArity2V116 Handler = Invoke;
+ static internal class SDActionArity2V117 {
+ static internal readonly DActionArity2V117 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V116))]
+ [MonoPInvokeCallback (typeof (DActionArity2V117))]
static unsafe void Invoke (IntPtr block, IntPtr arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::NaturalLanguage.NLTaggerAssetsResult, NSError>) (descriptor->Target);
if (del != null)
- del ((NaturalLanguage.NLTaggerAssetsResult) (long) arg1, Runtime.GetNSObject<NSError> (arg2)!);
- }
- } /* class SDActionArity2V116 */
- internal sealed class NIDActionArity2V116 : TrampolineBlockBase {
- DActionArity2V116 invoker;
+ del ((NaturalLanguage.NLTaggerAssetsResult) (long) arg1, Runtime.GetNSObject<NSError> (arg2)!);
+ }
+ } /* class SDActionArity2V117 */
+ internal sealed class NIDActionArity2V117 : TrampolineBlockBase {
+ DActionArity2V117 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V116 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V117 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V116> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V117> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -28863,7 +28905,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::NaturalLanguage.NLTaggerAssetsResult, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V116 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V117 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::NaturalLanguage.NLTaggerAssetsResult arg1, NSError arg2)
@@ -28871,31 +28913,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, (IntPtr) (long) arg1, arg2__handle__);
}
- } /* class NIDActionArity2V116 */
+ } /* class NIDActionArity2V117 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::NetworkExtension.NEAppPushManager[], NSError>))]
- internal delegate void DActionArity2V118 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V119 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V118 {
- static internal readonly DActionArity2V118 Handler = Invoke;
+ static internal class SDActionArity2V119 {
+ static internal readonly DActionArity2V119 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V118))]
+ [MonoPInvokeCallback (typeof (DActionArity2V119))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::NetworkExtension.NEAppPushManager[], NSError>) (descriptor->Target);
if (del != null)
del (CFArray.ArrayFromHandle<global::NetworkExtension.NEAppPushManager> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V118 */
- internal sealed class NIDActionArity2V118 : TrampolineBlockBase {
- DActionArity2V118 invoker;
+ } /* class SDActionArity2V119 */
+ internal sealed class NIDActionArity2V119 : TrampolineBlockBase {
+ DActionArity2V119 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V118 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V119 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V118> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V119> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -28904,7 +28946,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::NetworkExtension.NEAppPushManager[], NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V118 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V119 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::NetworkExtension.NEAppPushManager[] arg1, NSError arg2)
@@ -28917,31 +28959,31 @@ namespace ObjCRuntime {
if (nsa_arg1 != null)
nsa_arg1.Dispose ();
}
- } /* class NIDActionArity2V118 */
+ } /* class NIDActionArity2V119 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::PassKit.PKAddShareablePassConfiguration, NSError>))]
- internal delegate void DActionArity2V121 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V122 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V121 {
- static internal readonly DActionArity2V121 Handler = Invoke;
+ static internal class SDActionArity2V122 {
+ static internal readonly DActionArity2V122 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V121))]
+ [MonoPInvokeCallback (typeof (DActionArity2V122))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::PassKit.PKAddShareablePassConfiguration, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<PassKit.PKAddShareablePassConfiguration> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V121 */
- internal sealed class NIDActionArity2V121 : TrampolineBlockBase {
- DActionArity2V121 invoker;
+ } /* class SDActionArity2V122 */
+ internal sealed class NIDActionArity2V122 : TrampolineBlockBase {
+ DActionArity2V122 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V121 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V122 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V121> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V122> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -28950,7 +28992,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::PassKit.PKAddShareablePassConfiguration, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V121 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V122 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::PassKit.PKAddShareablePassConfiguration arg1, NSError arg2)
@@ -28959,31 +29001,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V121 */
+ } /* class NIDActionArity2V122 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::PassKit.PKPaymentAuthorizationStatus, global::PassKit.PKPaymentSummaryItem[]>))]
- internal delegate void DActionArity2V122 (IntPtr block, IntPtr arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V123 (IntPtr block, IntPtr arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V122 {
- static internal readonly DActionArity2V122 Handler = Invoke;
+ static internal class SDActionArity2V123 {
+ static internal readonly DActionArity2V123 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V122))]
+ [MonoPInvokeCallback (typeof (DActionArity2V123))]
static unsafe void Invoke (IntPtr block, IntPtr arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::PassKit.PKPaymentAuthorizationStatus, global::PassKit.PKPaymentSummaryItem[]>) (descriptor->Target);
if (del != null)
del ((PassKit.PKPaymentAuthorizationStatus) (long) arg1, CFArray.ArrayFromHandle<global::PassKit.PKPaymentSummaryItem> (arg2)!);
}
- } /* class SDActionArity2V122 */
- internal sealed class NIDActionArity2V122 : TrampolineBlockBase {
- DActionArity2V122 invoker;
+ } /* class SDActionArity2V123 */
+ internal sealed class NIDActionArity2V123 : TrampolineBlockBase {
+ DActionArity2V123 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V122 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V123 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V122> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V123> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -28992,7 +29034,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::PassKit.PKPaymentAuthorizationStatus, global::PassKit.PKPaymentSummaryItem[]>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V122 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V123 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::PassKit.PKPaymentAuthorizationStatus arg1, global::PassKit.PKPaymentSummaryItem[] arg2)
@@ -29004,31 +29046,31 @@ namespace ObjCRuntime {
if (nsa_arg2 != null)
nsa_arg2.Dispose ();
}
- } /* class NIDActionArity2V122 */
+ } /* class NIDActionArity2V123 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::Photos.PHLivePhoto, NSDictionary>))]
- internal delegate void DActionArity2V123 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V124 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V123 {
- static internal readonly DActionArity2V123 Handler = Invoke;
+ static internal class SDActionArity2V124 {
+ static internal readonly DActionArity2V124 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V123))]
+ [MonoPInvokeCallback (typeof (DActionArity2V124))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::Photos.PHLivePhoto, NSDictionary>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<PHLivePhoto> (arg1)!, Runtime.GetNSObject<NSDictionary> (arg2)!);
}
- } /* class SDActionArity2V123 */
- internal sealed class NIDActionArity2V123 : TrampolineBlockBase {
- DActionArity2V123 invoker;
+ } /* class SDActionArity2V124 */
+ internal sealed class NIDActionArity2V124 : TrampolineBlockBase {
+ DActionArity2V124 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V123 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V124 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V123> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V124> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -29037,7 +29079,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::Photos.PHLivePhoto, NSDictionary>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V123 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V124 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::Photos.PHLivePhoto arg1, NSDictionary arg2)
@@ -29046,31 +29088,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V123 */
+ } /* class NIDActionArity2V124 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::Photos.PHLivePhoto, NSError>))]
- internal delegate void DActionArity2V124 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V125 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V124 {
- static internal readonly DActionArity2V124 Handler = Invoke;
+ static internal class SDActionArity2V125 {
+ static internal readonly DActionArity2V125 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V124))]
+ [MonoPInvokeCallback (typeof (DActionArity2V125))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::Photos.PHLivePhoto, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<PHLivePhoto> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V124 */
- internal sealed class NIDActionArity2V124 : TrampolineBlockBase {
- DActionArity2V124 invoker;
+ } /* class SDActionArity2V125 */
+ internal sealed class NIDActionArity2V125 : TrampolineBlockBase {
+ DActionArity2V125 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V124 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V125 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V124> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V125> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -29079,7 +29121,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::Photos.PHLivePhoto, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V124 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V125 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::Photos.PHLivePhoto arg1, NSError arg2)
@@ -29088,31 +29130,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V124 */
+ } /* class NIDActionArity2V125 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::QuickLook.QLPreviewReply, NSError>))]
- internal delegate void DActionArity2V125 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V126 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V125 {
- static internal readonly DActionArity2V125 Handler = Invoke;
+ static internal class SDActionArity2V126 {
+ static internal readonly DActionArity2V126 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V125))]
+ [MonoPInvokeCallback (typeof (DActionArity2V126))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::QuickLook.QLPreviewReply, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<QLPreviewReply> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V125 */
- internal sealed class NIDActionArity2V125 : TrampolineBlockBase {
- DActionArity2V125 invoker;
+ } /* class SDActionArity2V126 */
+ internal sealed class NIDActionArity2V126 : TrampolineBlockBase {
+ DActionArity2V126 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V125 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V126 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V125> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V126> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -29121,7 +29163,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::QuickLook.QLPreviewReply, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V125 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V126 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::QuickLook.QLPreviewReply arg1, NSError arg2)
@@ -29130,31 +29172,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V125 */
+ } /* class NIDActionArity2V126 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::QuickLookThumbnailing.QLThumbnailReply, NSError>))]
- internal delegate void DActionArity2V127 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V128 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V127 {
- static internal readonly DActionArity2V127 Handler = Invoke;
+ static internal class SDActionArity2V128 {
+ static internal readonly DActionArity2V128 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V127))]
+ [MonoPInvokeCallback (typeof (DActionArity2V128))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::QuickLookThumbnailing.QLThumbnailReply, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<QuickLookThumbnailing.QLThumbnailReply> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V127 */
- internal sealed class NIDActionArity2V127 : TrampolineBlockBase {
- DActionArity2V127 invoker;
+ } /* class SDActionArity2V128 */
+ internal sealed class NIDActionArity2V128 : TrampolineBlockBase {
+ DActionArity2V128 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V127 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V128 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V127> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V128> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -29163,7 +29205,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::QuickLookThumbnailing.QLThumbnailReply, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V127 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V128 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::QuickLookThumbnailing.QLThumbnailReply arg1, NSError arg2)
@@ -29172,31 +29214,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V127 */
+ } /* class NIDActionArity2V128 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::QuickLookThumbnailing.QLThumbnailRepresentation, NSError>))]
- internal delegate void DActionArity2V126 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V127 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V126 {
- static internal readonly DActionArity2V126 Handler = Invoke;
+ static internal class SDActionArity2V127 {
+ static internal readonly DActionArity2V127 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V126))]
+ [MonoPInvokeCallback (typeof (DActionArity2V127))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::QuickLookThumbnailing.QLThumbnailRepresentation, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<QuickLookThumbnailing.QLThumbnailRepresentation> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V126 */
- internal sealed class NIDActionArity2V126 : TrampolineBlockBase {
- DActionArity2V126 invoker;
+ } /* class SDActionArity2V127 */
+ internal sealed class NIDActionArity2V127 : TrampolineBlockBase {
+ DActionArity2V127 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V126 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V127 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V126> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V127> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -29205,7 +29247,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::QuickLookThumbnailing.QLThumbnailRepresentation, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V126 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V127 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::QuickLookThumbnailing.QLThumbnailRepresentation arg1, NSError arg2)
@@ -29214,31 +29256,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V126 */
+ } /* class NIDActionArity2V127 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::ReplayKit.RPBroadcastActivityViewController, NSError>))]
- internal delegate void DActionArity2V128 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V129 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V128 {
- static internal readonly DActionArity2V128 Handler = Invoke;
+ static internal class SDActionArity2V129 {
+ static internal readonly DActionArity2V129 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V128))]
+ [MonoPInvokeCallback (typeof (DActionArity2V129))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::ReplayKit.RPBroadcastActivityViewController, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<ReplayKit.RPBroadcastActivityViewController> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V128 */
- internal sealed class NIDActionArity2V128 : TrampolineBlockBase {
- DActionArity2V128 invoker;
+ } /* class SDActionArity2V129 */
+ internal sealed class NIDActionArity2V129 : TrampolineBlockBase {
+ DActionArity2V129 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V128 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V129 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V128> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V129> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -29247,7 +29289,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::ReplayKit.RPBroadcastActivityViewController, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V128 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V129 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::ReplayKit.RPBroadcastActivityViewController arg1, NSError arg2)
@@ -29256,31 +29298,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V128 */
+ } /* class NIDActionArity2V129 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::ReplayKit.RPPreviewViewController, NSError>))]
- internal delegate void DActionArity2V129 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V130 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V129 {
- static internal readonly DActionArity2V129 Handler = Invoke;
+ static internal class SDActionArity2V130 {
+ static internal readonly DActionArity2V130 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V129))]
+ [MonoPInvokeCallback (typeof (DActionArity2V130))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::ReplayKit.RPPreviewViewController, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<ReplayKit.RPPreviewViewController> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V129 */
- internal sealed class NIDActionArity2V129 : TrampolineBlockBase {
- DActionArity2V129 invoker;
+ } /* class SDActionArity2V130 */
+ internal sealed class NIDActionArity2V130 : TrampolineBlockBase {
+ DActionArity2V130 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V129 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V130 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V129> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V130> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -29289,7 +29331,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::ReplayKit.RPPreviewViewController, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V129 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V130 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::ReplayKit.RPPreviewViewController arg1, NSError arg2)
@@ -29298,31 +29340,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V129 */
+ } /* class NIDActionArity2V130 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::SafariServices.SFContentBlockerState, NSError>))]
- internal delegate void DActionArity2V130 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V131 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V130 {
- static internal readonly DActionArity2V130 Handler = Invoke;
+ static internal class SDActionArity2V131 {
+ static internal readonly DActionArity2V131 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V130))]
+ [MonoPInvokeCallback (typeof (DActionArity2V131))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::SafariServices.SFContentBlockerState, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<SafariServices.SFContentBlockerState> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V130 */
- internal sealed class NIDActionArity2V130 : TrampolineBlockBase {
- DActionArity2V130 invoker;
+ } /* class SDActionArity2V131 */
+ internal sealed class NIDActionArity2V131 : TrampolineBlockBase {
+ DActionArity2V131 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V130 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V131 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V130> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V131> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -29331,7 +29373,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::SafariServices.SFContentBlockerState, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V130 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V131 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::SafariServices.SFContentBlockerState arg1, NSError arg2)
@@ -29340,31 +29382,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V130 */
+ } /* class NIDActionArity2V131 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::Security.SecIdentity, NSArray>))]
- internal delegate void DActionArity2V120 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V121 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
- //
- static internal class SDActionArity2V120 {
- static internal readonly DActionArity2V120 Handler = Invoke;
+ //
+ static internal class SDActionArity2V121 {
+ static internal readonly DActionArity2V121 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V120))]
+ [MonoPInvokeCallback (typeof (DActionArity2V121))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::Security.SecIdentity, NSArray>) (descriptor->Target);
if (del != null)
del (new Security.SecIdentity (arg1, false), Runtime.GetNSObject<NSArray> (arg2)!);
}
- } /* class SDActionArity2V120 */
- internal sealed class NIDActionArity2V120 : TrampolineBlockBase {
- DActionArity2V120 invoker;
+ } /* class SDActionArity2V121 */
+ internal sealed class NIDActionArity2V121 : TrampolineBlockBase {
+ DActionArity2V121 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V120 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V121 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V120> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V121> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -29373,7 +29415,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::Security.SecIdentity, NSArray>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V120 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V121 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::Security.SecIdentity arg1, NSArray arg2)
@@ -29382,31 +29424,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V120 */
+ } /* class NIDActionArity2V121 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::ShazamKit.SHMediaItem, NSError>))]
- internal delegate void DActionArity2V131 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V132 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V131 {
- static internal readonly DActionArity2V131 Handler = Invoke;
+ static internal class SDActionArity2V132 {
+ static internal readonly DActionArity2V132 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V131))]
+ [MonoPInvokeCallback (typeof (DActionArity2V132))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::ShazamKit.SHMediaItem, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<ShazamKit.SHMediaItem> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V131 */
- internal sealed class NIDActionArity2V131 : TrampolineBlockBase {
- DActionArity2V131 invoker;
+ } /* class SDActionArity2V132 */
+ internal sealed class NIDActionArity2V132 : TrampolineBlockBase {
+ DActionArity2V132 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V131 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V132 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V131> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V132> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -29415,7 +29457,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::ShazamKit.SHMediaItem, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V131 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V132 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::ShazamKit.SHMediaItem arg1, NSError arg2)
@@ -29424,31 +29466,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V131 */
+ } /* class NIDActionArity2V132 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::Speech.SFSpeechRecognitionResult, NSError>))]
- internal delegate void DActionArity2V132 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V133 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V132 {
- static internal readonly DActionArity2V132 Handler = Invoke;
+ static internal class SDActionArity2V133 {
+ static internal readonly DActionArity2V133 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V132))]
+ [MonoPInvokeCallback (typeof (DActionArity2V133))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::Speech.SFSpeechRecognitionResult, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<Speech.SFSpeechRecognitionResult> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V132 */
- internal sealed class NIDActionArity2V132 : TrampolineBlockBase {
- DActionArity2V132 invoker;
+ } /* class SDActionArity2V133 */
+ internal sealed class NIDActionArity2V133 : TrampolineBlockBase {
+ DActionArity2V133 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V132 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V133 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V132> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V133> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -29457,7 +29499,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::Speech.SFSpeechRecognitionResult, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V132 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V133 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::Speech.SFSpeechRecognitionResult arg1, NSError arg2)
@@ -29466,31 +29508,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V132 */
+ } /* class NIDActionArity2V133 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::StoreKit.SKCloudServiceCapability, NSError>))]
- internal delegate void DActionArity2V133 (IntPtr block, UIntPtr arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V134 (IntPtr block, UIntPtr arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V133 {
- static internal readonly DActionArity2V133 Handler = Invoke;
+ static internal class SDActionArity2V134 {
+ static internal readonly DActionArity2V134 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V133))]
+ [MonoPInvokeCallback (typeof (DActionArity2V134))]
static unsafe void Invoke (IntPtr block, UIntPtr arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::StoreKit.SKCloudServiceCapability, NSError>) (descriptor->Target);
if (del != null)
del ((StoreKit.SKCloudServiceCapability) (ulong) arg1, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V133 */
- internal sealed class NIDActionArity2V133 : TrampolineBlockBase {
- DActionArity2V133 invoker;
+ } /* class SDActionArity2V134 */
+ internal sealed class NIDActionArity2V134 : TrampolineBlockBase {
+ DActionArity2V134 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V133 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V134 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V133> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V134> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -29499,7 +29541,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::StoreKit.SKCloudServiceCapability, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V133 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V134 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::StoreKit.SKCloudServiceCapability arg1, NSError arg2)
@@ -29507,31 +29549,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, (UIntPtr) (ulong) arg1, arg2__handle__);
}
- } /* class NIDActionArity2V133 */
+ } /* class NIDActionArity2V134 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::StoreKit.SKProductStorePromotionVisibility, NSError>))]
- internal delegate void DActionArity2V136 (IntPtr block, IntPtr arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V137 (IntPtr block, IntPtr arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V136 {
- static internal readonly DActionArity2V136 Handler = Invoke;
+ static internal class SDActionArity2V137 {
+ static internal readonly DActionArity2V137 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V136))]
+ [MonoPInvokeCallback (typeof (DActionArity2V137))]
static unsafe void Invoke (IntPtr block, IntPtr arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::StoreKit.SKProductStorePromotionVisibility, NSError>) (descriptor->Target);
if (del != null)
del ((StoreKit.SKProductStorePromotionVisibility) (long) arg1, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V136 */
- internal sealed class NIDActionArity2V136 : TrampolineBlockBase {
- DActionArity2V136 invoker;
+ } /* class SDActionArity2V137 */
+ internal sealed class NIDActionArity2V137 : TrampolineBlockBase {
+ DActionArity2V137 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V136 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V137 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V136> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V137> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -29540,7 +29582,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::StoreKit.SKProductStorePromotionVisibility, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V136 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V137 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::StoreKit.SKProductStorePromotionVisibility arg1, NSError arg2)
@@ -29548,31 +29590,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, (IntPtr) (long) arg1, arg2__handle__);
}
- } /* class NIDActionArity2V136 */
+ } /* class NIDActionArity2V137 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::StoreKit.SKProduct[], NSError>))]
- internal delegate void DActionArity2V135 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V136 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V135 {
- static internal readonly DActionArity2V135 Handler = Invoke;
+ static internal class SDActionArity2V136 {
+ static internal readonly DActionArity2V136 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V135))]
+ [MonoPInvokeCallback (typeof (DActionArity2V136))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::StoreKit.SKProduct[], NSError>) (descriptor->Target);
if (del != null)
del (CFArray.ArrayFromHandle<global::StoreKit.SKProduct> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V135 */
- internal sealed class NIDActionArity2V135 : TrampolineBlockBase {
- DActionArity2V135 invoker;
+ } /* class SDActionArity2V136 */
+ internal sealed class NIDActionArity2V136 : TrampolineBlockBase {
+ DActionArity2V136 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V135 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V136 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V135> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V136> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -29581,7 +29623,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::StoreKit.SKProduct[], NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V135 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V136 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::StoreKit.SKProduct[] arg1, NSError arg2)
@@ -29594,31 +29636,31 @@ namespace ObjCRuntime {
if (nsa_arg1 != null)
nsa_arg1.Dispose ();
}
- } /* class NIDActionArity2V135 */
+ } /* class NIDActionArity2V136 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<bool, global::AVKit.AVAudioSessionRouteSelection>))]
- internal delegate void DActionArity2V24 (IntPtr block, bool arg1, IntPtr arg2);
+ internal delegate void DActionArity2V25 (IntPtr block, bool arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V24 {
- static internal readonly DActionArity2V24 Handler = Invoke;
+ static internal class SDActionArity2V25 {
+ static internal readonly DActionArity2V25 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V24))]
+ [MonoPInvokeCallback (typeof (DActionArity2V25))]
static unsafe void Invoke (IntPtr block, bool arg1, IntPtr arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<bool, global::AVKit.AVAudioSessionRouteSelection>) (descriptor->Target);
if (del != null)
del (arg1, (AVKit.AVAudioSessionRouteSelection) (long) arg2);
}
- } /* class SDActionArity2V24 */
- internal sealed class NIDActionArity2V24 : TrampolineBlockBase {
- DActionArity2V24 invoker;
+ } /* class SDActionArity2V25 */
+ internal sealed class NIDActionArity2V25 : TrampolineBlockBase {
+ DActionArity2V25 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V24 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V25 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V24> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V25> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -29627,14 +29669,14 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<bool, global::AVKit.AVAudioSessionRouteSelection>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V24 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V25 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (bool arg1, global::AVKit.AVAudioSessionRouteSelection arg2)
{
invoker (BlockPointer, arg1, (IntPtr) (long) arg2);
}
- } /* class NIDActionArity2V24 */
+ } /* class NIDActionArity2V25 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<bool, NSError>))]
internal delegate void DActionArity2V0 (IntPtr block, bool arg1, NativeHandle arg2);
@@ -29678,28 +29720,28 @@ namespace ObjCRuntime {
} /* class NIDActionArity2V0 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<int, NSError>))]
- internal delegate void DActionArity2V3 (IntPtr block, int arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V4 (IntPtr block, int arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V3 {
- static internal readonly DActionArity2V3 Handler = Invoke;
+ static internal class SDActionArity2V4 {
+ static internal readonly DActionArity2V4 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V3))]
+ [MonoPInvokeCallback (typeof (DActionArity2V4))]
static unsafe void Invoke (IntPtr block, int arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<int, NSError>) (descriptor->Target);
if (del != null)
del (arg1, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V3 */
- internal sealed class NIDActionArity2V3 : TrampolineBlockBase {
- DActionArity2V3 invoker;
+ } /* class SDActionArity2V4 */
+ internal sealed class NIDActionArity2V4 : TrampolineBlockBase {
+ DActionArity2V4 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V3 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V4 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V3> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V4> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -29708,7 +29750,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<int, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V3 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V4 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (int arg1, NSError arg2)
@@ -29716,31 +29758,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1, arg2__handle__);
}
- } /* class NIDActionArity2V3 */
+ } /* class NIDActionArity2V4 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<long, NSError>))]
- internal delegate void DActionArity2V13 (IntPtr block, long arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V14 (IntPtr block, long arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V13 {
- static internal readonly DActionArity2V13 Handler = Invoke;
+ static internal class SDActionArity2V14 {
+ static internal readonly DActionArity2V14 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V13))]
+ [MonoPInvokeCallback (typeof (DActionArity2V14))]
static unsafe void Invoke (IntPtr block, long arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<long, NSError>) (descriptor->Target);
if (del != null)
del (arg1, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V13 */
- internal sealed class NIDActionArity2V13 : TrampolineBlockBase {
- DActionArity2V13 invoker;
+ } /* class SDActionArity2V14 */
+ internal sealed class NIDActionArity2V14 : TrampolineBlockBase {
+ DActionArity2V14 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V13 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V14 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V13> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V14> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -29749,7 +29791,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<long, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V13 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V14 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (long arg1, NSError arg2)
@@ -29757,31 +29799,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1, arg2__handle__);
}
- } /* class NIDActionArity2V13 */
+ } /* class NIDActionArity2V14 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<nint, NSError>))]
- internal delegate void DActionArity2V63 (IntPtr block, nint arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V64 (IntPtr block, nint arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V63 {
- static internal readonly DActionArity2V63 Handler = Invoke;
+ static internal class SDActionArity2V64 {
+ static internal readonly DActionArity2V64 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V63))]
+ [MonoPInvokeCallback (typeof (DActionArity2V64))]
static unsafe void Invoke (IntPtr block, nint arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<nint, NSError>) (descriptor->Target);
if (del != null)
del (arg1, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V63 */
- internal sealed class NIDActionArity2V63 : TrampolineBlockBase {
- DActionArity2V63 invoker;
+ } /* class SDActionArity2V64 */
+ internal sealed class NIDActionArity2V64 : TrampolineBlockBase {
+ DActionArity2V64 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V63 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V64 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V63> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V64> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -29790,7 +29832,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<nint, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V63 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V64 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (nint arg1, NSError arg2)
@@ -29798,31 +29840,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1, arg2__handle__);
}
- } /* class NIDActionArity2V63 */
+ } /* class NIDActionArity2V64 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<nint, nuint>))]
- internal delegate void DActionArity2V69 (IntPtr block, nint arg1, nuint arg2);
+ internal delegate void DActionArity2V70 (IntPtr block, nint arg1, nuint arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V69 {
- static internal readonly DActionArity2V69 Handler = Invoke;
+ static internal class SDActionArity2V70 {
+ static internal readonly DActionArity2V70 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V69))]
+ [MonoPInvokeCallback (typeof (DActionArity2V70))]
static unsafe void Invoke (IntPtr block, nint arg1, nuint arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<nint, nuint>) (descriptor->Target);
if (del != null)
del (arg1, arg2);
}
- } /* class SDActionArity2V69 */
- internal sealed class NIDActionArity2V69 : TrampolineBlockBase {
- DActionArity2V69 invoker;
+ } /* class SDActionArity2V70 */
+ internal sealed class NIDActionArity2V70 : TrampolineBlockBase {
+ DActionArity2V70 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V69 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V70 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V69> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V70> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -29831,38 +29873,38 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<nint, nuint>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V69 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V70 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (nint arg1, nuint arg2)
{
invoker (BlockPointer, arg1, arg2);
}
- } /* class NIDActionArity2V69 */
+ } /* class NIDActionArity2V70 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<string, NSError>))]
- internal delegate void DActionArity2V66 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V67 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V66 {
- static internal readonly DActionArity2V66 Handler = Invoke;
+ static internal class SDActionArity2V67 {
+ static internal readonly DActionArity2V67 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V66))]
+ [MonoPInvokeCallback (typeof (DActionArity2V67))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<string, NSError>) (descriptor->Target);
if (del != null)
del (CFString.FromHandle (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V66 */
- internal sealed class NIDActionArity2V66 : TrampolineBlockBase {
- DActionArity2V66 invoker;
+ } /* class SDActionArity2V67 */
+ internal sealed class NIDActionArity2V67 : TrampolineBlockBase {
+ DActionArity2V67 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V66 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V67 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V66> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V67> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -29871,7 +29913,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<string, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V66 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V67 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (string arg1, NSError arg2)
@@ -29883,31 +29925,31 @@ namespace ObjCRuntime {
invoker (BlockPointer, nsarg1, arg2__handle__);
CFString.ReleaseNative (nsarg1);
}
- } /* class NIDActionArity2V66 */
+ } /* class NIDActionArity2V67 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<string, global::GameKit.GKInviteeResponse>))]
- internal delegate void DActionArity2V86 (IntPtr block, NativeHandle arg1, IntPtr arg2);
+ internal delegate void DActionArity2V87 (IntPtr block, NativeHandle arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V86 {
- static internal readonly DActionArity2V86 Handler = Invoke;
+ static internal class SDActionArity2V87 {
+ static internal readonly DActionArity2V87 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V86))]
+ [MonoPInvokeCallback (typeof (DActionArity2V87))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, IntPtr arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<string, global::GameKit.GKInviteeResponse>) (descriptor->Target);
if (del != null)
del (CFString.FromHandle (arg1)!, (GameKit.GKInviteeResponse) (long) arg2);
- }
- } /* class SDActionArity2V86 */
- internal sealed class NIDActionArity2V86 : TrampolineBlockBase {
- DActionArity2V86 invoker;
+ }
+ } /* class SDActionArity2V87 */
+ internal sealed class NIDActionArity2V87 : TrampolineBlockBase {
+ DActionArity2V87 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V86 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V87 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V86> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V87> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -29916,7 +29958,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<string, global::GameKit.GKInviteeResponse>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V86 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V87 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (string arg1, global::GameKit.GKInviteeResponse arg2)
@@ -29927,31 +29969,31 @@ namespace ObjCRuntime {
invoker (BlockPointer, nsarg1, (IntPtr) (long) arg2);
CFString.ReleaseNative (nsarg1);
}
- } /* class NIDActionArity2V86 */
+ } /* class NIDActionArity2V87 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<string, bool>))]
- internal delegate void DActionArity2V88 (IntPtr block, NativeHandle arg1, bool arg2);
+ internal delegate void DActionArity2V89 (IntPtr block, NativeHandle arg1, bool arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V88 {
- static internal readonly DActionArity2V88 Handler = Invoke;
+ static internal class SDActionArity2V89 {
+ static internal readonly DActionArity2V89 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V88))]
+ [MonoPInvokeCallback (typeof (DActionArity2V89))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, bool arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<string, bool>) (descriptor->Target);
if (del != null)
del (CFString.FromHandle (arg1)!, arg2);
}
- } /* class SDActionArity2V88 */
- internal sealed class NIDActionArity2V88 : TrampolineBlockBase {
- DActionArity2V88 invoker;
+ } /* class SDActionArity2V89 */
+ internal sealed class NIDActionArity2V89 : TrampolineBlockBase {
+ DActionArity2V89 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V88 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V89 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V88> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V89> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -29960,7 +30002,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<string, bool>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V88 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V89 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (string arg1, bool arg2)
@@ -29971,31 +30013,31 @@ namespace ObjCRuntime {
invoker (BlockPointer, nsarg1, arg2);
CFString.ReleaseNative (nsarg1);
}
- } /* class NIDActionArity2V88 */
+ } /* class NIDActionArity2V89 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<string[], NSError>))]
- internal delegate void DActionArity2V74 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V75 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V74 {
- static internal readonly DActionArity2V74 Handler = Invoke;
+ static internal class SDActionArity2V75 {
+ static internal readonly DActionArity2V75 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V74))]
+ [MonoPInvokeCallback (typeof (DActionArity2V75))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<string[], NSError>) (descriptor->Target);
if (del != null)
del (CFArray.StringArrayFromHandle (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V74 */
- internal sealed class NIDActionArity2V74 : TrampolineBlockBase {
- DActionArity2V74 invoker;
+ } /* class SDActionArity2V75 */
+ internal sealed class NIDActionArity2V75 : TrampolineBlockBase {
+ DActionArity2V75 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V74 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V75 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V74> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V75> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -30004,7 +30046,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<string[], NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V74 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V75 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (string[] arg1, NSError arg2)
@@ -30017,31 +30059,31 @@ namespace ObjCRuntime {
if (nsa_arg1 != null)
nsa_arg1.Dispose ();
}
- } /* class NIDActionArity2V74 */
+ } /* class NIDActionArity2V75 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::ThreadNetwork.THCredentials, NSError>))]
- internal delegate void DActionArity2V138 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V139 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V138 {
- static internal readonly DActionArity2V138 Handler = Invoke;
+ static internal class SDActionArity2V139 {
+ static internal readonly DActionArity2V139 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V138))]
+ [MonoPInvokeCallback (typeof (DActionArity2V139))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::ThreadNetwork.THCredentials, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<ThreadNetwork.THCredentials> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V138 */
- internal sealed class NIDActionArity2V138 : TrampolineBlockBase {
- DActionArity2V138 invoker;
+ } /* class SDActionArity2V139 */
+ internal sealed class NIDActionArity2V139 : TrampolineBlockBase {
+ DActionArity2V139 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V138 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V139 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V138> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V139> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -30050,7 +30092,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::ThreadNetwork.THCredentials, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V138 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V139 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::ThreadNetwork.THCredentials arg1, NSError arg2)
@@ -30059,31 +30101,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V138 */
+ } /* class NIDActionArity2V139 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::UIKit.NSTextLayoutManager, global::UIKit.NSTextLayoutFragment>))]
- internal delegate void DActionArity2V139 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V140 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V139 {
- static internal readonly DActionArity2V139 Handler = Invoke;
+ static internal class SDActionArity2V140 {
+ static internal readonly DActionArity2V140 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V139))]
+ [MonoPInvokeCallback (typeof (DActionArity2V140))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::UIKit.NSTextLayoutManager, global::UIKit.NSTextLayoutFragment>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<NSTextLayoutManager> (arg1)!, Runtime.GetNSObject<NSTextLayoutFragment> (arg2)!);
}
- } /* class SDActionArity2V139 */
- internal sealed class NIDActionArity2V139 : TrampolineBlockBase {
- DActionArity2V139 invoker;
+ } /* class SDActionArity2V140 */
+ internal sealed class NIDActionArity2V140 : TrampolineBlockBase {
+ DActionArity2V140 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V139 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V140 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V139> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V140> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -30092,7 +30134,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::UIKit.NSTextLayoutManager, global::UIKit.NSTextLayoutFragment>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V139 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V140 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::UIKit.NSTextLayoutManager arg1, global::UIKit.NSTextLayoutFragment arg2)
@@ -30101,31 +30143,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V139 */
+ } /* class NIDActionArity2V140 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::UIKit.UIImage, NSError>))]
- internal delegate void DActionArity2V153 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V154 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V153 {
- static internal readonly DActionArity2V153 Handler = Invoke;
+ static internal class SDActionArity2V154 {
+ static internal readonly DActionArity2V154 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V153))]
+ [MonoPInvokeCallback (typeof (DActionArity2V154))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::UIKit.UIImage, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<UIImage> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V153 */
- internal sealed class NIDActionArity2V153 : TrampolineBlockBase {
- DActionArity2V153 invoker;
+ } /* class SDActionArity2V154 */
+ internal sealed class NIDActionArity2V154 : TrampolineBlockBase {
+ DActionArity2V154 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V153 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V154 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V153> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V154> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -30134,7 +30176,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::UIKit.UIImage, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V153 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V154 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::UIKit.UIImage arg1, NSError arg2)
@@ -30143,31 +30185,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V153 */
+ } /* class NIDActionArity2V154 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::UIKit.UISpringLoadedInteraction, global::UIKit.IUISpringLoadedInteractionContext>))]
- internal delegate void DActionArity2V146 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V147 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V146 {
- static internal readonly DActionArity2V146 Handler = Invoke;
+ static internal class SDActionArity2V147 {
+ static internal readonly DActionArity2V147 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V146))]
+ [MonoPInvokeCallback (typeof (DActionArity2V147))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::UIKit.UISpringLoadedInteraction, global::UIKit.IUISpringLoadedInteractionContext>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<UISpringLoadedInteraction> (arg1)!, Runtime.GetINativeObject<UIKit.IUISpringLoadedInteractionContext> (arg2, false)!);
}
- } /* class SDActionArity2V146 */
- internal sealed class NIDActionArity2V146 : TrampolineBlockBase {
- DActionArity2V146 invoker;
+ } /* class SDActionArity2V147 */
+ internal sealed class NIDActionArity2V147 : TrampolineBlockBase {
+ DActionArity2V147 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V146 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V147 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V146> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V147> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -30176,7 +30218,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::UIKit.UISpringLoadedInteraction, global::UIKit.IUISpringLoadedInteractionContext>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V146 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V147 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::UIKit.UISpringLoadedInteraction arg1, global::UIKit.IUISpringLoadedInteractionContext arg2)
@@ -30185,31 +30227,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V146 */
+ } /* class NIDActionArity2V147 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::UIKit.UITableViewRowAction, NSIndexPath>))]
- internal delegate void DActionArity2V147 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V148 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V147 {
- static internal readonly DActionArity2V147 Handler = Invoke;
+ static internal class SDActionArity2V148 {
+ static internal readonly DActionArity2V148 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V147))]
+ [MonoPInvokeCallback (typeof (DActionArity2V148))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::UIKit.UITableViewRowAction, NSIndexPath>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<UITableViewRowAction> (arg1)!, Runtime.GetNSObject<NSIndexPath> (arg2)!);
}
- } /* class SDActionArity2V147 */
- internal sealed class NIDActionArity2V147 : TrampolineBlockBase {
- DActionArity2V147 invoker;
+ } /* class SDActionArity2V148 */
+ internal sealed class NIDActionArity2V148 : TrampolineBlockBase {
+ DActionArity2V148 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V147 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V148 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V147> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V148> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -30218,7 +30260,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::UIKit.UITableViewRowAction, NSIndexPath>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V147 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V148 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::UIKit.UITableViewRowAction arg1, NSIndexPath arg2)
@@ -30227,31 +30269,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V147 */
+ } /* class NIDActionArity2V148 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::UIKit.UIViewController, NSError>))]
- internal delegate void DActionArity2V84 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V85 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V84 {
- static internal readonly DActionArity2V84 Handler = Invoke;
+ static internal class SDActionArity2V85 {
+ static internal readonly DActionArity2V85 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V84))]
+ [MonoPInvokeCallback (typeof (DActionArity2V85))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::UIKit.UIViewController, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<UIViewController> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V84 */
- internal sealed class NIDActionArity2V84 : TrampolineBlockBase {
- DActionArity2V84 invoker;
+ } /* class SDActionArity2V85 */
+ internal sealed class NIDActionArity2V85 : TrampolineBlockBase {
+ DActionArity2V85 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V84 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V85 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V84> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V85> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -30260,7 +30302,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::UIKit.UIViewController, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V84 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V85 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::UIKit.UIViewController arg1, NSError arg2)
@@ -30269,31 +30311,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V84 */
+ } /* class NIDActionArity2V85 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::VideoSubscriberAccount.VSAccountAccessStatus, NSError>))]
- internal delegate void DActionArity2V148 (IntPtr block, IntPtr arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V149 (IntPtr block, IntPtr arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V148 {
- static internal readonly DActionArity2V148 Handler = Invoke;
+ static internal class SDActionArity2V149 {
+ static internal readonly DActionArity2V149 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V148))]
+ [MonoPInvokeCallback (typeof (DActionArity2V149))]
static unsafe void Invoke (IntPtr block, IntPtr arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::VideoSubscriberAccount.VSAccountAccessStatus, NSError>) (descriptor->Target);
if (del != null)
del ((VideoSubscriberAccount.VSAccountAccessStatus) (long) arg1, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V148 */
- internal sealed class NIDActionArity2V148 : TrampolineBlockBase {
- DActionArity2V148 invoker;
+ } /* class SDActionArity2V149 */
+ internal sealed class NIDActionArity2V149 : TrampolineBlockBase {
+ DActionArity2V149 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V148 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V149 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V148> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V149> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -30302,7 +30344,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::VideoSubscriberAccount.VSAccountAccessStatus, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V148 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V149 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::VideoSubscriberAccount.VSAccountAccessStatus arg1, NSError arg2)
@@ -30310,31 +30352,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, (IntPtr) (long) arg1, arg2__handle__);
}
- } /* class NIDActionArity2V148 */
+ } /* class NIDActionArity2V149 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::VideoSubscriberAccount.VSAccountMetadata, NSError>))]
- internal delegate void DActionArity2V149 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V150 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V149 {
- static internal readonly DActionArity2V149 Handler = Invoke;
+ static internal class SDActionArity2V150 {
+ static internal readonly DActionArity2V150 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V149))]
+ [MonoPInvokeCallback (typeof (DActionArity2V150))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::VideoSubscriberAccount.VSAccountMetadata, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<VideoSubscriberAccount.VSAccountMetadata> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V149 */
- internal sealed class NIDActionArity2V149 : TrampolineBlockBase {
- DActionArity2V149 invoker;
+ } /* class SDActionArity2V150 */
+ internal sealed class NIDActionArity2V150 : TrampolineBlockBase {
+ DActionArity2V150 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V149 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V150 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V149> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V150> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -30343,7 +30385,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::VideoSubscriberAccount.VSAccountMetadata, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V149 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V150 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::VideoSubscriberAccount.VSAccountMetadata arg1, NSError arg2)
@@ -30352,31 +30394,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V149 */
+ } /* class NIDActionArity2V150 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::WebKit.WKContentRuleList, NSError>))]
- internal delegate void DActionArity2V150 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V151 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V150 {
- static internal readonly DActionArity2V150 Handler = Invoke;
+ static internal class SDActionArity2V151 {
+ static internal readonly DActionArity2V151 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V150))]
+ [MonoPInvokeCallback (typeof (DActionArity2V151))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::WebKit.WKContentRuleList, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<WebKit.WKContentRuleList> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V150 */
- internal sealed class NIDActionArity2V150 : TrampolineBlockBase {
- DActionArity2V150 invoker;
+ } /* class SDActionArity2V151 */
+ internal sealed class NIDActionArity2V151 : TrampolineBlockBase {
+ DActionArity2V151 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V150 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V151 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V150> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V151> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -30385,7 +30427,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::WebKit.WKContentRuleList, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V150 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V151 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::WebKit.WKContentRuleList arg1, NSError arg2)
@@ -30394,31 +30436,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V150 */
+ } /* class NIDActionArity2V151 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::WebKit.WKNavigationActionPolicy, global::WebKit.WKWebpagePreferences>))]
- internal delegate void DActionArity2V151 (IntPtr block, IntPtr arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V152 (IntPtr block, IntPtr arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V151 {
- static internal readonly DActionArity2V151 Handler = Invoke;
+ static internal class SDActionArity2V152 {
+ static internal readonly DActionArity2V152 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V151))]
+ [MonoPInvokeCallback (typeof (DActionArity2V152))]
static unsafe void Invoke (IntPtr block, IntPtr arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<global::WebKit.WKNavigationActionPolicy, global::WebKit.WKWebpagePreferences>) (descriptor->Target);
if (del != null)
del ((WebKit.WKNavigationActionPolicy) (long) arg1, Runtime.GetNSObject<WebKit.WKWebpagePreferences> (arg2)!);
}
- } /* class SDActionArity2V151 */
- internal sealed class NIDActionArity2V151 : TrampolineBlockBase {
- DActionArity2V151 invoker;
+ } /* class SDActionArity2V152 */
+ internal sealed class NIDActionArity2V152 : TrampolineBlockBase {
+ DActionArity2V152 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V151 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V152 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V151> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V152> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -30427,7 +30469,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::WebKit.WKNavigationActionPolicy, global::WebKit.WKWebpagePreferences>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V151 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V152 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::WebKit.WKNavigationActionPolicy arg1, global::WebKit.WKWebpagePreferences arg2)
@@ -30435,7 +30477,7 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, (IntPtr) (long) arg1, arg2__handle__);
}
- } /* class NIDActionArity2V151 */
+ } /* class NIDActionArity2V152 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::CloudKit.CKRecord, global::CloudKit.CKRecordID, NSError>))]
internal delegate void DActionArity3V1 (IntPtr block, NativeHandle arg1, NativeHandle arg2, NativeHandle arg3);
diff --git a/old/dotnet/ios/generated-sources/PassKit/PKAddShareablePassConfiguration.g.cs b/new/dotnet/ios/generated-sources/PassKit/PKAddShareablePassConfiguration.g.cs
index 457b08e..4dce381 100644
--- a/old/dotnet/ios/generated-sources/PassKit/PKAddShareablePassConfiguration.g.cs
+++ b/new/dotnet/ios/generated-sources/PassKit/PKAddShareablePassConfiguration.g.cs
@@ -82,7 +82,7 @@ namespace PassKit {
[SupportedOSPlatform ("macos11.0.0")]
[SupportedOSPlatform ("maccatalyst14.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static void GetConfiguration (PKShareablePassMetadata[] passMetadata, string provisioningPolicyIdentifier, PKAddShareablePassConfigurationPrimaryAction action, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V121))]global::System.Action<PKAddShareablePassConfiguration, NSError> completion)
+ public unsafe static void GetConfiguration (PKShareablePassMetadata[] passMetadata, string provisioningPolicyIdentifier, PKAddShareablePassConfigurationPrimaryAction action, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V122))]global::System.Action<PKAddShareablePassConfiguration, NSError> completion)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -99,7 +99,7 @@ namespace PassKit {
BlockLiteral block_completion;
block_completion = new BlockLiteral ();
block_ptr_completion = &block_completion;
- block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V121.Handler, completion);
+ block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V122.Handler, completion);
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle_UIntPtr_NativeHandle (class_ptr, Selector.GetHandle ("configurationForPassMetadata:provisioningPolicyIdentifier:primaryAction:completion:"), nsa_passMetadata.Handle, nsprovisioningPolicyIdentifier, (UIntPtr) (ulong) action, (IntPtr) block_ptr_completion);
nsa_passMetadata.Dispose ();
CFString.ReleaseNative (nsprovisioningPolicyIdentifier);
diff --git a/old/dotnet/ios/generated-sources/PassKit/PKPassLibrary.g.cs b/new/dotnet/ios/generated-sources/PassKit/PKPassLibrary.g.cs
index 8cbb253..a71b97b 100644
--- a/old/dotnet/ios/generated-sources/PassKit/PKPassLibrary.g.cs
+++ b/new/dotnet/ios/generated-sources/PassKit/PKPassLibrary.g.cs
@@ -401,7 +401,7 @@ namespace PassKit {
[SupportedOSPlatform ("macos12.0")]
[SupportedOSPlatform ("maccatalyst15.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void GetServiceProviderData (PKSecureElementPass secureElementPass, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V18))]global::System.Action<NSData, NSError> completion)
+ public unsafe virtual void GetServiceProviderData (PKSecureElementPass secureElementPass, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V19))]global::System.Action<NSData, NSError> completion)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -413,7 +413,7 @@ namespace PassKit {
BlockLiteral block_completion;
block_completion = new BlockLiteral ();
block_ptr_completion = &block_completion;
- block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V18.Handler, completion);
+ block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V19.Handler, completion);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("serviceProviderDataForSecureElementPass:completion:"), secureElementPass__handle__, (IntPtr) block_ptr_completion);
} else {
diff --git a/old/dotnet/ios/generated-sources/PassKit/PKPaymentAuthorizationControllerDelegate.g.cs b/new/dotnet/ios/generated-sources/PassKit/PKPaymentAuthorizationControllerDelegate.g.cs
index fd6e01f..dc5440e 100644
--- a/old/dotnet/ios/generated-sources/PassKit/PKPaymentAuthorizationControllerDelegate.g.cs
+++ b/new/dotnet/ios/generated-sources/PassKit/PKPaymentAuthorizationControllerDelegate.g.cs
@@ -57,7 +57,7 @@ namespace PassKit {
[ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "DidAuthorizePayment", Selector = "paymentAuthorizationController:didAuthorizePayment:handler:", ParameterType = new Type [] { typeof (PassKit.PKPaymentAuthorizationController), typeof (PassKit.PKPayment), typeof (global::System.Action<global::PassKit.PKPaymentAuthorizationResult>) }, ParameterByRef = new bool [] { false, false, false }, ParameterBlockProxy = new Type? [] { null, null, typeof (ObjCRuntime.Trampolines.NIDActionArity1V218) })]
[ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "DidFinish", Selector = "paymentAuthorizationControllerDidFinish:", ParameterType = new Type [] { typeof (PassKit.PKPaymentAuthorizationController) }, ParameterByRef = new bool [] { false })]
[ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "WillAuthorizePayment", Selector = "paymentAuthorizationControllerWillAuthorizePayment:", ParameterType = new Type [] { typeof (PassKit.PKPaymentAuthorizationController) }, ParameterByRef = new bool [] { false })]
- [ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "DidSelectShippingMethod", Selector = "paymentAuthorizationController:didSelectShippingMethod:completion:", ParameterType = new Type [] { typeof (PassKit.PKPaymentAuthorizationController), typeof (PassKit.PKShippingMethod), typeof (global::System.Action<global::PassKit.PKPaymentAuthorizationStatus, global::PassKit.PKPaymentSummaryItem[]>) }, ParameterByRef = new bool [] { false, false, false }, ParameterBlockProxy = new Type? [] { null, null, typeof (ObjCRuntime.Trampolines.NIDActionArity2V122) })]
+ [ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "DidSelectShippingMethod", Selector = "paymentAuthorizationController:didSelectShippingMethod:completion:", ParameterType = new Type [] { typeof (PassKit.PKPaymentAuthorizationController), typeof (PassKit.PKShippingMethod), typeof (global::System.Action<global::PassKit.PKPaymentAuthorizationStatus, global::PassKit.PKPaymentSummaryItem[]>) }, ParameterByRef = new bool [] { false, false, false }, ParameterBlockProxy = new Type? [] { null, null, typeof (ObjCRuntime.Trampolines.NIDActionArity2V123) })]
[ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "DidSelectShippingMethod", Selector = "paymentAuthorizationController:didSelectShippingMethod:handler:", ParameterType = new Type [] { typeof (PassKit.PKPaymentAuthorizationController), typeof (PassKit.PKPaymentMethod), typeof (global::System.Action<global::PassKit.PKPaymentRequestPaymentMethodUpdate>) }, ParameterByRef = new bool [] { false, false, false }, ParameterBlockProxy = new Type? [] { null, null, typeof (ObjCRuntime.Trampolines.NIDActionArity1V219) })]
[ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "DidSelectShippingContact", Selector = "paymentAuthorizationController:didSelectShippingContact:completion:", ParameterType = new Type [] { typeof (PassKit.PKPaymentAuthorizationController), typeof (PassKit.PKContact), typeof (global::System.Action<global::PassKit.PKPaymentAuthorizationStatus, global::PassKit.PKShippingMethod[], global::PassKit.PKPaymentSummaryItem[]>) }, ParameterByRef = new bool [] { false, false, false }, ParameterBlockProxy = new Type? [] { null, null, typeof (ObjCRuntime.Trampolines.NIDActionArity3V9) })]
[ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "DidSelectShippingContact", Selector = "paymentAuthorizationController:didSelectShippingContact:handler:", ParameterType = new Type [] { typeof (PassKit.PKPaymentAuthorizationController), typeof (PassKit.PKContact), typeof (global::System.Action<global::PassKit.PKPaymentRequestShippingContactUpdate>) }, ParameterByRef = new bool [] { false, false, false }, ParameterBlockProxy = new Type? [] { null, null, typeof (ObjCRuntime.Trampolines.NIDActionArity1V220) })]
@@ -146,7 +146,7 @@ namespace PassKit {
[SupportedOSPlatform ("ios10.0.0")]
[SupportedOSPlatform ("maccatalyst10.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static void DidSelectShippingMethod (this IPKPaymentAuthorizationControllerDelegate This, PKPaymentAuthorizationController controller, PKShippingMethod shippingMethod, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V122))]global::System.Action<PKPaymentAuthorizationStatus, PKPaymentSummaryItem[]> completion)
+ public unsafe static void DidSelectShippingMethod (this IPKPaymentAuthorizationControllerDelegate This, PKPaymentAuthorizationController controller, PKShippingMethod shippingMethod, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V123))]global::System.Action<PKPaymentAuthorizationStatus, PKPaymentSummaryItem[]> completion)
{
var controller__handle__ = controller!.GetNonNullHandle (nameof (controller));
var shippingMethod__handle__ = shippingMethod!.GetNonNullHandle (nameof (shippingMethod));
@@ -156,7 +156,7 @@ namespace PassKit {
BlockLiteral block_completion;
block_completion = new BlockLiteral ();
block_ptr_completion = &block_completion;
- block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V122.Handler, completion);
+ block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V123.Handler, completion);
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle_NativeHandle (This.Handle, Selector.GetHandle ("paymentAuthorizationController:didSelectShippingMethod:completion:"), controller__handle__, shippingMethod__handle__, (IntPtr) block_ptr_completion);
block_ptr_completion->CleanupBlock ();
}
@@ -522,7 +522,7 @@ namespace PassKit {
[SupportedOSPlatform ("ios10.0.0")]
[SupportedOSPlatform ("maccatalyst10.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void DidSelectShippingMethod (PKPaymentAuthorizationController controller, PKShippingMethod shippingMethod, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V122))]global::System.Action<PKPaymentAuthorizationStatus, PKPaymentSummaryItem[]> completion)
+ public unsafe virtual void DidSelectShippingMethod (PKPaymentAuthorizationController controller, PKShippingMethod shippingMethod, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V123))]global::System.Action<PKPaymentAuthorizationStatus, PKPaymentSummaryItem[]> completion)
{
throw new You_Should_Not_Call_base_In_This_Method ();
}
diff --git a/old/dotnet/ios/generated-sources/Photos/PHLivePhoto.g.cs b/new/dotnet/ios/generated-sources/Photos/PHLivePhoto.g.cs
index 7f247b5..73a64e9 100644
--- a/old/dotnet/ios/generated-sources/Photos/PHLivePhoto.g.cs
+++ b/new/dotnet/ios/generated-sources/Photos/PHLivePhoto.g.cs
@@ -169,7 +169,7 @@ namespace Photos {
[SupportedOSPlatform ("tvos10.0.0")]
[SupportedOSPlatform ("maccatalyst9.1.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static int RequestLivePhoto (NSUrl[] fileUrls, global::UIKit.UIImage? image, CGSize targetSize, PHImageContentMode contentMode, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V123))]global::System.Action<PHLivePhoto, NSDictionary> resultHandler)
+ public unsafe static int RequestLivePhoto (NSUrl[] fileUrls, global::UIKit.UIImage? image, CGSize targetSize, PHImageContentMode contentMode, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V124))]global::System.Action<PHLivePhoto, NSDictionary> resultHandler)
{
if (fileUrls is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (fileUrls));
@@ -181,7 +181,7 @@ namespace Photos {
BlockLiteral block_resultHandler;
block_resultHandler = new BlockLiteral ();
block_ptr_resultHandler = &block_resultHandler;
- block_resultHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V123.Handler, resultHandler);
+ block_resultHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V124.Handler, resultHandler);
int ret;
ret = global::ObjCRuntime.Messaging.int_objc_msgSend_NativeHandle_NativeHandle_CGSize_IntPtr_NativeHandle (class_ptr, Selector.GetHandle ("requestLivePhotoWithResourceFileURLs:placeholderImage:targetSize:contentMode:resultHandler:"), nsa_fileUrls.Handle, image__handle__, targetSize, (IntPtr) (long) contentMode, (IntPtr) block_ptr_resultHandler);
nsa_fileUrls.Dispose ();
diff --git a/old/dotnet/ios/generated-sources/Photos/PHLivePhotoEditingContext.g.cs b/new/dotnet/ios/generated-sources/Photos/PHLivePhotoEditingContext.g.cs
index c3f1d0a..2f35150 100644
--- a/old/dotnet/ios/generated-sources/Photos/PHLivePhotoEditingContext.g.cs
+++ b/new/dotnet/ios/generated-sources/Photos/PHLivePhotoEditingContext.g.cs
@@ -106,7 +106,7 @@ namespace Photos {
[SupportedOSPlatform ("macos10.12.0")]
[SupportedOSPlatform ("maccatalyst10.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe void PrepareLivePhotoForPlayback (CGSize targetSize, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V124))]global::System.Action<PHLivePhoto, NSError> handler)
+ public unsafe void PrepareLivePhotoForPlayback (CGSize targetSize, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V125))]global::System.Action<PHLivePhoto, NSError> handler)
{
_PrepareLivePhotoForPlayback (targetSize, null, handler);
}
@@ -131,7 +131,7 @@ namespace Photos {
[SupportedOSPlatform ("macos10.12.0")]
[SupportedOSPlatform ("maccatalyst10.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void PrepareLivePhotoForPlayback (CGSize targetSize, NSDictionary<NSString, NSObject>? options, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V124))]global::System.Action<PHLivePhoto, NSError> handler)
+ public unsafe virtual void PrepareLivePhotoForPlayback (CGSize targetSize, NSDictionary<NSString, NSObject>? options, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V125))]global::System.Action<PHLivePhoto, NSError> handler)
{
_PrepareLivePhotoForPlayback (targetSize, (options as NSDictionary), handler);
}
@@ -156,7 +156,7 @@ namespace Photos {
[SupportedOSPlatform ("maccatalyst11.0.0")]
[SupportedOSPlatform ("macos10.12.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe void PrepareLivePhotoForPlayback (CGSize targetSize, PHLivePhotoEditingOption? options, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V124))]global::System.Action<PHLivePhoto, NSError> handler)
+ public unsafe void PrepareLivePhotoForPlayback (CGSize targetSize, PHLivePhotoEditingOption? options, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V125))]global::System.Action<PHLivePhoto, NSError> handler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -256,7 +256,7 @@ namespace Photos {
[SupportedOSPlatform ("macos10.12.0")]
[SupportedOSPlatform ("maccatalyst10.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- internal unsafe virtual void _PrepareLivePhotoForPlayback (CGSize targetSize, NSDictionary? options, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V124))]global::System.Action<PHLivePhoto, NSError> handler)
+ internal unsafe virtual void _PrepareLivePhotoForPlayback (CGSize targetSize, NSDictionary? options, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V125))]global::System.Action<PHLivePhoto, NSError> handler)
{
var options__handle__ = options.GetHandle ();
if (handler is null)
@@ -265,7 +265,7 @@ namespace Photos {
BlockLiteral block_handler;
block_handler = new BlockLiteral ();
block_ptr_handler = &block_handler;
- block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V124.Handler, handler);
+ block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V125.Handler, handler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_CGSize_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("prepareLivePhotoForPlaybackWithTargetSize:options:completionHandler:"), targetSize, options__handle__, (IntPtr) block_ptr_handler);
} else {
diff --git a/old/dotnet/ios/generated-sources/QuickLook/QLPreviewingController.g.cs b/new/dotnet/ios/generated-sources/QuickLook/QLPreviewingController.g.cs
index 8d1ea72..f509a2a 100644
--- a/old/dotnet/ios/generated-sources/QuickLook/QLPreviewingController.g.cs
+++ b/new/dotnet/ios/generated-sources/QuickLook/QLPreviewingController.g.cs
@@ -55,7 +55,7 @@ namespace QuickLook {
[Protocol (Name = "QLPreviewingController", WrapperType = typeof (QLPreviewingControllerWrapper))]
[ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "PreparePreviewOfSearchableItem", Selector = "preparePreviewOfSearchableItemWithIdentifier:queryString:completionHandler:", ParameterType = new Type [] { typeof (string), typeof (string), typeof (global::System.Action<NSError>) }, ParameterByRef = new bool [] { false, false, false }, ParameterBlockProxy = new Type? [] { null, null, typeof (ObjCRuntime.Trampolines.NIDActionArity1V0) })]
[ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "PreparePreviewOfFile", Selector = "preparePreviewOfFileAtURL:completionHandler:", ParameterType = new Type [] { typeof (NSUrl), typeof (global::System.Action<NSError>) }, ParameterByRef = new bool [] { false, false }, ParameterBlockProxy = new Type? [] { null, typeof (ObjCRuntime.Trampolines.NIDActionArity1V0) })]
- [ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "ProvidePreview", Selector = "providePreviewForFileRequest:completionHandler:", ParameterType = new Type [] { typeof (QLFilePreviewRequest), typeof (global::System.Action<global::QuickLook.QLPreviewReply, NSError>) }, ParameterByRef = new bool [] { false, false }, ParameterBlockProxy = new Type? [] { null, typeof (ObjCRuntime.Trampolines.NIDActionArity2V125) })]
+ [ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "ProvidePreview", Selector = "providePreviewForFileRequest:completionHandler:", ParameterType = new Type [] { typeof (QLFilePreviewRequest), typeof (global::System.Action<global::QuickLook.QLPreviewReply, NSError>) }, ParameterByRef = new bool [] { false, false }, ParameterBlockProxy = new Type? [] { null, typeof (ObjCRuntime.Trampolines.NIDActionArity2V126) })]
public partial interface IQLPreviewingController : INativeObject, IDisposable
{
}
@@ -114,7 +114,7 @@ namespace QuickLook {
[SupportedOSPlatform ("maccatalyst15.0")]
[UnsupportedOSPlatform ("macos")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static void ProvidePreview (this IQLPreviewingController This, QLFilePreviewRequest request, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V125))]global::System.Action<QLPreviewReply, NSError> handler)
+ public unsafe static void ProvidePreview (this IQLPreviewingController This, QLFilePreviewRequest request, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V126))]global::System.Action<QLPreviewReply, NSError> handler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -127,7 +127,7 @@ namespace QuickLook {
BlockLiteral block_handler;
block_handler = new BlockLiteral ();
block_ptr_handler = &block_handler;
- block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V125.Handler, handler);
+ block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V126.Handler, handler);
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (This.Handle, Selector.GetHandle ("providePreviewForFileRequest:completionHandler:"), request__handle__, (IntPtr) block_ptr_handler);
block_ptr_handler->CleanupBlock ();
#endif
diff --git a/old/dotnet/ios/generated-sources/QuickLookThumbnailing/QLThumbnailGenerator.g.cs b/new/dotnet/ios/generated-sources/QuickLookThumbnailing/QLThumbnailGenerator.g.cs
index fb1ba88..fb85d4c 100644
--- a/old/dotnet/ios/generated-sources/QuickLookThumbnailing/QLThumbnailGenerator.g.cs
+++ b/new/dotnet/ios/generated-sources/QuickLookThumbnailing/QLThumbnailGenerator.g.cs
@@ -98,7 +98,7 @@ namespace QuickLookThumbnailing {
[SupportedOSPlatform ("ios13.0.0")]
[SupportedOSPlatform ("maccatalyst13.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void GenerateBestRepresentation (QLThumbnailGenerationRequest request, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V126))]global::System.Action<QLThumbnailRepresentation, NSError> completionHandler)
+ public unsafe virtual void GenerateBestRepresentation (QLThumbnailGenerationRequest request, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V127))]global::System.Action<QLThumbnailRepresentation, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -110,7 +110,7 @@ namespace QuickLookThumbnailing {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V126.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V127.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("generateBestRepresentationForRequest:completionHandler:"), request__handle__, (IntPtr) block_ptr_completionHandler);
} else {
diff --git a/old/dotnet/ios/generated-sources/QuickLookThumbnailing/QLThumbnailProvider.g.cs b/new/dotnet/ios/generated-sources/QuickLookThumbnailing/QLThumbnailProvider.g.cs
index a8df3aa..ec527db 100644
--- a/old/dotnet/ios/generated-sources/QuickLookThumbnailing/QLThumbnailProvider.g.cs
+++ b/new/dotnet/ios/generated-sources/QuickLookThumbnailing/QLThumbnailProvider.g.cs
@@ -96,7 +96,7 @@ namespace QuickLookThumbnailing {
[SupportedOSPlatform ("ios11.0.0")]
[SupportedOSPlatform ("maccatalyst11.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void ProvideThumbnail (QLFileThumbnailRequest request, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V127))]global::System.Action<QLThumbnailReply, NSError> handler)
+ public unsafe virtual void ProvideThumbnail (QLFileThumbnailRequest request, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V128))]global::System.Action<QLThumbnailReply, NSError> handler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -108,7 +108,7 @@ namespace QuickLookThumbnailing {
BlockLiteral block_handler;
block_handler = new BlockLiteral ();
block_ptr_handler = &block_handler;
- block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V127.Handler, handler);
+ block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V128.Handler, handler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("provideThumbnailForFileRequest:completionHandler:"), request__handle__, (IntPtr) block_ptr_handler);
} else {
diff --git a/old/dotnet/ios/generated-sources/ReplayKit/RPBroadcastActivityViewController.g.cs b/new/dotnet/ios/generated-sources/ReplayKit/RPBroadcastActivityViewController.g.cs
index 5677205..d019556 100644
--- a/old/dotnet/ios/generated-sources/ReplayKit/RPBroadcastActivityViewController.g.cs
+++ b/new/dotnet/ios/generated-sources/ReplayKit/RPBroadcastActivityViewController.g.cs
@@ -121,7 +121,7 @@ namespace ReplayKit {
[SupportedOSPlatform ("tvos10.0.0")]
[SupportedOSPlatform ("maccatalyst10.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static void LoadBroadcastActivityViewController ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V128))]global::System.Action<RPBroadcastActivityViewController, NSError> handler)
+ public unsafe static void LoadBroadcastActivityViewController ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V129))]global::System.Action<RPBroadcastActivityViewController, NSError> handler)
{
if (handler is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (handler));
@@ -129,7 +129,7 @@ namespace ReplayKit {
BlockLiteral block_handler;
block_handler = new BlockLiteral ();
block_ptr_handler = &block_handler;
- block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V128.Handler, handler);
+ block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V129.Handler, handler);
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (class_ptr, Selector.GetHandle ("loadBroadcastActivityViewControllerWithHandler:"), (IntPtr) block_ptr_handler);
block_ptr_handler->CleanupBlock ();
}
@@ -155,7 +155,7 @@ namespace ReplayKit {
[UnsupportedOSPlatform ("macos")]
[SupportedOSPlatform ("maccatalyst11.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static void LoadBroadcastActivityViewController (string? preferredExtension, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V128))]global::System.Action<RPBroadcastActivityViewController, NSError> handler)
+ public unsafe static void LoadBroadcastActivityViewController (string? preferredExtension, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V129))]global::System.Action<RPBroadcastActivityViewController, NSError> handler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -167,7 +167,7 @@ namespace ReplayKit {
BlockLiteral block_handler;
block_handler = new BlockLiteral ();
block_ptr_handler = &block_handler;
- block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V128.Handler, handler);
+ block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V129.Handler, handler);
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (class_ptr, Selector.GetHandle ("loadBroadcastActivityViewControllerWithPreferredExtension:handler:"), nspreferredExtension, (IntPtr) block_ptr_handler);
CFString.ReleaseNative (nspreferredExtension);
block_ptr_handler->CleanupBlock ();
diff --git a/old/dotnet/ios/generated-sources/ReplayKit/RPScreenRecorder.g.cs b/new/dotnet/ios/generated-sources/ReplayKit/RPScreenRecorder.g.cs
index eb7fb12..9757aa1 100644
--- a/old/dotnet/ios/generated-sources/ReplayKit/RPScreenRecorder.g.cs
+++ b/new/dotnet/ios/generated-sources/ReplayKit/RPScreenRecorder.g.cs
@@ -409,7 +409,7 @@ namespace ReplayKit {
[SupportedOSPlatform ("macos11.0.0")]
[SupportedOSPlatform ("maccatalyst9.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe void StopRecording ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V129))]global::System.Action<RPPreviewViewController, NSError>? handler)
+ public unsafe void StopRecording ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V130))]global::System.Action<RPPreviewViewController, NSError>? handler)
{
BlockLiteral *block_ptr_handler;
BlockLiteral block_handler;
@@ -418,7 +418,7 @@ namespace ReplayKit {
} else {
block_handler = new BlockLiteral ();
block_ptr_handler = &block_handler;
- block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V129.Handler, handler);
+ block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V130.Handler, handler);
}
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("stopRecordingWithHandler:"), (IntPtr) block_ptr_handler);
if (block_ptr_handler != null)
diff --git a/old/dotnet/ios/generated-sources/SafariServices/SFContentBlockerManager.g.cs b/new/dotnet/ios/generated-sources/SafariServices/SFContentBlockerManager.g.cs
index d8d069a..a3c4454 100644
--- a/old/dotnet/ios/generated-sources/SafariServices/SFContentBlockerManager.g.cs
+++ b/new/dotnet/ios/generated-sources/SafariServices/SFContentBlockerManager.g.cs
@@ -86,7 +86,7 @@ namespace SafariServices {
[SupportedOSPlatform ("maccatalyst10.0.0")]
[SupportedOSPlatform ("macos10.12.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static void GetStateOfContentBlocker (string identifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V130))]global::System.Action<SFContentBlockerState, NSError> completionHandler)
+ public unsafe static void GetStateOfContentBlocker (string identifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V131))]global::System.Action<SFContentBlockerState, NSError> completionHandler)
{
if (identifier is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (identifier));
@@ -97,7 +97,7 @@ namespace SafariServices {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V130.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V131.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (class_ptr, Selector.GetHandle ("getStateOfContentBlockerWithIdentifier:completionHandler:"), nsidentifier, (IntPtr) block_ptr_completionHandler);
CFString.ReleaseNative (nsidentifier);
block_ptr_completionHandler->CleanupBlock ();
diff --git a/old/dotnet/ios/generated-sources/ShazamKit/SHMediaItem.g.cs b/new/dotnet/ios/generated-sources/ShazamKit/SHMediaItem.g.cs
index bc8e7e3..b000889 100644
--- a/old/dotnet/ios/generated-sources/ShazamKit/SHMediaItem.g.cs
+++ b/new/dotnet/ios/generated-sources/ShazamKit/SHMediaItem.g.cs
@@ -149,7 +149,7 @@ namespace ShazamKit {
[SupportedOSPlatform ("tvos15.0.0")]
[SupportedOSPlatform ("maccatalyst15.0.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static void FetchMediaItem (string shazamId, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V131))]global::System.Action<SHMediaItem, NSError> completionHandler)
+ public unsafe static void FetchMediaItem (string shazamId, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V132))]global::System.Action<SHMediaItem, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -163,7 +163,7 @@ namespace ShazamKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V131.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V132.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (class_ptr, Selector.GetHandle ("fetchMediaItemWithShazamID:completionHandler:"), nsshazamId, (IntPtr) block_ptr_completionHandler);
CFString.ReleaseNative (nsshazamId);
block_ptr_completionHandler->CleanupBlock ();
diff --git a/old/dotnet/ios/generated-sources/Speech/SFSpeechRecognizer.g.cs b/new/dotnet/ios/generated-sources/Speech/SFSpeechRecognizer.g.cs
index 8b8357e..814a5e2 100644
--- a/old/dotnet/ios/generated-sources/Speech/SFSpeechRecognizer.g.cs
+++ b/new/dotnet/ios/generated-sources/Speech/SFSpeechRecognizer.g.cs
@@ -102,7 +102,7 @@ namespace Speech {
[SupportedOSPlatform ("macos10.15.0")]
[SupportedOSPlatform ("maccatalyst10.0.0")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment