Skip to content

Instantly share code, notes, and snippets.

@vs-mobiletools-engineering-service2
Created September 23, 2022 15:05
generator-diff/generator.diff
This file has been truncated, but you can view the full file.
diff --git a/old/dotnet/ios/generated-sources/HomeKit/HMAccessorySetupManager.g.cs b/old/dotnet/ios/generated-sources/HomeKit/HMAccessorySetupManager.g.cs
deleted file mode 100644
index 4a2c4d3..0000000
--- a/old/dotnet/ios/generated-sources/HomeKit/HMAccessorySetupManager.g.cs
+++ /dev/null
@@ -1,227 +0,0 @@
-//
-// 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 HomeKit {
- [Register("HMAccessorySetupManager", true)]
- [SupportedOSPlatform ("ios15.2")]
- [UnsupportedOSPlatform ("tvos")]
- [UnsupportedOSPlatform ("maccatalyst")]
- public unsafe partial class HMAccessorySetupManager : NSObject {
- [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 ("HMAccessorySetupManager");
- #endif
- public override NativeHandle ClassHandle { get { return class_ptr; } }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- [EditorBrowsable (EditorBrowsableState.Advanced)]
- [Export ("init")]
- public HMAccessorySetupManager () : 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)]
- [EditorBrowsable (EditorBrowsableState.Advanced)]
- protected HMAccessorySetupManager (NSObjectFlag t) : base (t)
- {
- }
-
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- [EditorBrowsable (EditorBrowsableState.Advanced)]
- protected internal HMAccessorySetupManager (NativeHandle handle) : base (handle)
- {
- }
-
- [Export ("addAndSetUpAccessoriesForTopology:completionHandler:")]
- #if __IOS__
- [Advice ("Starting with ios15.4 Use 'PerformAccessorySetup' instead.")]
- #endif
- [UnsupportedOSPlatform ("ios15.4")]
- [UnsupportedOSPlatform ("tvos")]
- [UnsupportedOSPlatform ("maccatalyst")]
- [SupportedOSPlatform ("ios15.2")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void AddAndSetUpAccessories (HMMatterTopology topology, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity1V0))]global::System.Action<NSError> completion)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- var topology__handle__ = topology!.GetNonNullHandle (nameof (topology));
- if (completion is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (completion));
- BlockLiteral *block_ptr_completion;
- BlockLiteral block_completion;
- block_completion = new BlockLiteral ();
- block_ptr_completion = &block_completion;
- block_completion.SetupBlockUnsafe (Trampolines.SDActionArity1V0.Handler, completion);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("addAndSetUpAccessoriesForTopology:completionHandler:"), topology__handle__, (IntPtr) block_ptr_completion);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_NativeHandle_NativeHandle (this.SuperHandle, Selector.GetHandle ("addAndSetUpAccessoriesForTopology:completionHandler:"), topology__handle__, (IntPtr) block_ptr_completion);
- }
- block_ptr_completion->CleanupBlock ();
- #endif
- }
- #if __IOS__
- [Advice ("Starting with ios15.4 Use 'PerformAccessorySetup' instead.")]
- #endif
- [UnsupportedOSPlatform ("ios15.4")]
- [UnsupportedOSPlatform ("tvos")]
- [UnsupportedOSPlatform ("maccatalyst")]
- [SupportedOSPlatform ("ios15.2")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task AddAndSetUpAccessoriesAsync (HMMatterTopology topology)
- {
- var tcs = new TaskCompletionSource<bool> ();
- AddAndSetUpAccessories(topology, (obj_) => {
- if (obj_ != null)
- tcs.SetException (new NSErrorException(obj_));
- else
- tcs.SetResult (true);
- });
- return tcs.Task;
- }
- [Export ("performAccessorySetupUsingRequest:completionHandler:")]
- [SupportedOSPlatform ("ios15.4")]
- [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)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- var request__handle__ = request!.GetNonNullHandle (nameof (request));
- if (completion is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (completion));
- BlockLiteral *block_ptr_completion;
- BlockLiteral block_completion;
- block_completion = new BlockLiteral ();
- block_ptr_completion = &block_completion;
- block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V96.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 {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_NativeHandle_NativeHandle (this.SuperHandle, Selector.GetHandle ("performAccessorySetupUsingRequest:completionHandler:"), request__handle__, (IntPtr) block_ptr_completion);
- }
- block_ptr_completion->CleanupBlock ();
- #endif
- }
- [SupportedOSPlatform ("ios15.4")]
- [UnsupportedOSPlatform ("tvos")]
- [UnsupportedOSPlatform ("maccatalyst")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<HMAccessorySetupResult> PerformAccessorySetupAsync (HMAccessorySetupRequest request)
- {
- var tcs = new TaskCompletionSource<HMAccessorySetupResult> ();
- PerformAccessorySetup(request, (arg1_, arg2_) => {
- if (arg2_ != null)
- tcs.SetException (new NSErrorException(arg2_));
- else
- tcs.SetResult (arg1_!);
- });
- return tcs.Task;
- }
- [Export ("performMatterEcosystemAccessorySetupUsingRequest:topology:completionHandler:")]
- [SupportedOSPlatform ("ios15.4")]
- [UnsupportedOSPlatform ("tvos")]
- [UnsupportedOSPlatform ("maccatalyst")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void PerformMatterEcosystemAccessorySetup (HMAccessorySetupRequest request, HMMatterTopology topology, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity1V0))]global::System.Action<NSError> completion)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- var request__handle__ = request!.GetNonNullHandle (nameof (request));
- var topology__handle__ = topology!.GetNonNullHandle (nameof (topology));
- if (completion is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (completion));
- BlockLiteral *block_ptr_completion;
- BlockLiteral block_completion;
- block_completion = new BlockLiteral ();
- block_ptr_completion = &block_completion;
- block_completion.SetupBlockUnsafe (Trampolines.SDActionArity1V0.Handler, completion);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("performMatterEcosystemAccessorySetupUsingRequest:topology:completionHandler:"), request__handle__, topology__handle__, (IntPtr) block_ptr_completion);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_NativeHandle_NativeHandle_NativeHandle (this.SuperHandle, Selector.GetHandle ("performMatterEcosystemAccessorySetupUsingRequest:topology:completionHandler:"), request__handle__, topology__handle__, (IntPtr) block_ptr_completion);
- }
- block_ptr_completion->CleanupBlock ();
- #endif
- }
- [SupportedOSPlatform ("ios15.4")]
- [UnsupportedOSPlatform ("tvos")]
- [UnsupportedOSPlatform ("maccatalyst")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task PerformMatterEcosystemAccessorySetupAsync (HMAccessorySetupRequest request, HMMatterTopology topology)
- {
- var tcs = new TaskCompletionSource<bool> ();
- PerformMatterEcosystemAccessorySetup(request, topology, (obj_) => {
- if (obj_ != null)
- tcs.SetException (new NSErrorException(obj_));
- else
- tcs.SetResult (true);
- });
- return tcs.Task;
- }
- } /* class HMAccessorySetupManager */
-}
diff --git a/old/dotnet/ios/generated-sources/HomeKit/HMHome.g.cs b/new/dotnet/ios/generated-sources/HomeKit/HMHome.g.cs
index 9256331..3f00a00 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")]
[SupportedOSPlatform ("maccatalyst14.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.NIDActionArity2V96))]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.SDActionArity2V96.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.NIDActionArity2V97))]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.SDActionArity2V97.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")]
[SupportedOSPlatform ("maccatalyst14.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.NIDActionArity2V98))]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.SDActionArity2V98.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")]
[SupportedOSPlatform ("maccatalyst14.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.NIDActionArity2V99))]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.SDActionArity2V99.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")]
[SupportedOSPlatform ("maccatalyst14.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.NIDActionArity2V100))]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.SDActionArity2V100.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")]
[SupportedOSPlatform ("maccatalyst14.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.NIDActionArity2V101))]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.SDActionArity2V101.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 b5b2a59..9ad61f7 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")]
[SupportedOSPlatform ("maccatalyst14.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.NIDActionArity2V102))]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.SDActionArity2V102.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 6e3b9cf..0be3050 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")]
[SupportedOSPlatform ("maccatalyst11.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.NIDActionArity2V103))]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.SDActionArity2V103.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 bfe3443..0173624 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")]
[SupportedOSPlatform ("maccatalyst12.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.NIDActionArity2V104))]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.SDActionArity2V104.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 7d45a40..d704927 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")]
[SupportedOSPlatform ("maccatalyst13.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.NIDActionArity2V105))]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.SDActionArity2V105.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.NIDActionArity2V105))]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.SDActionArity2V105.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/MediaPlayer/MPMediaLibrary.g.cs b/new/dotnet/ios/generated-sources/MediaPlayer/MPMediaLibrary.g.cs
index e24271d..2f124d7 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")]
[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.NIDActionArity2V106))]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.SDActionArity2V106.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")]
[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.NIDActionArity2V107))]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.SDActionArity2V107.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 3eccbb6..b12add8 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")]
[SupportedOSPlatform ("maccatalyst10.3")]
[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.NIDActionArity2V108))]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.SDActionArity2V108.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 e8f6b1c..28b4a7d 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.NIDActionArity2V109) })]
public partial interface IMPPlayableContentDataSource : INativeObject, IDisposable
{
[UnsupportedOSPlatform ("macos")]
@@ -120,7 +120,7 @@ namespace MediaPlayer {
#endif
[UnsupportedOSPlatform ("maccatalyst14.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.NIDActionArity2V109))]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.SDActionArity2V109.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")]
[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.NIDActionArity2V109))]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 8b5f4d3..a1f6377 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.NIDActionArity2V110) })]
[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.NIDActionArity2V111) })]
[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.NIDActionArity2V112) })]
[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.NIDActionArity2V110) })]
[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.NIDActionArity2V110))]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.NIDActionArity2V111))]global::System.Action<IMTLRenderPipelineState, NSError> completionHandler);
[return: ReleaseAttribute ()]
[SupportedOSPlatform ("ios8.0")]
[SupportedOSPlatform ("macos10.11")]
@@ -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.NIDActionArity2V112))]global::System.Action<IMTLComputePipelineState, NSError> completionHandler);
[return: ReleaseAttribute ()]
[SupportedOSPlatform ("ios8.0")]
[SupportedOSPlatform ("macos10.11")]
@@ -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.NIDActionArity2V110))]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.NIDActionArity2V110))]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.SDActionArity2V110.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.NIDActionArity2V111))]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.SDActionArity2V111.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.NIDActionArity2V112))]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.SDActionArity2V112.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.NIDActionArity2V110))]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.SDActionArity2V110.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 7463802..0476387 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.NIDActionArity2V113) })]
+ [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.NIDActionArity2V113) })]
[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.NIDActionArity2V113) })]
[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.NIDActionArity2V113))]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.NIDActionArity2V113))]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.NIDActionArity2V113))]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.NIDActionArity2V113))]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.SDActionArity2V113.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.NIDActionArity2V113))]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.SDActionArity2V113.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.NIDActionArity2V113))]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.SDActionArity2V113.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 1ada190..7b0a953 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")]
[SupportedOSPlatform ("maccatalyst11.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.NIDActionArity2V114))]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.SDActionArity2V114.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 bc3e5ca..8084cfc 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")]
[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.NIDActionArity2V115))]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.SDActionArity2V115.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")]
[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.NIDActionArity2V115))]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 a566cc1..c586ffe 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")]
[SupportedOSPlatform ("maccatalyst9.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.NIDActionArity2V116))]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.SDActionArity2V116.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/NEAppPushManager.g.cs b/new/dotnet/ios/generated-sources/NetworkExtension/NEAppPushManager.g.cs
index 1a4bb8e..493b400 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")]
[SupportedOSPlatform ("maccatalyst14.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.NIDActionArity2V117))]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.SDActionArity2V117.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 169baf7..57bac28 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")]
[SupportedOSPlatform ("maccatalyst9.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.NIDActionArity2V118))]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.SDActionArity2V118.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 47e7781..6f2c9d8 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")]
[SupportedOSPlatform ("maccatalyst9.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.NIDActionArity2V116))]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.SDActionArity2V116.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/NWTcpConnectionAuthenticationDelegate.g.cs b/new/dotnet/ios/generated-sources/NetworkExtension/NWTcpConnectionAuthenticationDelegate.g.cs
index b935ce2..0bb5ad2 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")]
[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.NIDActionArity2V119) })]
[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")]
[SupportedOSPlatform ("maccatalyst9.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.NIDActionArity2V119))]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.SDActionArity2V119.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")]
[SupportedOSPlatform ("maccatalyst9.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.NIDActionArity2V119))]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 3246905..0da6da9 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")]
[SupportedOSPlatform ("maccatalyst9.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.NIDActionArity2V116))]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.SDActionArity2V116.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..a215428 100644
--- a/old/dotnet/ios/generated-sources/ObjCRuntime/Trampolines.g.cs
+++ b/new/dotnet/ios/generated-sources/ObjCRuntime/Trampolines.g.cs
@@ -26017,28 +26017,28 @@ namespace ObjCRuntime {
} /* class NIDActionArity2V72 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSArray, NSError>))]
- internal delegate void DActionArity2V117 (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 SDActionArity2V117 {
- static internal readonly DActionArity2V117 Handler = Invoke;
+ static internal class SDActionArity2V116 {
+ static internal readonly DActionArity2V116 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V117))]
+ [MonoPInvokeCallback (typeof (DActionArity2V116))]
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 SDActionArity2V116 */
+ internal sealed class NIDActionArity2V116 : TrampolineBlockBase {
+ DActionArity2V116 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V117 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V116 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V117> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V116> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -26047,7 +26047,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 NIDActionArity2V116 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSArray arg1, NSError arg2)
@@ -26056,7 +26056,7 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V117 */
+ } /* class NIDActionArity2V116 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSArray<global::AVFoundation.AVAssetTrack>, NSError>))]
internal delegate void DActionArity2V14 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
@@ -26441,28 +26441,28 @@ namespace ObjCRuntime {
} /* class NIDActionArity2V62 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSData[], NSNumber[]>))]
- internal delegate void DActionArity2V119 (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 SDActionArity2V119 {
- static internal readonly DActionArity2V119 Handler = Invoke;
+ static internal class SDActionArity2V118 {
+ static internal readonly DActionArity2V118 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V119))]
+ [MonoPInvokeCallback (typeof (DActionArity2V118))]
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 SDActionArity2V118 */
+ internal sealed class NIDActionArity2V118 : TrampolineBlockBase {
+ DActionArity2V118 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V119 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V118 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V119> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V118> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -26471,7 +26471,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 NIDActionArity2V118 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSData[] arg1, NSNumber[] arg2)
@@ -26488,7 +26488,7 @@ namespace ObjCRuntime {
if (nsa_arg2 != null)
nsa_arg2.Dispose ();
}
- } /* class NIDActionArity2V119 */
+ } /* class NIDActionArity2V118 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSDictionary, NSError>))]
internal delegate void DActionArity2V93 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
@@ -26575,28 +26575,28 @@ namespace ObjCRuntime {
} /* class NIDActionArity2V70 */
[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 DActionArity2V143 (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 SDActionArity2V143 {
+ static internal readonly DActionArity2V143 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V144))]
+ [MonoPInvokeCallback (typeof (DActionArity2V143))]
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 SDActionArity2V143 */
+ internal sealed class NIDActionArity2V143 : TrampolineBlockBase {
+ DActionArity2V143 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V144 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V143 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V144> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V143> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -26605,7 +26605,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 NIDActionArity2V143 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSDictionary<NSString, NSObject> arg1, NSError arg2)
@@ -26614,31 +26614,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V144 */
+ } /* class NIDActionArity2V143 */
[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 DActionArity2V144 (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 SDActionArity2V144 {
+ static internal readonly DActionArity2V144 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V145))]
+ [MonoPInvokeCallback (typeof (DActionArity2V144))]
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 SDActionArity2V144 */
+ internal sealed class NIDActionArity2V144 : TrampolineBlockBase {
+ DActionArity2V144 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V145 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V144 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V145> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V144> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -26647,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 NIDActionArity2V145 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V144 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSDictionary<NSString, NSObject>[] arg1, NSError arg2)
@@ -26660,7 +26660,7 @@ namespace ObjCRuntime {
if (nsa_arg1 != null)
nsa_arg1.Dispose ();
}
- } /* class NIDActionArity2V145 */
+ } /* class NIDActionArity2V144 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSDictionary<NSString, NSOperation>, NSError>))]
internal delegate void DActionArity2V37 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
@@ -26793,28 +26793,28 @@ namespace ObjCRuntime {
} /* class NIDActionArity2V71 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSObject, NSString>))]
- internal delegate void DActionArity2V152 (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 SDActionArity2V152 {
- static internal readonly DActionArity2V152 Handler = Invoke;
+ static internal class SDActionArity2V151 {
+ static internal readonly DActionArity2V151 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V152))]
+ [MonoPInvokeCallback (typeof (DActionArity2V151))]
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 SDActionArity2V151 */
+ internal sealed class NIDActionArity2V151 : TrampolineBlockBase {
+ DActionArity2V151 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V152 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V151 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V152> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V151> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -26823,7 +26823,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 NIDActionArity2V151 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSObject arg1, NSString arg2)
@@ -26832,31 +26832,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V152 */
+ } /* class NIDActionArity2V151 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSSet<NSString>, NSError>))]
- internal delegate void DActionArity2V142 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V141 (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 SDActionArity2V141 {
+ static internal readonly DActionArity2V141 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V142))]
+ [MonoPInvokeCallback (typeof (DActionArity2V141))]
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 SDActionArity2V141 */
+ internal sealed class NIDActionArity2V141 : TrampolineBlockBase {
+ DActionArity2V141 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V142 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V141 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V142> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V141> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -26865,7 +26865,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 NIDActionArity2V141 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSSet<NSString> arg1, NSError arg2)
@@ -26874,31 +26874,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V142 */
+ } /* class NIDActionArity2V141 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSSet<NSString>[], NSError>))]
- internal delegate void DActionArity2V143 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V142 (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 SDActionArity2V142 {
+ static internal readonly DActionArity2V142 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V143))]
+ [MonoPInvokeCallback (typeof (DActionArity2V142))]
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 SDActionArity2V142 */
+ internal sealed class NIDActionArity2V142 : TrampolineBlockBase {
+ DActionArity2V142 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V143 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V142 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V143> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V142> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -26907,7 +26907,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 NIDActionArity2V142 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSSet<NSString>[] arg1, NSError arg2)
@@ -26920,31 +26920,31 @@ namespace ObjCRuntime {
if (nsa_arg1 != null)
nsa_arg1.Dispose ();
}
- } /* class NIDActionArity2V143 */
+ } /* class NIDActionArity2V142 */
[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 DActionArity2V136 (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 SDActionArity2V136 {
+ static internal readonly DActionArity2V136 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V137))]
+ [MonoPInvokeCallback (typeof (DActionArity2V136))]
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 SDActionArity2V136 */
+ internal sealed class NIDActionArity2V136 : TrampolineBlockBase {
+ DActionArity2V136 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V137 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V136 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V137> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V136> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -26953,7 +26953,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 NIDActionArity2V136 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSSet<global::ThreadNetwork.THCredentials> arg1, NSError arg2)
@@ -26962,31 +26962,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V137 */
+ } /* class NIDActionArity2V136 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSString, NSError>))]
- internal delegate void DActionArity2V134 (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 SDActionArity2V134 {
- static internal readonly DActionArity2V134 Handler = Invoke;
+ static internal class SDActionArity2V133 {
+ static internal readonly DActionArity2V133 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V134))]
+ [MonoPInvokeCallback (typeof (DActionArity2V133))]
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 SDActionArity2V133 */
+ internal sealed class NIDActionArity2V133 : TrampolineBlockBase {
+ DActionArity2V133 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V134 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V133 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V134> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V133> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -26995,7 +26995,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 NIDActionArity2V133 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSString arg1, NSError arg2)
@@ -27004,31 +27004,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V134 */
+ } /* class NIDActionArity2V133 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSString, bool>))]
- internal delegate void DActionArity2V140 (IntPtr block, NativeHandle arg1, bool arg2);
+ internal delegate void DActionArity2V139 (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 SDActionArity2V139 {
+ static internal readonly DActionArity2V139 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V140))]
+ [MonoPInvokeCallback (typeof (DActionArity2V139))]
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 SDActionArity2V139 */
+ internal sealed class NIDActionArity2V139 : TrampolineBlockBase {
+ DActionArity2V139 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V140 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V139 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V140> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V139> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -27037,7 +27037,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 NIDActionArity2V139 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSString arg1, bool arg2)
@@ -27045,7 +27045,7 @@ namespace ObjCRuntime {
var arg1__handle__ = arg1.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2);
}
- } /* class NIDActionArity2V140 */
+ } /* class NIDActionArity2V139 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSUrl, NSError>))]
internal delegate void DActionArity2V26 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
@@ -27090,28 +27090,28 @@ namespace ObjCRuntime {
} /* class NIDActionArity2V26 */
[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 DActionArity2V140 (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 SDActionArity2V140 {
+ static internal readonly DActionArity2V140 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V141))]
+ [MonoPInvokeCallback (typeof (DActionArity2V140))]
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 SDActionArity2V140 */
+ internal sealed class NIDActionArity2V140 : TrampolineBlockBase {
+ DActionArity2V140 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V141 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V140 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V141> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V140> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -27120,7 +27120,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 NIDActionArity2V140 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSUrl arg1, global::UIKit.UIDocumentBrowserImportMode arg2)
@@ -27128,7 +27128,7 @@ namespace ObjCRuntime {
var arg1__handle__ = arg1.GetHandle ();
invoker (BlockPointer, arg1__handle__, (UIntPtr) (ulong) arg2);
}
- } /* class NIDActionArity2V141 */
+ } /* class NIDActionArity2V140 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSUrlSessionAuthChallengeDisposition, NSUrlCredential>))]
internal delegate void DActionArity2V10 (IntPtr block, IntPtr arg1, NativeHandle arg2);
@@ -27984,80 +27984,38 @@ namespace ObjCRuntime {
}
} /* class NIDActionArity2V95 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
- [UserDelegateType (typeof (global::System.Action<global::HomeKit.HMAccessorySetupResult, NSError>))]
- internal delegate void DActionArity2V96 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ [UserDelegateType (typeof (global::System.Action<global::HomeKit.HMAccessory[], NSError>))]
+ 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);
+ var del = (global::System.Action<global::HomeKit.HMAccessory[], NSError>) (descriptor->Target);
if (del != null)
- del ( Runtime.GetNSObject<HomeKit.HMAccessorySetupResult> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
+ del (CFArray.ArrayFromHandle<global::HomeKit.HMAccessory> (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)]
- public unsafe static global::System.Action<global::HomeKit.HMAccessorySetupResult, NSError>? Create (IntPtr block)
- {
- if (block == IntPtr.Zero)
- return null;
- var del = (global::System.Action<global::HomeKit.HMAccessorySetupResult, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V96 ((BlockLiteral *) block).Invoke;
- }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- unsafe void Invoke (global::HomeKit.HMAccessorySetupResult arg1, NSError arg2)
- {
- var arg1__handle__ = arg1.GetHandle ();
- var arg2__handle__ = arg2.GetHandle ();
- invoker (BlockPointer, arg1__handle__, arg2__handle__);
- }
- } /* class NIDActionArity2V96 */
- [UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
- [UserDelegateType (typeof (global::System.Action<global::HomeKit.HMAccessory[], NSError>))]
- internal delegate void DActionArity2V98 (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;
- [Preserve (Conditional = true)]
- [global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V98))]
- 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;
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V98 (BlockLiteral *block) : base (block)
- {
- invoker = block->GetDelegateForBlock<DActionArity2V98> ();
- }
- [Preserve (Conditional=true)]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static global::System.Action<global::HomeKit.HMAccessory[], NSError>? Create (IntPtr block)
+ public unsafe static global::System.Action<global::HomeKit.HMAccessory[], NSError>? Create (IntPtr block)
{
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 NIDActionArity2V97 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::HomeKit.HMAccessory[] arg1, NSError arg2)
@@ -28070,31 +28028,31 @@ namespace ObjCRuntime {
if (nsa_arg1 != null)
nsa_arg1.Dispose ();
}
- } /* class NIDActionArity2V98 */
+ } /* class NIDActionArity2V97 */
[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 DActionArity2V96 (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 SDActionArity2V96 {
+ static internal readonly DActionArity2V96 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V97))]
+ [MonoPInvokeCallback (typeof (DActionArity2V96))]
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 SDActionArity2V96 */
+ internal sealed class NIDActionArity2V96 : TrampolineBlockBase {
+ DActionArity2V96 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V97 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V96 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V97> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V96> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -28103,7 +28061,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 NIDActionArity2V96 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::HomeKit.HMActionSet arg1, NSError arg2)
@@ -28112,31 +28070,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V97 */
+ } /* class NIDActionArity2V96 */
[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 DActionArity2V102 (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 SDActionArity2V102 {
+ static internal readonly DActionArity2V102 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V103))]
+ [MonoPInvokeCallback (typeof (DActionArity2V102))]
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 SDActionArity2V102 */
+ internal sealed class NIDActionArity2V102 : TrampolineBlockBase {
+ DActionArity2V102 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V103 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V102 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V103> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V102> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -28145,7 +28103,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 NIDActionArity2V102 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::HomeKit.HMHome arg1, NSError arg2)
@@ -28154,31 +28112,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V103 */
+ } /* class NIDActionArity2V102 */
[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 DActionArity2V98 (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 SDActionArity2V98 {
+ static internal readonly DActionArity2V98 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V99))]
+ [MonoPInvokeCallback (typeof (DActionArity2V98))]
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 SDActionArity2V98 */
+ internal sealed class NIDActionArity2V98 : TrampolineBlockBase {
+ DActionArity2V98 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V99 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V98 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V99> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V98> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -28187,7 +28145,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 NIDActionArity2V98 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::HomeKit.HMRoom arg1, NSError arg2)
@@ -28196,31 +28154,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V99 */
+ } /* class NIDActionArity2V98 */
[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 DActionArity2V99 (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 SDActionArity2V99 {
+ static internal readonly DActionArity2V99 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V100))]
+ [MonoPInvokeCallback (typeof (DActionArity2V99))]
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 SDActionArity2V99 */
+ internal sealed class NIDActionArity2V99 : TrampolineBlockBase {
+ DActionArity2V99 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V100 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V99 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V100> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V99> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -28229,7 +28187,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 NIDActionArity2V99 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::HomeKit.HMServiceGroup arg1, NSError arg2)
@@ -28238,31 +28196,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V100 */
+ } /* class NIDActionArity2V99 */
[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 DActionArity2V100 (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 SDActionArity2V100 {
+ static internal readonly DActionArity2V100 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V101))]
+ [MonoPInvokeCallback (typeof (DActionArity2V100))]
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 SDActionArity2V100 */
+ internal sealed class NIDActionArity2V100 : TrampolineBlockBase {
+ DActionArity2V100 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V101 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V100 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V101> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V100> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -28271,7 +28229,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 NIDActionArity2V100 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::HomeKit.HMUser arg1, NSError arg2)
@@ -28280,31 +28238,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V101 */
+ } /* class NIDActionArity2V100 */
[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 DActionArity2V101 (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 SDActionArity2V101 {
+ static internal readonly DActionArity2V101 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V102))]
+ [MonoPInvokeCallback (typeof (DActionArity2V101))]
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 SDActionArity2V101 */
+ internal sealed class NIDActionArity2V101 : TrampolineBlockBase {
+ DActionArity2V101 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V102 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V101 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V102> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V101> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -28313,7 +28271,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 NIDActionArity2V101 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::HomeKit.HMZone arg1, NSError arg2)
@@ -28322,31 +28280,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V102 */
+ } /* class NIDActionArity2V101 */
[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 DActionArity2V103 (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 SDActionArity2V103 {
+ static internal readonly DActionArity2V103 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V104))]
+ [MonoPInvokeCallback (typeof (DActionArity2V103))]
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 SDActionArity2V103 */
+ internal sealed class NIDActionArity2V103 : TrampolineBlockBase {
+ DActionArity2V103 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V104 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V103 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V104> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V103> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -28355,7 +28313,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 NIDActionArity2V103 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::IdentityLookup.ILNetworkResponse arg1, NSError arg2)
@@ -28364,31 +28322,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V104 */
+ } /* class NIDActionArity2V103 */
[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 DActionArity2V104 (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 SDActionArity2V104 {
+ static internal readonly DActionArity2V104 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V105))]
+ [MonoPInvokeCallback (typeof (DActionArity2V104))]
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 SDActionArity2V104 */
+ internal sealed class NIDActionArity2V104 : TrampolineBlockBase {
+ DActionArity2V104 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V105 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V104 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V105> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V104> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -28397,7 +28355,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 NIDActionArity2V104 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::Intents.INVoiceShortcut arg1, NSError arg2)
@@ -28406,31 +28364,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V105 */
+ } /* class NIDActionArity2V104 */
[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 DActionArity2V105 (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 SDActionArity2V105 {
+ static internal readonly DActionArity2V105 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V106))]
+ [MonoPInvokeCallback (typeof (DActionArity2V105))]
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 SDActionArity2V105 */
+ internal sealed class NIDActionArity2V105 : TrampolineBlockBase {
+ DActionArity2V105 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V106 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V105 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V106> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V105> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -28439,7 +28397,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 NIDActionArity2V105 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::LinkPresentation.LPLinkMetadata arg1, NSError arg2)
@@ -28448,31 +28406,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V106 */
+ } /* class NIDActionArity2V105 */
[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 DActionArity2V109 (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 SDActionArity2V109 {
+ static internal readonly DActionArity2V109 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V110))]
+ [MonoPInvokeCallback (typeof (DActionArity2V109))]
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 SDActionArity2V109 */
+ internal sealed class NIDActionArity2V109 : TrampolineBlockBase {
+ DActionArity2V109 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V110 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V109 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V110> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V109> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -28481,7 +28439,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 NIDActionArity2V109 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::MediaPlayer.MPContentItem arg1, NSError arg2)
@@ -28490,31 +28448,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V110 */
+ } /* class NIDActionArity2V109 */
[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 DActionArity2V106 (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 SDActionArity2V106 {
+ static internal readonly DActionArity2V106 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V107))]
+ [MonoPInvokeCallback (typeof (DActionArity2V106))]
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 SDActionArity2V106 */
+ internal sealed class NIDActionArity2V106 : TrampolineBlockBase {
+ DActionArity2V106 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V107 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V106 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V107> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V106> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -28523,7 +28481,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 NIDActionArity2V106 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::MediaPlayer.MPMediaEntity[] arg1, NSError arg2)
@@ -28536,31 +28494,31 @@ namespace ObjCRuntime {
if (nsa_arg1 != null)
nsa_arg1.Dispose ();
}
- } /* class NIDActionArity2V107 */
+ } /* class NIDActionArity2V106 */
[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 DActionArity2V107 (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 SDActionArity2V107 {
+ static internal readonly DActionArity2V107 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V108))]
+ [MonoPInvokeCallback (typeof (DActionArity2V107))]
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 SDActionArity2V107 */
+ internal sealed class NIDActionArity2V107 : TrampolineBlockBase {
+ DActionArity2V107 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V108 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V107 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V108> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V107> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -28569,7 +28527,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 NIDActionArity2V107 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::MediaPlayer.MPMediaPlaylist arg1, NSError arg2)
@@ -28578,31 +28536,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V108 */
+ } /* class NIDActionArity2V107 */
[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 DActionArity2V108 (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 SDActionArity2V108 {
+ static internal readonly DActionArity2V108 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V109))]
+ [MonoPInvokeCallback (typeof (DActionArity2V108))]
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 SDActionArity2V108 */
+ internal sealed class NIDActionArity2V108 : TrampolineBlockBase {
+ DActionArity2V108 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V109 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V108 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V109> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V108> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -28611,7 +28569,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 NIDActionArity2V108 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::MediaPlayer.MPMusicPlayerControllerQueue arg1, NSError arg2)
@@ -28620,31 +28578,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V109 */
+ } /* class NIDActionArity2V108 */
[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 DActionArity2V112 (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 SDActionArity2V112 {
+ static internal readonly DActionArity2V112 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V113))]
+ [MonoPInvokeCallback (typeof (DActionArity2V112))]
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 SDActionArity2V112 */
+ internal sealed class NIDActionArity2V112 : TrampolineBlockBase {
+ DActionArity2V112 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V113 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V112 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V113> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V112> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -28653,7 +28611,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 NIDActionArity2V112 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::Metal.IMTLComputePipelineState arg1, NSError arg2)
@@ -28662,31 +28620,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V113 */
+ } /* class NIDActionArity2V112 */
[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 DActionArity2V113 (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 SDActionArity2V113 {
+ static internal readonly DActionArity2V113 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V114))]
+ [MonoPInvokeCallback (typeof (DActionArity2V113))]
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 SDActionArity2V113 */
+ internal sealed class NIDActionArity2V113 : TrampolineBlockBase {
+ DActionArity2V113 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V114 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V113 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V114> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V113> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -28695,7 +28653,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 NIDActionArity2V113 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::Metal.IMTLFunction arg1, NSError arg2)
@@ -28704,31 +28662,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V114 */
+ } /* class NIDActionArity2V113 */
[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 DActionArity2V110 (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 SDActionArity2V110 {
+ static internal readonly DActionArity2V110 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V111))]
+ [MonoPInvokeCallback (typeof (DActionArity2V110))]
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 SDActionArity2V110 */
+ internal sealed class NIDActionArity2V110 : TrampolineBlockBase {
+ DActionArity2V110 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V111 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V110 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V111> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V110> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -28737,7 +28695,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 NIDActionArity2V110 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::Metal.IMTLLibrary arg1, NSError arg2)
@@ -28746,31 +28704,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V111 */
+ } /* class NIDActionArity2V110 */
[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 DActionArity2V111 (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 SDActionArity2V111 {
+ static internal readonly DActionArity2V111 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V112))]
+ [MonoPInvokeCallback (typeof (DActionArity2V111))]
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 SDActionArity2V111 */
+ internal sealed class NIDActionArity2V111 : TrampolineBlockBase {
+ DActionArity2V111 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V112 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V111 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V112> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V111> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -28779,7 +28737,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 NIDActionArity2V111 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::Metal.IMTLRenderPipelineState arg1, NSError arg2)
@@ -28788,31 +28746,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V112 */
+ } /* class NIDActionArity2V111 */
[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 DActionArity2V114 (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 SDActionArity2V114 {
+ static internal readonly DActionArity2V114 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V115))]
+ [MonoPInvokeCallback (typeof (DActionArity2V114))]
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 SDActionArity2V114 */
+ internal sealed class NIDActionArity2V114 : TrampolineBlockBase {
+ DActionArity2V114 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V115 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V114 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V115> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V114> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -28821,7 +28779,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 NIDActionArity2V114 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::MetalPerformanceShaders.MPSImage arg1, NSError arg2)
@@ -28830,31 +28788,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V115 */
+ } /* class NIDActionArity2V114 */
[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 DActionArity2V115 (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 SDActionArity2V115 {
+ static internal readonly DActionArity2V115 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V116))]
+ [MonoPInvokeCallback (typeof (DActionArity2V115))]
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;
+ } /* class SDActionArity2V115 */
+ internal sealed class NIDActionArity2V115 : TrampolineBlockBase {
+ DActionArity2V115 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V116 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V115 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V116> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V115> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -28863,7 +28821,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 NIDActionArity2V115 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::NaturalLanguage.NLTaggerAssetsResult arg1, NSError arg2)
@@ -28871,31 +28829,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, (IntPtr) (long) arg1, arg2__handle__);
}
- } /* class NIDActionArity2V116 */
+ } /* class NIDActionArity2V115 */
[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 DActionArity2V117 (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 SDActionArity2V117 {
+ static internal readonly DActionArity2V117 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V118))]
+ [MonoPInvokeCallback (typeof (DActionArity2V117))]
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 SDActionArity2V117 */
+ internal sealed class NIDActionArity2V117 : TrampolineBlockBase {
+ DActionArity2V117 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V118 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V117 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V118> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V117> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -28904,7 +28862,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 NIDActionArity2V117 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::NetworkExtension.NEAppPushManager[] arg1, NSError arg2)
@@ -28917,31 +28875,31 @@ namespace ObjCRuntime {
if (nsa_arg1 != null)
nsa_arg1.Dispose ();
}
- } /* class NIDActionArity2V118 */
+ } /* class NIDActionArity2V117 */
[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 DActionArity2V120 (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 SDActionArity2V120 {
+ static internal readonly DActionArity2V120 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V121))]
+ [MonoPInvokeCallback (typeof (DActionArity2V120))]
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 SDActionArity2V120 */
+ internal sealed class NIDActionArity2V120 : TrampolineBlockBase {
+ DActionArity2V120 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V121 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V120 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V121> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V120> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -28950,7 +28908,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 NIDActionArity2V120 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::PassKit.PKAddShareablePassConfiguration arg1, NSError arg2)
@@ -28959,31 +28917,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V121 */
+ } /* class NIDActionArity2V120 */
[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 DActionArity2V121 (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 SDActionArity2V121 {
+ static internal readonly DActionArity2V121 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V122))]
+ [MonoPInvokeCallback (typeof (DActionArity2V121))]
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 SDActionArity2V121 */
+ internal sealed class NIDActionArity2V121 : TrampolineBlockBase {
+ DActionArity2V121 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V122 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V121 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V122> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V121> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -28992,7 +28950,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 NIDActionArity2V121 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::PassKit.PKPaymentAuthorizationStatus arg1, global::PassKit.PKPaymentSummaryItem[] arg2)
@@ -29004,31 +28962,31 @@ namespace ObjCRuntime {
if (nsa_arg2 != null)
nsa_arg2.Dispose ();
}
- } /* class NIDActionArity2V122 */
+ } /* class NIDActionArity2V121 */
[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 DActionArity2V122 (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 SDActionArity2V122 {
+ static internal readonly DActionArity2V122 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V123))]
+ [MonoPInvokeCallback (typeof (DActionArity2V122))]
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 SDActionArity2V122 */
+ internal sealed class NIDActionArity2V122 : TrampolineBlockBase {
+ DActionArity2V122 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V123 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V122 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V123> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V122> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -29037,7 +28995,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 NIDActionArity2V122 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::Photos.PHLivePhoto arg1, NSDictionary arg2)
@@ -29046,31 +29004,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V123 */
+ } /* class NIDActionArity2V122 */
[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 DActionArity2V123 (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 SDActionArity2V123 {
+ static internal readonly DActionArity2V123 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V124))]
+ [MonoPInvokeCallback (typeof (DActionArity2V123))]
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 SDActionArity2V123 */
+ internal sealed class NIDActionArity2V123 : TrampolineBlockBase {
+ DActionArity2V123 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V124 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V123 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V124> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V123> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -29079,7 +29037,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 NIDActionArity2V123 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::Photos.PHLivePhoto arg1, NSError arg2)
@@ -29088,31 +29046,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V124 */
+ } /* class NIDActionArity2V123 */
[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 DActionArity2V124 (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 SDActionArity2V124 {
+ static internal readonly DActionArity2V124 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V125))]
+ [MonoPInvokeCallback (typeof (DActionArity2V124))]
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 SDActionArity2V124 */
+ internal sealed class NIDActionArity2V124 : TrampolineBlockBase {
+ DActionArity2V124 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V125 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V124 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V125> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V124> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -29121,7 +29079,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 NIDActionArity2V124 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::QuickLook.QLPreviewReply arg1, NSError arg2)
@@ -29130,31 +29088,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V125 */
+ } /* class NIDActionArity2V124 */
[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 DActionArity2V126 (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 SDActionArity2V126 {
+ static internal readonly DActionArity2V126 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V127))]
+ [MonoPInvokeCallback (typeof (DActionArity2V126))]
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 SDActionArity2V126 */
+ internal sealed class NIDActionArity2V126 : TrampolineBlockBase {
+ DActionArity2V126 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V127 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V126 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V127> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V126> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -29163,7 +29121,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 NIDActionArity2V126 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::QuickLookThumbnailing.QLThumbnailReply arg1, NSError arg2)
@@ -29172,31 +29130,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V127 */
+ } /* class NIDActionArity2V126 */
[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 DActionArity2V125 (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 SDActionArity2V125 {
+ static internal readonly DActionArity2V125 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V126))]
+ [MonoPInvokeCallback (typeof (DActionArity2V125))]
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 SDActionArity2V125 */
+ internal sealed class NIDActionArity2V125 : TrampolineBlockBase {
+ DActionArity2V125 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V126 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V125 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V126> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V125> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -29205,7 +29163,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 NIDActionArity2V125 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::QuickLookThumbnailing.QLThumbnailRepresentation arg1, NSError arg2)
@@ -29214,31 +29172,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V126 */
+ } /* class NIDActionArity2V125 */
[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 DActionArity2V127 (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 SDActionArity2V127 {
+ static internal readonly DActionArity2V127 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V128))]
+ [MonoPInvokeCallback (typeof (DActionArity2V127))]
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 SDActionArity2V127 */
+ internal sealed class NIDActionArity2V127 : TrampolineBlockBase {
+ DActionArity2V127 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V128 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V127 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V128> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V127> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -29247,7 +29205,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 NIDActionArity2V127 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::ReplayKit.RPBroadcastActivityViewController arg1, NSError arg2)
@@ -29256,31 +29214,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V128 */
+ } /* class NIDActionArity2V127 */
[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 DActionArity2V128 (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 SDActionArity2V128 {
+ static internal readonly DActionArity2V128 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V129))]
+ [MonoPInvokeCallback (typeof (DActionArity2V128))]
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 SDActionArity2V128 */
+ internal sealed class NIDActionArity2V128 : TrampolineBlockBase {
+ DActionArity2V128 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V129 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V128 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V129> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V128> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -29289,7 +29247,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 NIDActionArity2V128 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::ReplayKit.RPPreviewViewController arg1, NSError arg2)
@@ -29298,31 +29256,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V129 */
+ } /* class NIDActionArity2V128 */
[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 DActionArity2V129 (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 SDActionArity2V129 {
+ static internal readonly DActionArity2V129 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V130))]
+ [MonoPInvokeCallback (typeof (DActionArity2V129))]
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 SDActionArity2V129 */
+ internal sealed class NIDActionArity2V129 : TrampolineBlockBase {
+ DActionArity2V129 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V130 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V129 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V130> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V129> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -29331,7 +29289,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 NIDActionArity2V129 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::SafariServices.SFContentBlockerState arg1, NSError arg2)
@@ -29340,31 +29298,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V130 */
+ } /* class NIDActionArity2V129 */
[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 DActionArity2V119 (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 SDActionArity2V119 {
+ static internal readonly DActionArity2V119 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V120))]
+ [MonoPInvokeCallback (typeof (DActionArity2V119))]
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 SDActionArity2V119 */
+ internal sealed class NIDActionArity2V119 : TrampolineBlockBase {
+ DActionArity2V119 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V120 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V119 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V120> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V119> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -29373,7 +29331,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 NIDActionArity2V119 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::Security.SecIdentity arg1, NSArray arg2)
@@ -29382,31 +29340,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V120 */
+ } /* class NIDActionArity2V119 */
[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 DActionArity2V130 (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 SDActionArity2V130 {
+ static internal readonly DActionArity2V130 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V131))]
+ [MonoPInvokeCallback (typeof (DActionArity2V130))]
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 SDActionArity2V130 */
+ internal sealed class NIDActionArity2V130 : TrampolineBlockBase {
+ DActionArity2V130 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V131 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V130 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V131> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V130> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -29415,7 +29373,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 NIDActionArity2V130 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::ShazamKit.SHMediaItem arg1, NSError arg2)
@@ -29424,31 +29382,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V131 */
+ } /* class NIDActionArity2V130 */
[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 DActionArity2V131 (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 SDActionArity2V131 {
+ static internal readonly DActionArity2V131 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V132))]
+ [MonoPInvokeCallback (typeof (DActionArity2V131))]
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 SDActionArity2V131 */
+ internal sealed class NIDActionArity2V131 : TrampolineBlockBase {
+ DActionArity2V131 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V132 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V131 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V132> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V131> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -29457,7 +29415,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 NIDActionArity2V131 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::Speech.SFSpeechRecognitionResult arg1, NSError arg2)
@@ -29466,31 +29424,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V132 */
+ } /* class NIDActionArity2V131 */
[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 DActionArity2V132 (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 SDActionArity2V132 {
+ static internal readonly DActionArity2V132 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V133))]
+ [MonoPInvokeCallback (typeof (DActionArity2V132))]
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 SDActionArity2V132 */
+ internal sealed class NIDActionArity2V132 : TrampolineBlockBase {
+ DActionArity2V132 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V133 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V132 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V133> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V132> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -29499,7 +29457,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 NIDActionArity2V132 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::StoreKit.SKCloudServiceCapability arg1, NSError arg2)
@@ -29507,31 +29465,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, (UIntPtr) (ulong) arg1, arg2__handle__);
}
- } /* class NIDActionArity2V133 */
+ } /* class NIDActionArity2V132 */
[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 DActionArity2V135 (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 SDActionArity2V135 {
+ static internal readonly DActionArity2V135 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V136))]
+ [MonoPInvokeCallback (typeof (DActionArity2V135))]
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 SDActionArity2V135 */
+ internal sealed class NIDActionArity2V135 : TrampolineBlockBase {
+ DActionArity2V135 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V136 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V135 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V136> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V135> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -29540,7 +29498,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 NIDActionArity2V135 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::StoreKit.SKProductStorePromotionVisibility arg1, NSError arg2)
@@ -29548,31 +29506,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, (IntPtr) (long) arg1, arg2__handle__);
}
- } /* class NIDActionArity2V136 */
+ } /* class NIDActionArity2V135 */
[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 DActionArity2V134 (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 SDActionArity2V134 {
+ static internal readonly DActionArity2V134 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V135))]
+ [MonoPInvokeCallback (typeof (DActionArity2V134))]
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 SDActionArity2V134 */
+ internal sealed class NIDActionArity2V134 : TrampolineBlockBase {
+ DActionArity2V134 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V135 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V134 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V135> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V134> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -29581,7 +29539,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 NIDActionArity2V134 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::StoreKit.SKProduct[] arg1, NSError arg2)
@@ -29594,7 +29552,7 @@ namespace ObjCRuntime {
if (nsa_arg1 != null)
nsa_arg1.Dispose ();
}
- } /* class NIDActionArity2V135 */
+ } /* class NIDActionArity2V134 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<bool, global::AVKit.AVAudioSessionRouteSelection>))]
internal delegate void DActionArity2V24 (IntPtr block, bool arg1, IntPtr arg2);
@@ -30020,28 +29978,28 @@ namespace ObjCRuntime {
} /* class NIDActionArity2V74 */
[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 DActionArity2V137 (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 SDActionArity2V137 {
+ static internal readonly DActionArity2V137 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V138))]
+ [MonoPInvokeCallback (typeof (DActionArity2V137))]
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 SDActionArity2V137 */
+ internal sealed class NIDActionArity2V137 : TrampolineBlockBase {
+ DActionArity2V137 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V138 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V137 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V138> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V137> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -30050,7 +30008,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 NIDActionArity2V137 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::ThreadNetwork.THCredentials arg1, NSError arg2)
@@ -30059,31 +30017,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V138 */
+ } /* class NIDActionArity2V137 */
[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 DActionArity2V138 (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 SDActionArity2V138 {
+ static internal readonly DActionArity2V138 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V139))]
+ [MonoPInvokeCallback (typeof (DActionArity2V138))]
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 SDActionArity2V138 */
+ internal sealed class NIDActionArity2V138 : TrampolineBlockBase {
+ DActionArity2V138 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V139 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V138 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V139> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V138> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -30092,7 +30050,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 NIDActionArity2V138 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::UIKit.NSTextLayoutManager arg1, global::UIKit.NSTextLayoutFragment arg2)
@@ -30101,31 +30059,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V139 */
+ } /* class NIDActionArity2V138 */
[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 DActionArity2V152 (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 SDActionArity2V152 {
+ static internal readonly DActionArity2V152 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V153))]
+ [MonoPInvokeCallback (typeof (DActionArity2V152))]
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 SDActionArity2V152 */
+ internal sealed class NIDActionArity2V152 : TrampolineBlockBase {
+ DActionArity2V152 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V153 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V152 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V153> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V152> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -30134,7 +30092,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 NIDActionArity2V152 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::UIKit.UIImage arg1, NSError arg2)
@@ -30143,31 +30101,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V153 */
+ } /* class NIDActionArity2V152 */
[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 DActionArity2V145 (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 SDActionArity2V145 {
+ static internal readonly DActionArity2V145 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V146))]
+ [MonoPInvokeCallback (typeof (DActionArity2V145))]
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 SDActionArity2V145 */
+ internal sealed class NIDActionArity2V145 : TrampolineBlockBase {
+ DActionArity2V145 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V146 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V145 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V146> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V145> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -30176,7 +30134,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 NIDActionArity2V145 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::UIKit.UISpringLoadedInteraction arg1, global::UIKit.IUISpringLoadedInteractionContext arg2)
@@ -30185,31 +30143,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V146 */
+ } /* class NIDActionArity2V145 */
[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 DActionArity2V146 (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 SDActionArity2V146 {
+ static internal readonly DActionArity2V146 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V147))]
+ [MonoPInvokeCallback (typeof (DActionArity2V146))]
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 SDActionArity2V146 */
+ internal sealed class NIDActionArity2V146 : TrampolineBlockBase {
+ DActionArity2V146 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V147 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V146 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V147> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V146> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -30218,7 +30176,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 NIDActionArity2V146 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::UIKit.UITableViewRowAction arg1, NSIndexPath arg2)
@@ -30227,7 +30185,7 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V147 */
+ } /* class NIDActionArity2V146 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::UIKit.UIViewController, NSError>))]
internal delegate void DActionArity2V84 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
@@ -30272,28 +30230,28 @@ namespace ObjCRuntime {
} /* class NIDActionArity2V84 */
[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 DActionArity2V147 (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 SDActionArity2V147 {
+ static internal readonly DActionArity2V147 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V148))]
+ [MonoPInvokeCallback (typeof (DActionArity2V147))]
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 SDActionArity2V147 */
+ internal sealed class NIDActionArity2V147 : TrampolineBlockBase {
+ DActionArity2V147 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V148 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V147 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V148> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V147> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -30302,7 +30260,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 NIDActionArity2V147 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::VideoSubscriberAccount.VSAccountAccessStatus arg1, NSError arg2)
@@ -30310,31 +30268,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, (IntPtr) (long) arg1, arg2__handle__);
}
- } /* class NIDActionArity2V148 */
+ } /* class NIDActionArity2V147 */
[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 DActionArity2V148 (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 SDActionArity2V148 {
+ static internal readonly DActionArity2V148 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V149))]
+ [MonoPInvokeCallback (typeof (DActionArity2V148))]
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 SDActionArity2V148 */
+ internal sealed class NIDActionArity2V148 : TrampolineBlockBase {
+ DActionArity2V148 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V149 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V148 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V149> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V148> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -30343,7 +30301,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 NIDActionArity2V148 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::VideoSubscriberAccount.VSAccountMetadata arg1, NSError arg2)
@@ -30352,31 +30310,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V149 */
+ } /* class NIDActionArity2V148 */
[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 DActionArity2V149 (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 SDActionArity2V149 {
+ static internal readonly DActionArity2V149 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V150))]
+ [MonoPInvokeCallback (typeof (DActionArity2V149))]
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 SDActionArity2V149 */
+ internal sealed class NIDActionArity2V149 : TrampolineBlockBase {
+ DActionArity2V149 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V150 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V149 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V150> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V149> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -30385,7 +30343,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 NIDActionArity2V149 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::WebKit.WKContentRuleList arg1, NSError arg2)
@@ -30394,31 +30352,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V150 */
+ } /* class NIDActionArity2V149 */
[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 DActionArity2V150 (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 SDActionArity2V150 {
+ static internal readonly DActionArity2V150 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V151))]
+ [MonoPInvokeCallback (typeof (DActionArity2V150))]
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 SDActionArity2V150 */
+ internal sealed class NIDActionArity2V150 : TrampolineBlockBase {
+ DActionArity2V150 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V151 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V150 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V151> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V150> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -30427,7 +30385,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 NIDActionArity2V150 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::WebKit.WKNavigationActionPolicy arg1, global::WebKit.WKWebpagePreferences arg2)
@@ -30435,7 +30393,7 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, (IntPtr) (long) arg1, arg2__handle__);
}
- } /* class NIDActionArity2V151 */
+ } /* class NIDActionArity2V150 */
[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 3a3d8a7..e6b8d59 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")]
[SupportedOSPlatform ("maccatalyst14.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.NIDActionArity2V120))]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.SDActionArity2V120.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/PKPaymentAuthorizationControllerDelegate.g.cs b/new/dotnet/ios/generated-sources/PassKit/PKPaymentAuthorizationControllerDelegate.g.cs
index d5b586d..c7fcf7c 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.NIDActionArity2V121) })]
[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")]
[SupportedOSPlatform ("maccatalyst10.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.NIDActionArity2V121))]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.SDActionArity2V121.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")]
[SupportedOSPlatform ("maccatalyst10.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.NIDActionArity2V121))]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 a1398b6..8bdde44 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")]
[SupportedOSPlatform ("maccatalyst9.1")]
[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.NIDActionArity2V122))]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.SDActionArity2V122.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 8b75aeb..66b76d1 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")]
[SupportedOSPlatform ("maccatalyst10.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.NIDActionArity2V123))]global::System.Action<PHLivePhoto, NSError> handler)
{
_PrepareLivePhotoForPlayback (targetSize, null, handler);
}
@@ -131,7 +131,7 @@ namespace Photos {
[SupportedOSPlatform ("macos10.12")]
[SupportedOSPlatform ("maccatalyst10.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.NIDActionArity2V123))]global::System.Action<PHLivePhoto, NSError> handler)
{
_PrepareLivePhotoForPlayback (targetSize, (options as NSDictionary), handler);
}
@@ -156,7 +156,7 @@ namespace Photos {
[SupportedOSPlatform ("maccatalyst11.0")]
[SupportedOSPlatform ("macos10.12")]
[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.NIDActionArity2V123))]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")]
[SupportedOSPlatform ("maccatalyst10.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.NIDActionArity2V123))]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.SDActionArity2V123.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 b1283d1..afa6090 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.NIDActionArity2V124) })]
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.NIDActionArity2V124))]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.SDActionArity2V124.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 c8d95b8..1a4751d 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")]
[SupportedOSPlatform ("maccatalyst13.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.NIDActionArity2V125))]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.SDActionArity2V125.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 3b5f926..badc773 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")]
[SupportedOSPlatform ("maccatalyst11.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.NIDActionArity2V126))]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.SDActionArity2V126.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 a4d481d..52af073 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")]
[SupportedOSPlatform ("maccatalyst10.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.NIDActionArity2V127))]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.SDActionArity2V127.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")]
[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.NIDActionArity2V127))]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.SDActionArity2V127.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 830e6cc..9b4aa58 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")]
[SupportedOSPlatform ("maccatalyst9.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.NIDActionArity2V128))]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.SDActionArity2V128.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 fb988f5..4007873 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")]
[SupportedOSPlatform ("macos10.12")]
[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.NIDActionArity2V129))]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.SDActionArity2V129.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 51866de..981fffe 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")]
[SupportedOSPlatform ("maccatalyst15.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.NIDActionArity2V130))]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.SDActionArity2V130.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 bd6dc9b..b9a8a4e 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")]
[SupportedOSPlatform ("maccatalyst10.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual SFSpeechRecognitionTask GetRecognitionTask (SFSpeechRecognitionRequest request, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V132))]global::System.Action<SFSpeechRecognitionResult, NSError> resultHandler)
+ public unsafe virtual SFSpeechRecognitionTask GetRecognitionTask (SFSpeechRecognitionRequest request, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V131))]global::System.Action<SFSpeechRecognitionResult, NSError> resultHandler)
{
var request__handle__ = request!.GetNonNullHandle (nameof (request));
if (resultHandler is null)
@@ -111,7 +111,7 @@ namespace Speech {
BlockLiteral block_resultHandler;
block_resultHandler = new BlockLiteral ();
block_ptr_resultHandler = &block_resultHandler;
- block_resultHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V132.Handler, resultHandler);
+ block_resultHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V131.Handler, resultHandler);
SFSpeechRecognitionTask? ret;
if (IsDirectBinding) {
ret = Runtime.GetNSObject<SFSpeechRecognitionTask> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("recognitionTaskWithRequest:resultHandler:"), request__handle__, (IntPtr) block_ptr_resultHandler))!;
diff --git a/old/dotnet/ios/generated-sources/StoreKit/SKCloudServiceController.g.cs b/new/dotnet/ios/generated-sources/StoreKit/SKCloudServiceController.g.cs
index f80aab9..80c3138 100644
--- a/old/dotnet/ios/generated-sources/StoreKit/SKCloudServiceController.g.cs
+++ b/new/dotnet/ios/generated-sources/StoreKit/SKCloudServiceController.g.cs
@@ -107,7 +107,7 @@ namespace StoreKit {
[SupportedOSPlatform ("tvos9.2")]
[SupportedOSPlatform ("maccatalyst9.3")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void RequestCapabilities ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V133))]global::System.Action<SKCloudServiceCapability, NSError> completionHandler)
+ public unsafe virtual void RequestCapabilities ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V132))]global::System.Action<SKCloudServiceCapability, NSError> completionHandler)
{
if (completionHandler is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (completionHandler));
@@ -115,7 +115,7 @@ namespace StoreKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V133.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V132.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("requestCapabilitiesWithCompletionHandler:"), (IntPtr) block_ptr_completionHandler);
} else {
@@ -157,7 +157,7 @@ namespace StoreKit {
[UnsupportedOSPlatform ("maccatalyst11.0")]
[SupportedOSPlatform ("macos11.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void RequestPersonalizationToken (string clientToken, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V134))]global::System.Action<NSString, NSError> completionHandler)
+ public unsafe virtual void RequestPersonalizationToken (string clientToken, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V133))]global::System.Action<NSString, NSError> completionHandler)
{
if (clientToken is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (clientToken));
@@ -168,7 +168,7 @@ namespace StoreKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V134.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V133.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("requestPersonalizationTokenForClientToken:withCompletionHandler:"), nsclientToken, (IntPtr) block_ptr_completionHandler);
} else {
@@ -211,7 +211,7 @@ namespace StoreKit {
[SupportedOSPlatform ("maccatalyst11.0")]
[SupportedOSPlatform ("macos11.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void RequestStorefrontCountryCode ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V134))]global::System.Action<NSString, NSError> completionHandler)
+ public unsafe virtual void RequestStorefrontCountryCode ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V133))]global::System.Action<NSString, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -222,7 +222,7 @@ namespace StoreKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V134.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V133.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("requestStorefrontCountryCodeWithCompletionHandler:"), (IntPtr) block_ptr_completionHandler);
} else {
@@ -253,7 +253,7 @@ namespace StoreKit {
[SupportedOSPlatform ("tvos9.2")]
[SupportedOSPlatform ("maccatalyst9.3")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void RequestStorefrontIdentifier ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V134))]global::System.Action<NSString, NSError> completionHandler)
+ public unsafe virtual void RequestStorefrontIdentifier ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V133))]global::System.Action<NSString, NSError> completionHandler)
{
if (completionHandler is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (completionHandler));
@@ -261,7 +261,7 @@ namespace StoreKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V134.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V133.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("requestStorefrontIdentifierWithCompletionHandler:"), (IntPtr) block_ptr_completionHandler);
} else {
@@ -291,7 +291,7 @@ namespace StoreKit {
[SupportedOSPlatform ("maccatalyst11.0")]
[SupportedOSPlatform ("macos11.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void RequestUserToken (string developerToken, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V134))]global::System.Action<NSString, NSError> completionHandler)
+ public unsafe virtual void RequestUserToken (string developerToken, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V133))]global::System.Action<NSString, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -305,7 +305,7 @@ namespace StoreKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V134.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V133.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("requestUserTokenForDeveloperToken:completionHandler:"), nsdeveloperToken, (IntPtr) block_ptr_completionHandler);
} else {
diff --git a/old/dotnet/ios/generated-sources/StoreKit/SKProductStorePromotionController.g.cs b/new/dotnet/ios/generated-sources/StoreKit/SKProductStorePromotionController.g.cs
index b617760..a6aa461 100644
--- a/old/dotnet/ios/generated-sources/StoreKit/SKProductStorePromotionController.g.cs
+++ b/new/dotnet/ios/generated-sources/StoreKit/SKProductStorePromotionController.g.cs
@@ -82,7 +82,7 @@ namespace StoreKit {
[SupportedOSPlatform ("tvos11.0")]
[SupportedOSPlatform ("macos11.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void FetchStorePromotionOrder ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V135))]global::System.Action<SKProduct[], NSError>? completionHandler)
+ public unsafe virtual void FetchStorePromotionOrder ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V134))]global::System.Action<SKProduct[], NSError>? completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -94,7 +94,7 @@ namespace StoreKit {
} else {
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V135.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V134.Handler, completionHandler);
}
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("fetchStorePromotionOrderWithCompletionHandler:"), (IntPtr) block_ptr_completionHandler);
@@ -127,7 +127,7 @@ namespace StoreKit {
[SupportedOSPlatform ("tvos11.0")]
[SupportedOSPlatform ("macos11.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void FetchStorePromotionVisibility (SKProduct product, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V136))]global::System.Action<SKProductStorePromotionVisibility, NSError>? completionHandler)
+ public unsafe virtual void FetchStorePromotionVisibility (SKProduct product, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V135))]global::System.Action<SKProductStorePromotionVisibility, NSError>? completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -140,7 +140,7 @@ namespace StoreKit {
} else {
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V136.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V135.Handler, completionHandler);
}
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("fetchStorePromotionVisibilityForProduct:completionHandler:"), product__handle__, (IntPtr) block_ptr_completionHandler);
diff --git a/old/dotnet/ios/generated-sources/ThreadNetwork/THClient.g.cs b/new/dotnet/ios/generated-sources/ThreadNetwork/THClient.g.cs
index d728674..a153e89 100644
--- a/old/dotnet/ios/generated-sources/ThreadNetwork/THClient.g.cs
+++ b/new/dotnet/ios/generated-sources/ThreadNetwork/THClient.g.cs
@@ -137,7 +137,7 @@ namespace ThreadNetwork {
[UnsupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("ios15.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void RetrieveAllCredentials ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V137))]global::System.Action<NSSet<THCredentials>, NSError> completion)
+ public unsafe virtual void RetrieveAllCredentials ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V136))]global::System.Action<NSSet<THCredentials>, NSError> completion)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -148,7 +148,7 @@ namespace ThreadNetwork {
BlockLiteral block_completion;
block_completion = new BlockLiteral ();
block_ptr_completion = &block_completion;
- block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V137.Handler, completion);
+ block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V136.Handler, completion);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("retrieveAllCredentials:"), (IntPtr) block_ptr_completion);
} else {
@@ -177,7 +177,7 @@ namespace ThreadNetwork {
[UnsupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("ios15.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void RetrieveCredentialsForBorderAgent (NSData borderAgentId, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V138))]global::System.Action<THCredentials, NSError> completion)
+ public unsafe virtual void RetrieveCredentialsForBorderAgent (NSData borderAgentId, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V137))]global::System.Action<THCredentials, NSError> completion)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -189,7 +189,7 @@ namespace ThreadNetwork {
BlockLiteral block_completion;
block_completion = new BlockLiteral ();
block_ptr_completion = &block_completion;
- block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V138.Handler, completion);
+ block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V137.Handler, completion);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("retrieveCredentialsForBorderAgent:completion:"), borderAgentId__handle__, (IntPtr) block_ptr_completion);
} else {
@@ -218,7 +218,7 @@ namespace ThreadNetwork {
[UnsupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("ios15.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void RetrieveCredentialsForExtendedPanId (NSData extendedPanId, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V138))]global::System.Action<THCredentials, NSError> completion)
+ public unsafe virtual void RetrieveCredentialsForExtendedPanId (NSData extendedPanId, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V137))]global::System.Action<THCredentials, NSError> completion)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -230,7 +230,7 @@ namespace ThreadNetwork {
BlockLiteral block_completion;
block_completion = new BlockLiteral ();
block_ptr_completion = &block_completion;
- block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V138.Handler, completion);
+ block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V137.Handler, completion);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("retrieveCredentialsForExtendedPANID:completion:"), extendedPanId__handle__, (IntPtr) block_ptr_completion);
} else {
@@ -259,7 +259,7 @@ namespace ThreadNetwork {
[UnsupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("ios15.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void RetrievePreferredCredentials ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V138))]global::System.Action<THCredentials, NSError> completion)
+ public unsafe virtual void RetrievePreferredCredentials ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V137))]global::System.Action<THCredentials, NSError> completion)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -270,7 +270,7 @@ namespace ThreadNetwork {
BlockLiteral block_completion;
block_completion = new BlockLiteral ();
block_ptr_completion = &block_completion;
- block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V138.Handler, completion);
+ block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V137.Handler, completion);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("retrievePreferredCredentials:"), (IntPtr) block_ptr_completion);
} else {
diff --git a/old/dotnet/ios/generated-sources/UIKit/NSTextLayoutManager.g.cs b/new/dotnet/ios/generated-sources/UIKit/NSTextLayoutManager.g.cs
index 99c5ad6..2d6b6ca 100644
--- a/old/dotnet/ios/generated-sources/UIKit/NSTextLayoutManager.g.cs
+++ b/new/dotnet/ios/generated-sources/UIKit/NSTextLayoutManager.g.cs
@@ -860,7 +860,7 @@ namespace UIKit {
[SupportedOSPlatform ("maccatalyst15.0")]
[UnsupportedOSPlatform ("macos")]
public unsafe virtual global::System.Action<NSTextLayoutManager, NSTextLayoutFragment>? RenderingAttributesValidator {
- [return: DelegateProxy (typeof (ObjCRuntime.Trampolines.SDActionArity2V139))]
+ [return: DelegateProxy (typeof (ObjCRuntime.Trampolines.SDActionArity2V138))]
[Export ("renderingAttributesValidator", ArgumentSemantic.Copy)]
[SupportedOSPlatform ("tvos15.0")]
[SupportedOSPlatform ("ios15.0")]
@@ -877,10 +877,10 @@ namespace UIKit {
} else {
ret = global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("renderingAttributesValidator"));
}
- return global::ObjCRuntime.Trampolines.NIDActionArity2V139.Create (ret)!;
+ return global::ObjCRuntime.Trampolines.NIDActionArity2V138.Create (ret)!;
#endif
}
- [param: BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V139))]
+ [param: BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V138))]
[Export ("setRenderingAttributesValidator:", ArgumentSemantic.Copy)]
[SupportedOSPlatform ("tvos15.0")]
[SupportedOSPlatform ("ios15.0")]
@@ -895,7 +895,7 @@ namespace UIKit {
BlockLiteral block_value;
block_value = new BlockLiteral ();
block_ptr_value = &block_value;
- block_value.SetupBlockUnsafe (Trampolines.SDActionArity2V139.Handler, value);
+ block_value.SetupBlockUnsafe (Trampolines.SDActionArity2V138.Handler, value);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("setRenderingAttributesValidator:"), (IntPtr) block_ptr_value);
} else {
diff --git a/old/dotnet/ios/generated-sources/UIKit/UIActivityViewController.g.cs b/new/dotnet/ios/generated-sources/UIKit/UIActivityViewController.g.cs
index 2312c50..9c1bcac 100644
--- a/old/dotnet/ios/generated-sources/UIKit/UIActivityViewController.g.cs
+++ b/new/dotnet/ios/generated-sources/UIKit/UIActivityViewController.g.cs
@@ -177,7 +177,7 @@ namespace UIKit {
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
public unsafe virtual global::System.Action<NSString, bool>? CompletionHandler {
- [return: DelegateProxy (typeof (ObjCRuntime.Trampolines.SDActionArity2V140))]
+ [return: DelegateProxy (typeof (ObjCRuntime.Trampolines.SDActionArity2V139))]
[Export ("completionHandler", ArgumentSemantic.Copy)]
[UnsupportedOSPlatform ("tvos")]
#if __IOS__
@@ -198,9 +198,9 @@ namespace UIKit {
} else {
ret = global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("completionHandler"));
}
- return global::ObjCRuntime.Trampolines.NIDActionArity2V140.Create (ret)!;
+ return global::ObjCRuntime.Trampolines.NIDActionArity2V139.Create (ret)!;
}
- [param: BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V140))]
+ [param: BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V139))]
[Export ("setCompletionHandler:", ArgumentSemantic.Copy)]
[UnsupportedOSPlatform ("tvos")]
#if __IOS__
@@ -219,7 +219,7 @@ namespace UIKit {
BlockLiteral block_value;
block_value = new BlockLiteral ();
block_ptr_value = &block_value;
- block_value.SetupBlockUnsafe (Trampolines.SDActionArity2V140.Handler, value);
+ block_value.SetupBlockUnsafe (Trampolines.SDActionArity2V139.Handler, value);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("setCompletionHandler:"), (IntPtr) block_ptr_value);
} else {
diff --git a/old/dotnet/ios/generated-sources/UIKit/UIDocumentBrowserViewControllerDelegate.g.cs b/new/dotnet/ios/generated-sources/UIKit/UIDocumentBrowserViewControllerDelegate.g.cs
index a3481aa..7ad109c 100644
--- a/old/dotnet/ios/generated-sources/UIKit/UIDocumentBrowserViewControllerDelegate.g.cs
+++ b/new/dotnet/ios/generated-sources/UIKit/UIDocumentBrowserViewControllerDelegate.g.cs
@@ -54,7 +54,7 @@ namespace UIKit {
[SupportedOSPlatform ("maccatalyst11.0")]
[Protocol (Name = "UIDocumentBrowserViewControllerDelegate", WrapperType = typeof (UIDocumentBrowserViewControllerDelegateWrapper))]
[ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "DidPickDocumentUrls", Selector = "documentBrowser:didPickDocumentURLs:", ParameterType = new Type [] { typeof (UIDocumentBrowserViewController), typeof (NSUrl[]) }, ParameterByRef = new bool [] { false, false })]
- [ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "DidRequestDocumentCreation", Selector = "documentBrowser:didRequestDocumentCreationWithHandler:", ParameterType = new Type [] { typeof (UIDocumentBrowserViewController), typeof (global::System.Action<NSUrl, global::UIKit.UIDocumentBrowserImportMode>) }, ParameterByRef = new bool [] { false, false }, ParameterBlockProxy = new Type? [] { null, typeof (ObjCRuntime.Trampolines.NIDActionArity2V141) })]
+ [ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "DidRequestDocumentCreation", Selector = "documentBrowser:didRequestDocumentCreationWithHandler:", ParameterType = new Type [] { typeof (UIDocumentBrowserViewController), typeof (global::System.Action<NSUrl, global::UIKit.UIDocumentBrowserImportMode>) }, ParameterByRef = new bool [] { false, false }, ParameterBlockProxy = new Type? [] { null, typeof (ObjCRuntime.Trampolines.NIDActionArity2V140) })]
[ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "DidImportDocument", Selector = "documentBrowser:didImportDocumentAtURL:toDestinationURL:", ParameterType = new Type [] { typeof (UIDocumentBrowserViewController), typeof (NSUrl), typeof (NSUrl) }, ParameterByRef = new bool [] { false, false, false })]
[ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "FailedToImportDocument", Selector = "documentBrowser:failedToImportDocumentAtURL:error:", ParameterType = new Type [] { typeof (UIDocumentBrowserViewController), typeof (NSUrl), typeof (NSError) }, ParameterByRef = new bool [] { false, false, false })]
[ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "GetApplicationActivities", Selector = "documentBrowser:applicationActivitiesForDocumentURLs:", ReturnType = typeof (UIActivity[]), ParameterType = new Type [] { typeof (UIDocumentBrowserViewController), typeof (NSUrl[]) }, ParameterByRef = new bool [] { false, false })]
@@ -94,7 +94,7 @@ namespace UIKit {
[SupportedOSPlatform ("ios11.0")]
[SupportedOSPlatform ("maccatalyst11.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static void DidRequestDocumentCreation (this IUIDocumentBrowserViewControllerDelegate This, UIDocumentBrowserViewController controller, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V141))]global::System.Action<NSUrl, UIDocumentBrowserImportMode> importHandler)
+ public unsafe static void DidRequestDocumentCreation (this IUIDocumentBrowserViewControllerDelegate This, UIDocumentBrowserViewController controller, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V140))]global::System.Action<NSUrl, UIDocumentBrowserImportMode> importHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -107,7 +107,7 @@ namespace UIKit {
BlockLiteral block_importHandler;
block_importHandler = new BlockLiteral ();
block_ptr_importHandler = &block_importHandler;
- block_importHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V141.Handler, importHandler);
+ block_importHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V140.Handler, importHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (This.Handle, Selector.GetHandle ("documentBrowser:didRequestDocumentCreationWithHandler:"), controller__handle__, (IntPtr) block_ptr_importHandler);
block_ptr_importHandler->CleanupBlock ();
#endif
@@ -294,7 +294,7 @@ namespace UIKit {
[SupportedOSPlatform ("ios11.0")]
[SupportedOSPlatform ("maccatalyst11.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void DidRequestDocumentCreation (UIDocumentBrowserViewController controller, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V141))]global::System.Action<NSUrl, UIDocumentBrowserImportMode> importHandler)
+ public unsafe virtual void DidRequestDocumentCreation (UIDocumentBrowserViewController controller, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V140))]global::System.Action<NSUrl, UIDocumentBrowserImportMode> importHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
diff --git a/old/dotnet/ios/generated-sources/UIKit/UIPasteboard.g.cs b/new/dotnet/ios/generated-sources/UIKit/UIPasteboard.g.cs
index f16b38b..89e3fe9 100644
--- a/old/dotnet/ios/generated-sources/UIKit/UIPasteboard.g.cs
+++ b/new/dotnet/ios/generated-sources/UIKit/UIPasteboard.g.cs
@@ -154,7 +154,7 @@ namespace UIKit {
[UnsupportedOSPlatform ("tvos")]
[SupportedOSPlatform ("maccatalyst14.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void DetectPatterns (NSSet<NSString> patterns, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V142))]global::System.Action<NSSet<NSString>, NSError> completionHandler)
+ public unsafe virtual void DetectPatterns (NSSet<NSString> patterns, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V141))]global::System.Action<NSSet<NSString>, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -167,7 +167,7 @@ namespace UIKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V142.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V141.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("detectPatternsForPatterns:completionHandler:"), patterns__handle__, (IntPtr) block_ptr_completionHandler);
} else {
@@ -198,7 +198,7 @@ namespace UIKit {
[UnsupportedOSPlatform ("tvos")]
[SupportedOSPlatform ("maccatalyst14.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void DetectPatterns (NSSet<NSString> patterns, NSIndexSet? itemSet, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V143))]global::System.Action<NSSet<NSString>[], NSError> completionHandler)
+ public unsafe virtual void DetectPatterns (NSSet<NSString> patterns, NSIndexSet? itemSet, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V142))]global::System.Action<NSSet<NSString>[], NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -212,7 +212,7 @@ namespace UIKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V143.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V142.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("detectPatternsForPatterns:inItemSet:completionHandler:"), patterns__handle__, itemSet__handle__, (IntPtr) block_ptr_completionHandler);
} else {
@@ -243,7 +243,7 @@ namespace UIKit {
[UnsupportedOSPlatform ("tvos")]
[SupportedOSPlatform ("maccatalyst14.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void DetectValues (NSSet<NSString> patterns, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V144))]global::System.Action<NSDictionary<NSString, NSObject>, NSError> completionHandler)
+ public unsafe virtual void DetectValues (NSSet<NSString> patterns, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V143))]global::System.Action<NSDictionary<NSString, NSObject>, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -256,7 +256,7 @@ namespace UIKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V144.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V143.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("detectValuesForPatterns:completionHandler:"), patterns__handle__, (IntPtr) block_ptr_completionHandler);
} else {
@@ -287,7 +287,7 @@ namespace UIKit {
[UnsupportedOSPlatform ("tvos")]
[SupportedOSPlatform ("maccatalyst14.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void DetectValues (NSSet<NSString> patterns, NSIndexSet? itemSet, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V145))]global::System.Action<NSDictionary<NSString, NSObject>[], NSError> completionHandler)
+ public unsafe virtual void DetectValues (NSSet<NSString> patterns, NSIndexSet? itemSet, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V144))]global::System.Action<NSDictionary<NSString, NSObject>[], NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -301,7 +301,7 @@ namespace UIKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V145.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V144.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("detectValuesForPatterns:inItemSet:completionHandler:"), patterns__handle__, itemSet__handle__, (IntPtr) block_ptr_completionHandler);
} else {
diff --git a/old/dotnet/ios/generated-sources/UIKit/UISpringLoadedInteraction.g.cs b/new/dotnet/ios/generated-sources/UIKit/UISpringLoadedInteraction.g.cs
index bf59a64..826d7fa 100644
--- a/old/dotnet/ios/generated-sources/UIKit/UISpringLoadedInteraction.g.cs
+++ b/new/dotnet/ios/generated-sources/UIKit/UISpringLoadedInteraction.g.cs
@@ -81,7 +81,7 @@ namespace UIKit {
[SupportedOSPlatform ("maccatalyst11.0")]
[DesignatedInitializer]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe UISpringLoadedInteraction (IUISpringLoadedInteractionBehavior? interactionBehavior, IUISpringLoadedInteractionEffect? interactionEffect, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V146))]global::System.Action<UISpringLoadedInteraction, IUISpringLoadedInteractionContext> handler)
+ public unsafe UISpringLoadedInteraction (IUISpringLoadedInteractionBehavior? interactionBehavior, IUISpringLoadedInteractionEffect? interactionEffect, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V145))]global::System.Action<UISpringLoadedInteraction, IUISpringLoadedInteractionContext> handler)
: base (NSObjectFlag.Empty)
{
#if ARCH_32
@@ -96,7 +96,7 @@ namespace UIKit {
BlockLiteral block_handler;
block_handler = new BlockLiteral ();
block_ptr_handler = &block_handler;
- block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V146.Handler, handler);
+ block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V145.Handler, handler);
if (IsDirectBinding) {
InitializeHandle (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend_NativeHandle_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("initWithInteractionBehavior:interactionEffect:activationHandler:"), interactionBehavior__handle__, interactionEffect__handle__, (IntPtr) block_ptr_handler), "initWithInteractionBehavior:interactionEffect:activationHandler:");
} else {
@@ -110,7 +110,7 @@ namespace UIKit {
[SupportedOSPlatform ("ios11.0")]
[SupportedOSPlatform ("maccatalyst11.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe UISpringLoadedInteraction ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V146))]global::System.Action<UISpringLoadedInteraction, IUISpringLoadedInteractionContext> handler)
+ public unsafe UISpringLoadedInteraction ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V145))]global::System.Action<UISpringLoadedInteraction, IUISpringLoadedInteractionContext> handler)
: base (NSObjectFlag.Empty)
{
#if ARCH_32
@@ -123,7 +123,7 @@ namespace UIKit {
BlockLiteral block_handler;
block_handler = new BlockLiteral ();
block_ptr_handler = &block_handler;
- block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V146.Handler, handler);
+ block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V145.Handler, handler);
if (IsDirectBinding) {
InitializeHandle (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("initWithActivationHandler:"), (IntPtr) block_ptr_handler), "initWithActivationHandler:");
} else {
diff --git a/old/dotnet/ios/generated-sources/UIKit/UITableViewRowAction.g.cs b/new/dotnet/ios/generated-sources/UIKit/UITableViewRowAction.g.cs
index af06cd0..f36719b 100644
--- a/old/dotnet/ios/generated-sources/UIKit/UITableViewRowAction.g.cs
+++ b/new/dotnet/ios/generated-sources/UIKit/UITableViewRowAction.g.cs
@@ -132,7 +132,7 @@ namespace UIKit {
[SupportedOSPlatform ("ios8.0")]
[SupportedOSPlatform ("maccatalyst8.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static UITableViewRowAction Create (UITableViewRowActionStyle style, string? title, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V147))]global::System.Action<UITableViewRowAction, NSIndexPath> handler)
+ public unsafe static UITableViewRowAction Create (UITableViewRowActionStyle style, string? title, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V146))]global::System.Action<UITableViewRowAction, NSIndexPath> handler)
{
global::UIKit.UIApplication.EnsureUIThread ();
if (handler is null)
@@ -142,7 +142,7 @@ namespace UIKit {
BlockLiteral block_handler;
block_handler = new BlockLiteral ();
block_ptr_handler = &block_handler;
- block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V147.Handler, handler);
+ block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V146.Handler, handler);
UITableViewRowAction? ret;
ret = Runtime.GetNSObject<UITableViewRowAction> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend_IntPtr_NativeHandle_NativeHandle (class_ptr, Selector.GetHandle ("rowActionWithStyle:title:handler:"), (IntPtr) (long) style, nstitle, (IntPtr) block_ptr_handler))!;
CFString.ReleaseNative (nstitle);
diff --git a/old/dotnet/ios/generated-sources/VideoSubscriberAccount/VSAccountManager.g.cs b/new/dotnet/ios/generated-sources/VideoSubscriberAccount/VSAccountManager.g.cs
index f888b65..4ec09dd 100644
--- a/old/dotnet/ios/generated-sources/VideoSubscriberAccount/VSAccountManager.g.cs
+++ b/new/dotnet/ios/generated-sources/VideoSubscriberAccount/VSAccountManager.g.cs
@@ -88,7 +88,7 @@ namespace VideoSubscriberAccount {
[SupportedOSPlatform ("ios10.0")]
[SupportedOSPlatform ("tvos10.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void CheckAccessStatus (NSDictionary options, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V148))]global::System.Action<VSAccountAccessStatus, NSError> completionHandler)
+ public unsafe virtual void CheckAccessStatus (NSDictionary options, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V147))]global::System.Action<VSAccountAccessStatus, NSError> completionHandler)
{
var options__handle__ = options!.GetNonNullHandle (nameof (options));
if (completionHandler is null)
@@ -97,7 +97,7 @@ namespace VideoSubscriberAccount {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V148.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V147.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("checkAccessStatusWithOptions:completionHandler:"), options__handle__, (IntPtr) block_ptr_completionHandler);
} else {
@@ -127,7 +127,7 @@ namespace VideoSubscriberAccount {
[SupportedOSPlatform ("ios10.0")]
[SupportedOSPlatform ("tvos10.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual VSAccountManagerResult Enqueue (VSAccountMetadataRequest accountMetadataRequest, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V149))]global::System.Action<VSAccountMetadata, NSError> completionHandler)
+ public unsafe virtual VSAccountManagerResult Enqueue (VSAccountMetadataRequest accountMetadataRequest, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V148))]global::System.Action<VSAccountMetadata, NSError> completionHandler)
{
var accountMetadataRequest__handle__ = accountMetadataRequest!.GetNonNullHandle (nameof (accountMetadataRequest));
if (completionHandler is null)
@@ -136,7 +136,7 @@ namespace VideoSubscriberAccount {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V149.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V148.Handler, completionHandler);
VSAccountManagerResult? ret;
if (IsDirectBinding) {
ret = Runtime.GetNSObject<VSAccountManagerResult> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("enqueueAccountMetadataRequest:completionHandler:"), accountMetadataRequest__handle__, (IntPtr) block_ptr_completionHandler))!;
diff --git a/old/dotnet/ios/generated-sources/WebKit/WKContentRuleListStore.g.cs b/new/dotnet/ios/generated-sources/WebKit/WKContentRuleListStore.g.cs
index 99504c0..ade6a1c 100644
--- a/old/dotnet/ios/generated-sources/WebKit/WKContentRuleListStore.g.cs
+++ b/new/dotnet/ios/generated-sources/WebKit/WKContentRuleListStore.g.cs
@@ -96,7 +96,7 @@ namespace WebKit {
[SupportedOSPlatform ("ios11.0")]
[SupportedOSPlatform ("maccatalyst11.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void CompileContentRuleList (string identifier, string encodedContentRuleList, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V150))]global::System.Action<WKContentRuleList, NSError> completionHandler)
+ public unsafe virtual void CompileContentRuleList (string identifier, string encodedContentRuleList, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V149))]global::System.Action<WKContentRuleList, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -113,7 +113,7 @@ namespace WebKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V150.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V149.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("compileContentRuleListForIdentifier:encodedContentRuleList:completionHandler:"), nsidentifier, nsencodedContentRuleList, (IntPtr) block_ptr_completionHandler);
} else {
@@ -195,7 +195,7 @@ namespace WebKit {
[SupportedOSPlatform ("ios11.0")]
[SupportedOSPlatform ("maccatalyst11.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void LookUpContentRuleList (string identifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V150))]global::System.Action<WKContentRuleList, NSError> completionHandler)
+ public unsafe virtual void LookUpContentRuleList (string identifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V149))]global::System.Action<WKContentRuleList, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -209,7 +209,7 @@ namespace WebKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V150.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V149.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("lookUpContentRuleListForIdentifier:completionHandler:"), nsidentifier, (IntPtr) block_ptr_completionHandler);
} else {
diff --git a/old/dotnet/ios/generated-sources/WebKit/WKNavigationDelegate.g.cs b/new/dotnet/ios/generated-sources/WebKit/WKNavigationDelegate.g.cs
index ba7ed0e..1b02a39 100644
--- a/old/dotnet/ios/generated-sources/WebKit/WKNavigationDelegate.g.cs
+++ b/new/dotnet/ios/generated-sources/WebKit/WKNavigationDelegate.g.cs
@@ -55,7 +55,7 @@ namespace WebKit {
[Protocol (Name = "WKNavigationDelegate", WrapperType = typeof (WKNavigationDelegateWrapper))]
[ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "DecidePolicy", Selector = "webView:decidePolicyForNavigationAction:decisionHandler:", ParameterType = new Type [] { typeof (WebKit.WKWebView), typeof (WebKit.WKNavigationAction), typeof (global::System.Action<global::WebKit.WKNavigationActionPolicy>) }, ParameterByRef = new bool [] { false, false, false }, ParameterBlockProxy = new Type? [] { null, null, typeof (ObjCRuntime.Trampolines.NIDActionArity1V262) })]
[ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "DecidePolicy", Selector = "webView:decidePolicyForNavigationResponse:decisionHandler:", ParameterType = new Type [] { typeof (WebKit.WKWebView), typeof (WebKit.WKNavigationResponse), typeof (global::System.Action<global::WebKit.WKNavigationResponsePolicy>) }, ParameterByRef = new bool [] { false, false, false }, ParameterBlockProxy = new Type? [] { null, null, typeof (ObjCRuntime.Trampolines.NIDActionArity1V263) })]
- [ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "DecidePolicy", Selector = "webView:decidePolicyForNavigationAction:preferences:decisionHandler:", ParameterType = new Type [] { typeof (WebKit.WKWebView), typeof (WebKit.WKNavigationAction), typeof (WebKit.WKWebpagePreferences), typeof (global::System.Action<global::WebKit.WKNavigationActionPolicy, global::WebKit.WKWebpagePreferences>) }, ParameterByRef = new bool [] { false, false, false, false }, ParameterBlockProxy = new Type? [] { null, null, null, typeof (ObjCRuntime.Trampolines.NIDActionArity2V151) })]
+ [ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "DecidePolicy", Selector = "webView:decidePolicyForNavigationAction:preferences:decisionHandler:", ParameterType = new Type [] { typeof (WebKit.WKWebView), typeof (WebKit.WKNavigationAction), typeof (WebKit.WKWebpagePreferences), typeof (global::System.Action<global::WebKit.WKNavigationActionPolicy, global::WebKit.WKWebpagePreferences>) }, ParameterByRef = new bool [] { false, false, false, false }, ParameterBlockProxy = new Type? [] { null, null, null, typeof (ObjCRuntime.Trampolines.NIDActionArity2V150) })]
[ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "DidStartProvisionalNavigation", Selector = "webView:didStartProvisionalNavigation:", ParameterType = new Type [] { typeof (WebKit.WKWebView), typeof (WebKit.WKNavigation) }, ParameterByRef = new bool [] { false, false })]
[ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "DidReceiveServerRedirectForProvisionalNavigation", Selector = "webView:didReceiveServerRedirectForProvisionalNavigation:", ParameterType = new Type [] { typeof (WebKit.WKWebView), typeof (WebKit.WKNavigation) }, ParameterByRef = new bool [] { false, false })]
[ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "DidFailProvisionalNavigation", Selector = "webView:didFailProvisionalNavigation:withError:", ParameterType = new Type [] { typeof (WebKit.WKWebView), typeof (WebKit.WKNavigation), typeof (NSError) }, ParameterByRef = new bool [] { false, false, false })]
@@ -111,7 +111,7 @@ namespace WebKit {
[SupportedOSPlatform ("ios13.0")]
[SupportedOSPlatform ("maccatalyst13.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static void DecidePolicy (this IWKNavigationDelegate This, WKWebView webView, WKNavigationAction navigationAction, WKWebpagePreferences preferences, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V151))]global::System.Action<WKNavigationActionPolicy, WKWebpagePreferences> decisionHandler)
+ public unsafe static void DecidePolicy (this IWKNavigationDelegate This, WKWebView webView, WKNavigationAction navigationAction, WKWebpagePreferences preferences, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V150))]global::System.Action<WKNavigationActionPolicy, WKWebpagePreferences> decisionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -125,7 +125,7 @@ namespace WebKit {
BlockLiteral block_decisionHandler;
block_decisionHandler = new BlockLiteral ();
block_ptr_decisionHandler = &block_decisionHandler;
- block_decisionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V151.Handler, decisionHandler);
+ block_decisionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V150.Handler, decisionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle_NativeHandle_NativeHandle (This.Handle, Selector.GetHandle ("webView:decidePolicyForNavigationAction:preferences:decisionHandler:"), webView__handle__, navigationAction__handle__, preferences__handle__, (IntPtr) block_ptr_decisionHandler);
block_ptr_decisionHandler->CleanupBlock ();
#endif
@@ -343,7 +343,7 @@ namespace WebKit {
[SupportedOSPlatform ("ios13.0")]
[SupportedOSPlatform ("maccatalyst13.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void DecidePolicy (WKWebView webView, WKNavigationAction navigationAction, WKWebpagePreferences preferences, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V151))]global::System.Action<WKNavigationActionPolicy, WKWebpagePreferences> decisionHandler)
+ public unsafe virtual void DecidePolicy (WKWebView webView, WKNavigationAction navigationAction, WKWebpagePreferences preferences, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V150))]global::System.Action<WKNavigationActionPolicy, WKWebpagePreferences> decisionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
diff --git a/old/dotnet/ios/generated-sources/WebKit/WKScriptMessageHandlerWithReply.g.cs b/new/dotnet/ios/generated-sources/WebKit/WKScriptMessageHandlerWithReply.g.cs
index 7a30f2c..35e9e82 100644
--- a/old/dotnet/ios/generated-sources/WebKit/WKScriptMessageHandlerWithReply.g.cs
+++ b/new/dotnet/ios/generated-sources/WebKit/WKScriptMessageHandlerWithReply.g.cs
@@ -53,7 +53,7 @@ namespace WebKit {
[SupportedOSPlatform ("ios14.0")]
[SupportedOSPlatform ("maccatalyst14.0")]
[Protocol (Name = "WKScriptMessageHandlerWithReply", WrapperType = typeof (WKScriptMessageHandlerWithReplyWrapper))]
- [ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "DidReceiveScriptMessage", Selector = "userContentController:didReceiveScriptMessage:replyHandler:", ParameterType = new Type [] { typeof (WebKit.WKUserContentController), typeof (WebKit.WKScriptMessage), typeof (global::System.Action<NSObject, NSString>) }, ParameterByRef = new bool [] { false, false, false }, ParameterBlockProxy = new Type? [] { null, null, typeof (ObjCRuntime.Trampolines.NIDActionArity2V152) })]
+ [ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "DidReceiveScriptMessage", Selector = "userContentController:didReceiveScriptMessage:replyHandler:", ParameterType = new Type [] { typeof (WebKit.WKUserContentController), typeof (WebKit.WKScriptMessage), typeof (global::System.Action<NSObject, NSString>) }, ParameterByRef = new bool [] { false, false, false }, ParameterBlockProxy = new Type? [] { null, null, typeof (ObjCRuntime.Trampolines.NIDActionArity2V151) })]
public partial interface IWKScriptMessageHandlerWithReply : INativeObject, IDisposable
{
[SupportedOSPlatform ("macos11.0")]
@@ -62,7 +62,7 @@ namespace WebKit {
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
[Export ("userContentController:didReceiveScriptMessage:replyHandler:")]
[Preserve (Conditional = true)]
- unsafe void DidReceiveScriptMessage (WKUserContentController userContentController, WKScriptMessage message, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V152))]global::System.Action<NSObject, NSString> replyHandler);
+ unsafe void DidReceiveScriptMessage (WKUserContentController userContentController, WKScriptMessage message, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V151))]global::System.Action<NSObject, NSString> replyHandler);
}
internal sealed class WKScriptMessageHandlerWithReplyWrapper : BaseWrapper, IWKScriptMessageHandlerWithReply {
[Preserve (Conditional = true)]
@@ -72,7 +72,7 @@ namespace WebKit {
}
[Export ("userContentController:didReceiveScriptMessage:replyHandler:")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe void DidReceiveScriptMessage (WKUserContentController userContentController, WKScriptMessage message, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V152))]global::System.Action<NSObject, NSString> replyHandler)
+ public unsafe void DidReceiveScriptMessage (WKUserContentController userContentController, WKScriptMessage message, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V151))]global::System.Action<NSObject, NSString> replyHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -85,7 +85,7 @@ namespace WebKit {
BlockLiteral block_replyHandler;
block_replyHandler = new BlockLiteral ();
block_ptr_replyHandler = &block_replyHandler;
- block_replyHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V152.Handler, replyHandler);
+ block_replyHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V151.Handler, replyHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("userContentController:didReceiveScriptMessage:replyHandler:"), userContentController__handle__, message__handle__, (IntPtr) block_ptr_replyHandler);
block_ptr_replyHandler->CleanupBlock ();
#endif
diff --git a/old/dotnet/ios/generated-sources/WebKit/WKWebView.g.cs b/new/dotnet/ios/generated-sources/WebKit/WKWebView.g.cs
index 34f1d37..6da3309 100644
--- a/old/dotnet/ios/generated-sources/WebKit/WKWebView.g.cs
+++ b/new/dotnet/ios/generated-sources/WebKit/WKWebView.g.cs
@@ -912,7 +912,7 @@ namespace WebKit {
[SupportedOSPlatform ("maccatalyst13.1")]
[SupportedOSPlatform ("ios11.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void TakeSnapshot (WKSnapshotConfiguration? snapshotConfiguration, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V153))]global::System.Action<global::UIKit.UIImage, NSError> completionHandler)
+ public unsafe virtual void TakeSnapshot (WKSnapshotConfiguration? snapshotConfiguration, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V152))]global::System.Action<global::UIKit.UIImage, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -924,7 +924,7 @@ namespace WebKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V153.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V152.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("takeSnapshotWithConfiguration:completionHandler:"), snapshotConfiguration__handle__, (IntPtr) block_ptr_completionHandler);
} else {
diff --git a/old/ios/native/Chip/ChipDeviceController.g.cs b/old/ios/native/Chip/ChipDeviceController.g.cs
deleted file mode 100644
index e4b76e6..0000000
--- a/old/ios/native/Chip/ChipDeviceController.g.cs
+++ /dev/null
@@ -1,461 +0,0 @@
-//
-// 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.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 Chip {
- [Register("CHIPDeviceController", true)]
- [Introduced (PlatformName.MacOSX, 12,0, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.WatchOS, 8,0, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.TvOS, 15,0, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.iOS, 15,0, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.MacCatalyst, 15,0, ObjCRuntime.PlatformArchitecture.All)]
- public unsafe partial class ChipDeviceController : NSObject {
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- #if ARCH_32
- #pragma warning disable 649
- static readonly IntPtr class_ptr;
- #pragma warning restore 649
- #else
- static readonly IntPtr class_ptr = Class.GetHandle ("CHIPDeviceController");
- #endif
- public override IntPtr ClassHandle { get { return class_ptr; } }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- [EditorBrowsable (EditorBrowsableState.Advanced)]
- protected ChipDeviceController (NSObjectFlag t) : base (t)
- {
- }
-
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- [EditorBrowsable (EditorBrowsableState.Advanced)]
- protected internal ChipDeviceController (IntPtr handle) : base (handle)
- {
- }
-
- [Export ("getConnectedDevice:queue:completionHandler:")]
- [Introduced (PlatformName.MacOSX, 12,1, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.WatchOS, 8,3, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.TvOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.iOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.MacCatalyst, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual bool GetConnectedDevice (ulong deviceID, global::CoreFoundation.DispatchQueue queue, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipDeviceConnectionCallback))]ChipDeviceConnectionCallback completionHandler)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- var queue__handle__ = queue!.GetNonNullHandle (nameof (queue));
- if (completionHandler is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (completionHandler));
- BlockLiteral *block_ptr_completionHandler;
- BlockLiteral block_completionHandler;
- block_completionHandler = new BlockLiteral ();
- block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDChipDeviceConnectionCallback.Handler, completionHandler);
- bool ret;
- if (IsDirectBinding) {
- ret = global::ObjCRuntime.Messaging.bool_objc_msgSend_UInt64_IntPtr_IntPtr (this.Handle, Selector.GetHandle ("getConnectedDevice:queue:completionHandler:"), deviceID, queue.Handle, (IntPtr) block_ptr_completionHandler);
- } else {
- ret = global::ObjCRuntime.Messaging.bool_objc_msgSendSuper_UInt64_IntPtr_IntPtr (this.SuperHandle, Selector.GetHandle ("getConnectedDevice:queue:completionHandler:"), deviceID, queue.Handle, (IntPtr) block_ptr_completionHandler);
- }
- block_ptr_completionHandler->CleanupBlock ();
- return ret!;
- #endif
- }
- [Introduced (PlatformName.MacOSX, 12,1, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.WatchOS, 8,3, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.TvOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.iOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.MacCatalyst, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipDevice> GetConnectedDeviceAsync (ulong deviceID, global::CoreFoundation.DispatchQueue queue)
- {
- var tcs = new TaskCompletionSource<ChipDevice> ();
- GetConnectedDevice(deviceID, queue, (device_, error_) => {
- if (error_ != null)
- tcs.SetException (new NSErrorException(error_));
- else
- tcs.SetResult (device_!);
- });
- return tcs.Task;
- }
- [Introduced (PlatformName.MacOSX, 12,1, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.WatchOS, 8,3, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.TvOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.iOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.MacCatalyst, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipDevice> GetConnectedDeviceAsync (ulong deviceID, global::CoreFoundation.DispatchQueue queue, out bool result)
- {
- var tcs = new TaskCompletionSource<ChipDevice> ();
- result = GetConnectedDevice(deviceID, queue, (device_, error_) => {
- if (error_ != null)
- tcs.SetException (new NSErrorException(error_));
- else
- tcs.SetResult (device_!);
- })!;
- return tcs.Task;
- }
- [Export ("getPairedDevice:error:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public virtual ChipDevice? GetPairedDevice (ulong deviceId, out NSError? error)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- IntPtr errorValue = IntPtr.Zero;
- ChipDevice? ret;
- if (IsDirectBinding) {
- ret = Runtime.GetNSObject<ChipDevice> (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend_UInt64_ref_IntPtr (this.Handle, Selector.GetHandle ("getPairedDevice:error:"), deviceId, ref errorValue))!;
- } else {
- ret = Runtime.GetNSObject<ChipDevice> (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper_UInt64_ref_IntPtr (this.SuperHandle, Selector.GetHandle ("getPairedDevice:error:"), deviceId, ref errorValue))!;
- }
- error = Runtime.GetNSObject<NSError> (errorValue)!;
- return ret!;
- #endif
- }
- [Export ("isDevicePaired:error:")]
- [Introduced (PlatformName.MacOSX, 12,1, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.WatchOS, 8,3, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.TvOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.iOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.MacCatalyst, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public virtual bool IsDevicePaired (ulong deviceID, out NSError? error)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- IntPtr errorValue = IntPtr.Zero;
- bool ret;
- if (IsDirectBinding) {
- ret = global::ObjCRuntime.Messaging.bool_objc_msgSend_UInt64_ref_IntPtr (this.Handle, Selector.GetHandle ("isDevicePaired:error:"), deviceID, ref errorValue);
- } else {
- ret = global::ObjCRuntime.Messaging.bool_objc_msgSendSuper_UInt64_ref_IntPtr (this.SuperHandle, Selector.GetHandle ("isDevicePaired:error:"), deviceID, ref errorValue);
- }
- error = Runtime.GetNSObject<NSError> (errorValue)!;
- return ret!;
- #endif
- }
- [Obsolete ("This method is removed.", false)]
- [EditorBrowsable (EditorBrowsableState.Never)]
- [Unavailable (PlatformName.MacOSX, ObjCRuntime.PlatformArchitecture.All)]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public virtual bool PairDevice (ulong deviceId, ushort discriminator, uint setupPinCode, out NSError? error)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- return true ? throw new InvalidOperationException (Constants.RemovedFromChip) : false;
- #endif
- }
- [Export ("pairDevice:discriminator:setupPINCode:csrNonce:error:")]
- [Unavailable (PlatformName.MacOSX, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.WatchOS, 8,3, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.TvOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.iOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.MacCatalyst, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public virtual bool PairDevice (ulong deviceID, ushort discriminator, uint setupPINCode, NSData? csrNonce, out NSError? error)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- var csrNonce__handle__ = csrNonce.GetHandle ();
- IntPtr errorValue = IntPtr.Zero;
- bool ret;
- if (IsDirectBinding) {
- ret = global::ObjCRuntime.Messaging.bool_objc_msgSend_UInt64_UInt16_UInt32_IntPtr_ref_IntPtr (this.Handle, Selector.GetHandle ("pairDevice:discriminator:setupPINCode:csrNonce:error:"), deviceID, discriminator, setupPINCode, csrNonce__handle__, ref errorValue);
- } else {
- ret = global::ObjCRuntime.Messaging.bool_objc_msgSendSuper_UInt64_UInt16_UInt32_IntPtr_ref_IntPtr (this.SuperHandle, Selector.GetHandle ("pairDevice:discriminator:setupPINCode:csrNonce:error:"), deviceID, discriminator, setupPINCode, csrNonce__handle__, ref errorValue);
- }
- error = Runtime.GetNSObject<NSError> (errorValue)!;
- return ret!;
- #endif
- }
- [Export ("pairDevice:address:port:discriminator:setupPINCode:error:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public virtual bool PairDevice (ulong deviceId, string address, ushort port, ushort discriminator, uint setupPinCode, out NSError? error)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- if (address is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (address));
- IntPtr errorValue = IntPtr.Zero;
- var nsaddress = CFString.CreateNative (address);
- bool ret;
- if (IsDirectBinding) {
- ret = global::ObjCRuntime.Messaging.bool_objc_msgSend_UInt64_IntPtr_UInt16_UInt16_UInt32_ref_IntPtr (this.Handle, Selector.GetHandle ("pairDevice:address:port:discriminator:setupPINCode:error:"), deviceId, nsaddress, port, discriminator, setupPinCode, ref errorValue);
- } else {
- ret = global::ObjCRuntime.Messaging.bool_objc_msgSendSuper_UInt64_IntPtr_UInt16_UInt16_UInt32_ref_IntPtr (this.SuperHandle, Selector.GetHandle ("pairDevice:address:port:discriminator:setupPINCode:error:"), deviceId, nsaddress, port, discriminator, setupPinCode, ref errorValue);
- }
- CFString.ReleaseNative (nsaddress);
- error = Runtime.GetNSObject<NSError> (errorValue)!;
- return ret!;
- #endif
- }
- [Export ("pairDevice:onboardingPayload:onboardingPayloadType:error:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public virtual bool PairDevice (ulong deviceId, string onboardingPayload, ChipOnboardingPayloadType onboardingPayloadType, out NSError? error)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- if (onboardingPayload is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (onboardingPayload));
- IntPtr errorValue = IntPtr.Zero;
- var nsonboardingPayload = CFString.CreateNative (onboardingPayload);
- bool ret;
- if (IsDirectBinding) {
- ret = global::ObjCRuntime.Messaging.bool_objc_msgSend_UInt64_IntPtr_UIntPtr_ref_IntPtr (this.Handle, Selector.GetHandle ("pairDevice:onboardingPayload:onboardingPayloadType:error:"), deviceId, nsonboardingPayload, (UIntPtr) (ulong) onboardingPayloadType, ref errorValue);
- } else {
- ret = global::ObjCRuntime.Messaging.bool_objc_msgSendSuper_UInt64_IntPtr_UIntPtr_ref_IntPtr (this.SuperHandle, Selector.GetHandle ("pairDevice:onboardingPayload:onboardingPayloadType:error:"), deviceId, nsonboardingPayload, (UIntPtr) (ulong) onboardingPayloadType, ref errorValue);
- }
- CFString.ReleaseNative (nsonboardingPayload);
- error = Runtime.GetNSObject<NSError> (errorValue)!;
- return ret!;
- #endif
- }
- [Export ("pairDeviceWithoutSecurity:address:port:error:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public virtual bool PairDeviceWithoutSecurity (ulong deviceId, string address, ushort port, out NSError? error)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- if (address is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (address));
- IntPtr errorValue = IntPtr.Zero;
- var nsaddress = CFString.CreateNative (address);
- bool ret;
- if (IsDirectBinding) {
- ret = global::ObjCRuntime.Messaging.bool_objc_msgSend_UInt64_IntPtr_UInt16_ref_IntPtr (this.Handle, Selector.GetHandle ("pairDeviceWithoutSecurity:address:port:error:"), deviceId, nsaddress, port, ref errorValue);
- } else {
- ret = global::ObjCRuntime.Messaging.bool_objc_msgSendSuper_UInt64_IntPtr_UInt16_ref_IntPtr (this.SuperHandle, Selector.GetHandle ("pairDeviceWithoutSecurity:address:port:error:"), deviceId, nsaddress, port, ref errorValue);
- }
- CFString.ReleaseNative (nsaddress);
- error = Runtime.GetNSObject<NSError> (errorValue)!;
- return ret!;
- #endif
- }
- [Export ("setListenPort:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public virtual void SetListenPort (ushort port)
- {
- #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_UInt16 (this.Handle, Selector.GetHandle ("setListenPort:"), port);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_UInt16 (this.SuperHandle, Selector.GetHandle ("setListenPort:"), port);
- }
- #endif
- }
- [Export ("setPairingDelegate:queue:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public virtual void SetPairingDelegate (IChipDevicePairingDelegate @delegate, global::CoreFoundation.DispatchQueue queue)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- var @delegate__handle__ = @delegate!.GetNonNullHandle (nameof (@delegate));
- var queue__handle__ = queue!.GetNonNullHandle (nameof (queue));
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr (this.Handle, Selector.GetHandle ("setPairingDelegate:queue:"), @delegate__handle__, queue.Handle);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr_IntPtr (this.SuperHandle, Selector.GetHandle ("setPairingDelegate:queue:"), @delegate__handle__, queue.Handle);
- }
- #endif
- }
- [Export ("shutdown")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public virtual bool Shutdown ()
- {
- #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 ("shutdown"));
- } else {
- return global::ObjCRuntime.Messaging.bool_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("shutdown"));
- }
- #endif
- }
- [Obsolete ("This method is removed.", false)]
- [EditorBrowsable (EditorBrowsableState.Never)]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public virtual bool Startup (IChipPersistentStorageDelegate? storageDelegate)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- return true ? throw new InvalidOperationException (Constants.RemovedFromChip) : false;
- #endif
- }
- [Export ("startup:vendorId:nocSigner:")]
- [Introduced (PlatformName.MacOSX, 12,1, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.WatchOS, 8,3, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.TvOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.iOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.MacCatalyst, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public virtual bool Startup (IChipPersistentStorageDelegate? storageDelegate, ushort vendorId, IChipKeypair? nocSigner)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- var storageDelegate__handle__ = storageDelegate.GetHandle ();
- var nocSigner__handle__ = nocSigner.GetHandle ();
- if (IsDirectBinding) {
- return global::ObjCRuntime.Messaging.bool_objc_msgSend_IntPtr_UInt16_IntPtr (this.Handle, Selector.GetHandle ("startup:vendorId:nocSigner:"), storageDelegate__handle__, vendorId, nocSigner__handle__);
- } else {
- return global::ObjCRuntime.Messaging.bool_objc_msgSendSuper_IntPtr_UInt16_IntPtr (this.SuperHandle, Selector.GetHandle ("startup:vendorId:nocSigner:"), storageDelegate__handle__, vendorId, nocSigner__handle__);
- }
- #endif
- }
- [Export ("stopDevicePairing:error:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public virtual bool StopDevicePairing (ulong deviceId, out NSError? error)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- IntPtr errorValue = IntPtr.Zero;
- bool ret;
- if (IsDirectBinding) {
- ret = global::ObjCRuntime.Messaging.bool_objc_msgSend_UInt64_ref_IntPtr (this.Handle, Selector.GetHandle ("stopDevicePairing:error:"), deviceId, ref errorValue);
- } else {
- ret = global::ObjCRuntime.Messaging.bool_objc_msgSendSuper_UInt64_ref_IntPtr (this.SuperHandle, Selector.GetHandle ("stopDevicePairing:error:"), deviceId, ref errorValue);
- }
- error = Runtime.GetNSObject<NSError> (errorValue)!;
- return ret!;
- #endif
- }
- [Export ("unpairDevice:error:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public virtual bool UnpairDevice (ulong deviceId, out NSError? error)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- IntPtr errorValue = IntPtr.Zero;
- bool ret;
- if (IsDirectBinding) {
- ret = global::ObjCRuntime.Messaging.bool_objc_msgSend_UInt64_ref_IntPtr (this.Handle, Selector.GetHandle ("unpairDevice:error:"), deviceId, ref errorValue);
- } else {
- ret = global::ObjCRuntime.Messaging.bool_objc_msgSendSuper_UInt64_ref_IntPtr (this.SuperHandle, Selector.GetHandle ("unpairDevice:error:"), deviceId, ref errorValue);
- }
- error = Runtime.GetNSObject<NSError> (errorValue)!;
- return ret!;
- #endif
- }
- [Export ("updateDevice:fabricId:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public virtual void UpdateDevice (ulong deviceId, ulong fabricId)
- {
- #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_UInt64_UInt64 (this.Handle, Selector.GetHandle ("updateDevice:fabricId:"), deviceId, fabricId);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_UInt64_UInt64 (this.SuperHandle, Selector.GetHandle ("updateDevice:fabricId:"), deviceId, fabricId);
- }
- #endif
- }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public virtual NSNumber ControllerNodeId {
- [Export ("getControllerNodeId")]
- get {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- NSNumber? ret;
- if (IsDirectBinding) {
- ret = Runtime.GetNSObject<NSNumber> (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend (this.Handle, Selector.GetHandle ("getControllerNodeId")))!;
- } else {
- ret = Runtime.GetNSObject<NSNumber> (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("getControllerNodeId")))!;
- }
- return ret!;
- #endif
- }
- }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public virtual bool IsRunning {
- [Export ("isRunning")]
- 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 ("isRunning"));
- } else {
- return global::ObjCRuntime.Messaging.bool_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("isRunning"));
- }
- #endif
- }
- }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public static ChipDeviceController SharedController {
- [Export ("sharedController")]
- get {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- ChipDeviceController? ret;
- ret = Runtime.GetNSObject<ChipDeviceController> (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend (class_ptr, Selector.GetHandle ("sharedController")))!;
- return ret!;
- #endif
- }
- }
- } /* class ChipDeviceController */
- //
- // Async result classes
- //
-}
diff --git a/old/ios/native/Chip/ChipGeneralCommissioning.g.cs b/old/ios/native/Chip/ChipGeneralCommissioning.g.cs
deleted file mode 100644
index abf2ef0..0000000
--- a/old/ios/native/Chip/ChipGeneralCommissioning.g.cs
+++ /dev/null
@@ -1,363 +0,0 @@
-//
-// 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.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 Chip {
- [Register("CHIPGeneralCommissioning", true)]
- [Introduced (PlatformName.MacOSX, 12,0, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.WatchOS, 8,0, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.TvOS, 15,0, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.iOS, 15,0, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.MacCatalyst, 15,0, ObjCRuntime.PlatformArchitecture.All)]
- public unsafe partial class ChipGeneralCommissioning : ChipCluster {
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- #if ARCH_32
- #pragma warning disable 649
- static readonly IntPtr class_ptr;
- #pragma warning restore 649
- #else
- static readonly IntPtr class_ptr = Class.GetHandle ("CHIPGeneralCommissioning");
- #endif
- public override IntPtr ClassHandle { get { return class_ptr; } }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- [EditorBrowsable (EditorBrowsableState.Advanced)]
- protected ChipGeneralCommissioning (NSObjectFlag t) : base (t)
- {
- }
-
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- [EditorBrowsable (EditorBrowsableState.Advanced)]
- protected internal ChipGeneralCommissioning (IntPtr handle) : base (handle)
- {
- }
-
- [Export ("initWithDevice:endpoint:queue:")]
- [Introduced (PlatformName.MacOSX, 12,1, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.WatchOS, 8,3, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.TvOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.iOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.MacCatalyst, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [DesignatedInitializer]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public ChipGeneralCommissioning (ChipDevice device, ushort endpoint, global::CoreFoundation.DispatchQueue queue)
- : base (NSObjectFlag.Empty)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- var device__handle__ = device!.GetNonNullHandle (nameof (device));
- var queue__handle__ = queue!.GetNonNullHandle (nameof (queue));
- if (IsDirectBinding) {
- InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend_IntPtr_UInt16_IntPtr (this.Handle, Selector.GetHandle ("initWithDevice:endpoint:queue:"), device__handle__, endpoint, queue.Handle), "initWithDevice:endpoint:queue:");
- } else {
- InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper_IntPtr_UInt16_IntPtr (this.SuperHandle, Selector.GetHandle ("initWithDevice:endpoint:queue:"), device__handle__, endpoint, queue.Handle), "initWithDevice:endpoint:queue:");
- }
- #endif
- }
- [Deprecated (PlatformName.iOS, 15,2)]
- [Deprecated (PlatformName.TvOS, 15,2)]
- [Deprecated (PlatformName.WatchOS, 8,3)]
- [Deprecated (PlatformName.MacOSX, 12,1)]
- [Deprecated (PlatformName.MacCatalyst, 15,2)]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public ChipGeneralCommissioning (ChipDevice device, byte endpoint, global::CoreFoundation.DispatchQueue queue)
- : this (device, (ushort) endpoint, queue)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- #endif
- }
- [Export ("armFailSafe:breadcrumb:timeoutMs:responseHandler:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void ArmFailSafe (ushort expiryLengthSeconds, ulong breadcrumb, uint timeoutMs, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- if (responseHandler is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (responseHandler));
- BlockLiteral *block_ptr_responseHandler;
- BlockLiteral block_responseHandler;
- block_responseHandler = new BlockLiteral ();
- block_ptr_responseHandler = &block_responseHandler;
- block_responseHandler.SetupBlockUnsafe (Trampolines.SDChipResponseHandler.Handler, responseHandler);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_UInt16_UInt64_UInt32_IntPtr (this.Handle, Selector.GetHandle ("armFailSafe:breadcrumb:timeoutMs:responseHandler:"), expiryLengthSeconds, breadcrumb, timeoutMs, (IntPtr) block_ptr_responseHandler);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_UInt16_UInt64_UInt32_IntPtr (this.SuperHandle, Selector.GetHandle ("armFailSafe:breadcrumb:timeoutMs:responseHandler:"), expiryLengthSeconds, breadcrumb, timeoutMs, (IntPtr) block_ptr_responseHandler);
- }
- block_ptr_responseHandler->CleanupBlock ();
- #endif
- }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> ArmFailSafeAsync (ushort expiryLengthSeconds, ulong breadcrumb, uint timeoutMs)
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- ArmFailSafe(expiryLengthSeconds, breadcrumb, timeoutMs, (error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- [Export ("commissioningComplete:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void CommissioningComplete ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- if (responseHandler is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (responseHandler));
- BlockLiteral *block_ptr_responseHandler;
- BlockLiteral block_responseHandler;
- block_responseHandler = new BlockLiteral ();
- block_ptr_responseHandler = &block_responseHandler;
- block_responseHandler.SetupBlockUnsafe (Trampolines.SDChipResponseHandler.Handler, responseHandler);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("commissioningComplete:"), (IntPtr) block_ptr_responseHandler);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("commissioningComplete:"), (IntPtr) block_ptr_responseHandler);
- }
- block_ptr_responseHandler->CleanupBlock ();
- #endif
- }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> CommissioningCompleteAsync ()
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- CommissioningComplete((error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- [Export ("readAttributeBasicCommissioningInfoListWithResponseHandler:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void ReadAttributeBasicCommissioningInfoList ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- if (responseHandler is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (responseHandler));
- BlockLiteral *block_ptr_responseHandler;
- BlockLiteral block_responseHandler;
- block_responseHandler = new BlockLiteral ();
- block_ptr_responseHandler = &block_responseHandler;
- block_responseHandler.SetupBlockUnsafe (Trampolines.SDChipResponseHandler.Handler, responseHandler);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("readAttributeBasicCommissioningInfoListWithResponseHandler:"), (IntPtr) block_ptr_responseHandler);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("readAttributeBasicCommissioningInfoListWithResponseHandler:"), (IntPtr) block_ptr_responseHandler);
- }
- block_ptr_responseHandler->CleanupBlock ();
- #endif
- }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> ReadAttributeBasicCommissioningInfoListAsync ()
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- ReadAttributeBasicCommissioningInfoList((error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- [Export ("readAttributeBreadcrumbWithResponseHandler:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void ReadAttributeBreadcrumb ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- if (responseHandler is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (responseHandler));
- BlockLiteral *block_ptr_responseHandler;
- BlockLiteral block_responseHandler;
- block_responseHandler = new BlockLiteral ();
- block_ptr_responseHandler = &block_responseHandler;
- block_responseHandler.SetupBlockUnsafe (Trampolines.SDChipResponseHandler.Handler, responseHandler);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("readAttributeBreadcrumbWithResponseHandler:"), (IntPtr) block_ptr_responseHandler);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("readAttributeBreadcrumbWithResponseHandler:"), (IntPtr) block_ptr_responseHandler);
- }
- block_ptr_responseHandler->CleanupBlock ();
- #endif
- }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> ReadAttributeBreadcrumbAsync ()
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- ReadAttributeBreadcrumb((error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- [Export ("readAttributeClusterRevisionWithResponseHandler:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void ReadAttributeClusterRevision ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- if (responseHandler is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (responseHandler));
- BlockLiteral *block_ptr_responseHandler;
- BlockLiteral block_responseHandler;
- block_responseHandler = new BlockLiteral ();
- block_ptr_responseHandler = &block_responseHandler;
- block_responseHandler.SetupBlockUnsafe (Trampolines.SDChipResponseHandler.Handler, responseHandler);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("readAttributeClusterRevisionWithResponseHandler:"), (IntPtr) block_ptr_responseHandler);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("readAttributeClusterRevisionWithResponseHandler:"), (IntPtr) block_ptr_responseHandler);
- }
- block_ptr_responseHandler->CleanupBlock ();
- #endif
- }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> ReadAttributeClusterRevisionAsync ()
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- ReadAttributeClusterRevision((error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- [Obsolete ("This method is removed.", false)]
- [EditorBrowsable (EditorBrowsableState.Never)]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void ReadAttributeFabricId ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- throw new InvalidOperationException (Constants.RemovedFromChip);
- #endif
- }
- [Obsolete ("This method is removed.", false)]
- [EditorBrowsable (EditorBrowsableState.Never)]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> ReadAttributeFabricIdAsync ()
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- ReadAttributeFabricId((error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- [Export ("setRegulatoryConfig:countryCode:breadcrumb:timeoutMs:responseHandler:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void SetRegulatoryConfig (byte location, string countryCode, ulong breadcrumb, uint timeoutMs, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- if (countryCode is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (countryCode));
- if (responseHandler is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (responseHandler));
- var nscountryCode = CFString.CreateNative (countryCode);
- BlockLiteral *block_ptr_responseHandler;
- BlockLiteral block_responseHandler;
- block_responseHandler = new BlockLiteral ();
- block_ptr_responseHandler = &block_responseHandler;
- block_responseHandler.SetupBlockUnsafe (Trampolines.SDChipResponseHandler.Handler, responseHandler);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_byte_IntPtr_UInt64_UInt32_IntPtr (this.Handle, Selector.GetHandle ("setRegulatoryConfig:countryCode:breadcrumb:timeoutMs:responseHandler:"), location, nscountryCode, breadcrumb, timeoutMs, (IntPtr) block_ptr_responseHandler);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_byte_IntPtr_UInt64_UInt32_IntPtr (this.SuperHandle, Selector.GetHandle ("setRegulatoryConfig:countryCode:breadcrumb:timeoutMs:responseHandler:"), location, nscountryCode, breadcrumb, timeoutMs, (IntPtr) block_ptr_responseHandler);
- }
- CFString.ReleaseNative (nscountryCode);
- block_ptr_responseHandler->CleanupBlock ();
- #endif
- }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> SetRegulatoryConfigAsync (byte location, string countryCode, ulong breadcrumb, uint timeoutMs)
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- SetRegulatoryConfig(location, countryCode, breadcrumb, timeoutMs, (error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- [Export ("writeAttributeBreadcrumbWithValue:responseHandler:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void WriteAttributeBreadcrumb (ulong value, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- if (responseHandler is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (responseHandler));
- BlockLiteral *block_ptr_responseHandler;
- BlockLiteral block_responseHandler;
- block_responseHandler = new BlockLiteral ();
- block_ptr_responseHandler = &block_responseHandler;
- block_responseHandler.SetupBlockUnsafe (Trampolines.SDChipResponseHandler.Handler, responseHandler);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_UInt64_IntPtr (this.Handle, Selector.GetHandle ("writeAttributeBreadcrumbWithValue:responseHandler:"), value, (IntPtr) block_ptr_responseHandler);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_UInt64_IntPtr (this.SuperHandle, Selector.GetHandle ("writeAttributeBreadcrumbWithValue:responseHandler:"), value, (IntPtr) block_ptr_responseHandler);
- }
- block_ptr_responseHandler->CleanupBlock ();
- #endif
- }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> WriteAttributeBreadcrumbAsync (ulong value)
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- WriteAttributeBreadcrumb(value, (error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- } /* class ChipGeneralCommissioning */
- //
- // Async result classes
- //
-}
diff --git a/old/ios/native/Chip/ChipLowPower.g.cs b/old/ios/native/Chip/ChipLowPower.g.cs
deleted file mode 100644
index 9e48e64..0000000
--- a/old/ios/native/Chip/ChipLowPower.g.cs
+++ /dev/null
@@ -1,182 +0,0 @@
-//
-// 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.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 Chip {
- [Register("CHIPLowPower", true)]
- [Introduced (PlatformName.MacOSX, 12,0, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.WatchOS, 8,0, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.TvOS, 15,0, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.iOS, 15,0, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.MacCatalyst, 15,0, ObjCRuntime.PlatformArchitecture.All)]
- public unsafe partial class ChipLowPower : ChipCluster {
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- #if ARCH_32
- #pragma warning disable 649
- static readonly IntPtr class_ptr;
- #pragma warning restore 649
- #else
- static readonly IntPtr class_ptr = Class.GetHandle ("CHIPLowPower");
- #endif
- public override IntPtr ClassHandle { get { return class_ptr; } }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- [EditorBrowsable (EditorBrowsableState.Advanced)]
- protected ChipLowPower (NSObjectFlag t) : base (t)
- {
- }
-
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- [EditorBrowsable (EditorBrowsableState.Advanced)]
- protected internal ChipLowPower (IntPtr handle) : base (handle)
- {
- }
-
- [Export ("initWithDevice:endpoint:queue:")]
- [Introduced (PlatformName.MacOSX, 12,1, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.WatchOS, 8,3, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.TvOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.iOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.MacCatalyst, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [DesignatedInitializer]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public ChipLowPower (ChipDevice device, ushort endpoint, global::CoreFoundation.DispatchQueue queue)
- : base (NSObjectFlag.Empty)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- var device__handle__ = device!.GetNonNullHandle (nameof (device));
- var queue__handle__ = queue!.GetNonNullHandle (nameof (queue));
- if (IsDirectBinding) {
- InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend_IntPtr_UInt16_IntPtr (this.Handle, Selector.GetHandle ("initWithDevice:endpoint:queue:"), device__handle__, endpoint, queue.Handle), "initWithDevice:endpoint:queue:");
- } else {
- InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper_IntPtr_UInt16_IntPtr (this.SuperHandle, Selector.GetHandle ("initWithDevice:endpoint:queue:"), device__handle__, endpoint, queue.Handle), "initWithDevice:endpoint:queue:");
- }
- #endif
- }
- [Deprecated (PlatformName.iOS, 15,2)]
- [Deprecated (PlatformName.TvOS, 15,2)]
- [Deprecated (PlatformName.WatchOS, 8,3)]
- [Deprecated (PlatformName.MacOSX, 12,1)]
- [Deprecated (PlatformName.MacCatalyst, 15,2)]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public ChipLowPower (ChipDevice device, byte endpoint, global::CoreFoundation.DispatchQueue queue)
- : this (device, (ushort) endpoint, queue)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- #endif
- }
- [Export ("readAttributeClusterRevisionWithResponseHandler:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void ReadAttributeClusterRevision ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- if (responseHandler is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (responseHandler));
- BlockLiteral *block_ptr_responseHandler;
- BlockLiteral block_responseHandler;
- block_responseHandler = new BlockLiteral ();
- block_ptr_responseHandler = &block_responseHandler;
- block_responseHandler.SetupBlockUnsafe (Trampolines.SDChipResponseHandler.Handler, responseHandler);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("readAttributeClusterRevisionWithResponseHandler:"), (IntPtr) block_ptr_responseHandler);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("readAttributeClusterRevisionWithResponseHandler:"), (IntPtr) block_ptr_responseHandler);
- }
- block_ptr_responseHandler->CleanupBlock ();
- #endif
- }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> ReadAttributeClusterRevisionAsync ()
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- ReadAttributeClusterRevision((error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- [Export ("sleep:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void Sleep ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- if (responseHandler is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (responseHandler));
- BlockLiteral *block_ptr_responseHandler;
- BlockLiteral block_responseHandler;
- block_responseHandler = new BlockLiteral ();
- block_ptr_responseHandler = &block_responseHandler;
- block_responseHandler.SetupBlockUnsafe (Trampolines.SDChipResponseHandler.Handler, responseHandler);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("sleep:"), (IntPtr) block_ptr_responseHandler);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("sleep:"), (IntPtr) block_ptr_responseHandler);
- }
- block_ptr_responseHandler->CleanupBlock ();
- #endif
- }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> SleepAsync ()
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- Sleep((error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- } /* class ChipLowPower */
- //
- // Async result classes
- //
-}
diff --git a/old/ios/native/Chip/ChipTestCluster.g.cs b/old/ios/native/Chip/ChipTestCluster.g.cs
deleted file mode 100644
index da6fb5f..0000000
--- a/old/ios/native/Chip/ChipTestCluster.g.cs
+++ /dev/null
@@ -1,1777 +0,0 @@
-//
-// 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.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 Chip {
- [Register("CHIPTestCluster", true)]
- [Introduced (PlatformName.MacOSX, 12,0, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.WatchOS, 8,0, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.TvOS, 15,0, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.iOS, 15,0, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.MacCatalyst, 15,0, ObjCRuntime.PlatformArchitecture.All)]
- public unsafe partial class ChipTestCluster : ChipCluster {
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- #if ARCH_32
- #pragma warning disable 649
- static readonly IntPtr class_ptr;
- #pragma warning restore 649
- #else
- static readonly IntPtr class_ptr = Class.GetHandle ("CHIPTestCluster");
- #endif
- public override IntPtr ClassHandle { get { return class_ptr; } }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- [EditorBrowsable (EditorBrowsableState.Advanced)]
- protected ChipTestCluster (NSObjectFlag t) : base (t)
- {
- }
-
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- [EditorBrowsable (EditorBrowsableState.Advanced)]
- protected internal ChipTestCluster (IntPtr handle) : base (handle)
- {
- }
-
- [Export ("initWithDevice:endpoint:queue:")]
- [Introduced (PlatformName.MacOSX, 12,1, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.WatchOS, 8,3, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.TvOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.iOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.MacCatalyst, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [DesignatedInitializer]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public ChipTestCluster (ChipDevice device, ushort endpoint, global::CoreFoundation.DispatchQueue queue)
- : base (NSObjectFlag.Empty)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- var device__handle__ = device!.GetNonNullHandle (nameof (device));
- var queue__handle__ = queue!.GetNonNullHandle (nameof (queue));
- if (IsDirectBinding) {
- InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend_IntPtr_UInt16_IntPtr (this.Handle, Selector.GetHandle ("initWithDevice:endpoint:queue:"), device__handle__, endpoint, queue.Handle), "initWithDevice:endpoint:queue:");
- } else {
- InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper_IntPtr_UInt16_IntPtr (this.SuperHandle, Selector.GetHandle ("initWithDevice:endpoint:queue:"), device__handle__, endpoint, queue.Handle), "initWithDevice:endpoint:queue:");
- }
- #endif
- }
- [Deprecated (PlatformName.iOS, 15,2)]
- [Deprecated (PlatformName.TvOS, 15,2)]
- [Deprecated (PlatformName.WatchOS, 8,3)]
- [Deprecated (PlatformName.MacOSX, 12,1)]
- [Deprecated (PlatformName.MacCatalyst, 15,2)]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public ChipTestCluster (ChipDevice device, byte endpoint, global::CoreFoundation.DispatchQueue queue)
- : this (device, (ushort) endpoint, queue)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- #endif
- }
- [Export ("readAttributeBitmap16WithResponseHandler:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void ReadAttributeBitmap16 ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- if (responseHandler is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (responseHandler));
- BlockLiteral *block_ptr_responseHandler;
- BlockLiteral block_responseHandler;
- block_responseHandler = new BlockLiteral ();
- block_ptr_responseHandler = &block_responseHandler;
- block_responseHandler.SetupBlockUnsafe (Trampolines.SDChipResponseHandler.Handler, responseHandler);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("readAttributeBitmap16WithResponseHandler:"), (IntPtr) block_ptr_responseHandler);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("readAttributeBitmap16WithResponseHandler:"), (IntPtr) block_ptr_responseHandler);
- }
- block_ptr_responseHandler->CleanupBlock ();
- #endif
- }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> ReadAttributeBitmap16Async ()
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- ReadAttributeBitmap16((error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- [Export ("readAttributeBitmap32WithResponseHandler:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void ReadAttributeBitmap32 ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- if (responseHandler is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (responseHandler));
- BlockLiteral *block_ptr_responseHandler;
- BlockLiteral block_responseHandler;
- block_responseHandler = new BlockLiteral ();
- block_ptr_responseHandler = &block_responseHandler;
- block_responseHandler.SetupBlockUnsafe (Trampolines.SDChipResponseHandler.Handler, responseHandler);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("readAttributeBitmap32WithResponseHandler:"), (IntPtr) block_ptr_responseHandler);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("readAttributeBitmap32WithResponseHandler:"), (IntPtr) block_ptr_responseHandler);
- }
- block_ptr_responseHandler->CleanupBlock ();
- #endif
- }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> ReadAttributeBitmap32Async ()
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- ReadAttributeBitmap32((error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- [Export ("readAttributeBitmap64WithResponseHandler:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void ReadAttributeBitmap64 ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- if (responseHandler is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (responseHandler));
- BlockLiteral *block_ptr_responseHandler;
- BlockLiteral block_responseHandler;
- block_responseHandler = new BlockLiteral ();
- block_ptr_responseHandler = &block_responseHandler;
- block_responseHandler.SetupBlockUnsafe (Trampolines.SDChipResponseHandler.Handler, responseHandler);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("readAttributeBitmap64WithResponseHandler:"), (IntPtr) block_ptr_responseHandler);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("readAttributeBitmap64WithResponseHandler:"), (IntPtr) block_ptr_responseHandler);
- }
- block_ptr_responseHandler->CleanupBlock ();
- #endif
- }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> ReadAttributeBitmap64Async ()
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- ReadAttributeBitmap64((error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- [Export ("readAttributeBitmap8WithResponseHandler:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void ReadAttributeBitmap8 ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- if (responseHandler is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (responseHandler));
- BlockLiteral *block_ptr_responseHandler;
- BlockLiteral block_responseHandler;
- block_responseHandler = new BlockLiteral ();
- block_ptr_responseHandler = &block_responseHandler;
- block_responseHandler.SetupBlockUnsafe (Trampolines.SDChipResponseHandler.Handler, responseHandler);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("readAttributeBitmap8WithResponseHandler:"), (IntPtr) block_ptr_responseHandler);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("readAttributeBitmap8WithResponseHandler:"), (IntPtr) block_ptr_responseHandler);
- }
- block_ptr_responseHandler->CleanupBlock ();
- #endif
- }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> ReadAttributeBitmap8Async ()
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- ReadAttributeBitmap8((error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- [Export ("readAttributeBooleanWithResponseHandler:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void ReadAttributeBoolean ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- if (responseHandler is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (responseHandler));
- BlockLiteral *block_ptr_responseHandler;
- BlockLiteral block_responseHandler;
- block_responseHandler = new BlockLiteral ();
- block_ptr_responseHandler = &block_responseHandler;
- block_responseHandler.SetupBlockUnsafe (Trampolines.SDChipResponseHandler.Handler, responseHandler);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("readAttributeBooleanWithResponseHandler:"), (IntPtr) block_ptr_responseHandler);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("readAttributeBooleanWithResponseHandler:"), (IntPtr) block_ptr_responseHandler);
- }
- block_ptr_responseHandler->CleanupBlock ();
- #endif
- }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> ReadAttributeBooleanAsync ()
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- ReadAttributeBoolean((error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- [Export ("readAttributeCharStringWithResponseHandler:")]
- [Introduced (PlatformName.MacOSX, 12,1, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.WatchOS, 8,3, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.TvOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.iOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.MacCatalyst, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void ReadAttributeCharString ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- if (responseHandler is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (responseHandler));
- BlockLiteral *block_ptr_responseHandler;
- BlockLiteral block_responseHandler;
- block_responseHandler = new BlockLiteral ();
- block_ptr_responseHandler = &block_responseHandler;
- block_responseHandler.SetupBlockUnsafe (Trampolines.SDChipResponseHandler.Handler, responseHandler);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("readAttributeCharStringWithResponseHandler:"), (IntPtr) block_ptr_responseHandler);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("readAttributeCharStringWithResponseHandler:"), (IntPtr) block_ptr_responseHandler);
- }
- block_ptr_responseHandler->CleanupBlock ();
- #endif
- }
- [Introduced (PlatformName.MacOSX, 12,1, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.WatchOS, 8,3, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.TvOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.iOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.MacCatalyst, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> ReadAttributeCharStringAsync ()
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- ReadAttributeCharString((error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- [Export ("readAttributeClusterRevisionWithResponseHandler:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void ReadAttributeClusterRevision ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- if (responseHandler is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (responseHandler));
- BlockLiteral *block_ptr_responseHandler;
- BlockLiteral block_responseHandler;
- block_responseHandler = new BlockLiteral ();
- block_ptr_responseHandler = &block_responseHandler;
- block_responseHandler.SetupBlockUnsafe (Trampolines.SDChipResponseHandler.Handler, responseHandler);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("readAttributeClusterRevisionWithResponseHandler:"), (IntPtr) block_ptr_responseHandler);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("readAttributeClusterRevisionWithResponseHandler:"), (IntPtr) block_ptr_responseHandler);
- }
- block_ptr_responseHandler->CleanupBlock ();
- #endif
- }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> ReadAttributeClusterRevisionAsync ()
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- ReadAttributeClusterRevision((error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- [Export ("readAttributeEnum16WithResponseHandler:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void ReadAttributeEnum16 ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- if (responseHandler is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (responseHandler));
- BlockLiteral *block_ptr_responseHandler;
- BlockLiteral block_responseHandler;
- block_responseHandler = new BlockLiteral ();
- block_ptr_responseHandler = &block_responseHandler;
- block_responseHandler.SetupBlockUnsafe (Trampolines.SDChipResponseHandler.Handler, responseHandler);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("readAttributeEnum16WithResponseHandler:"), (IntPtr) block_ptr_responseHandler);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("readAttributeEnum16WithResponseHandler:"), (IntPtr) block_ptr_responseHandler);
- }
- block_ptr_responseHandler->CleanupBlock ();
- #endif
- }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> ReadAttributeEnum16Async ()
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- ReadAttributeEnum16((error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- [Export ("readAttributeEnum8WithResponseHandler:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void ReadAttributeEnum8 ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- if (responseHandler is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (responseHandler));
- BlockLiteral *block_ptr_responseHandler;
- BlockLiteral block_responseHandler;
- block_responseHandler = new BlockLiteral ();
- block_ptr_responseHandler = &block_responseHandler;
- block_responseHandler.SetupBlockUnsafe (Trampolines.SDChipResponseHandler.Handler, responseHandler);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("readAttributeEnum8WithResponseHandler:"), (IntPtr) block_ptr_responseHandler);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("readAttributeEnum8WithResponseHandler:"), (IntPtr) block_ptr_responseHandler);
- }
- block_ptr_responseHandler->CleanupBlock ();
- #endif
- }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> ReadAttributeEnum8Async ()
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- ReadAttributeEnum8((error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- [Export ("readAttributeInt16sWithResponseHandler:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void ReadAttributeInt16s ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- if (responseHandler is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (responseHandler));
- BlockLiteral *block_ptr_responseHandler;
- BlockLiteral block_responseHandler;
- block_responseHandler = new BlockLiteral ();
- block_ptr_responseHandler = &block_responseHandler;
- block_responseHandler.SetupBlockUnsafe (Trampolines.SDChipResponseHandler.Handler, responseHandler);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("readAttributeInt16sWithResponseHandler:"), (IntPtr) block_ptr_responseHandler);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("readAttributeInt16sWithResponseHandler:"), (IntPtr) block_ptr_responseHandler);
- }
- block_ptr_responseHandler->CleanupBlock ();
- #endif
- }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> ReadAttributeInt16sAsync ()
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- ReadAttributeInt16s((error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- [Export ("readAttributeInt16uWithResponseHandler:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void ReadAttributeInt16u ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- if (responseHandler is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (responseHandler));
- BlockLiteral *block_ptr_responseHandler;
- BlockLiteral block_responseHandler;
- block_responseHandler = new BlockLiteral ();
- block_ptr_responseHandler = &block_responseHandler;
- block_responseHandler.SetupBlockUnsafe (Trampolines.SDChipResponseHandler.Handler, responseHandler);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("readAttributeInt16uWithResponseHandler:"), (IntPtr) block_ptr_responseHandler);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("readAttributeInt16uWithResponseHandler:"), (IntPtr) block_ptr_responseHandler);
- }
- block_ptr_responseHandler->CleanupBlock ();
- #endif
- }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> ReadAttributeInt16uAsync ()
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- ReadAttributeInt16u((error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- [Export ("readAttributeInt32sWithResponseHandler:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void ReadAttributeInt32s ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- if (responseHandler is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (responseHandler));
- BlockLiteral *block_ptr_responseHandler;
- BlockLiteral block_responseHandler;
- block_responseHandler = new BlockLiteral ();
- block_ptr_responseHandler = &block_responseHandler;
- block_responseHandler.SetupBlockUnsafe (Trampolines.SDChipResponseHandler.Handler, responseHandler);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("readAttributeInt32sWithResponseHandler:"), (IntPtr) block_ptr_responseHandler);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("readAttributeInt32sWithResponseHandler:"), (IntPtr) block_ptr_responseHandler);
- }
- block_ptr_responseHandler->CleanupBlock ();
- #endif
- }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> ReadAttributeInt32sAsync ()
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- ReadAttributeInt32s((error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- [Export ("readAttributeInt32uWithResponseHandler:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void ReadAttributeInt32u ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- if (responseHandler is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (responseHandler));
- BlockLiteral *block_ptr_responseHandler;
- BlockLiteral block_responseHandler;
- block_responseHandler = new BlockLiteral ();
- block_ptr_responseHandler = &block_responseHandler;
- block_responseHandler.SetupBlockUnsafe (Trampolines.SDChipResponseHandler.Handler, responseHandler);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("readAttributeInt32uWithResponseHandler:"), (IntPtr) block_ptr_responseHandler);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("readAttributeInt32uWithResponseHandler:"), (IntPtr) block_ptr_responseHandler);
- }
- block_ptr_responseHandler->CleanupBlock ();
- #endif
- }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> ReadAttributeInt32uAsync ()
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- ReadAttributeInt32u((error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- [Export ("readAttributeInt64sWithResponseHandler:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void ReadAttributeInt64s ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- if (responseHandler is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (responseHandler));
- BlockLiteral *block_ptr_responseHandler;
- BlockLiteral block_responseHandler;
- block_responseHandler = new BlockLiteral ();
- block_ptr_responseHandler = &block_responseHandler;
- block_responseHandler.SetupBlockUnsafe (Trampolines.SDChipResponseHandler.Handler, responseHandler);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("readAttributeInt64sWithResponseHandler:"), (IntPtr) block_ptr_responseHandler);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("readAttributeInt64sWithResponseHandler:"), (IntPtr) block_ptr_responseHandler);
- }
- block_ptr_responseHandler->CleanupBlock ();
- #endif
- }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> ReadAttributeInt64sAsync ()
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- ReadAttributeInt64s((error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- [Export ("readAttributeInt64uWithResponseHandler:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void ReadAttributeInt64u ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- if (responseHandler is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (responseHandler));
- BlockLiteral *block_ptr_responseHandler;
- BlockLiteral block_responseHandler;
- block_responseHandler = new BlockLiteral ();
- block_ptr_responseHandler = &block_responseHandler;
- block_responseHandler.SetupBlockUnsafe (Trampolines.SDChipResponseHandler.Handler, responseHandler);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("readAttributeInt64uWithResponseHandler:"), (IntPtr) block_ptr_responseHandler);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("readAttributeInt64uWithResponseHandler:"), (IntPtr) block_ptr_responseHandler);
- }
- block_ptr_responseHandler->CleanupBlock ();
- #endif
- }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> ReadAttributeInt64uAsync ()
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- ReadAttributeInt64u((error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- [Export ("readAttributeInt8sWithResponseHandler:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void ReadAttributeInt8s ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- if (responseHandler is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (responseHandler));
- BlockLiteral *block_ptr_responseHandler;
- BlockLiteral block_responseHandler;
- block_responseHandler = new BlockLiteral ();
- block_ptr_responseHandler = &block_responseHandler;
- block_responseHandler.SetupBlockUnsafe (Trampolines.SDChipResponseHandler.Handler, responseHandler);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("readAttributeInt8sWithResponseHandler:"), (IntPtr) block_ptr_responseHandler);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("readAttributeInt8sWithResponseHandler:"), (IntPtr) block_ptr_responseHandler);
- }
- block_ptr_responseHandler->CleanupBlock ();
- #endif
- }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> ReadAttributeInt8sAsync ()
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- ReadAttributeInt8s((error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- [Export ("readAttributeInt8uWithResponseHandler:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void ReadAttributeInt8u ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- if (responseHandler is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (responseHandler));
- BlockLiteral *block_ptr_responseHandler;
- BlockLiteral block_responseHandler;
- block_responseHandler = new BlockLiteral ();
- block_ptr_responseHandler = &block_responseHandler;
- block_responseHandler.SetupBlockUnsafe (Trampolines.SDChipResponseHandler.Handler, responseHandler);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("readAttributeInt8uWithResponseHandler:"), (IntPtr) block_ptr_responseHandler);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("readAttributeInt8uWithResponseHandler:"), (IntPtr) block_ptr_responseHandler);
- }
- block_ptr_responseHandler->CleanupBlock ();
- #endif
- }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> ReadAttributeInt8uAsync ()
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- ReadAttributeInt8u((error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- [Export ("readAttributeListInt8uWithResponseHandler:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void ReadAttributeListInt8u ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- if (responseHandler is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (responseHandler));
- BlockLiteral *block_ptr_responseHandler;
- BlockLiteral block_responseHandler;
- block_responseHandler = new BlockLiteral ();
- block_ptr_responseHandler = &block_responseHandler;
- block_responseHandler.SetupBlockUnsafe (Trampolines.SDChipResponseHandler.Handler, responseHandler);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("readAttributeListInt8uWithResponseHandler:"), (IntPtr) block_ptr_responseHandler);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("readAttributeListInt8uWithResponseHandler:"), (IntPtr) block_ptr_responseHandler);
- }
- block_ptr_responseHandler->CleanupBlock ();
- #endif
- }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> ReadAttributeListInt8uAsync ()
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- ReadAttributeListInt8u((error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- [Export ("readAttributeListOctetStringWithResponseHandler:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void ReadAttributeListOctetString ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- if (responseHandler is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (responseHandler));
- BlockLiteral *block_ptr_responseHandler;
- BlockLiteral block_responseHandler;
- block_responseHandler = new BlockLiteral ();
- block_ptr_responseHandler = &block_responseHandler;
- block_responseHandler.SetupBlockUnsafe (Trampolines.SDChipResponseHandler.Handler, responseHandler);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("readAttributeListOctetStringWithResponseHandler:"), (IntPtr) block_ptr_responseHandler);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("readAttributeListOctetStringWithResponseHandler:"), (IntPtr) block_ptr_responseHandler);
- }
- block_ptr_responseHandler->CleanupBlock ();
- #endif
- }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> ReadAttributeListOctetStringAsync ()
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- ReadAttributeListOctetString((error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- [Export ("readAttributeListStructOctetStringWithResponseHandler:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void ReadAttributeListStructOctetString ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- if (responseHandler is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (responseHandler));
- BlockLiteral *block_ptr_responseHandler;
- BlockLiteral block_responseHandler;
- block_responseHandler = new BlockLiteral ();
- block_ptr_responseHandler = &block_responseHandler;
- block_responseHandler.SetupBlockUnsafe (Trampolines.SDChipResponseHandler.Handler, responseHandler);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("readAttributeListStructOctetStringWithResponseHandler:"), (IntPtr) block_ptr_responseHandler);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("readAttributeListStructOctetStringWithResponseHandler:"), (IntPtr) block_ptr_responseHandler);
- }
- block_ptr_responseHandler->CleanupBlock ();
- #endif
- }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> ReadAttributeListStructOctetStringAsync ()
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- ReadAttributeListStructOctetString((error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- [Export ("readAttributeLongCharStringWithResponseHandler:")]
- [Introduced (PlatformName.MacOSX, 12,1, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.WatchOS, 8,3, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.TvOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.iOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.MacCatalyst, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void ReadAttributeLongCharString ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- if (responseHandler is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (responseHandler));
- BlockLiteral *block_ptr_responseHandler;
- BlockLiteral block_responseHandler;
- block_responseHandler = new BlockLiteral ();
- block_ptr_responseHandler = &block_responseHandler;
- block_responseHandler.SetupBlockUnsafe (Trampolines.SDChipResponseHandler.Handler, responseHandler);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("readAttributeLongCharStringWithResponseHandler:"), (IntPtr) block_ptr_responseHandler);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("readAttributeLongCharStringWithResponseHandler:"), (IntPtr) block_ptr_responseHandler);
- }
- block_ptr_responseHandler->CleanupBlock ();
- #endif
- }
- [Introduced (PlatformName.MacOSX, 12,1, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.WatchOS, 8,3, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.TvOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.iOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.MacCatalyst, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> ReadAttributeLongCharStringAsync ()
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- ReadAttributeLongCharString((error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- [Export ("readAttributeLongOctetStringWithResponseHandler:")]
- [Introduced (PlatformName.MacOSX, 12,1, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.WatchOS, 8,3, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.TvOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.iOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.MacCatalyst, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void ReadAttributeLongOctetString ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- if (responseHandler is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (responseHandler));
- BlockLiteral *block_ptr_responseHandler;
- BlockLiteral block_responseHandler;
- block_responseHandler = new BlockLiteral ();
- block_ptr_responseHandler = &block_responseHandler;
- block_responseHandler.SetupBlockUnsafe (Trampolines.SDChipResponseHandler.Handler, responseHandler);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("readAttributeLongOctetStringWithResponseHandler:"), (IntPtr) block_ptr_responseHandler);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("readAttributeLongOctetStringWithResponseHandler:"), (IntPtr) block_ptr_responseHandler);
- }
- block_ptr_responseHandler->CleanupBlock ();
- #endif
- }
- [Introduced (PlatformName.MacOSX, 12,1, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.WatchOS, 8,3, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.TvOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.iOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.MacCatalyst, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> ReadAttributeLongOctetStringAsync ()
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- ReadAttributeLongOctetString((error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- [Export ("readAttributeOctetStringWithResponseHandler:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void ReadAttributeOctetString ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- if (responseHandler is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (responseHandler));
- BlockLiteral *block_ptr_responseHandler;
- BlockLiteral block_responseHandler;
- block_responseHandler = new BlockLiteral ();
- block_ptr_responseHandler = &block_responseHandler;
- block_responseHandler.SetupBlockUnsafe (Trampolines.SDChipResponseHandler.Handler, responseHandler);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("readAttributeOctetStringWithResponseHandler:"), (IntPtr) block_ptr_responseHandler);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("readAttributeOctetStringWithResponseHandler:"), (IntPtr) block_ptr_responseHandler);
- }
- block_ptr_responseHandler->CleanupBlock ();
- #endif
- }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> ReadAttributeOctetStringAsync ()
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- ReadAttributeOctetString((error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- [Export ("readAttributeUnsupportedWithResponseHandler:")]
- [Introduced (PlatformName.MacOSX, 12,1, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.WatchOS, 8,3, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.TvOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.iOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.MacCatalyst, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void ReadAttributeUnsupported ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- if (responseHandler is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (responseHandler));
- BlockLiteral *block_ptr_responseHandler;
- BlockLiteral block_responseHandler;
- block_responseHandler = new BlockLiteral ();
- block_ptr_responseHandler = &block_responseHandler;
- block_responseHandler.SetupBlockUnsafe (Trampolines.SDChipResponseHandler.Handler, responseHandler);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("readAttributeUnsupportedWithResponseHandler:"), (IntPtr) block_ptr_responseHandler);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("readAttributeUnsupportedWithResponseHandler:"), (IntPtr) block_ptr_responseHandler);
- }
- block_ptr_responseHandler->CleanupBlock ();
- #endif
- }
- [Introduced (PlatformName.MacOSX, 12,1, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.WatchOS, 8,3, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.TvOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.iOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.MacCatalyst, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> ReadAttributeUnsupportedAsync ()
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- ReadAttributeUnsupported((error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- [Export ("test:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void Test ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- if (responseHandler is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (responseHandler));
- BlockLiteral *block_ptr_responseHandler;
- BlockLiteral block_responseHandler;
- block_responseHandler = new BlockLiteral ();
- block_ptr_responseHandler = &block_responseHandler;
- block_responseHandler.SetupBlockUnsafe (Trampolines.SDChipResponseHandler.Handler, responseHandler);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("test:"), (IntPtr) block_ptr_responseHandler);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("test:"), (IntPtr) block_ptr_responseHandler);
- }
- block_ptr_responseHandler->CleanupBlock ();
- #endif
- }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> TestAsync ()
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- Test((error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- [Export ("testAddArguments:arg2:responseHandler:")]
- [Introduced (PlatformName.MacOSX, 12,1, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.WatchOS, 8,3, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.TvOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.iOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.MacCatalyst, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void TestAddArguments (byte arg1, byte arg2, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- if (responseHandler is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (responseHandler));
- BlockLiteral *block_ptr_responseHandler;
- BlockLiteral block_responseHandler;
- block_responseHandler = new BlockLiteral ();
- block_ptr_responseHandler = &block_responseHandler;
- block_responseHandler.SetupBlockUnsafe (Trampolines.SDChipResponseHandler.Handler, responseHandler);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_byte_byte_IntPtr (this.Handle, Selector.GetHandle ("testAddArguments:arg2:responseHandler:"), arg1, arg2, (IntPtr) block_ptr_responseHandler);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_byte_byte_IntPtr (this.SuperHandle, Selector.GetHandle ("testAddArguments:arg2:responseHandler:"), arg1, arg2, (IntPtr) block_ptr_responseHandler);
- }
- block_ptr_responseHandler->CleanupBlock ();
- #endif
- }
- [Introduced (PlatformName.MacOSX, 12,1, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.WatchOS, 8,3, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.TvOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.iOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.MacCatalyst, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> TestAddArgumentsAsync (byte arg1, byte arg2)
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- TestAddArguments(arg1, arg2, (error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- [Export ("testNotHandled:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void TestNotHandled ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- if (responseHandler is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (responseHandler));
- BlockLiteral *block_ptr_responseHandler;
- BlockLiteral block_responseHandler;
- block_responseHandler = new BlockLiteral ();
- block_ptr_responseHandler = &block_responseHandler;
- block_responseHandler.SetupBlockUnsafe (Trampolines.SDChipResponseHandler.Handler, responseHandler);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("testNotHandled:"), (IntPtr) block_ptr_responseHandler);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("testNotHandled:"), (IntPtr) block_ptr_responseHandler);
- }
- block_ptr_responseHandler->CleanupBlock ();
- #endif
- }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> TestNotHandledAsync ()
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- TestNotHandled((error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- [Export ("testSpecific:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void TestSpecific ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- if (responseHandler is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (responseHandler));
- BlockLiteral *block_ptr_responseHandler;
- BlockLiteral block_responseHandler;
- block_responseHandler = new BlockLiteral ();
- block_ptr_responseHandler = &block_responseHandler;
- block_responseHandler.SetupBlockUnsafe (Trampolines.SDChipResponseHandler.Handler, responseHandler);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("testSpecific:"), (IntPtr) block_ptr_responseHandler);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("testSpecific:"), (IntPtr) block_ptr_responseHandler);
- }
- block_ptr_responseHandler->CleanupBlock ();
- #endif
- }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> TestSpecificAsync ()
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- TestSpecific((error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- [Export ("testUnknownCommand:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void TestUnknownCommand ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- if (responseHandler is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (responseHandler));
- BlockLiteral *block_ptr_responseHandler;
- BlockLiteral block_responseHandler;
- block_responseHandler = new BlockLiteral ();
- block_ptr_responseHandler = &block_responseHandler;
- block_responseHandler.SetupBlockUnsafe (Trampolines.SDChipResponseHandler.Handler, responseHandler);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("testUnknownCommand:"), (IntPtr) block_ptr_responseHandler);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("testUnknownCommand:"), (IntPtr) block_ptr_responseHandler);
- }
- block_ptr_responseHandler->CleanupBlock ();
- #endif
- }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> TestUnknownCommandAsync ()
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- TestUnknownCommand((error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- [Export ("writeAttributeBitmap16WithValue:responseHandler:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void WriteAttributeBitmap16 (ushort value, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- if (responseHandler is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (responseHandler));
- BlockLiteral *block_ptr_responseHandler;
- BlockLiteral block_responseHandler;
- block_responseHandler = new BlockLiteral ();
- block_ptr_responseHandler = &block_responseHandler;
- block_responseHandler.SetupBlockUnsafe (Trampolines.SDChipResponseHandler.Handler, responseHandler);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_UInt16_IntPtr (this.Handle, Selector.GetHandle ("writeAttributeBitmap16WithValue:responseHandler:"), value, (IntPtr) block_ptr_responseHandler);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_UInt16_IntPtr (this.SuperHandle, Selector.GetHandle ("writeAttributeBitmap16WithValue:responseHandler:"), value, (IntPtr) block_ptr_responseHandler);
- }
- block_ptr_responseHandler->CleanupBlock ();
- #endif
- }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> WriteAttributeBitmap16Async (ushort value)
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- WriteAttributeBitmap16(value, (error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- [Export ("writeAttributeBitmap32WithValue:responseHandler:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void WriteAttributeBitmap32 (uint value, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- if (responseHandler is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (responseHandler));
- BlockLiteral *block_ptr_responseHandler;
- BlockLiteral block_responseHandler;
- block_responseHandler = new BlockLiteral ();
- block_ptr_responseHandler = &block_responseHandler;
- block_responseHandler.SetupBlockUnsafe (Trampolines.SDChipResponseHandler.Handler, responseHandler);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_UInt32_IntPtr (this.Handle, Selector.GetHandle ("writeAttributeBitmap32WithValue:responseHandler:"), value, (IntPtr) block_ptr_responseHandler);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_UInt32_IntPtr (this.SuperHandle, Selector.GetHandle ("writeAttributeBitmap32WithValue:responseHandler:"), value, (IntPtr) block_ptr_responseHandler);
- }
- block_ptr_responseHandler->CleanupBlock ();
- #endif
- }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> WriteAttributeBitmap32Async (uint value)
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- WriteAttributeBitmap32(value, (error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- [Export ("writeAttributeBitmap64WithValue:responseHandler:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void WriteAttributeBitmap64 (ulong value, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- if (responseHandler is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (responseHandler));
- BlockLiteral *block_ptr_responseHandler;
- BlockLiteral block_responseHandler;
- block_responseHandler = new BlockLiteral ();
- block_ptr_responseHandler = &block_responseHandler;
- block_responseHandler.SetupBlockUnsafe (Trampolines.SDChipResponseHandler.Handler, responseHandler);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_UInt64_IntPtr (this.Handle, Selector.GetHandle ("writeAttributeBitmap64WithValue:responseHandler:"), value, (IntPtr) block_ptr_responseHandler);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_UInt64_IntPtr (this.SuperHandle, Selector.GetHandle ("writeAttributeBitmap64WithValue:responseHandler:"), value, (IntPtr) block_ptr_responseHandler);
- }
- block_ptr_responseHandler->CleanupBlock ();
- #endif
- }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> WriteAttributeBitmap64Async (ulong value)
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- WriteAttributeBitmap64(value, (error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- [Export ("writeAttributeBitmap8WithValue:responseHandler:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void WriteAttributeBitmap8 (byte value, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- if (responseHandler is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (responseHandler));
- BlockLiteral *block_ptr_responseHandler;
- BlockLiteral block_responseHandler;
- block_responseHandler = new BlockLiteral ();
- block_ptr_responseHandler = &block_responseHandler;
- block_responseHandler.SetupBlockUnsafe (Trampolines.SDChipResponseHandler.Handler, responseHandler);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_byte_IntPtr (this.Handle, Selector.GetHandle ("writeAttributeBitmap8WithValue:responseHandler:"), value, (IntPtr) block_ptr_responseHandler);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_byte_IntPtr (this.SuperHandle, Selector.GetHandle ("writeAttributeBitmap8WithValue:responseHandler:"), value, (IntPtr) block_ptr_responseHandler);
- }
- block_ptr_responseHandler->CleanupBlock ();
- #endif
- }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> WriteAttributeBitmap8Async (byte value)
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- WriteAttributeBitmap8(value, (error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- [Deprecated (PlatformName.iOS, 15,2)]
- [Deprecated (PlatformName.TvOS, 15,2)]
- [Deprecated (PlatformName.WatchOS, 8,3)]
- [Deprecated (PlatformName.MacOSX, 12,1)]
- [Deprecated (PlatformName.MacCatalyst, 15,2)]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void WriteAttributeBoolean (byte value, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- WriteAttributeBoolean (Convert.ToBoolean(value), responseHandler);
- #endif
- }
- [Deprecated (PlatformName.iOS, 15,2)]
- [Deprecated (PlatformName.TvOS, 15,2)]
- [Deprecated (PlatformName.WatchOS, 8,3)]
- [Deprecated (PlatformName.MacOSX, 12,1)]
- [Deprecated (PlatformName.MacCatalyst, 15,2)]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> WriteAttributeBooleanAsync (byte value)
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- WriteAttributeBoolean(value, (error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- [Export ("writeAttributeBooleanWithValue:responseHandler:")]
- [Introduced (PlatformName.MacOSX, 12,1, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.WatchOS, 8,3, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.TvOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.iOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.MacCatalyst, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void WriteAttributeBoolean (bool boolValue, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- if (responseHandler is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (responseHandler));
- BlockLiteral *block_ptr_responseHandler;
- BlockLiteral block_responseHandler;
- block_responseHandler = new BlockLiteral ();
- block_ptr_responseHandler = &block_responseHandler;
- block_responseHandler.SetupBlockUnsafe (Trampolines.SDChipResponseHandler.Handler, responseHandler);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_bool_IntPtr (this.Handle, Selector.GetHandle ("writeAttributeBooleanWithValue:responseHandler:"), boolValue, (IntPtr) block_ptr_responseHandler);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_bool_IntPtr (this.SuperHandle, Selector.GetHandle ("writeAttributeBooleanWithValue:responseHandler:"), boolValue, (IntPtr) block_ptr_responseHandler);
- }
- block_ptr_responseHandler->CleanupBlock ();
- #endif
- }
- [Introduced (PlatformName.MacOSX, 12,1, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.WatchOS, 8,3, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.TvOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.iOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.MacCatalyst, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> WriteAttributeBooleanAsync (bool boolValue)
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- WriteAttributeBoolean(boolValue, (error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- [Export ("writeAttributeCharStringWithValue:responseHandler:")]
- [Introduced (PlatformName.MacOSX, 12,1, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.WatchOS, 8,3, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.TvOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.iOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.MacCatalyst, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void WriteAttributeCharString (string value, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- if (value is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (value));
- if (responseHandler is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (responseHandler));
- var nsvalue = CFString.CreateNative (value);
- BlockLiteral *block_ptr_responseHandler;
- BlockLiteral block_responseHandler;
- block_responseHandler = new BlockLiteral ();
- block_ptr_responseHandler = &block_responseHandler;
- block_responseHandler.SetupBlockUnsafe (Trampolines.SDChipResponseHandler.Handler, responseHandler);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr (this.Handle, Selector.GetHandle ("writeAttributeCharStringWithValue:responseHandler:"), nsvalue, (IntPtr) block_ptr_responseHandler);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr_IntPtr (this.SuperHandle, Selector.GetHandle ("writeAttributeCharStringWithValue:responseHandler:"), nsvalue, (IntPtr) block_ptr_responseHandler);
- }
- CFString.ReleaseNative (nsvalue);
- block_ptr_responseHandler->CleanupBlock ();
- #endif
- }
- [Introduced (PlatformName.MacOSX, 12,1, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.WatchOS, 8,3, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.TvOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.iOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.MacCatalyst, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> WriteAttributeCharStringAsync (string value)
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- WriteAttributeCharString(value, (error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- [Export ("writeAttributeEnum16WithValue:responseHandler:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void WriteAttributeEnum16 (ushort value, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- if (responseHandler is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (responseHandler));
- BlockLiteral *block_ptr_responseHandler;
- BlockLiteral block_responseHandler;
- block_responseHandler = new BlockLiteral ();
- block_ptr_responseHandler = &block_responseHandler;
- block_responseHandler.SetupBlockUnsafe (Trampolines.SDChipResponseHandler.Handler, responseHandler);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_UInt16_IntPtr (this.Handle, Selector.GetHandle ("writeAttributeEnum16WithValue:responseHandler:"), value, (IntPtr) block_ptr_responseHandler);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_UInt16_IntPtr (this.SuperHandle, Selector.GetHandle ("writeAttributeEnum16WithValue:responseHandler:"), value, (IntPtr) block_ptr_responseHandler);
- }
- block_ptr_responseHandler->CleanupBlock ();
- #endif
- }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> WriteAttributeEnum16Async (ushort value)
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- WriteAttributeEnum16(value, (error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- [Export ("writeAttributeEnum8WithValue:responseHandler:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void WriteAttributeEnum8 (byte value, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- if (responseHandler is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (responseHandler));
- BlockLiteral *block_ptr_responseHandler;
- BlockLiteral block_responseHandler;
- block_responseHandler = new BlockLiteral ();
- block_ptr_responseHandler = &block_responseHandler;
- block_responseHandler.SetupBlockUnsafe (Trampolines.SDChipResponseHandler.Handler, responseHandler);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_byte_IntPtr (this.Handle, Selector.GetHandle ("writeAttributeEnum8WithValue:responseHandler:"), value, (IntPtr) block_ptr_responseHandler);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_byte_IntPtr (this.SuperHandle, Selector.GetHandle ("writeAttributeEnum8WithValue:responseHandler:"), value, (IntPtr) block_ptr_responseHandler);
- }
- block_ptr_responseHandler->CleanupBlock ();
- #endif
- }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> WriteAttributeEnum8Async (byte value)
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- WriteAttributeEnum8(value, (error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- [Export ("writeAttributeInt16sWithValue:responseHandler:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void WriteAttributeInt16s (short value, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- if (responseHandler is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (responseHandler));
- BlockLiteral *block_ptr_responseHandler;
- BlockLiteral block_responseHandler;
- block_responseHandler = new BlockLiteral ();
- block_ptr_responseHandler = &block_responseHandler;
- block_responseHandler.SetupBlockUnsafe (Trampolines.SDChipResponseHandler.Handler, responseHandler);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_short_IntPtr (this.Handle, Selector.GetHandle ("writeAttributeInt16sWithValue:responseHandler:"), value, (IntPtr) block_ptr_responseHandler);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_short_IntPtr (this.SuperHandle, Selector.GetHandle ("writeAttributeInt16sWithValue:responseHandler:"), value, (IntPtr) block_ptr_responseHandler);
- }
- block_ptr_responseHandler->CleanupBlock ();
- #endif
- }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> WriteAttributeInt16sAsync (short value)
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- WriteAttributeInt16s(value, (error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- [Export ("writeAttributeInt16uWithValue:responseHandler:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void WriteAttributeInt16u (ushort value, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- if (responseHandler is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (responseHandler));
- BlockLiteral *block_ptr_responseHandler;
- BlockLiteral block_responseHandler;
- block_responseHandler = new BlockLiteral ();
- block_ptr_responseHandler = &block_responseHandler;
- block_responseHandler.SetupBlockUnsafe (Trampolines.SDChipResponseHandler.Handler, responseHandler);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_UInt16_IntPtr (this.Handle, Selector.GetHandle ("writeAttributeInt16uWithValue:responseHandler:"), value, (IntPtr) block_ptr_responseHandler);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_UInt16_IntPtr (this.SuperHandle, Selector.GetHandle ("writeAttributeInt16uWithValue:responseHandler:"), value, (IntPtr) block_ptr_responseHandler);
- }
- block_ptr_responseHandler->CleanupBlock ();
- #endif
- }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> WriteAttributeInt16uAsync (ushort value)
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- WriteAttributeInt16u(value, (error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- [Export ("writeAttributeInt32sWithValue:responseHandler:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void WriteAttributeInt32s (int value, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- if (responseHandler is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (responseHandler));
- BlockLiteral *block_ptr_responseHandler;
- BlockLiteral block_responseHandler;
- block_responseHandler = new BlockLiteral ();
- block_ptr_responseHandler = &block_responseHandler;
- block_responseHandler.SetupBlockUnsafe (Trampolines.SDChipResponseHandler.Handler, responseHandler);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_int_IntPtr (this.Handle, Selector.GetHandle ("writeAttributeInt32sWithValue:responseHandler:"), value, (IntPtr) block_ptr_responseHandler);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_int_IntPtr (this.SuperHandle, Selector.GetHandle ("writeAttributeInt32sWithValue:responseHandler:"), value, (IntPtr) block_ptr_responseHandler);
- }
- block_ptr_responseHandler->CleanupBlock ();
- #endif
- }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> WriteAttributeInt32sAsync (int value)
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- WriteAttributeInt32s(value, (error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- [Export ("writeAttributeInt32uWithValue:responseHandler:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void WriteAttributeInt32u (uint value, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- if (responseHandler is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (responseHandler));
- BlockLiteral *block_ptr_responseHandler;
- BlockLiteral block_responseHandler;
- block_responseHandler = new BlockLiteral ();
- block_ptr_responseHandler = &block_responseHandler;
- block_responseHandler.SetupBlockUnsafe (Trampolines.SDChipResponseHandler.Handler, responseHandler);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_UInt32_IntPtr (this.Handle, Selector.GetHandle ("writeAttributeInt32uWithValue:responseHandler:"), value, (IntPtr) block_ptr_responseHandler);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_UInt32_IntPtr (this.SuperHandle, Selector.GetHandle ("writeAttributeInt32uWithValue:responseHandler:"), value, (IntPtr) block_ptr_responseHandler);
- }
- block_ptr_responseHandler->CleanupBlock ();
- #endif
- }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> WriteAttributeInt32uAsync (uint value)
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- WriteAttributeInt32u(value, (error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- [Export ("writeAttributeInt64sWithValue:responseHandler:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void WriteAttributeInt64s (long value, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- if (responseHandler is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (responseHandler));
- BlockLiteral *block_ptr_responseHandler;
- BlockLiteral block_responseHandler;
- block_responseHandler = new BlockLiteral ();
- block_ptr_responseHandler = &block_responseHandler;
- block_responseHandler.SetupBlockUnsafe (Trampolines.SDChipResponseHandler.Handler, responseHandler);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_Int64_IntPtr (this.Handle, Selector.GetHandle ("writeAttributeInt64sWithValue:responseHandler:"), value, (IntPtr) block_ptr_responseHandler);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_Int64_IntPtr (this.SuperHandle, Selector.GetHandle ("writeAttributeInt64sWithValue:responseHandler:"), value, (IntPtr) block_ptr_responseHandler);
- }
- block_ptr_responseHandler->CleanupBlock ();
- #endif
- }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> WriteAttributeInt64sAsync (long value)
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- WriteAttributeInt64s(value, (error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- [Export ("writeAttributeInt64uWithValue:responseHandler:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void WriteAttributeInt64u (ulong value, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- if (responseHandler is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (responseHandler));
- BlockLiteral *block_ptr_responseHandler;
- BlockLiteral block_responseHandler;
- block_responseHandler = new BlockLiteral ();
- block_ptr_responseHandler = &block_responseHandler;
- block_responseHandler.SetupBlockUnsafe (Trampolines.SDChipResponseHandler.Handler, responseHandler);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_UInt64_IntPtr (this.Handle, Selector.GetHandle ("writeAttributeInt64uWithValue:responseHandler:"), value, (IntPtr) block_ptr_responseHandler);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_UInt64_IntPtr (this.SuperHandle, Selector.GetHandle ("writeAttributeInt64uWithValue:responseHandler:"), value, (IntPtr) block_ptr_responseHandler);
- }
- block_ptr_responseHandler->CleanupBlock ();
- #endif
- }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> WriteAttributeInt64uAsync (ulong value)
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- WriteAttributeInt64u(value, (error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- [Export ("writeAttributeInt8sWithValue:responseHandler:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void WriteAttributeInt8s (sbyte value, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- if (responseHandler is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (responseHandler));
- BlockLiteral *block_ptr_responseHandler;
- BlockLiteral block_responseHandler;
- block_responseHandler = new BlockLiteral ();
- block_ptr_responseHandler = &block_responseHandler;
- block_responseHandler.SetupBlockUnsafe (Trampolines.SDChipResponseHandler.Handler, responseHandler);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_SByte_IntPtr (this.Handle, Selector.GetHandle ("writeAttributeInt8sWithValue:responseHandler:"), value, (IntPtr) block_ptr_responseHandler);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_SByte_IntPtr (this.SuperHandle, Selector.GetHandle ("writeAttributeInt8sWithValue:responseHandler:"), value, (IntPtr) block_ptr_responseHandler);
- }
- block_ptr_responseHandler->CleanupBlock ();
- #endif
- }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> WriteAttributeInt8sAsync (sbyte value)
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- WriteAttributeInt8s(value, (error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- [Export ("writeAttributeInt8uWithValue:responseHandler:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void WriteAttributeInt8u (byte value, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- if (responseHandler is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (responseHandler));
- BlockLiteral *block_ptr_responseHandler;
- BlockLiteral block_responseHandler;
- block_responseHandler = new BlockLiteral ();
- block_ptr_responseHandler = &block_responseHandler;
- block_responseHandler.SetupBlockUnsafe (Trampolines.SDChipResponseHandler.Handler, responseHandler);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_byte_IntPtr (this.Handle, Selector.GetHandle ("writeAttributeInt8uWithValue:responseHandler:"), value, (IntPtr) block_ptr_responseHandler);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_byte_IntPtr (this.SuperHandle, Selector.GetHandle ("writeAttributeInt8uWithValue:responseHandler:"), value, (IntPtr) block_ptr_responseHandler);
- }
- block_ptr_responseHandler->CleanupBlock ();
- #endif
- }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> WriteAttributeInt8uAsync (byte value)
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- WriteAttributeInt8u(value, (error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- [Export ("writeAttributeLongCharStringWithValue:responseHandler:")]
- [Introduced (PlatformName.MacOSX, 12,1, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.WatchOS, 8,3, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.TvOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.iOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.MacCatalyst, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void WriteAttributeLongCharString (string value, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- if (value is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (value));
- if (responseHandler is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (responseHandler));
- var nsvalue = CFString.CreateNative (value);
- BlockLiteral *block_ptr_responseHandler;
- BlockLiteral block_responseHandler;
- block_responseHandler = new BlockLiteral ();
- block_ptr_responseHandler = &block_responseHandler;
- block_responseHandler.SetupBlockUnsafe (Trampolines.SDChipResponseHandler.Handler, responseHandler);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr (this.Handle, Selector.GetHandle ("writeAttributeLongCharStringWithValue:responseHandler:"), nsvalue, (IntPtr) block_ptr_responseHandler);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr_IntPtr (this.SuperHandle, Selector.GetHandle ("writeAttributeLongCharStringWithValue:responseHandler:"), nsvalue, (IntPtr) block_ptr_responseHandler);
- }
- CFString.ReleaseNative (nsvalue);
- block_ptr_responseHandler->CleanupBlock ();
- #endif
- }
- [Introduced (PlatformName.MacOSX, 12,1, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.WatchOS, 8,3, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.TvOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.iOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.MacCatalyst, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> WriteAttributeLongCharStringAsync (string value)
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- WriteAttributeLongCharString(value, (error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- [Export ("writeAttributeLongOctetStringWithValue:responseHandler:")]
- [Introduced (PlatformName.MacOSX, 12,1, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.WatchOS, 8,3, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.TvOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.iOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.MacCatalyst, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void WriteAttributeLongOctetString (NSData value, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- var value__handle__ = value!.GetNonNullHandle (nameof (value));
- if (responseHandler is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (responseHandler));
- BlockLiteral *block_ptr_responseHandler;
- BlockLiteral block_responseHandler;
- block_responseHandler = new BlockLiteral ();
- block_ptr_responseHandler = &block_responseHandler;
- block_responseHandler.SetupBlockUnsafe (Trampolines.SDChipResponseHandler.Handler, responseHandler);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr (this.Handle, Selector.GetHandle ("writeAttributeLongOctetStringWithValue:responseHandler:"), value__handle__, (IntPtr) block_ptr_responseHandler);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr_IntPtr (this.SuperHandle, Selector.GetHandle ("writeAttributeLongOctetStringWithValue:responseHandler:"), value__handle__, (IntPtr) block_ptr_responseHandler);
- }
- block_ptr_responseHandler->CleanupBlock ();
- #endif
- }
- [Introduced (PlatformName.MacOSX, 12,1, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.WatchOS, 8,3, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.TvOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.iOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.MacCatalyst, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> WriteAttributeLongOctetStringAsync (NSData value)
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- WriteAttributeLongOctetString(value, (error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- [Export ("writeAttributeOctetStringWithValue:responseHandler:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void WriteAttributeOctetString (NSData value, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- var value__handle__ = value!.GetNonNullHandle (nameof (value));
- if (responseHandler is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (responseHandler));
- BlockLiteral *block_ptr_responseHandler;
- BlockLiteral block_responseHandler;
- block_responseHandler = new BlockLiteral ();
- block_ptr_responseHandler = &block_responseHandler;
- block_responseHandler.SetupBlockUnsafe (Trampolines.SDChipResponseHandler.Handler, responseHandler);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr (this.Handle, Selector.GetHandle ("writeAttributeOctetStringWithValue:responseHandler:"), value__handle__, (IntPtr) block_ptr_responseHandler);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr_IntPtr (this.SuperHandle, Selector.GetHandle ("writeAttributeOctetStringWithValue:responseHandler:"), value__handle__, (IntPtr) block_ptr_responseHandler);
- }
- block_ptr_responseHandler->CleanupBlock ();
- #endif
- }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> WriteAttributeOctetStringAsync (NSData value)
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- WriteAttributeOctetString(value, (error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- [Export ("writeAttributeUnsupportedWithValue:responseHandler:")]
- [Introduced (PlatformName.MacOSX, 12,1, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.WatchOS, 8,3, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.TvOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.iOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.MacCatalyst, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void WriteAttributeUnsupported (bool boolValue, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- if (responseHandler is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (responseHandler));
- BlockLiteral *block_ptr_responseHandler;
- BlockLiteral block_responseHandler;
- block_responseHandler = new BlockLiteral ();
- block_ptr_responseHandler = &block_responseHandler;
- block_responseHandler.SetupBlockUnsafe (Trampolines.SDChipResponseHandler.Handler, responseHandler);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_bool_IntPtr (this.Handle, Selector.GetHandle ("writeAttributeUnsupportedWithValue:responseHandler:"), boolValue, (IntPtr) block_ptr_responseHandler);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_bool_IntPtr (this.SuperHandle, Selector.GetHandle ("writeAttributeUnsupportedWithValue:responseHandler:"), boolValue, (IntPtr) block_ptr_responseHandler);
- }
- block_ptr_responseHandler->CleanupBlock ();
- #endif
- }
- [Introduced (PlatformName.MacOSX, 12,1, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.WatchOS, 8,3, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.TvOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.iOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.MacCatalyst, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> WriteAttributeUnsupportedAsync (bool boolValue)
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- WriteAttributeUnsupported(boolValue, (error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- } /* class ChipTestCluster */
- //
- // Async result classes
- //
-}
diff --git a/old/ios/native/HomeKit/HMAccessorySetupManager.g.cs b/old/ios/native/HomeKit/HMAccessorySetupManager.g.cs
deleted file mode 100644
index 3f30ff9..0000000
--- a/old/ios/native/HomeKit/HMAccessorySetupManager.g.cs
+++ /dev/null
@@ -1,207 +0,0 @@
-//
-// 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.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 HomeKit {
- [Register("HMAccessorySetupManager", true)]
- [Introduced (PlatformName.iOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Unavailable (PlatformName.WatchOS, ObjCRuntime.PlatformArchitecture.All)]
- [Unavailable (PlatformName.TvOS, ObjCRuntime.PlatformArchitecture.All)]
- [Unavailable (PlatformName.MacCatalyst, ObjCRuntime.PlatformArchitecture.All)]
- public unsafe partial class HMAccessorySetupManager : NSObject {
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- #if ARCH_32
- #pragma warning disable 649
- static readonly IntPtr class_ptr;
- #pragma warning restore 649
- #else
- static readonly IntPtr class_ptr = Class.GetHandle ("HMAccessorySetupManager");
- #endif
- public override IntPtr ClassHandle { get { return class_ptr; } }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- [EditorBrowsable (EditorBrowsableState.Advanced)]
- [Export ("init")]
- public HMAccessorySetupManager () : 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)]
- [EditorBrowsable (EditorBrowsableState.Advanced)]
- protected HMAccessorySetupManager (NSObjectFlag t) : base (t)
- {
- }
-
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- [EditorBrowsable (EditorBrowsableState.Advanced)]
- protected internal HMAccessorySetupManager (IntPtr handle) : base (handle)
- {
- }
-
- [Export ("addAndSetUpAccessoriesForTopology:completionHandler:")]
- [Deprecated (PlatformName.iOS, 15,4, message: "Use 'PerformAccessorySetup' instead.")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void AddAndSetUpAccessories (HMMatterTopology topology, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity1V0))]global::System.Action<NSError> completion)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- var topology__handle__ = topology!.GetNonNullHandle (nameof (topology));
- if (completion is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (completion));
- BlockLiteral *block_ptr_completion;
- BlockLiteral block_completion;
- block_completion = new BlockLiteral ();
- block_ptr_completion = &block_completion;
- block_completion.SetupBlockUnsafe (Trampolines.SDActionArity1V0.Handler, completion);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr (this.Handle, Selector.GetHandle ("addAndSetUpAccessoriesForTopology:completionHandler:"), topology__handle__, (IntPtr) block_ptr_completion);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr_IntPtr (this.SuperHandle, Selector.GetHandle ("addAndSetUpAccessoriesForTopology:completionHandler:"), topology__handle__, (IntPtr) block_ptr_completion);
- }
- block_ptr_completion->CleanupBlock ();
- #endif
- }
- [Deprecated (PlatformName.iOS, 15,4, message: "Use 'PerformAccessorySetup' instead.")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task AddAndSetUpAccessoriesAsync (HMMatterTopology topology)
- {
- var tcs = new TaskCompletionSource<bool> ();
- AddAndSetUpAccessories(topology, (obj_) => {
- if (obj_ != null)
- tcs.SetException (new NSErrorException(obj_));
- else
- tcs.SetResult (true);
- });
- return tcs.Task;
- }
- [Export ("performAccessorySetupUsingRequest:completionHandler:")]
- [Introduced (PlatformName.iOS, 15,4, ObjCRuntime.PlatformArchitecture.All)]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void PerformAccessorySetup (HMAccessorySetupRequest request, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V95))]global::System.Action<HMAccessorySetupResult, NSError> completion)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- var request__handle__ = request!.GetNonNullHandle (nameof (request));
- if (completion is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (completion));
- BlockLiteral *block_ptr_completion;
- BlockLiteral block_completion;
- block_completion = new BlockLiteral ();
- block_ptr_completion = &block_completion;
- block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V95.Handler, completion);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr (this.Handle, Selector.GetHandle ("performAccessorySetupUsingRequest:completionHandler:"), request__handle__, (IntPtr) block_ptr_completion);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr_IntPtr (this.SuperHandle, Selector.GetHandle ("performAccessorySetupUsingRequest:completionHandler:"), request__handle__, (IntPtr) block_ptr_completion);
- }
- block_ptr_completion->CleanupBlock ();
- #endif
- }
- [Introduced (PlatformName.iOS, 15,4, ObjCRuntime.PlatformArchitecture.All)]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<HMAccessorySetupResult> PerformAccessorySetupAsync (HMAccessorySetupRequest request)
- {
- var tcs = new TaskCompletionSource<HMAccessorySetupResult> ();
- PerformAccessorySetup(request, (arg1_, arg2_) => {
- if (arg2_ != null)
- tcs.SetException (new NSErrorException(arg2_));
- else
- tcs.SetResult (arg1_!);
- });
- return tcs.Task;
- }
- [Export ("performMatterEcosystemAccessorySetupUsingRequest:topology:completionHandler:")]
- [Introduced (PlatformName.iOS, 15,4, ObjCRuntime.PlatformArchitecture.All)]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void PerformMatterEcosystemAccessorySetup (HMAccessorySetupRequest request, HMMatterTopology topology, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity1V0))]global::System.Action<NSError> completion)
- {
- #if ARCH_32
- throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
- #else
- var request__handle__ = request!.GetNonNullHandle (nameof (request));
- var topology__handle__ = topology!.GetNonNullHandle (nameof (topology));
- if (completion is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (completion));
- BlockLiteral *block_ptr_completion;
- BlockLiteral block_completion;
- block_completion = new BlockLiteral ();
- block_ptr_completion = &block_completion;
- block_completion.SetupBlockUnsafe (Trampolines.SDActionArity1V0.Handler, completion);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr_IntPtr (this.Handle, Selector.GetHandle ("performMatterEcosystemAccessorySetupUsingRequest:topology:completionHandler:"), request__handle__, topology__handle__, (IntPtr) block_ptr_completion);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr_IntPtr_IntPtr (this.SuperHandle, Selector.GetHandle ("performMatterEcosystemAccessorySetupUsingRequest:topology:completionHandler:"), request__handle__, topology__handle__, (IntPtr) block_ptr_completion);
- }
- block_ptr_completion->CleanupBlock ();
- #endif
- }
- [Introduced (PlatformName.iOS, 15,4, ObjCRuntime.PlatformArchitecture.All)]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task PerformMatterEcosystemAccessorySetupAsync (HMAccessorySetupRequest request, HMMatterTopology topology)
- {
- var tcs = new TaskCompletionSource<bool> ();
- PerformMatterEcosystemAccessorySetup(request, topology, (obj_) => {
- if (obj_ != null)
- tcs.SetException (new NSErrorException(obj_));
- else
- tcs.SetResult (true);
- });
- return tcs.Task;
- }
- } /* class HMAccessorySetupManager */
-}
diff --git a/old/ios/native/HomeKit/HMHome.g.cs b/new/ios/native/HomeKit/HMHome.g.cs
index 7388a35..b207c40 100644
--- a/old/ios/native/HomeKit/HMHome.g.cs
+++ b/new/ios/native/HomeKit/HMHome.g.cs
@@ -107,7 +107,7 @@ namespace HomeKit {
[Unavailable (PlatformName.TvOS, ObjCRuntime.PlatformArchitecture.All)]
[Unavailable (PlatformName.WatchOS, ObjCRuntime.PlatformArchitecture.All)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void AddActionSet (string actionSetName, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V96))]global::System.Action<HMActionSet, NSError> completion)
+ public unsafe virtual void AddActionSet (string actionSetName, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V95))]global::System.Action<HMActionSet, NSError> completion)
{
if (actionSetName is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (actionSetName));
@@ -118,7 +118,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.SDActionArity2V95.Handler, completion);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr (this.Handle, Selector.GetHandle ("addActionSetWithName:completionHandler:"), nsactionSetName, (IntPtr) block_ptr_completion);
} else {
@@ -188,7 +188,7 @@ namespace HomeKit {
[Introduced (PlatformName.iOS, 11,3, ObjCRuntime.PlatformArchitecture.All)]
[Unavailable (PlatformName.MacCatalyst, ObjCRuntime.PlatformArchitecture.All)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void AddAndSetupAccessories (HMAccessorySetupPayload payload, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V97))]global::System.Action<HMAccessory[], NSError> completion)
+ public unsafe virtual void AddAndSetupAccessories (HMAccessorySetupPayload payload, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V96))]global::System.Action<HMAccessory[], NSError> completion)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -200,7 +200,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.SDActionArity2V96.Handler, completion);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr (this.Handle, Selector.GetHandle ("addAndSetupAccessoriesWithPayload:completionHandler:"), payload__handle__, (IntPtr) block_ptr_completion);
} else {
@@ -230,7 +230,7 @@ namespace HomeKit {
[Unavailable (PlatformName.TvOS, ObjCRuntime.PlatformArchitecture.All)]
[Unavailable (PlatformName.WatchOS, ObjCRuntime.PlatformArchitecture.All)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void AddRoom (string roomName, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V98))]global::System.Action<HMRoom, NSError> completion)
+ public unsafe virtual void AddRoom (string roomName, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V97))]global::System.Action<HMRoom, NSError> completion)
{
if (roomName is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (roomName));
@@ -241,7 +241,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.SDActionArity2V97.Handler, completion);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr (this.Handle, Selector.GetHandle ("addRoomWithName:completionHandler:"), nsroomName, (IntPtr) block_ptr_completion);
} else {
@@ -268,7 +268,7 @@ namespace HomeKit {
[Unavailable (PlatformName.TvOS, ObjCRuntime.PlatformArchitecture.All)]
[Unavailable (PlatformName.WatchOS, ObjCRuntime.PlatformArchitecture.All)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void AddServiceGroup (string serviceGroupName, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V99))]global::System.Action<HMServiceGroup, NSError> completion)
+ public unsafe virtual void AddServiceGroup (string serviceGroupName, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V98))]global::System.Action<HMServiceGroup, NSError> completion)
{
if (serviceGroupName is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (serviceGroupName));
@@ -279,7 +279,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.SDActionArity2V98.Handler, completion);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr (this.Handle, Selector.GetHandle ("addServiceGroupWithName:completionHandler:"), nsserviceGroupName, (IntPtr) block_ptr_completion);
} else {
@@ -342,7 +342,7 @@ namespace HomeKit {
[Unavailable (PlatformName.WatchOS, ObjCRuntime.PlatformArchitecture.All)]
[Deprecated (PlatformName.iOS, 9,0, message: "Use 'ManageUsers' instead.")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void AddUser ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V100))]global::System.Action<HMUser, NSError> completion)
+ public unsafe virtual void AddUser ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V99))]global::System.Action<HMUser, NSError> completion)
{
if (completion is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (completion));
@@ -350,7 +350,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.SDActionArity2V99.Handler, completion);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("addUserWithCompletionHandler:"), (IntPtr) block_ptr_completion);
} else {
@@ -377,7 +377,7 @@ namespace HomeKit {
[Unavailable (PlatformName.TvOS, ObjCRuntime.PlatformArchitecture.All)]
[Unavailable (PlatformName.WatchOS, ObjCRuntime.PlatformArchitecture.All)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void AddZone (string zoneName, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V101))]global::System.Action<HMZone, NSError> completion)
+ public unsafe virtual void AddZone (string zoneName, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V100))]global::System.Action<HMZone, NSError> completion)
{
if (zoneName is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (zoneName));
@@ -388,7 +388,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.SDActionArity2V100.Handler, completion);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr (this.Handle, Selector.GetHandle ("addZoneWithName:completionHandler:"), nszoneName, (IntPtr) block_ptr_completion);
} else {
diff --git a/old/ios/native/HomeKit/HMHomeManager.g.cs b/new/ios/native/HomeKit/HMHomeManager.g.cs
index 7a96c02..8c38471 100644
--- a/old/ios/native/HomeKit/HMHomeManager.g.cs
+++ b/new/ios/native/HomeKit/HMHomeManager.g.cs
@@ -84,7 +84,7 @@ namespace HomeKit {
[Unavailable (PlatformName.TvOS, ObjCRuntime.PlatformArchitecture.All)]
[Unavailable (PlatformName.WatchOS, ObjCRuntime.PlatformArchitecture.All)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void AddHome (string homeName, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V102))]global::System.Action<HMHome, NSError> completion)
+ public unsafe virtual void AddHome (string homeName, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V101))]global::System.Action<HMHome, NSError> completion)
{
if (homeName is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (homeName));
@@ -95,7 +95,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.SDActionArity2V101.Handler, completion);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr (this.Handle, Selector.GetHandle ("addHomeWithName:completionHandler:"), nshomeName, (IntPtr) block_ptr_completion);
} else {
diff --git a/old/ios/native/IdentityLookup/ILMessageFilterExtensionContext.g.cs b/new/ios/native/IdentityLookup/ILMessageFilterExtensionContext.g.cs
index f30b48f..4d5ebb6 100644
--- a/old/ios/native/IdentityLookup/ILMessageFilterExtensionContext.g.cs
+++ b/new/ios/native/IdentityLookup/ILMessageFilterExtensionContext.g.cs
@@ -77,7 +77,7 @@ namespace IdentityLookup {
[Export ("deferQueryRequestToNetworkWithCompletion:")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void DeferQueryRequestToNetwork ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V103))]global::System.Action<ILNetworkResponse, NSError> completion)
+ public unsafe virtual void DeferQueryRequestToNetwork ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V102))]global::System.Action<ILNetworkResponse, NSError> completion)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -88,7 +88,7 @@ namespace IdentityLookup {
BlockLiteral block_completion;
block_completion = new BlockLiteral ();
block_ptr_completion = &block_completion;
- block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V103.Handler, completion);
+ block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V102.Handler, completion);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("deferQueryRequestToNetworkWithCompletion:"), (IntPtr) block_ptr_completion);
} else {
diff --git a/old/ios/native/Intents/INVoiceShortcutCenter.g.cs b/new/ios/native/Intents/INVoiceShortcutCenter.g.cs
index 43b3363..bf2c597 100644
--- a/old/ios/native/Intents/INVoiceShortcutCenter.g.cs
+++ b/new/ios/native/Intents/INVoiceShortcutCenter.g.cs
@@ -111,7 +111,7 @@ namespace Intents {
}
[Export ("getVoiceShortcutWithIdentifier:completion:")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void GetVoiceShortcut (NSUuid identifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V104))]global::System.Action<INVoiceShortcut, NSError> completionHandler)
+ public unsafe virtual void GetVoiceShortcut (NSUuid identifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V103))]global::System.Action<INVoiceShortcut, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -123,7 +123,7 @@ namespace Intents {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V104.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V103.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr (this.Handle, Selector.GetHandle ("getVoiceShortcutWithIdentifier:completion:"), identifier__handle__, (IntPtr) block_ptr_completionHandler);
} else {
diff --git a/old/ios/native/LinkPresentation/LPMetadataProvider.g.cs b/new/ios/native/LinkPresentation/LPMetadataProvider.g.cs
index 7ac6bb9..45b922b 100644
--- a/old/ios/native/LinkPresentation/LPMetadataProvider.g.cs
+++ b/new/ios/native/LinkPresentation/LPMetadataProvider.g.cs
@@ -106,7 +106,7 @@ namespace LinkPresentation {
}
[Export ("startFetchingMetadataForURL:completionHandler:")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void StartFetchingMetadata (NSUrl url, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V105))]global::System.Action<LPLinkMetadata, NSError> completionHandler)
+ public unsafe virtual void StartFetchingMetadata (NSUrl url, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V104))]global::System.Action<LPLinkMetadata, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -118,7 +118,7 @@ namespace LinkPresentation {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V105.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V104.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr (this.Handle, Selector.GetHandle ("startFetchingMetadataForURL:completionHandler:"), url__handle__, (IntPtr) block_ptr_completionHandler);
} else {
@@ -144,7 +144,7 @@ namespace LinkPresentation {
[Introduced (PlatformName.iOS, 15,0, ObjCRuntime.PlatformArchitecture.All)]
[Introduced (PlatformName.MacCatalyst, 15,0, ObjCRuntime.PlatformArchitecture.All)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void StartFetchingMetadata (NSUrlRequest request, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V105))]global::System.Action<LPLinkMetadata, NSError> completionHandler)
+ public unsafe virtual void StartFetchingMetadata (NSUrlRequest request, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V104))]global::System.Action<LPLinkMetadata, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -156,7 +156,7 @@ namespace LinkPresentation {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V105.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V104.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr (this.Handle, Selector.GetHandle ("startFetchingMetadataForRequest:completionHandler:"), request__handle__, (IntPtr) block_ptr_completionHandler);
} else {
diff --git a/old/ios/native/MediaPlayer/MPMediaLibrary.g.cs b/new/ios/native/MediaPlayer/MPMediaLibrary.g.cs
index f9aeb29..777b222 100644
--- a/old/ios/native/MediaPlayer/MPMediaLibrary.g.cs
+++ b/new/ios/native/MediaPlayer/MPMediaLibrary.g.cs
@@ -96,7 +96,7 @@ namespace MediaPlayer {
[Export ("addItemWithProductID:completionHandler:")]
[Introduced (PlatformName.iOS, 9,3, ObjCRuntime.PlatformArchitecture.All)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void AddItem (string productID, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V106))]global::System.Action<MPMediaEntity[], NSError>? completionHandler)
+ public unsafe virtual void AddItem (string productID, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V105))]global::System.Action<MPMediaEntity[], NSError>? completionHandler)
{
if (productID is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (productID));
@@ -108,7 +108,7 @@ namespace MediaPlayer {
} else {
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V106.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V105.Handler, completionHandler);
}
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr (this.Handle, Selector.GetHandle ("addItemWithProductID:completionHandler:"), nsproductID, (IntPtr) block_ptr_completionHandler);
@@ -166,7 +166,7 @@ namespace MediaPlayer {
[Export ("getPlaylistWithUUID:creationMetadata:completionHandler:")]
[Introduced (PlatformName.iOS, 9,3, ObjCRuntime.PlatformArchitecture.All)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void GetPlaylist (NSUuid uuid, MPMediaPlaylistCreationMetadata? creationMetadata, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V107))]global::System.Action<MPMediaPlaylist, NSError> completionHandler)
+ public unsafe virtual void GetPlaylist (NSUuid uuid, MPMediaPlaylistCreationMetadata? creationMetadata, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V106))]global::System.Action<MPMediaPlaylist, NSError> completionHandler)
{
var uuid__handle__ = uuid!.GetNonNullHandle (nameof (uuid));
var creationMetadata__handle__ = creationMetadata.GetHandle ();
@@ -176,7 +176,7 @@ namespace MediaPlayer {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V107.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V106.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr_IntPtr (this.Handle, Selector.GetHandle ("getPlaylistWithUUID:creationMetadata:completionHandler:"), uuid__handle__, creationMetadata__handle__, (IntPtr) block_ptr_completionHandler);
} else {
diff --git a/old/ios/native/MediaPlayer/MPMusicPlayerApplicationController.g.cs b/new/ios/native/MediaPlayer/MPMusicPlayerApplicationController.g.cs
index b4fcd2e..08083e0 100644
--- a/old/ios/native/MediaPlayer/MPMusicPlayerApplicationController.g.cs
+++ b/new/ios/native/MediaPlayer/MPMusicPlayerApplicationController.g.cs
@@ -83,7 +83,7 @@ namespace MediaPlayer {
[Export ("performQueueTransaction:completionHandler:")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void Perform ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity1V202))]global::System.Action<MPMusicPlayerControllerMutableQueue> queueTransaction, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V108))]global::System.Action<MPMusicPlayerControllerQueue, NSError> completionHandler)
+ public unsafe virtual void Perform ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity1V202))]global::System.Action<MPMusicPlayerControllerMutableQueue> queueTransaction, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V107))]global::System.Action<MPMusicPlayerControllerQueue, NSError> completionHandler)
{
if (queueTransaction is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (queueTransaction));
@@ -98,7 +98,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.SDActionArity2V107.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr (this.Handle, Selector.GetHandle ("performQueueTransaction:completionHandler:"), (IntPtr) block_ptr_queueTransaction, (IntPtr) block_ptr_completionHandler);
} else {
diff --git a/old/ios/native/MediaPlayer/MPPlayableContentDataSource.g.cs b/new/ios/native/MediaPlayer/MPPlayableContentDataSource.g.cs
index 09a868b..dfa3488 100644
--- a/old/ios/native/MediaPlayer/MPPlayableContentDataSource.g.cs
+++ b/new/ios/native/MediaPlayer/MPPlayableContentDataSource.g.cs
@@ -57,7 +57,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 (nint), 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.NIDActionArity2V109) })]
+ [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.NIDActionArity2V108) })]
public partial interface IMPPlayableContentDataSource : INativeObject, IDisposable
{
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -93,7 +93,7 @@ namespace MediaPlayer {
[Introduced (PlatformName.iOS, 10,0, ObjCRuntime.PlatformArchitecture.All)]
[Deprecated (PlatformName.iOS, 14,0, message: "Use 'CarPlay' API instead.")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static void GetContentItem (this IMPPlayableContentDataSource This, string identifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V109))]global::System.Action<MPContentItem, NSError> completionHandler)
+ public unsafe static void GetContentItem (this IMPPlayableContentDataSource This, string identifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V108))]global::System.Action<MPContentItem, NSError> completionHandler)
{
if (identifier is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (identifier));
@@ -104,7 +104,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.SDActionArity2V108.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr (This.Handle, Selector.GetHandle ("contentItemForIdentifier:completionHandler:"), nsidentifier, (IntPtr) block_ptr_completionHandler);
CFString.ReleaseNative (nsidentifier);
block_ptr_completionHandler->CleanupBlock ();
@@ -197,7 +197,7 @@ namespace MediaPlayer {
[Introduced (PlatformName.iOS, 10,0, ObjCRuntime.PlatformArchitecture.All)]
[Deprecated (PlatformName.iOS, 14,0, message: "Use 'CarPlay' API instead.")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void GetContentItem (string identifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V109))]global::System.Action<MPContentItem, NSError> completionHandler)
+ public unsafe virtual void GetContentItem (string identifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V108))]global::System.Action<MPContentItem, NSError> completionHandler)
{
throw new You_Should_Not_Call_base_In_This_Method ();
}
diff --git a/old/ios/native/Metal/MTLDevice.g.cs b/new/ios/native/Metal/MTLDevice.g.cs
index 3c06c66..d2b8ede 100644
--- a/old/ios/native/Metal/MTLDevice.g.cs
+++ b/new/ios/native/Metal/MTLDevice.g.cs
@@ -69,14 +69,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 (NSObject), 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.NIDActionArity2V110) })]
+ [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.NIDActionArity2V109) })]
[ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "CreateLibrary", 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.NIDActionArity2V111) })]
+ [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.NIDActionArity2V110) })]
[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.NIDActionArity2V112) })]
+ [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.NIDActionArity2V111) })]
[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 = false, 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 })]
@@ -112,7 +112,7 @@ namespace Metal {
[ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "CreateAccelerationStructure", Selector = "newAccelerationStructureWithSize:", ReturnType = typeof (IMTLAccelerationStructure), ParameterType = new Type [] { typeof (nuint) }, ParameterByRef = new bool [] { false })]
[ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "CreateAccelerationStructure", Selector = "newAccelerationStructureWithDescriptor:", ReturnType = typeof (IMTLAccelerationStructure), ParameterType = new Type [] { typeof (MTLAccelerationStructureDescriptor) }, ParameterByRef = new bool [] { false })]
[ProtocolMember (IsRequired = false, 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 = false, 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.NIDActionArity2V110) })]
+ [ProtocolMember (IsRequired = false, 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.NIDActionArity2V109) })]
[ProtocolMember (IsRequired = true, IsProperty = true, IsStatic = false, Name = "Name", Selector = "name", PropertyType = typeof (string), GetterSelector = "name", ArgumentSemantic = ArgumentSemantic.None)]
[ProtocolMember (IsRequired = false, IsProperty = true, IsStatic = false, Name = "MaxThreadsPerThreadgroup", Selector = "maxThreadsPerThreadgroup", PropertyType = typeof (MTLSize), GetterSelector = "maxThreadsPerThreadgroup", ArgumentSemantic = ArgumentSemantic.None)]
[ProtocolMember (IsRequired = false, IsProperty = true, IsStatic = false, Name = "ReadWriteTextureSupport", Selector = "readWriteTextureSupport", PropertyType = typeof (MTLReadWriteTextureTier), GetterSelector = "readWriteTextureSupport", ArgumentSemantic = ArgumentSemantic.None)]
@@ -207,7 +207,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.NIDActionArity2V110))]global::System.Action<IMTLLibrary, NSError> completionHandler);
+ unsafe void CreateLibrary (string source, MTLCompileOptions options, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V109))]global::System.Action<IMTLLibrary, NSError> completionHandler);
[return: ReleaseAttribute ()]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
[Export ("newRenderPipelineStateWithDescriptor:error:")]
@@ -216,7 +216,7 @@ namespace Metal {
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
[Export ("newRenderPipelineStateWithDescriptor:completionHandler:")]
[Preserve (Conditional = true)]
- unsafe void CreateRenderPipelineState (MTLRenderPipelineDescriptor descriptor, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V111))]global::System.Action<IMTLRenderPipelineState, NSError> completionHandler);
+ unsafe void CreateRenderPipelineState (MTLRenderPipelineDescriptor descriptor, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V110))]global::System.Action<IMTLRenderPipelineState, NSError> completionHandler);
[return: ReleaseAttribute ()]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
[Export ("newRenderPipelineStateWithDescriptor:options:reflection:error:")]
@@ -234,7 +234,7 @@ namespace Metal {
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
[Export ("newComputePipelineStateWithFunction:completionHandler:")]
[Preserve (Conditional = true)]
- unsafe void CreateComputePipelineState (IMTLFunction computeFunction, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V112))]global::System.Action<IMTLComputePipelineState, NSError> completionHandler);
+ unsafe void CreateComputePipelineState (IMTLFunction computeFunction, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V111))]global::System.Action<IMTLComputePipelineState, NSError> completionHandler);
[return: ReleaseAttribute ()]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
[Export ("newComputePipelineStateWithFunction:error:")]
@@ -928,7 +928,7 @@ namespace Metal {
[Introduced (PlatformName.MacCatalyst, 15,0, ObjCRuntime.PlatformArchitecture.All)]
[Introduced (PlatformName.TvOS, 15,0, ObjCRuntime.PlatformArchitecture.All)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static void CreateLibrary (this IMTLDevice This, MTLStitchedLibraryDescriptor descriptor, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V110))]global::System.Action<IMTLLibrary, NSError> completionHandler)
+ public unsafe static void CreateLibrary (this IMTLDevice This, MTLStitchedLibraryDescriptor descriptor, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V109))]global::System.Action<IMTLLibrary, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -940,7 +940,7 @@ namespace Metal {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V110.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V109.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr (This.Handle, Selector.GetHandle ("newLibraryWithStitchedDescriptor:completionHandler:"), descriptor__handle__, (IntPtr) block_ptr_completionHandler);
block_ptr_completionHandler->CleanupBlock ();
#endif
@@ -1285,7 +1285,7 @@ namespace Metal {
}
[Export ("newLibraryWithSource:options:completionHandler:")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe void CreateLibrary (string source, MTLCompileOptions options, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V110))]global::System.Action<IMTLLibrary, NSError> completionHandler)
+ public unsafe void CreateLibrary (string source, MTLCompileOptions options, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V109))]global::System.Action<IMTLLibrary, NSError> completionHandler)
{
if (source is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (source));
@@ -1297,7 +1297,7 @@ namespace Metal {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V110.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V109.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr_IntPtr (this.Handle, Selector.GetHandle ("newLibraryWithSource:options:completionHandler:"), nssource, options__handle__, (IntPtr) block_ptr_completionHandler);
CFString.ReleaseNative (nssource);
block_ptr_completionHandler->CleanupBlock ();
@@ -1318,7 +1318,7 @@ namespace Metal {
}
[Export ("newRenderPipelineStateWithDescriptor:completionHandler:")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe void CreateRenderPipelineState (MTLRenderPipelineDescriptor descriptor, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V111))]global::System.Action<IMTLRenderPipelineState, NSError> completionHandler)
+ public unsafe void CreateRenderPipelineState (MTLRenderPipelineDescriptor descriptor, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V110))]global::System.Action<IMTLRenderPipelineState, NSError> completionHandler)
{
var descriptor__handle__ = descriptor!.GetNonNullHandle (nameof (descriptor));
if (completionHandler is null)
@@ -1327,7 +1327,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.SDActionArity2V110.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr (this.Handle, Selector.GetHandle ("newRenderPipelineStateWithDescriptor:completionHandler:"), descriptor__handle__, (IntPtr) block_ptr_completionHandler);
block_ptr_completionHandler->CleanupBlock ();
}
@@ -1380,7 +1380,7 @@ namespace Metal {
}
[Export ("newComputePipelineStateWithFunction:completionHandler:")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe void CreateComputePipelineState (IMTLFunction computeFunction, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V112))]global::System.Action<IMTLComputePipelineState, NSError> completionHandler)
+ public unsafe void CreateComputePipelineState (IMTLFunction computeFunction, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V111))]global::System.Action<IMTLComputePipelineState, NSError> completionHandler)
{
var computeFunction__handle__ = computeFunction!.GetNonNullHandle (nameof (computeFunction));
if (completionHandler is null)
@@ -1389,7 +1389,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.SDActionArity2V111.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr (this.Handle, Selector.GetHandle ("newComputePipelineStateWithFunction:completionHandler:"), computeFunction__handle__, (IntPtr) block_ptr_completionHandler);
block_ptr_completionHandler->CleanupBlock ();
}
diff --git a/old/ios/native/Metal/MTLLibrary.g.cs b/new/ios/native/Metal/MTLLibrary.g.cs
index 7b4c360..5cb6991 100644
--- a/old/ios/native/Metal/MTLLibrary.g.cs
+++ b/new/ios/native/Metal/MTLLibrary.g.cs
@@ -53,10 +53,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 = false, 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 = false, 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.NIDActionArity2V113) })]
- [ProtocolMember (IsRequired = false, 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.NIDActionArity2V113) })]
+ [ProtocolMember (IsRequired = false, 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.NIDActionArity2V112) })]
+ [ProtocolMember (IsRequired = false, 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.NIDActionArity2V112) })]
[ProtocolMember (IsRequired = false, 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 = false, 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.NIDActionArity2V113) })]
+ [ProtocolMember (IsRequired = false, 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.NIDActionArity2V112) })]
[ProtocolMember (IsRequired = false, 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)]
@@ -115,7 +115,7 @@ namespace Metal {
[Unavailable (PlatformName.WatchOS, ObjCRuntime.PlatformArchitecture.All)]
[Introduced (PlatformName.MacOSX, 10,12, ObjCRuntime.PlatformArchitecture.All)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static void CreateFunction (this IMTLLibrary This, string name, MTLFunctionConstantValues constantValues, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V113))]global::System.Action<IMTLFunction, NSError> completionHandler)
+ public unsafe static void CreateFunction (this IMTLLibrary This, string name, MTLFunctionConstantValues constantValues, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V112))]global::System.Action<IMTLFunction, NSError> completionHandler)
{
if (name is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (name));
@@ -127,7 +127,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.SDActionArity2V112.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr_IntPtr (This.Handle, Selector.GetHandle ("newFunctionWithName:constantValues:completionHandler:"), nsname, constantValues__handle__, (IntPtr) block_ptr_completionHandler);
CFString.ReleaseNative (nsname);
block_ptr_completionHandler->CleanupBlock ();
@@ -152,7 +152,7 @@ namespace Metal {
[Introduced (PlatformName.iOS, 14,0, ObjCRuntime.PlatformArchitecture.All)]
[Introduced (PlatformName.TvOS, 14,0, ObjCRuntime.PlatformArchitecture.All)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static void CreateFunction (this IMTLLibrary This, MTLFunctionDescriptor descriptor, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V113))]global::System.Action<IMTLFunction, NSError> completionHandler)
+ public unsafe static void CreateFunction (this IMTLLibrary This, MTLFunctionDescriptor descriptor, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V112))]global::System.Action<IMTLFunction, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -164,7 +164,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.SDActionArity2V112.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr (This.Handle, Selector.GetHandle ("newFunctionWithDescriptor:completionHandler:"), descriptor__handle__, (IntPtr) block_ptr_completionHandler);
block_ptr_completionHandler->CleanupBlock ();
#endif
@@ -193,7 +193,7 @@ namespace Metal {
[Introduced (PlatformName.iOS, 14,0, ObjCRuntime.PlatformArchitecture.All)]
[Unavailable (PlatformName.TvOS, ObjCRuntime.PlatformArchitecture.All)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static void CreateIntersectionFunction (this IMTLLibrary This, MTLIntersectionFunctionDescriptor descriptor, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V113))]global::System.Action<IMTLFunction, NSError> completionHandler)
+ public unsafe static void CreateIntersectionFunction (this IMTLLibrary This, MTLIntersectionFunctionDescriptor descriptor, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V112))]global::System.Action<IMTLFunction, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -205,7 +205,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.SDActionArity2V112.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr (This.Handle, Selector.GetHandle ("newIntersectionFunctionWithDescriptor:completionHandler:"), descriptor__handle__, (IntPtr) block_ptr_completionHandler);
block_ptr_completionHandler->CleanupBlock ();
#endif
diff --git a/old/ios/native/MetalPerformanceShaders/MPSNNGraph.g.cs b/new/ios/native/MetalPerformanceShaders/MPSNNGraph.g.cs
index 40e93aa..b65dcac 100644
--- a/old/ios/native/MetalPerformanceShaders/MPSNNGraph.g.cs
+++ b/new/ios/native/MetalPerformanceShaders/MPSNNGraph.g.cs
@@ -314,7 +314,7 @@ namespace MetalPerformanceShaders {
}
[Export ("executeAsyncWithSourceImages:completionHandler:")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual MPSImage Execute (MPSImage[] sourceImages, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V114))]global::System.Action<MPSImage, NSError> handler)
+ public unsafe virtual MPSImage Execute (MPSImage[] sourceImages, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V113))]global::System.Action<MPSImage, NSError> handler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -328,7 +328,7 @@ namespace MetalPerformanceShaders {
BlockLiteral block_handler;
block_handler = new BlockLiteral ();
block_ptr_handler = &block_handler;
- block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V114.Handler, handler);
+ block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V113.Handler, handler);
MPSImage? ret;
if (IsDirectBinding) {
ret = Runtime.GetNSObject<MPSImage> (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend_IntPtr_IntPtr (this.Handle, Selector.GetHandle ("executeAsyncWithSourceImages:completionHandler:"), nsa_sourceImages.Handle, (IntPtr) block_ptr_handler))!;
diff --git a/old/ios/native/NaturalLanguage/NLTagger.g.cs b/new/ios/native/NaturalLanguage/NLTagger.g.cs
index 7a79a6f..52cd960 100644
--- a/old/ios/native/NaturalLanguage/NLTagger.g.cs
+++ b/new/ios/native/NaturalLanguage/NLTagger.g.cs
@@ -399,7 +399,7 @@ namespace NaturalLanguage {
[Introduced (PlatformName.MacOSX, 10,15, ObjCRuntime.PlatformArchitecture.All)]
[Introduced (PlatformName.iOS, 13,0, ObjCRuntime.PlatformArchitecture.All)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static void RequestAssets (NSString language, NSString tagScheme, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V115))]global::System.Action<NLTaggerAssetsResult, NSError> completionHandler)
+ public unsafe static void RequestAssets (NSString language, NSString tagScheme, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V114))]global::System.Action<NLTaggerAssetsResult, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -412,7 +412,7 @@ namespace NaturalLanguage {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V115.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V114.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr_IntPtr (class_ptr, Selector.GetHandle ("requestAssetsForLanguage:tagScheme:completionHandler:"), language__handle__, tagScheme__handle__, (IntPtr) block_ptr_completionHandler);
block_ptr_completionHandler->CleanupBlock ();
#endif
@@ -439,7 +439,7 @@ namespace NaturalLanguage {
[Introduced (PlatformName.MacOSX, 10,15, ObjCRuntime.PlatformArchitecture.All)]
[Introduced (PlatformName.iOS, 13,0, ObjCRuntime.PlatformArchitecture.All)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static void RequestAssets (NLLanguage language, NLTagScheme tagScheme, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V115))]global::System.Action<NLTaggerAssetsResult, NSError> completionHandler)
+ public unsafe static void RequestAssets (NLLanguage language, NLTagScheme tagScheme, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V114))]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/ios/native/NetworkExtension/NEAppProxyProviderManager.g.cs b/new/ios/native/NetworkExtension/NEAppProxyProviderManager.g.cs
index 47eb905..82d6bb6 100644
--- a/old/ios/native/NetworkExtension/NEAppProxyProviderManager.g.cs
+++ b/new/ios/native/NetworkExtension/NEAppProxyProviderManager.g.cs
@@ -69,7 +69,7 @@ namespace NetworkExtension {
[Export ("loadAllFromPreferencesWithCompletionHandler:")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static void LoadAllFromPreferences ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V116))]global::System.Action<NSArray, NSError> completionHandler)
+ public unsafe static void LoadAllFromPreferences ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V115))]global::System.Action<NSArray, NSError> completionHandler)
{
if (completionHandler is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (completionHandler));
@@ -77,7 +77,7 @@ namespace NetworkExtension {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V116.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V115.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (class_ptr, Selector.GetHandle ("loadAllFromPreferencesWithCompletionHandler:"), (IntPtr) block_ptr_completionHandler);
block_ptr_completionHandler->CleanupBlock ();
}
diff --git a/old/ios/native/NetworkExtension/NEAppPushManager.g.cs b/new/ios/native/NetworkExtension/NEAppPushManager.g.cs
index 68da393..5271160 100644
--- a/old/ios/native/NetworkExtension/NEAppPushManager.g.cs
+++ b/new/ios/native/NetworkExtension/NEAppPushManager.g.cs
@@ -94,7 +94,7 @@ namespace NetworkExtension {
[Export ("loadAllFromPreferencesWithCompletionHandler:")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static void LoadAllFromPreferences ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V117))]global::System.Action<NEAppPushManager[], NSError> completionHandler)
+ public unsafe static void LoadAllFromPreferences ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V116))]global::System.Action<NEAppPushManager[], NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -105,7 +105,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.SDActionArity2V116.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (class_ptr, Selector.GetHandle ("loadAllFromPreferencesWithCompletionHandler:"), (IntPtr) block_ptr_completionHandler);
block_ptr_completionHandler->CleanupBlock ();
#endif
diff --git a/old/ios/native/NetworkExtension/NEPacketTunnelFlow.g.cs b/new/ios/native/NetworkExtension/NEPacketTunnelFlow.g.cs
index 0ad507a..812170d 100644
--- a/old/ios/native/NetworkExtension/NEPacketTunnelFlow.g.cs
+++ b/new/ios/native/NetworkExtension/NEPacketTunnelFlow.g.cs
@@ -112,7 +112,7 @@ namespace NetworkExtension {
}
[Export ("readPacketsWithCompletionHandler:")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void ReadPackets ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V118))]global::System.Action<NSData[], NSNumber[]> completionHandler)
+ public unsafe virtual void ReadPackets ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V117))]global::System.Action<NSData[], NSNumber[]> completionHandler)
{
if (completionHandler is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (completionHandler));
@@ -120,7 +120,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.SDActionArity2V117.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("readPacketsWithCompletionHandler:"), (IntPtr) block_ptr_completionHandler);
} else {
diff --git a/old/ios/native/NetworkExtension/NETunnelProviderManager.g.cs b/new/ios/native/NetworkExtension/NETunnelProviderManager.g.cs
index ca672ca..27d3bca 100644
--- a/old/ios/native/NetworkExtension/NETunnelProviderManager.g.cs
+++ b/new/ios/native/NetworkExtension/NETunnelProviderManager.g.cs
@@ -91,7 +91,7 @@ namespace NetworkExtension {
}
[Export ("loadAllFromPreferencesWithCompletionHandler:")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static void LoadAllFromPreferences ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V116))]global::System.Action<NSArray, NSError> completionHandler)
+ public unsafe static void LoadAllFromPreferences ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V115))]global::System.Action<NSArray, NSError> completionHandler)
{
if (completionHandler is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (completionHandler));
@@ -99,7 +99,7 @@ namespace NetworkExtension {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V116.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V115.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (class_ptr, Selector.GetHandle ("loadAllFromPreferencesWithCompletionHandler:"), (IntPtr) block_ptr_completionHandler);
block_ptr_completionHandler->CleanupBlock ();
}
diff --git a/old/ios/native/NetworkExtension/NWTcpConnectionAuthenticationDelegate.g.cs b/new/ios/native/NetworkExtension/NWTcpConnectionAuthenticationDelegate.g.cs
index 68207c9..695a8f3 100644
--- a/old/ios/native/NetworkExtension/NWTcpConnectionAuthenticationDelegate.g.cs
+++ b/new/ios/native/NetworkExtension/NWTcpConnectionAuthenticationDelegate.g.cs
@@ -52,7 +52,7 @@ namespace NetworkExtension {
[Introduced (PlatformName.MacOSX, 10,11, ObjCRuntime.PlatformArchitecture.All)]
[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.NIDActionArity2V119) })]
+ [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.NIDActionArity2V118) })]
[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
@@ -66,7 +66,7 @@ namespace NetworkExtension {
return global::ObjCRuntime.Messaging.bool_objc_msgSend_IntPtr (This.Handle, Selector.GetHandle ("shouldProvideIdentityForConnection:"), connection__handle__);
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static void ProvideIdentity (this INWTcpConnectionAuthenticationDelegate This, NWTcpConnection connection, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V119))]global::System.Action<global::Security.SecIdentity, NSArray> completion)
+ public unsafe static void ProvideIdentity (this INWTcpConnectionAuthenticationDelegate This, NWTcpConnection connection, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V118))]global::System.Action<global::Security.SecIdentity, NSArray> completion)
{
var connection__handle__ = connection!.GetNonNullHandle (nameof (connection));
if (completion is null)
@@ -75,7 +75,7 @@ namespace NetworkExtension {
BlockLiteral block_completion;
block_completion = new BlockLiteral ();
block_ptr_completion = &block_completion;
- block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V119.Handler, completion);
+ block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V118.Handler, completion);
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr (This.Handle, Selector.GetHandle ("provideIdentityForConnection:completionHandler:"), connection__handle__, (IntPtr) block_ptr_completion);
block_ptr_completion->CleanupBlock ();
}
@@ -156,7 +156,7 @@ namespace NetworkExtension {
}
[Export ("provideIdentityForConnection:completionHandler:")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void ProvideIdentity (NWTcpConnection connection, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V119))]global::System.Action<global::Security.SecIdentity, NSArray> completion)
+ public unsafe virtual void ProvideIdentity (NWTcpConnection connection, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V118))]global::System.Action<global::Security.SecIdentity, NSArray> completion)
{
throw new You_Should_Not_Call_base_In_This_Method ();
}
diff --git a/old/ios/native/NetworkExtension/NWUdpSession.g.cs b/new/ios/native/NetworkExtension/NWUdpSession.g.cs
index d079c5d..a3e7e62 100644
--- a/old/ios/native/NetworkExtension/NWUdpSession.g.cs
+++ b/new/ios/native/NetworkExtension/NWUdpSession.g.cs
@@ -103,7 +103,7 @@ namespace NetworkExtension {
}
[Export ("setReadHandler:maxDatagrams:")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void SetReadHandler ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V116))]global::System.Action<NSArray, NSError> handler, nuint maxDatagrams)
+ public unsafe virtual void SetReadHandler ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V115))]global::System.Action<NSArray, NSError> handler, nuint maxDatagrams)
{
if (handler is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (handler));
@@ -111,7 +111,7 @@ namespace NetworkExtension {
BlockLiteral block_handler;
block_handler = new BlockLiteral ();
block_ptr_handler = &block_handler;
- block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V116.Handler, handler);
+ block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V115.Handler, handler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_UIntPtr (this.Handle, Selector.GetHandle ("setReadHandler:maxDatagrams:"), (IntPtr) block_ptr_handler, (UIntPtr) maxDatagrams);
} else {
diff --git a/old/ios/native/ObjCRuntime/Messaging.g.cs b/new/ios/native/ObjCRuntime/Messaging.g.cs
index ca473e0..725f44e 100644
--- a/old/ios/native/ObjCRuntime/Messaging.g.cs
+++ b/new/ios/native/ObjCRuntime/Messaging.g.cs
@@ -1518,60 +1518,6 @@ namespace ObjCRuntime {
[DllImport (LIBOBJC_DYLIB, EntryPoint="objc_msgSendSuper")]
public extern static IntPtr IntPtr_objc_msgSendSuper_UIntPtr_UIntPtr_UIntPtr_ref_IntPtr (IntPtr receiver, IntPtr selector, UIntPtr arg1, UIntPtr arg2, UIntPtr arg3, ref IntPtr arg4);
[DllImport (LIBOBJC_DYLIB, EntryPoint="objc_msgSend")]
- [return: MarshalAs (UnmanagedType.I1)]
- public extern static bool bool_objc_msgSend_UInt64_UInt16_UInt32_IntPtr_ref_IntPtr (IntPtr receiver, IntPtr selector, ulong arg1, ushort arg2, uint arg3, IntPtr arg4, ref IntPtr arg5);
- [DllImport (LIBOBJC_DYLIB, EntryPoint="objc_msgSendSuper")]
- [return: MarshalAs (UnmanagedType.I1)]
- public extern static bool bool_objc_msgSendSuper_UInt64_UInt16_UInt32_IntPtr_ref_IntPtr (IntPtr receiver, IntPtr selector, ulong arg1, ushort arg2, uint arg3, IntPtr arg4, ref IntPtr arg5);
- [DllImport (LIBOBJC_DYLIB, EntryPoint="objc_msgSend")]
- [return: MarshalAs (UnmanagedType.I1)]
- public extern static bool bool_objc_msgSend_UInt64_IntPtr_UInt16_UInt16_UInt32_ref_IntPtr (IntPtr receiver, IntPtr selector, ulong arg1, IntPtr arg2, ushort arg3, ushort arg4, uint arg5, ref IntPtr arg6);
- [DllImport (LIBOBJC_DYLIB, EntryPoint="objc_msgSendSuper")]
- [return: MarshalAs (UnmanagedType.I1)]
- public extern static bool bool_objc_msgSendSuper_UInt64_IntPtr_UInt16_UInt16_UInt32_ref_IntPtr (IntPtr receiver, IntPtr selector, ulong arg1, IntPtr arg2, ushort arg3, ushort arg4, uint arg5, ref IntPtr arg6);
- [DllImport (LIBOBJC_DYLIB, EntryPoint="objc_msgSend")]
- [return: MarshalAs (UnmanagedType.I1)]
- public extern static bool bool_objc_msgSend_UInt64_IntPtr_UInt16_ref_IntPtr (IntPtr receiver, IntPtr selector, ulong arg1, IntPtr arg2, ushort arg3, ref IntPtr arg4);
- [DllImport (LIBOBJC_DYLIB, EntryPoint="objc_msgSendSuper")]
- [return: MarshalAs (UnmanagedType.I1)]
- public extern static bool bool_objc_msgSendSuper_UInt64_IntPtr_UInt16_ref_IntPtr (IntPtr receiver, IntPtr selector, ulong arg1, IntPtr arg2, ushort arg3, ref IntPtr arg4);
- [DllImport (LIBOBJC_DYLIB, EntryPoint="objc_msgSend")]
- [return: MarshalAs (UnmanagedType.I1)]
- public extern static bool bool_objc_msgSend_UInt64_IntPtr_UIntPtr_ref_IntPtr (IntPtr receiver, IntPtr selector, ulong arg1, IntPtr arg2, UIntPtr arg3, ref IntPtr arg4);
- [DllImport (LIBOBJC_DYLIB, EntryPoint="objc_msgSendSuper")]
- [return: MarshalAs (UnmanagedType.I1)]
- public extern static bool bool_objc_msgSendSuper_UInt64_IntPtr_UIntPtr_ref_IntPtr (IntPtr receiver, IntPtr selector, ulong arg1, IntPtr arg2, UIntPtr arg3, ref IntPtr arg4);
- [DllImport (LIBOBJC_DYLIB, EntryPoint="objc_msgSend")]
- public extern static void void_objc_msgSend_UInt16 (IntPtr receiver, IntPtr selector, ushort arg1);
- [DllImport (LIBOBJC_DYLIB, EntryPoint="objc_msgSendSuper")]
- public extern static void void_objc_msgSendSuper_UInt16 (IntPtr receiver, IntPtr selector, ushort arg1);
- [DllImport (LIBOBJC_DYLIB, EntryPoint="objc_msgSend")]
- [return: MarshalAs (UnmanagedType.I1)]
- public extern static bool bool_objc_msgSend_UInt64_ref_IntPtr (IntPtr receiver, IntPtr selector, ulong arg1, ref IntPtr arg2);
- [DllImport (LIBOBJC_DYLIB, EntryPoint="objc_msgSendSuper")]
- [return: MarshalAs (UnmanagedType.I1)]
- public extern static bool bool_objc_msgSendSuper_UInt64_ref_IntPtr (IntPtr receiver, IntPtr selector, ulong arg1, ref IntPtr arg2);
- [DllImport (LIBOBJC_DYLIB, EntryPoint="objc_msgSend")]
- public extern static void void_objc_msgSend_UInt64_UInt64 (IntPtr receiver, IntPtr selector, ulong arg1, ulong arg2);
- [DllImport (LIBOBJC_DYLIB, EntryPoint="objc_msgSendSuper")]
- public extern static void void_objc_msgSendSuper_UInt64_UInt64 (IntPtr receiver, IntPtr selector, ulong arg1, ulong arg2);
- [DllImport (LIBOBJC_DYLIB, EntryPoint="objc_msgSend")]
- [return: MarshalAs (UnmanagedType.I1)]
- public extern static bool bool_objc_msgSend_UInt64_IntPtr_IntPtr (IntPtr receiver, IntPtr selector, ulong arg1, IntPtr arg2, IntPtr arg3);
- [DllImport (LIBOBJC_DYLIB, EntryPoint="objc_msgSendSuper")]
- [return: MarshalAs (UnmanagedType.I1)]
- public extern static bool bool_objc_msgSendSuper_UInt64_IntPtr_IntPtr (IntPtr receiver, IntPtr selector, ulong arg1, IntPtr arg2, IntPtr arg3);
- [DllImport (LIBOBJC_DYLIB, EntryPoint="objc_msgSend")]
- public extern static IntPtr IntPtr_objc_msgSend_UInt64_ref_IntPtr (IntPtr receiver, IntPtr selector, ulong arg1, ref IntPtr arg2);
- [DllImport (LIBOBJC_DYLIB, EntryPoint="objc_msgSendSuper")]
- public extern static IntPtr IntPtr_objc_msgSendSuper_UInt64_ref_IntPtr (IntPtr receiver, IntPtr selector, ulong arg1, ref IntPtr arg2);
- [DllImport (LIBOBJC_DYLIB, EntryPoint="objc_msgSend")]
- [return: MarshalAs (UnmanagedType.I1)]
- public extern static bool bool_objc_msgSend_IntPtr_UInt16_IntPtr (IntPtr receiver, IntPtr selector, IntPtr arg1, ushort arg2, IntPtr arg3);
- [DllImport (LIBOBJC_DYLIB, EntryPoint="objc_msgSendSuper")]
- [return: MarshalAs (UnmanagedType.I1)]
- public extern static bool bool_objc_msgSendSuper_IntPtr_UInt16_IntPtr (IntPtr receiver, IntPtr selector, IntPtr arg1, ushort arg2, IntPtr arg3);
- [DllImport (LIBOBJC_DYLIB, EntryPoint="objc_msgSend")]
public extern static void void_objc_msgSend_byte_byte_IntPtr_IntPtr (IntPtr receiver, IntPtr selector, byte arg1, byte arg2, IntPtr arg3, IntPtr arg4);
[DllImport (LIBOBJC_DYLIB, EntryPoint="objc_msgSendSuper")]
public extern static void void_objc_msgSendSuper_byte_byte_IntPtr_IntPtr (IntPtr receiver, IntPtr selector, byte arg1, byte arg2, IntPtr arg3, IntPtr arg4);
@@ -1604,22 +1550,14 @@ namespace ObjCRuntime {
[DllImport (LIBOBJC_DYLIB, EntryPoint="objc_msgSendSuper")]
public extern static void void_objc_msgSendSuper_UInt16_IntPtr_IntPtr (IntPtr receiver, IntPtr selector, ushort arg1, IntPtr arg2, IntPtr arg3);
[DllImport (LIBOBJC_DYLIB, EntryPoint="objc_msgSend")]
- public extern static void void_objc_msgSend_UInt16_UInt64_UInt32_IntPtr (IntPtr receiver, IntPtr selector, ushort arg1, ulong arg2, uint arg3, IntPtr arg4);
- [DllImport (LIBOBJC_DYLIB, EntryPoint="objc_msgSendSuper")]
- public extern static void void_objc_msgSendSuper_UInt16_UInt64_UInt32_IntPtr (IntPtr receiver, IntPtr selector, ushort arg1, ulong arg2, uint arg3, IntPtr arg4);
- [DllImport (LIBOBJC_DYLIB, EntryPoint="objc_msgSend")]
- public extern static void void_objc_msgSend_byte_IntPtr_UInt64_UInt32_IntPtr (IntPtr receiver, IntPtr selector, byte arg1, IntPtr arg2, ulong arg3, uint arg4, IntPtr arg5);
+ public extern static void void_objc_msgSend_byte_byte_UInt16_IntPtr (IntPtr receiver, IntPtr selector, byte arg1, byte arg2, ushort arg3, IntPtr arg4);
[DllImport (LIBOBJC_DYLIB, EntryPoint="objc_msgSendSuper")]
- public extern static void void_objc_msgSendSuper_byte_IntPtr_UInt64_UInt32_IntPtr (IntPtr receiver, IntPtr selector, byte arg1, IntPtr arg2, ulong arg3, uint arg4, IntPtr arg5);
+ public extern static void void_objc_msgSendSuper_byte_byte_UInt16_IntPtr (IntPtr receiver, IntPtr selector, byte arg1, byte arg2, ushort arg3, IntPtr arg4);
[DllImport (LIBOBJC_DYLIB, EntryPoint="objc_msgSend")]
public extern static void void_objc_msgSend_UInt64_IntPtr (IntPtr receiver, IntPtr selector, ulong arg1, IntPtr arg2);
[DllImport (LIBOBJC_DYLIB, EntryPoint="objc_msgSendSuper")]
public extern static void void_objc_msgSendSuper_UInt64_IntPtr (IntPtr receiver, IntPtr selector, ulong arg1, IntPtr arg2);
[DllImport (LIBOBJC_DYLIB, EntryPoint="objc_msgSend")]
- public extern static void void_objc_msgSend_byte_byte_UInt16_IntPtr (IntPtr receiver, IntPtr selector, byte arg1, byte arg2, ushort arg3, IntPtr arg4);
- [DllImport (LIBOBJC_DYLIB, EntryPoint="objc_msgSendSuper")]
- public extern static void void_objc_msgSendSuper_byte_byte_UInt16_IntPtr (IntPtr receiver, IntPtr selector, byte arg1, byte arg2, ushort arg3, IntPtr arg4);
- [DllImport (LIBOBJC_DYLIB, EntryPoint="objc_msgSend")]
public extern static void void_objc_msgSend_IntPtr_UInt64_UInt32_IntPtr (IntPtr receiver, IntPtr selector, IntPtr arg1, ulong arg2, uint arg3, IntPtr arg4);
[DllImport (LIBOBJC_DYLIB, EntryPoint="objc_msgSendSuper")]
public extern static void void_objc_msgSendSuper_IntPtr_UInt64_UInt32_IntPtr (IntPtr receiver, IntPtr selector, IntPtr arg1, ulong arg2, uint arg3, IntPtr arg4);
@@ -1664,22 +1602,22 @@ namespace ObjCRuntime {
[DllImport (LIBOBJC_DYLIB, EntryPoint="objc_msgSendSuper")]
public extern static void void_objc_msgSendSuper_UInt16_byte_UInt16_IntPtr (IntPtr receiver, IntPtr selector, ushort arg1, byte arg2, ushort arg3, IntPtr arg4);
[DllImport (LIBOBJC_DYLIB, EntryPoint="objc_msgSend")]
- public extern static void void_objc_msgSend_SByte_IntPtr (IntPtr receiver, IntPtr selector, sbyte arg1, IntPtr arg2);
+ public extern static void void_objc_msgSend_byte_SByte_IntPtr (IntPtr receiver, IntPtr selector, byte arg1, sbyte arg2, IntPtr arg3);
[DllImport (LIBOBJC_DYLIB, EntryPoint="objc_msgSendSuper")]
- public extern static void void_objc_msgSendSuper_SByte_IntPtr (IntPtr receiver, IntPtr selector, sbyte arg1, IntPtr arg2);
+ public extern static void void_objc_msgSendSuper_byte_SByte_IntPtr (IntPtr receiver, IntPtr selector, byte arg1, sbyte arg2, IntPtr arg3);
[DllImport (LIBOBJC_DYLIB, EntryPoint="objc_msgSend")]
public extern static void void_objc_msgSend_short_IntPtr (IntPtr receiver, IntPtr selector, short arg1, IntPtr arg2);
[DllImport (LIBOBJC_DYLIB, EntryPoint="objc_msgSendSuper")]
public extern static void void_objc_msgSendSuper_short_IntPtr (IntPtr receiver, IntPtr selector, short arg1, IntPtr arg2);
[DllImport (LIBOBJC_DYLIB, EntryPoint="objc_msgSend")]
- public extern static void void_objc_msgSend_byte_SByte_IntPtr (IntPtr receiver, IntPtr selector, byte arg1, sbyte arg2, IntPtr arg3);
- [DllImport (LIBOBJC_DYLIB, EntryPoint="objc_msgSendSuper")]
- public extern static void void_objc_msgSendSuper_byte_SByte_IntPtr (IntPtr receiver, IntPtr selector, byte arg1, sbyte arg2, IntPtr arg3);
- [DllImport (LIBOBJC_DYLIB, EntryPoint="objc_msgSend")]
public extern static ushort UInt16_objc_msgSend (IntPtr receiver, IntPtr selector);
[DllImport (LIBOBJC_DYLIB, EntryPoint="objc_msgSendSuper")]
public extern static ushort UInt16_objc_msgSendSuper (IntPtr receiver, IntPtr selector);
[DllImport (LIBOBJC_DYLIB, EntryPoint="objc_msgSend")]
+ public extern static void void_objc_msgSend_UInt16 (IntPtr receiver, IntPtr selector, ushort arg1);
+ [DllImport (LIBOBJC_DYLIB, EntryPoint="objc_msgSendSuper")]
+ public extern static void void_objc_msgSendSuper_UInt16 (IntPtr receiver, IntPtr selector, ushort arg1);
+ [DllImport (LIBOBJC_DYLIB, EntryPoint="objc_msgSend")]
public extern static global::System.IntPtr IntPtr_objc_msgSend_IntPtr_IntPtr_IntPtr_IntPtr_UInt16_IntPtr (IntPtr receiver, IntPtr selector, IntPtr arg1, IntPtr arg2, IntPtr arg3, IntPtr arg4, ushort arg5, IntPtr arg6);
[DllImport (LIBOBJC_DYLIB, EntryPoint="objc_msgSendSuper")]
public extern static global::System.IntPtr IntPtr_objc_msgSendSuper_IntPtr_IntPtr_IntPtr_IntPtr_UInt16_IntPtr (IntPtr receiver, IntPtr selector, IntPtr arg1, IntPtr arg2, IntPtr arg3, IntPtr arg4, ushort arg5, IntPtr arg6);
@@ -2514,6 +2452,10 @@ namespace ObjCRuntime {
[DllImport (LIBOBJC_DYLIB, EntryPoint="objc_msgSendSuper_stret")]
public extern static void NSRange_objc_msgSendSuper_stret_IntPtr_UIntPtr_NSRange (out NSRange retval, IntPtr receiver, IntPtr selector, IntPtr arg1, UIntPtr arg2, NSRange arg3);
[DllImport (LIBOBJC_DYLIB, EntryPoint="objc_msgSend")]
+ public extern static global::System.IntPtr IntPtr_objc_msgSend_UInt64_ref_IntPtr (IntPtr receiver, IntPtr selector, ulong arg1, ref IntPtr arg2);
+ [DllImport (LIBOBJC_DYLIB, EntryPoint="objc_msgSendSuper")]
+ public extern static global::System.IntPtr IntPtr_objc_msgSendSuper_UInt64_ref_IntPtr (IntPtr receiver, IntPtr selector, ulong arg1, ref IntPtr arg2);
+ [DllImport (LIBOBJC_DYLIB, EntryPoint="objc_msgSend")]
public extern static IntPtr IntPtr_objc_msgSend_IntPtr_UIntPtr_UIntPtr (IntPtr receiver, IntPtr selector, IntPtr arg1, UIntPtr arg2, UIntPtr arg3);
[DllImport (LIBOBJC_DYLIB, EntryPoint="objc_msgSendSuper")]
public extern static IntPtr IntPtr_objc_msgSendSuper_IntPtr_UIntPtr_UIntPtr (IntPtr receiver, IntPtr selector, IntPtr arg1, UIntPtr arg2, UIntPtr arg3);
@@ -2568,6 +2510,12 @@ namespace ObjCRuntime {
[DllImport (LIBOBJC_DYLIB, EntryPoint="objc_msgSendSuper")]
public extern static void void_objc_msgSendSuper_UInt64 (IntPtr receiver, IntPtr selector, ulong arg1);
[DllImport (LIBOBJC_DYLIB, EntryPoint="objc_msgSend")]
+ [return: MarshalAs (UnmanagedType.I1)]
+ public extern static bool bool_objc_msgSend_UInt64_ref_IntPtr (IntPtr receiver, IntPtr selector, ulong arg1, ref IntPtr arg2);
+ [DllImport (LIBOBJC_DYLIB, EntryPoint="objc_msgSendSuper")]
+ [return: MarshalAs (UnmanagedType.I1)]
+ public extern static bool bool_objc_msgSendSuper_UInt64_ref_IntPtr (IntPtr receiver, IntPtr selector, ulong arg1, ref IntPtr arg2);
+ [DllImport (LIBOBJC_DYLIB, EntryPoint="objc_msgSend")]
public extern static global::System.IntPtr IntPtr_objc_msgSend_int_bool (IntPtr receiver, IntPtr selector, int arg1, [MarshalAs (UnmanagedType.I1)] bool arg2);
[DllImport (LIBOBJC_DYLIB, EntryPoint="objc_msgSendSuper")]
public extern static global::System.IntPtr IntPtr_objc_msgSendSuper_int_bool (IntPtr receiver, IntPtr selector, int arg1, [MarshalAs (UnmanagedType.I1)] bool arg2);
diff --git a/old/ios/native/ObjCRuntime/Trampolines.g.cs b/new/ios/native/ObjCRuntime/Trampolines.g.cs
index 71ceff0..5b83070 100644
--- a/old/ios/native/ObjCRuntime/Trampolines.g.cs
+++ b/new/ios/native/ObjCRuntime/Trampolines.g.cs
@@ -1758,46 +1758,6 @@ namespace ObjCRuntime {
}
} /* class NIDCPSelectableListItemHandler */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
- [UserDelegateType (typeof (global::Chip.ChipDeviceConnectionCallback))]
- internal delegate void DChipDeviceConnectionCallback (IntPtr block, IntPtr device, IntPtr error);
- //
- // This class bridges native block invocations that call into C#
- //
- static internal class SDChipDeviceConnectionCallback {
- static internal readonly DChipDeviceConnectionCallback Handler = Invoke;
- [MonoPInvokeCallback (typeof (DChipDeviceConnectionCallback))]
- static unsafe void Invoke (IntPtr block, IntPtr device, IntPtr error) {
- var descriptor = (BlockLiteral *) block;
- var del = (global::Chip.ChipDeviceConnectionCallback) (descriptor->Target);
- if (del != null)
- del ( Runtime.GetNSObject<Chip.ChipDevice> (device)!, Runtime.GetNSObject<NSError> (error)!);
- }
- } /* class SDChipDeviceConnectionCallback */
- internal sealed class NIDChipDeviceConnectionCallback : TrampolineBlockBase {
- DChipDeviceConnectionCallback invoker;
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDChipDeviceConnectionCallback (BlockLiteral *block) : base (block)
- {
- invoker = block->GetDelegateForBlock<DChipDeviceConnectionCallback> ();
- }
- [Preserve (Conditional=true)]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static global::Chip.ChipDeviceConnectionCallback? Create (IntPtr block)
- {
- if (block == IntPtr.Zero)
- return null;
- var del = (global::Chip.ChipDeviceConnectionCallback) GetExistingManagedDelegate (block);
- return del ?? new NIDChipDeviceConnectionCallback ((BlockLiteral *) block).Invoke;
- }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- unsafe void Invoke (global::Chip.ChipDevice? device, NSError? error)
- {
- var device__handle__ = device.GetHandle ();
- var error__handle__ = error.GetHandle ();
- invoker (BlockPointer, device__handle__, error__handle__);
- }
- } /* class NIDChipDeviceConnectionCallback */
- [UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::Chip.ChipResponseHandler))]
internal delegate void DChipResponseHandler (IntPtr block, IntPtr error, IntPtr data);
//
@@ -24967,26 +24927,26 @@ namespace ObjCRuntime {
} /* class NIDActionArity2V64 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::FileProvider.INSFileProviderItem, NSError>))]
- internal delegate void DActionArity2V138 (IntPtr block, IntPtr arg1, IntPtr arg2);
+ internal delegate void DActionArity2V137 (IntPtr block, IntPtr arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V138 {
- static internal readonly DActionArity2V138 Handler = Invoke;
- [MonoPInvokeCallback (typeof (DActionArity2V138))]
+ static internal class SDActionArity2V137 {
+ static internal readonly DActionArity2V137 Handler = Invoke;
+ [MonoPInvokeCallback (typeof (DActionArity2V137))]
static unsafe void Invoke (IntPtr block, IntPtr arg1, IntPtr 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 SDActionArity2V138 */
- internal sealed class NIDActionArity2V138 : TrampolineBlockBase {
- DActionArity2V138 invoker;
+ } /* class SDActionArity2V137 */
+ internal sealed class NIDActionArity2V137 : TrampolineBlockBase {
+ DActionArity2V137 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V138 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V137 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V138> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V137> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -24995,7 +24955,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::FileProvider.INSFileProviderItem, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V138 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V137 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::FileProvider.INSFileProviderItem arg1, NSError arg2)
@@ -25004,7 +24964,7 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V138 */
+ } /* class NIDActionArity2V137 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::FileProvider.NSFileProviderDomain[], NSError>))]
internal delegate void DActionArity2V67 (IntPtr block, IntPtr arg1, IntPtr arg2);
@@ -25091,26 +25051,26 @@ namespace ObjCRuntime {
} /* class NIDActionArity2V71 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSArray, NSError>))]
- internal delegate void DActionArity2V116 (IntPtr block, IntPtr arg1, IntPtr arg2);
+ internal delegate void DActionArity2V115 (IntPtr block, IntPtr arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V116 {
- static internal readonly DActionArity2V116 Handler = Invoke;
- [MonoPInvokeCallback (typeof (DActionArity2V116))]
+ static internal class SDActionArity2V115 {
+ static internal readonly DActionArity2V115 Handler = Invoke;
+ [MonoPInvokeCallback (typeof (DActionArity2V115))]
static unsafe void Invoke (IntPtr block, IntPtr arg1, IntPtr 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 SDActionArity2V116 */
- internal sealed class NIDActionArity2V116 : TrampolineBlockBase {
- DActionArity2V116 invoker;
+ } /* class SDActionArity2V115 */
+ internal sealed class NIDActionArity2V115 : TrampolineBlockBase {
+ DActionArity2V115 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V116 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V115 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V116> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V115> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -25119,7 +25079,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<NSArray, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V116 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V115 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSArray arg1, NSError arg2)
@@ -25128,7 +25088,7 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V116 */
+ } /* class NIDActionArity2V115 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSArray<global::AVFoundation.AVAssetTrack>, NSError>))]
internal delegate void DActionArity2V14 (IntPtr block, IntPtr arg1, IntPtr arg2);
@@ -25495,26 +25455,26 @@ namespace ObjCRuntime {
} /* class NIDActionArity2V62 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSData[], NSNumber[]>))]
- internal delegate void DActionArity2V118 (IntPtr block, IntPtr arg1, IntPtr arg2);
+ internal delegate void DActionArity2V117 (IntPtr block, IntPtr arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V118 {
- static internal readonly DActionArity2V118 Handler = Invoke;
- [MonoPInvokeCallback (typeof (DActionArity2V118))]
+ static internal class SDActionArity2V117 {
+ static internal readonly DActionArity2V117 Handler = Invoke;
+ [MonoPInvokeCallback (typeof (DActionArity2V117))]
static unsafe void Invoke (IntPtr block, IntPtr arg1, IntPtr 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 SDActionArity2V118 */
- internal sealed class NIDActionArity2V118 : TrampolineBlockBase {
- DActionArity2V118 invoker;
+ } /* class SDActionArity2V117 */
+ internal sealed class NIDActionArity2V117 : TrampolineBlockBase {
+ DActionArity2V117 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V118 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V117 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V118> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V117> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -25523,7 +25483,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<NSData[], NSNumber[]>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V118 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V117 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSData[] arg1, NSNumber[] arg2)
@@ -25540,7 +25500,7 @@ namespace ObjCRuntime {
if (nsa_arg2 != null)
nsa_arg2.Dispose ();
}
- } /* class NIDActionArity2V118 */
+ } /* class NIDActionArity2V117 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSDictionary, NSError>))]
internal delegate void DActionArity2V92 (IntPtr block, IntPtr arg1, IntPtr arg2);
@@ -25623,26 +25583,26 @@ namespace ObjCRuntime {
} /* class NIDActionArity2V69 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSDictionary<NSString, NSObject>, NSError>))]
- internal delegate void DActionArity2V144 (IntPtr block, IntPtr arg1, IntPtr arg2);
+ internal delegate void DActionArity2V143 (IntPtr block, IntPtr arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V144 {
- static internal readonly DActionArity2V144 Handler = Invoke;
- [MonoPInvokeCallback (typeof (DActionArity2V144))]
+ static internal class SDActionArity2V143 {
+ static internal readonly DActionArity2V143 Handler = Invoke;
+ [MonoPInvokeCallback (typeof (DActionArity2V143))]
static unsafe void Invoke (IntPtr block, IntPtr arg1, IntPtr 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 SDActionArity2V143 */
+ internal sealed class NIDActionArity2V143 : TrampolineBlockBase {
+ DActionArity2V143 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V144 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V143 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V144> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V143> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -25651,7 +25611,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 NIDActionArity2V143 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSDictionary<NSString, NSObject> arg1, NSError arg2)
@@ -25660,29 +25620,29 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V144 */
+ } /* class NIDActionArity2V143 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSDictionary<NSString, NSObject>[], NSError>))]
- internal delegate void DActionArity2V145 (IntPtr block, IntPtr arg1, IntPtr arg2);
+ internal delegate void DActionArity2V144 (IntPtr block, IntPtr arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V145 {
- static internal readonly DActionArity2V145 Handler = Invoke;
- [MonoPInvokeCallback (typeof (DActionArity2V145))]
+ static internal class SDActionArity2V144 {
+ static internal readonly DActionArity2V144 Handler = Invoke;
+ [MonoPInvokeCallback (typeof (DActionArity2V144))]
static unsafe void Invoke (IntPtr block, IntPtr arg1, IntPtr 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 SDActionArity2V144 */
+ internal sealed class NIDActionArity2V144 : TrampolineBlockBase {
+ DActionArity2V144 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V145 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V144 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V145> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V144> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -25691,7 +25651,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 NIDActionArity2V144 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSDictionary<NSString, NSObject>[] arg1, NSError arg2)
@@ -25704,7 +25664,7 @@ namespace ObjCRuntime {
if (nsa_arg1 != null)
nsa_arg1.Dispose ();
}
- } /* class NIDActionArity2V145 */
+ } /* class NIDActionArity2V144 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSDictionary<NSString, NSOperation>, NSError>))]
internal delegate void DActionArity2V37 (IntPtr block, IntPtr arg1, IntPtr arg2);
@@ -25831,26 +25791,26 @@ namespace ObjCRuntime {
} /* class NIDActionArity2V70 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSObject, NSString>))]
- internal delegate void DActionArity2V152 (IntPtr block, IntPtr arg1, IntPtr arg2);
+ internal delegate void DActionArity2V151 (IntPtr block, IntPtr arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V152 {
- static internal readonly DActionArity2V152 Handler = Invoke;
- [MonoPInvokeCallback (typeof (DActionArity2V152))]
+ static internal class SDActionArity2V151 {
+ static internal readonly DActionArity2V151 Handler = Invoke;
+ [MonoPInvokeCallback (typeof (DActionArity2V151))]
static unsafe void Invoke (IntPtr block, IntPtr arg1, IntPtr 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 SDActionArity2V151 */
+ internal sealed class NIDActionArity2V151 : TrampolineBlockBase {
+ DActionArity2V151 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V152 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V151 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V152> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V151> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -25859,7 +25819,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 NIDActionArity2V151 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSObject arg1, NSString arg2)
@@ -25868,29 +25828,29 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V152 */
+ } /* class NIDActionArity2V151 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSSet<NSString>, NSError>))]
- internal delegate void DActionArity2V142 (IntPtr block, IntPtr arg1, IntPtr arg2);
+ internal delegate void DActionArity2V141 (IntPtr block, IntPtr arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V142 {
- static internal readonly DActionArity2V142 Handler = Invoke;
- [MonoPInvokeCallback (typeof (DActionArity2V142))]
+ static internal class SDActionArity2V141 {
+ static internal readonly DActionArity2V141 Handler = Invoke;
+ [MonoPInvokeCallback (typeof (DActionArity2V141))]
static unsafe void Invoke (IntPtr block, IntPtr arg1, IntPtr 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 SDActionArity2V141 */
+ internal sealed class NIDActionArity2V141 : TrampolineBlockBase {
+ DActionArity2V141 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V142 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V141 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V142> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V141> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -25899,7 +25859,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 NIDActionArity2V141 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSSet<NSString> arg1, NSError arg2)
@@ -25908,29 +25868,29 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V142 */
+ } /* class NIDActionArity2V141 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSSet<NSString>[], NSError>))]
- internal delegate void DActionArity2V143 (IntPtr block, IntPtr arg1, IntPtr arg2);
+ internal delegate void DActionArity2V142 (IntPtr block, IntPtr arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V143 {
- static internal readonly DActionArity2V143 Handler = Invoke;
- [MonoPInvokeCallback (typeof (DActionArity2V143))]
+ static internal class SDActionArity2V142 {
+ static internal readonly DActionArity2V142 Handler = Invoke;
+ [MonoPInvokeCallback (typeof (DActionArity2V142))]
static unsafe void Invoke (IntPtr block, IntPtr arg1, IntPtr 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 SDActionArity2V142 */
+ internal sealed class NIDActionArity2V142 : TrampolineBlockBase {
+ DActionArity2V142 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V143 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V142 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V143> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V142> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -25939,7 +25899,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 NIDActionArity2V142 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSSet<NSString>[] arg1, NSError arg2)
@@ -25952,29 +25912,29 @@ namespace ObjCRuntime {
if (nsa_arg1 != null)
nsa_arg1.Dispose ();
}
- } /* class NIDActionArity2V143 */
+ } /* class NIDActionArity2V142 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSSet<global::ThreadNetwork.THCredentials>, NSError>))]
- internal delegate void DActionArity2V136 (IntPtr block, IntPtr arg1, IntPtr arg2);
+ internal delegate void DActionArity2V135 (IntPtr block, IntPtr arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V136 {
- static internal readonly DActionArity2V136 Handler = Invoke;
- [MonoPInvokeCallback (typeof (DActionArity2V136))]
+ static internal class SDActionArity2V135 {
+ static internal readonly DActionArity2V135 Handler = Invoke;
+ [MonoPInvokeCallback (typeof (DActionArity2V135))]
static unsafe void Invoke (IntPtr block, IntPtr arg1, IntPtr 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 SDActionArity2V136 */
- internal sealed class NIDActionArity2V136 : TrampolineBlockBase {
- DActionArity2V136 invoker;
+ } /* class SDActionArity2V135 */
+ internal sealed class NIDActionArity2V135 : TrampolineBlockBase {
+ DActionArity2V135 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V136 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V135 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V136> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V135> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -25983,7 +25943,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<NSSet<global::ThreadNetwork.THCredentials>, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V136 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V135 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSSet<global::ThreadNetwork.THCredentials> arg1, NSError arg2)
@@ -25992,29 +25952,29 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V136 */
+ } /* class NIDActionArity2V135 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSString, NSError>))]
- internal delegate void DActionArity2V133 (IntPtr block, IntPtr arg1, IntPtr arg2);
+ internal delegate void DActionArity2V132 (IntPtr block, IntPtr arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V133 {
- static internal readonly DActionArity2V133 Handler = Invoke;
- [MonoPInvokeCallback (typeof (DActionArity2V133))]
+ static internal class SDActionArity2V132 {
+ static internal readonly DActionArity2V132 Handler = Invoke;
+ [MonoPInvokeCallback (typeof (DActionArity2V132))]
static unsafe void Invoke (IntPtr block, IntPtr arg1, IntPtr 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 SDActionArity2V133 */
- internal sealed class NIDActionArity2V133 : TrampolineBlockBase {
- DActionArity2V133 invoker;
+ } /* class SDActionArity2V132 */
+ internal sealed class NIDActionArity2V132 : TrampolineBlockBase {
+ DActionArity2V132 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V133 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V132 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V133> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V132> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -26023,7 +25983,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<NSString, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V133 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V132 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSString arg1, NSError arg2)
@@ -26032,29 +25992,29 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V133 */
+ } /* class NIDActionArity2V132 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSString, bool>))]
- internal delegate void DActionArity2V140 (IntPtr block, IntPtr arg1, bool arg2);
+ internal delegate void DActionArity2V139 (IntPtr block, IntPtr arg1, bool arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V140 {
- static internal readonly DActionArity2V140 Handler = Invoke;
- [MonoPInvokeCallback (typeof (DActionArity2V140))]
+ static internal class SDActionArity2V139 {
+ static internal readonly DActionArity2V139 Handler = Invoke;
+ [MonoPInvokeCallback (typeof (DActionArity2V139))]
static unsafe void Invoke (IntPtr block, IntPtr 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 SDActionArity2V139 */
+ internal sealed class NIDActionArity2V139 : TrampolineBlockBase {
+ DActionArity2V139 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V140 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V139 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V140> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V139> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -26063,7 +26023,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 NIDActionArity2V139 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSString arg1, bool arg2)
@@ -26071,7 +26031,7 @@ namespace ObjCRuntime {
var arg1__handle__ = arg1.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2);
}
- } /* class NIDActionArity2V140 */
+ } /* class NIDActionArity2V139 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSUrl, NSError>))]
internal delegate void DActionArity2V26 (IntPtr block, IntPtr arg1, IntPtr arg2);
@@ -26114,26 +26074,26 @@ namespace ObjCRuntime {
} /* class NIDActionArity2V26 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSUrl, global::UIKit.UIDocumentBrowserImportMode>))]
- internal delegate void DActionArity2V141 (IntPtr block, IntPtr arg1, UIntPtr arg2);
+ internal delegate void DActionArity2V140 (IntPtr block, IntPtr arg1, UIntPtr arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V141 {
- static internal readonly DActionArity2V141 Handler = Invoke;
- [MonoPInvokeCallback (typeof (DActionArity2V141))]
+ static internal class SDActionArity2V140 {
+ static internal readonly DActionArity2V140 Handler = Invoke;
+ [MonoPInvokeCallback (typeof (DActionArity2V140))]
static unsafe void Invoke (IntPtr block, IntPtr 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 SDActionArity2V140 */
+ internal sealed class NIDActionArity2V140 : TrampolineBlockBase {
+ DActionArity2V140 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V141 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V140 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V141> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V140> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -26142,7 +26102,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 NIDActionArity2V140 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSUrl arg1, global::UIKit.UIDocumentBrowserImportMode arg2)
@@ -26150,7 +26110,7 @@ namespace ObjCRuntime {
var arg1__handle__ = arg1.GetHandle ();
invoker (BlockPointer, arg1__handle__, (UIntPtr) (ulong) arg2);
}
- } /* class NIDActionArity2V141 */
+ } /* class NIDActionArity2V140 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSUrlSessionAuthChallengeDisposition, NSUrlCredential>))]
internal delegate void DActionArity2V10 (IntPtr block, IntPtr arg1, IntPtr arg2);
@@ -26966,67 +26926,27 @@ namespace ObjCRuntime {
}
} /* class NIDActionArity2V94 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
- [UserDelegateType (typeof (global::System.Action<global::HomeKit.HMAccessorySetupResult, NSError>))]
- internal delegate void DActionArity2V95 (IntPtr block, IntPtr arg1, IntPtr arg2);
- //
- // This class bridges native block invocations that call into C#
- //
- static internal class SDActionArity2V95 {
- static internal readonly DActionArity2V95 Handler = Invoke;
- [MonoPInvokeCallback (typeof (DActionArity2V95))]
- static unsafe void Invoke (IntPtr block, IntPtr arg1, IntPtr 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 SDActionArity2V95 */
- internal sealed class NIDActionArity2V95 : TrampolineBlockBase {
- DActionArity2V95 invoker;
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V95 (BlockLiteral *block) : base (block)
- {
- invoker = block->GetDelegateForBlock<DActionArity2V95> ();
- }
- [Preserve (Conditional=true)]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static global::System.Action<global::HomeKit.HMAccessorySetupResult, NSError>? Create (IntPtr block)
- {
- if (block == IntPtr.Zero)
- return null;
- var del = (global::System.Action<global::HomeKit.HMAccessorySetupResult, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V95 ((BlockLiteral *) block).Invoke;
- }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- unsafe void Invoke (global::HomeKit.HMAccessorySetupResult arg1, NSError arg2)
- {
- var arg1__handle__ = arg1.GetHandle ();
- var arg2__handle__ = arg2.GetHandle ();
- invoker (BlockPointer, arg1__handle__, arg2__handle__);
- }
- } /* class NIDActionArity2V95 */
- [UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::HomeKit.HMAccessory[], NSError>))]
- internal delegate void DActionArity2V97 (IntPtr block, IntPtr arg1, IntPtr arg2);
+ internal delegate void DActionArity2V96 (IntPtr block, IntPtr arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V97 {
- static internal readonly DActionArity2V97 Handler = Invoke;
- [MonoPInvokeCallback (typeof (DActionArity2V97))]
+ static internal class SDActionArity2V96 {
+ static internal readonly DActionArity2V96 Handler = Invoke;
+ [MonoPInvokeCallback (typeof (DActionArity2V96))]
static unsafe void Invoke (IntPtr block, IntPtr arg1, IntPtr 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 SDActionArity2V97 */
- internal sealed class NIDActionArity2V97 : TrampolineBlockBase {
- DActionArity2V97 invoker;
+ } /* class SDActionArity2V96 */
+ internal sealed class NIDActionArity2V96 : TrampolineBlockBase {
+ DActionArity2V96 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V97 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V96 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V97> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V96> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -27035,7 +26955,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::HomeKit.HMAccessory[], NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V97 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V96 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::HomeKit.HMAccessory[] arg1, NSError arg2)
@@ -27048,29 +26968,29 @@ namespace ObjCRuntime {
if (nsa_arg1 != null)
nsa_arg1.Dispose ();
}
- } /* class NIDActionArity2V97 */
+ } /* class NIDActionArity2V96 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::HomeKit.HMActionSet, NSError>))]
- internal delegate void DActionArity2V96 (IntPtr block, IntPtr arg1, IntPtr arg2);
+ internal delegate void DActionArity2V95 (IntPtr block, IntPtr arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V96 {
- static internal readonly DActionArity2V96 Handler = Invoke;
- [MonoPInvokeCallback (typeof (DActionArity2V96))]
+ static internal class SDActionArity2V95 {
+ static internal readonly DActionArity2V95 Handler = Invoke;
+ [MonoPInvokeCallback (typeof (DActionArity2V95))]
static unsafe void Invoke (IntPtr block, IntPtr arg1, IntPtr 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 SDActionArity2V96 */
- internal sealed class NIDActionArity2V96 : TrampolineBlockBase {
- DActionArity2V96 invoker;
+ } /* class SDActionArity2V95 */
+ internal sealed class NIDActionArity2V95 : TrampolineBlockBase {
+ DActionArity2V95 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V96 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V95 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V96> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V95> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -27079,7 +26999,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::HomeKit.HMActionSet, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V96 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V95 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::HomeKit.HMActionSet arg1, NSError arg2)
@@ -27088,29 +27008,29 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V96 */
+ } /* class NIDActionArity2V95 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::HomeKit.HMHome, NSError>))]
- internal delegate void DActionArity2V102 (IntPtr block, IntPtr arg1, IntPtr arg2);
+ internal delegate void DActionArity2V101 (IntPtr block, IntPtr arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V102 {
- static internal readonly DActionArity2V102 Handler = Invoke;
- [MonoPInvokeCallback (typeof (DActionArity2V102))]
+ static internal class SDActionArity2V101 {
+ static internal readonly DActionArity2V101 Handler = Invoke;
+ [MonoPInvokeCallback (typeof (DActionArity2V101))]
static unsafe void Invoke (IntPtr block, IntPtr arg1, IntPtr 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 SDActionArity2V102 */
- internal sealed class NIDActionArity2V102 : TrampolineBlockBase {
- DActionArity2V102 invoker;
+ } /* class SDActionArity2V101 */
+ internal sealed class NIDActionArity2V101 : TrampolineBlockBase {
+ DActionArity2V101 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V102 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V101 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V102> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V101> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -27119,7 +27039,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::HomeKit.HMHome, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V102 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V101 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::HomeKit.HMHome arg1, NSError arg2)
@@ -27128,9 +27048,49 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V102 */
+ } /* class NIDActionArity2V101 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::HomeKit.HMRoom, NSError>))]
+ internal delegate void DActionArity2V97 (IntPtr block, IntPtr arg1, IntPtr arg2);
+ //
+ // This class bridges native block invocations that call into C#
+ //
+ static internal class SDActionArity2V97 {
+ static internal readonly DActionArity2V97 Handler = Invoke;
+ [MonoPInvokeCallback (typeof (DActionArity2V97))]
+ static unsafe void Invoke (IntPtr block, IntPtr arg1, IntPtr 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 SDActionArity2V97 */
+ internal sealed class NIDActionArity2V97 : TrampolineBlockBase {
+ DActionArity2V97 invoker;
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public unsafe NIDActionArity2V97 (BlockLiteral *block) : base (block)
+ {
+ invoker = block->GetDelegateForBlock<DActionArity2V97> ();
+ }
+ [Preserve (Conditional=true)]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public unsafe static global::System.Action<global::HomeKit.HMRoom, NSError>? Create (IntPtr block)
+ {
+ if (block == IntPtr.Zero)
+ return null;
+ var del = (global::System.Action<global::HomeKit.HMRoom, NSError>) GetExistingManagedDelegate (block);
+ return del ?? new NIDActionArity2V97 ((BlockLiteral *) block).Invoke;
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ unsafe void Invoke (global::HomeKit.HMRoom arg1, NSError arg2)
+ {
+ var arg1__handle__ = arg1.GetHandle ();
+ var arg2__handle__ = arg2.GetHandle ();
+ invoker (BlockPointer, arg1__handle__, arg2__handle__);
+ }
+ } /* class NIDActionArity2V97 */
+ [UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
+ [UserDelegateType (typeof (global::System.Action<global::HomeKit.HMServiceGroup, NSError>))]
internal delegate void DActionArity2V98 (IntPtr block, IntPtr arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
@@ -27140,9 +27100,9 @@ namespace ObjCRuntime {
[MonoPInvokeCallback (typeof (DActionArity2V98))]
static unsafe void Invoke (IntPtr block, IntPtr arg1, IntPtr arg2) {
var descriptor = (BlockLiteral *) block;
- var del = (global::System.Action<global::HomeKit.HMRoom, NSError>) (descriptor->Target);
+ var del = (global::System.Action<global::HomeKit.HMServiceGroup, NSError>) (descriptor->Target);
if (del != null)
- del ( Runtime.GetNSObject<HomeKit.HMRoom> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
+ del ( Runtime.GetNSObject<HomeKit.HMServiceGroup> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
} /* class SDActionArity2V98 */
internal sealed class NIDActionArity2V98 : TrampolineBlockBase {
@@ -27154,15 +27114,15 @@ namespace ObjCRuntime {
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static global::System.Action<global::HomeKit.HMRoom, NSError>? Create (IntPtr block)
+ public unsafe static global::System.Action<global::HomeKit.HMServiceGroup, NSError>? Create (IntPtr block)
{
if (block == IntPtr.Zero)
return null;
- var del = (global::System.Action<global::HomeKit.HMRoom, NSError>) GetExistingManagedDelegate (block);
+ var del = (global::System.Action<global::HomeKit.HMServiceGroup, NSError>) GetExistingManagedDelegate (block);
return del ?? new NIDActionArity2V98 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- unsafe void Invoke (global::HomeKit.HMRoom arg1, NSError arg2)
+ unsafe void Invoke (global::HomeKit.HMServiceGroup arg1, NSError arg2)
{
var arg1__handle__ = arg1.GetHandle ();
var arg2__handle__ = arg2.GetHandle ();
@@ -27170,7 +27130,7 @@ namespace ObjCRuntime {
}
} /* class NIDActionArity2V98 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
- [UserDelegateType (typeof (global::System.Action<global::HomeKit.HMServiceGroup, NSError>))]
+ [UserDelegateType (typeof (global::System.Action<global::HomeKit.HMUser, NSError>))]
internal delegate void DActionArity2V99 (IntPtr block, IntPtr arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
@@ -27180,9 +27140,9 @@ namespace ObjCRuntime {
[MonoPInvokeCallback (typeof (DActionArity2V99))]
static unsafe void Invoke (IntPtr block, IntPtr arg1, IntPtr arg2) {
var descriptor = (BlockLiteral *) block;
- var del = (global::System.Action<global::HomeKit.HMServiceGroup, NSError>) (descriptor->Target);
+ var del = (global::System.Action<global::HomeKit.HMUser, NSError>) (descriptor->Target);
if (del != null)
- del ( Runtime.GetNSObject<HomeKit.HMServiceGroup> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
+ del ( Runtime.GetNSObject<HomeKit.HMUser> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
} /* class SDActionArity2V99 */
internal sealed class NIDActionArity2V99 : TrampolineBlockBase {
@@ -27194,15 +27154,15 @@ namespace ObjCRuntime {
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static global::System.Action<global::HomeKit.HMServiceGroup, NSError>? Create (IntPtr block)
+ public unsafe static global::System.Action<global::HomeKit.HMUser, NSError>? Create (IntPtr block)
{
if (block == IntPtr.Zero)
return null;
- var del = (global::System.Action<global::HomeKit.HMServiceGroup, NSError>) GetExistingManagedDelegate (block);
+ var del = (global::System.Action<global::HomeKit.HMUser, NSError>) GetExistingManagedDelegate (block);
return del ?? new NIDActionArity2V99 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- unsafe void Invoke (global::HomeKit.HMServiceGroup arg1, NSError arg2)
+ unsafe void Invoke (global::HomeKit.HMUser arg1, NSError arg2)
{
var arg1__handle__ = arg1.GetHandle ();
var arg2__handle__ = arg2.GetHandle ();
@@ -27210,7 +27170,7 @@ namespace ObjCRuntime {
}
} /* class NIDActionArity2V99 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
- [UserDelegateType (typeof (global::System.Action<global::HomeKit.HMUser, NSError>))]
+ [UserDelegateType (typeof (global::System.Action<global::HomeKit.HMZone, NSError>))]
internal delegate void DActionArity2V100 (IntPtr block, IntPtr arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
@@ -27220,9 +27180,9 @@ namespace ObjCRuntime {
[MonoPInvokeCallback (typeof (DActionArity2V100))]
static unsafe void Invoke (IntPtr block, IntPtr arg1, IntPtr arg2) {
var descriptor = (BlockLiteral *) block;
- var del = (global::System.Action<global::HomeKit.HMUser, NSError>) (descriptor->Target);
+ var del = (global::System.Action<global::HomeKit.HMZone, NSError>) (descriptor->Target);
if (del != null)
- del ( Runtime.GetNSObject<HomeKit.HMUser> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
+ del ( Runtime.GetNSObject<HomeKit.HMZone> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
} /* class SDActionArity2V100 */
internal sealed class NIDActionArity2V100 : TrampolineBlockBase {
@@ -27234,15 +27194,15 @@ namespace ObjCRuntime {
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static global::System.Action<global::HomeKit.HMUser, NSError>? Create (IntPtr block)
+ public unsafe static global::System.Action<global::HomeKit.HMZone, NSError>? Create (IntPtr block)
{
if (block == IntPtr.Zero)
return null;
- var del = (global::System.Action<global::HomeKit.HMUser, NSError>) GetExistingManagedDelegate (block);
+ var del = (global::System.Action<global::HomeKit.HMZone, NSError>) GetExistingManagedDelegate (block);
return del ?? new NIDActionArity2V100 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- unsafe void Invoke (global::HomeKit.HMUser arg1, NSError arg2)
+ unsafe void Invoke (global::HomeKit.HMZone arg1, NSError arg2)
{
var arg1__handle__ = arg1.GetHandle ();
var arg2__handle__ = arg2.GetHandle ();
@@ -27250,47 +27210,47 @@ namespace ObjCRuntime {
}
} /* class NIDActionArity2V100 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
- [UserDelegateType (typeof (global::System.Action<global::HomeKit.HMZone, NSError>))]
- internal delegate void DActionArity2V101 (IntPtr block, IntPtr arg1, IntPtr arg2);
+ [UserDelegateType (typeof (global::System.Action<global::IdentityLookup.ILNetworkResponse, NSError>))]
+ internal delegate void DActionArity2V102 (IntPtr block, IntPtr arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V101 {
- static internal readonly DActionArity2V101 Handler = Invoke;
- [MonoPInvokeCallback (typeof (DActionArity2V101))]
+ static internal class SDActionArity2V102 {
+ static internal readonly DActionArity2V102 Handler = Invoke;
+ [MonoPInvokeCallback (typeof (DActionArity2V102))]
static unsafe void Invoke (IntPtr block, IntPtr arg1, IntPtr arg2) {
var descriptor = (BlockLiteral *) block;
- var del = (global::System.Action<global::HomeKit.HMZone, NSError>) (descriptor->Target);
+ var del = (global::System.Action<global::IdentityLookup.ILNetworkResponse, NSError>) (descriptor->Target);
if (del != null)
- del ( Runtime.GetNSObject<HomeKit.HMZone> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
+ del ( Runtime.GetNSObject<IdentityLookup.ILNetworkResponse> (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)]
- public unsafe static global::System.Action<global::HomeKit.HMZone, NSError>? Create (IntPtr block)
+ public unsafe static global::System.Action<global::IdentityLookup.ILNetworkResponse, NSError>? Create (IntPtr block)
{
if (block == IntPtr.Zero)
return null;
- var del = (global::System.Action<global::HomeKit.HMZone, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V101 ((BlockLiteral *) block).Invoke;
+ var del = (global::System.Action<global::IdentityLookup.ILNetworkResponse, NSError>) GetExistingManagedDelegate (block);
+ return del ?? new NIDActionArity2V102 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- unsafe void Invoke (global::HomeKit.HMZone arg1, NSError arg2)
+ unsafe void Invoke (global::IdentityLookup.ILNetworkResponse arg1, NSError arg2)
{
var arg1__handle__ = arg1.GetHandle ();
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V101 */
+ } /* class NIDActionArity2V102 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
- [UserDelegateType (typeof (global::System.Action<global::IdentityLookup.ILNetworkResponse, NSError>))]
+ [UserDelegateType (typeof (global::System.Action<global::Intents.INVoiceShortcut, NSError>))]
internal delegate void DActionArity2V103 (IntPtr block, IntPtr arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
@@ -27300,9 +27260,9 @@ namespace ObjCRuntime {
[MonoPInvokeCallback (typeof (DActionArity2V103))]
static unsafe void Invoke (IntPtr block, IntPtr arg1, IntPtr arg2) {
var descriptor = (BlockLiteral *) block;
- var del = (global::System.Action<global::IdentityLookup.ILNetworkResponse, NSError>) (descriptor->Target);
+ var del = (global::System.Action<global::Intents.INVoiceShortcut, NSError>) (descriptor->Target);
if (del != null)
- del ( Runtime.GetNSObject<IdentityLookup.ILNetworkResponse> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
+ del ( Runtime.GetNSObject<Intents.INVoiceShortcut> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
} /* class SDActionArity2V103 */
internal sealed class NIDActionArity2V103 : TrampolineBlockBase {
@@ -27314,15 +27274,15 @@ namespace ObjCRuntime {
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static global::System.Action<global::IdentityLookup.ILNetworkResponse, NSError>? Create (IntPtr block)
+ public unsafe static global::System.Action<global::Intents.INVoiceShortcut, NSError>? Create (IntPtr block)
{
if (block == IntPtr.Zero)
return null;
- var del = (global::System.Action<global::IdentityLookup.ILNetworkResponse, NSError>) GetExistingManagedDelegate (block);
+ var del = (global::System.Action<global::Intents.INVoiceShortcut, NSError>) GetExistingManagedDelegate (block);
return del ?? new NIDActionArity2V103 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- unsafe void Invoke (global::IdentityLookup.ILNetworkResponse arg1, NSError arg2)
+ unsafe void Invoke (global::Intents.INVoiceShortcut arg1, NSError arg2)
{
var arg1__handle__ = arg1.GetHandle ();
var arg2__handle__ = arg2.GetHandle ();
@@ -27330,7 +27290,7 @@ namespace ObjCRuntime {
}
} /* class NIDActionArity2V103 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
- [UserDelegateType (typeof (global::System.Action<global::Intents.INVoiceShortcut, NSError>))]
+ [UserDelegateType (typeof (global::System.Action<global::LinkPresentation.LPLinkMetadata, NSError>))]
internal delegate void DActionArity2V104 (IntPtr block, IntPtr arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
@@ -27340,9 +27300,9 @@ namespace ObjCRuntime {
[MonoPInvokeCallback (typeof (DActionArity2V104))]
static unsafe void Invoke (IntPtr block, IntPtr arg1, IntPtr arg2) {
var descriptor = (BlockLiteral *) block;
- var del = (global::System.Action<global::Intents.INVoiceShortcut, NSError>) (descriptor->Target);
+ var del = (global::System.Action<global::LinkPresentation.LPLinkMetadata, NSError>) (descriptor->Target);
if (del != null)
- del ( Runtime.GetNSObject<Intents.INVoiceShortcut> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
+ del ( Runtime.GetNSObject<LinkPresentation.LPLinkMetadata> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
} /* class SDActionArity2V104 */
internal sealed class NIDActionArity2V104 : TrampolineBlockBase {
@@ -27354,15 +27314,15 @@ namespace ObjCRuntime {
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static global::System.Action<global::Intents.INVoiceShortcut, NSError>? Create (IntPtr block)
+ public unsafe static global::System.Action<global::LinkPresentation.LPLinkMetadata, NSError>? Create (IntPtr block)
{
if (block == IntPtr.Zero)
return null;
- var del = (global::System.Action<global::Intents.INVoiceShortcut, NSError>) GetExistingManagedDelegate (block);
+ var del = (global::System.Action<global::LinkPresentation.LPLinkMetadata, NSError>) GetExistingManagedDelegate (block);
return del ?? new NIDActionArity2V104 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- unsafe void Invoke (global::Intents.INVoiceShortcut arg1, NSError arg2)
+ unsafe void Invoke (global::LinkPresentation.LPLinkMetadata arg1, NSError arg2)
{
var arg1__handle__ = arg1.GetHandle ();
var arg2__handle__ = arg2.GetHandle ();
@@ -27370,87 +27330,91 @@ namespace ObjCRuntime {
}
} /* class NIDActionArity2V104 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
- [UserDelegateType (typeof (global::System.Action<global::LinkPresentation.LPLinkMetadata, NSError>))]
- internal delegate void DActionArity2V105 (IntPtr block, IntPtr arg1, IntPtr arg2);
+ [UserDelegateType (typeof (global::System.Action<global::MediaPlayer.MPContentItem, NSError>))]
+ internal delegate void DActionArity2V108 (IntPtr block, IntPtr arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V105 {
- static internal readonly DActionArity2V105 Handler = Invoke;
- [MonoPInvokeCallback (typeof (DActionArity2V105))]
+ static internal class SDActionArity2V108 {
+ static internal readonly DActionArity2V108 Handler = Invoke;
+ [MonoPInvokeCallback (typeof (DActionArity2V108))]
static unsafe void Invoke (IntPtr block, IntPtr arg1, IntPtr arg2) {
var descriptor = (BlockLiteral *) block;
- var del = (global::System.Action<global::LinkPresentation.LPLinkMetadata, NSError>) (descriptor->Target);
+ var del = (global::System.Action<global::MediaPlayer.MPContentItem, NSError>) (descriptor->Target);
if (del != null)
- del ( Runtime.GetNSObject<LinkPresentation.LPLinkMetadata> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
+ del ( Runtime.GetNSObject<MPContentItem> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V105 */
- internal sealed class NIDActionArity2V105 : TrampolineBlockBase {
- DActionArity2V105 invoker;
+ } /* class SDActionArity2V108 */
+ internal sealed class NIDActionArity2V108 : TrampolineBlockBase {
+ DActionArity2V108 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V105 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V108 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V105> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V108> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static global::System.Action<global::LinkPresentation.LPLinkMetadata, NSError>? Create (IntPtr block)
+ public unsafe static global::System.Action<global::MediaPlayer.MPContentItem, NSError>? Create (IntPtr block)
{
if (block == IntPtr.Zero)
return null;
- var del = (global::System.Action<global::LinkPresentation.LPLinkMetadata, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V105 ((BlockLiteral *) block).Invoke;
+ var del = (global::System.Action<global::MediaPlayer.MPContentItem, NSError>) GetExistingManagedDelegate (block);
+ return del ?? new NIDActionArity2V108 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- unsafe void Invoke (global::LinkPresentation.LPLinkMetadata arg1, NSError arg2)
+ unsafe void Invoke (global::MediaPlayer.MPContentItem arg1, NSError arg2)
{
var arg1__handle__ = arg1.GetHandle ();
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V105 */
+ } /* class NIDActionArity2V108 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
- [UserDelegateType (typeof (global::System.Action<global::MediaPlayer.MPContentItem, NSError>))]
- internal delegate void DActionArity2V109 (IntPtr block, IntPtr arg1, IntPtr arg2);
+ [UserDelegateType (typeof (global::System.Action<global::MediaPlayer.MPMediaEntity[], NSError>))]
+ internal delegate void DActionArity2V105 (IntPtr block, IntPtr arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V109 {
- static internal readonly DActionArity2V109 Handler = Invoke;
- [MonoPInvokeCallback (typeof (DActionArity2V109))]
+ static internal class SDActionArity2V105 {
+ static internal readonly DActionArity2V105 Handler = Invoke;
+ [MonoPInvokeCallback (typeof (DActionArity2V105))]
static unsafe void Invoke (IntPtr block, IntPtr arg1, IntPtr arg2) {
var descriptor = (BlockLiteral *) block;
- var del = (global::System.Action<global::MediaPlayer.MPContentItem, NSError>) (descriptor->Target);
+ var del = (global::System.Action<global::MediaPlayer.MPMediaEntity[], NSError>) (descriptor->Target);
if (del != null)
- del ( Runtime.GetNSObject<MPContentItem> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
+ del (CFArray.ArrayFromHandle<global::MediaPlayer.MPMediaEntity> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V109 */
- internal sealed class NIDActionArity2V109 : TrampolineBlockBase {
- DActionArity2V109 invoker;
+ } /* class SDActionArity2V105 */
+ internal sealed class NIDActionArity2V105 : TrampolineBlockBase {
+ DActionArity2V105 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V109 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V105 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V109> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V105> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static global::System.Action<global::MediaPlayer.MPContentItem, NSError>? Create (IntPtr block)
+ public unsafe static global::System.Action<global::MediaPlayer.MPMediaEntity[], NSError>? Create (IntPtr block)
{
if (block == IntPtr.Zero)
return null;
- var del = (global::System.Action<global::MediaPlayer.MPContentItem, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V109 ((BlockLiteral *) block).Invoke;
+ var del = (global::System.Action<global::MediaPlayer.MPMediaEntity[], NSError>) GetExistingManagedDelegate (block);
+ return del ?? new NIDActionArity2V105 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- unsafe void Invoke (global::MediaPlayer.MPContentItem arg1, NSError arg2)
+ unsafe void Invoke (global::MediaPlayer.MPMediaEntity[] arg1, NSError arg2)
{
- var arg1__handle__ = arg1.GetHandle ();
+ if (arg1 is null)
+ ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (arg1));
var arg2__handle__ = arg2.GetHandle ();
- invoker (BlockPointer, arg1__handle__, arg2__handle__);
+ var nsa_arg1 = arg1 is null ? null : NSArray.FromNSObjects (arg1);
+ invoker (BlockPointer, nsa_arg1.GetHandle (), arg2__handle__);
+ if (nsa_arg1 != null)
+ nsa_arg1.Dispose ();
}
- } /* class NIDActionArity2V109 */
+ } /* class NIDActionArity2V105 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
- [UserDelegateType (typeof (global::System.Action<global::MediaPlayer.MPMediaEntity[], NSError>))]
+ [UserDelegateType (typeof (global::System.Action<global::MediaPlayer.MPMediaPlaylist, NSError>))]
internal delegate void DActionArity2V106 (IntPtr block, IntPtr arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
@@ -27460,9 +27424,9 @@ namespace ObjCRuntime {
[MonoPInvokeCallback (typeof (DActionArity2V106))]
static unsafe void Invoke (IntPtr block, IntPtr arg1, IntPtr arg2) {
var descriptor = (BlockLiteral *) block;
- var del = (global::System.Action<global::MediaPlayer.MPMediaEntity[], NSError>) (descriptor->Target);
+ var del = (global::System.Action<global::MediaPlayer.MPMediaPlaylist, NSError>) (descriptor->Target);
if (del != null)
- del (CFArray.ArrayFromHandle<global::MediaPlayer.MPMediaEntity> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
+ del ( Runtime.GetNSObject<MPMediaPlaylist> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
} /* class SDActionArity2V106 */
internal sealed class NIDActionArity2V106 : TrampolineBlockBase {
@@ -27474,27 +27438,23 @@ namespace ObjCRuntime {
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static global::System.Action<global::MediaPlayer.MPMediaEntity[], NSError>? Create (IntPtr block)
+ public unsafe static global::System.Action<global::MediaPlayer.MPMediaPlaylist, NSError>? Create (IntPtr block)
{
if (block == IntPtr.Zero)
return null;
- var del = (global::System.Action<global::MediaPlayer.MPMediaEntity[], NSError>) GetExistingManagedDelegate (block);
+ var del = (global::System.Action<global::MediaPlayer.MPMediaPlaylist, NSError>) GetExistingManagedDelegate (block);
return del ?? new NIDActionArity2V106 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- unsafe void Invoke (global::MediaPlayer.MPMediaEntity[] arg1, NSError arg2)
+ unsafe void Invoke (global::MediaPlayer.MPMediaPlaylist arg1, NSError arg2)
{
- if (arg1 is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (arg1));
+ var arg1__handle__ = arg1.GetHandle ();
var arg2__handle__ = arg2.GetHandle ();
- var nsa_arg1 = arg1 is null ? null : NSArray.FromNSObjects (arg1);
- invoker (BlockPointer, nsa_arg1.GetHandle (), arg2__handle__);
- if (nsa_arg1 != null)
- nsa_arg1.Dispose ();
+ invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
} /* class NIDActionArity2V106 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
- [UserDelegateType (typeof (global::System.Action<global::MediaPlayer.MPMediaPlaylist, NSError>))]
+ [UserDelegateType (typeof (global::System.Action<global::MediaPlayer.MPMusicPlayerControllerQueue, NSError>))]
internal delegate void DActionArity2V107 (IntPtr block, IntPtr arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
@@ -27504,9 +27464,9 @@ namespace ObjCRuntime {
[MonoPInvokeCallback (typeof (DActionArity2V107))]
static unsafe void Invoke (IntPtr block, IntPtr arg1, IntPtr arg2) {
var descriptor = (BlockLiteral *) block;
- var del = (global::System.Action<global::MediaPlayer.MPMediaPlaylist, NSError>) (descriptor->Target);
+ var del = (global::System.Action<global::MediaPlayer.MPMusicPlayerControllerQueue, NSError>) (descriptor->Target);
if (del != null)
- del ( Runtime.GetNSObject<MPMediaPlaylist> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
+ del ( Runtime.GetNSObject<MPMusicPlayerControllerQueue> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
} /* class SDActionArity2V107 */
internal sealed class NIDActionArity2V107 : TrampolineBlockBase {
@@ -27518,15 +27478,15 @@ namespace ObjCRuntime {
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static global::System.Action<global::MediaPlayer.MPMediaPlaylist, NSError>? Create (IntPtr block)
+ public unsafe static global::System.Action<global::MediaPlayer.MPMusicPlayerControllerQueue, NSError>? Create (IntPtr block)
{
if (block == IntPtr.Zero)
return null;
- var del = (global::System.Action<global::MediaPlayer.MPMediaPlaylist, NSError>) GetExistingManagedDelegate (block);
+ var del = (global::System.Action<global::MediaPlayer.MPMusicPlayerControllerQueue, NSError>) GetExistingManagedDelegate (block);
return del ?? new NIDActionArity2V107 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- unsafe void Invoke (global::MediaPlayer.MPMediaPlaylist arg1, NSError arg2)
+ unsafe void Invoke (global::MediaPlayer.MPMusicPlayerControllerQueue arg1, NSError arg2)
{
var arg1__handle__ = arg1.GetHandle ();
var arg2__handle__ = arg2.GetHandle ();
@@ -27534,47 +27494,47 @@ namespace ObjCRuntime {
}
} /* class NIDActionArity2V107 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
- [UserDelegateType (typeof (global::System.Action<global::MediaPlayer.MPMusicPlayerControllerQueue, NSError>))]
- internal delegate void DActionArity2V108 (IntPtr block, IntPtr arg1, IntPtr arg2);
+ [UserDelegateType (typeof (global::System.Action<global::Metal.IMTLComputePipelineState, NSError>))]
+ internal delegate void DActionArity2V111 (IntPtr block, IntPtr arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V108 {
- static internal readonly DActionArity2V108 Handler = Invoke;
- [MonoPInvokeCallback (typeof (DActionArity2V108))]
+ static internal class SDActionArity2V111 {
+ static internal readonly DActionArity2V111 Handler = Invoke;
+ [MonoPInvokeCallback (typeof (DActionArity2V111))]
static unsafe void Invoke (IntPtr block, IntPtr arg1, IntPtr arg2) {
var descriptor = (BlockLiteral *) block;
- var del = (global::System.Action<global::MediaPlayer.MPMusicPlayerControllerQueue, NSError>) (descriptor->Target);
+ var del = (global::System.Action<global::Metal.IMTLComputePipelineState, NSError>) (descriptor->Target);
if (del != null)
- del ( Runtime.GetNSObject<MPMusicPlayerControllerQueue> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
+ del ( Runtime.GetINativeObject<Metal.IMTLComputePipelineState> (arg1, false)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V108 */
- internal sealed class NIDActionArity2V108 : TrampolineBlockBase {
- DActionArity2V108 invoker;
+ } /* class SDActionArity2V111 */
+ internal sealed class NIDActionArity2V111 : TrampolineBlockBase {
+ DActionArity2V111 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V108 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V111 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V108> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V111> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static global::System.Action<global::MediaPlayer.MPMusicPlayerControllerQueue, NSError>? Create (IntPtr block)
+ public unsafe static global::System.Action<global::Metal.IMTLComputePipelineState, NSError>? Create (IntPtr block)
{
if (block == IntPtr.Zero)
return null;
- var del = (global::System.Action<global::MediaPlayer.MPMusicPlayerControllerQueue, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V108 ((BlockLiteral *) block).Invoke;
+ var del = (global::System.Action<global::Metal.IMTLComputePipelineState, NSError>) GetExistingManagedDelegate (block);
+ return del ?? new NIDActionArity2V111 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- unsafe void Invoke (global::MediaPlayer.MPMusicPlayerControllerQueue arg1, NSError arg2)
+ unsafe void Invoke (global::Metal.IMTLComputePipelineState arg1, NSError arg2)
{
var arg1__handle__ = arg1.GetHandle ();
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V108 */
+ } /* class NIDActionArity2V111 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
- [UserDelegateType (typeof (global::System.Action<global::Metal.IMTLComputePipelineState, NSError>))]
+ [UserDelegateType (typeof (global::System.Action<global::Metal.IMTLFunction, NSError>))]
internal delegate void DActionArity2V112 (IntPtr block, IntPtr arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
@@ -27584,9 +27544,9 @@ namespace ObjCRuntime {
[MonoPInvokeCallback (typeof (DActionArity2V112))]
static unsafe void Invoke (IntPtr block, IntPtr arg1, IntPtr arg2) {
var descriptor = (BlockLiteral *) block;
- var del = (global::System.Action<global::Metal.IMTLComputePipelineState, NSError>) (descriptor->Target);
+ var del = (global::System.Action<global::Metal.IMTLFunction, NSError>) (descriptor->Target);
if (del != null)
- del ( Runtime.GetINativeObject<Metal.IMTLComputePipelineState> (arg1, false)!, Runtime.GetNSObject<NSError> (arg2)!);
+ del ( Runtime.GetINativeObject<Metal.IMTLFunction> (arg1, false)!, Runtime.GetNSObject<NSError> (arg2)!);
}
} /* class SDActionArity2V112 */
internal sealed class NIDActionArity2V112 : TrampolineBlockBase {
@@ -27598,15 +27558,15 @@ namespace ObjCRuntime {
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static global::System.Action<global::Metal.IMTLComputePipelineState, NSError>? Create (IntPtr block)
+ public unsafe static global::System.Action<global::Metal.IMTLFunction, NSError>? Create (IntPtr block)
{
if (block == IntPtr.Zero)
return null;
- var del = (global::System.Action<global::Metal.IMTLComputePipelineState, NSError>) GetExistingManagedDelegate (block);
+ var del = (global::System.Action<global::Metal.IMTLFunction, NSError>) GetExistingManagedDelegate (block);
return del ?? new NIDActionArity2V112 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- unsafe void Invoke (global::Metal.IMTLComputePipelineState arg1, NSError arg2)
+ unsafe void Invoke (global::Metal.IMTLFunction arg1, NSError arg2)
{
var arg1__handle__ = arg1.GetHandle ();
var arg2__handle__ = arg2.GetHandle ();
@@ -27614,47 +27574,47 @@ namespace ObjCRuntime {
}
} /* class NIDActionArity2V112 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
- [UserDelegateType (typeof (global::System.Action<global::Metal.IMTLFunction, NSError>))]
- internal delegate void DActionArity2V113 (IntPtr block, IntPtr arg1, IntPtr arg2);
+ [UserDelegateType (typeof (global::System.Action<global::Metal.IMTLLibrary, NSError>))]
+ internal delegate void DActionArity2V109 (IntPtr block, IntPtr arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V113 {
- static internal readonly DActionArity2V113 Handler = Invoke;
- [MonoPInvokeCallback (typeof (DActionArity2V113))]
+ static internal class SDActionArity2V109 {
+ static internal readonly DActionArity2V109 Handler = Invoke;
+ [MonoPInvokeCallback (typeof (DActionArity2V109))]
static unsafe void Invoke (IntPtr block, IntPtr arg1, IntPtr arg2) {
var descriptor = (BlockLiteral *) block;
- var del = (global::System.Action<global::Metal.IMTLFunction, NSError>) (descriptor->Target);
+ var del = (global::System.Action<global::Metal.IMTLLibrary, NSError>) (descriptor->Target);
if (del != null)
- del ( Runtime.GetINativeObject<Metal.IMTLFunction> (arg1, false)!, Runtime.GetNSObject<NSError> (arg2)!);
+ del ( Runtime.GetINativeObject<Metal.IMTLLibrary> (arg1, false)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V113 */
- internal sealed class NIDActionArity2V113 : TrampolineBlockBase {
- DActionArity2V113 invoker;
+ } /* class SDActionArity2V109 */
+ internal sealed class NIDActionArity2V109 : TrampolineBlockBase {
+ DActionArity2V109 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V113 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V109 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V113> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V109> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static global::System.Action<global::Metal.IMTLFunction, NSError>? Create (IntPtr block)
+ public unsafe static global::System.Action<global::Metal.IMTLLibrary, NSError>? Create (IntPtr block)
{
if (block == IntPtr.Zero)
return null;
- var del = (global::System.Action<global::Metal.IMTLFunction, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V113 ((BlockLiteral *) block).Invoke;
+ var del = (global::System.Action<global::Metal.IMTLLibrary, NSError>) GetExistingManagedDelegate (block);
+ return del ?? new NIDActionArity2V109 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- unsafe void Invoke (global::Metal.IMTLFunction arg1, NSError arg2)
+ unsafe void Invoke (global::Metal.IMTLLibrary arg1, NSError arg2)
{
var arg1__handle__ = arg1.GetHandle ();
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V113 */
+ } /* class NIDActionArity2V109 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
- [UserDelegateType (typeof (global::System.Action<global::Metal.IMTLLibrary, NSError>))]
+ [UserDelegateType (typeof (global::System.Action<global::Metal.IMTLRenderPipelineState, NSError>))]
internal delegate void DActionArity2V110 (IntPtr block, IntPtr arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
@@ -27664,9 +27624,9 @@ namespace ObjCRuntime {
[MonoPInvokeCallback (typeof (DActionArity2V110))]
static unsafe void Invoke (IntPtr block, IntPtr arg1, IntPtr arg2) {
var descriptor = (BlockLiteral *) block;
- var del = (global::System.Action<global::Metal.IMTLLibrary, NSError>) (descriptor->Target);
+ var del = (global::System.Action<global::Metal.IMTLRenderPipelineState, NSError>) (descriptor->Target);
if (del != null)
- del ( Runtime.GetINativeObject<Metal.IMTLLibrary> (arg1, false)!, Runtime.GetNSObject<NSError> (arg2)!);
+ del ( Runtime.GetINativeObject<Metal.IMTLRenderPipelineState> (arg1, false)!, Runtime.GetNSObject<NSError> (arg2)!);
}
} /* class SDActionArity2V110 */
internal sealed class NIDActionArity2V110 : TrampolineBlockBase {
@@ -27678,15 +27638,15 @@ namespace ObjCRuntime {
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static global::System.Action<global::Metal.IMTLLibrary, NSError>? Create (IntPtr block)
+ public unsafe static global::System.Action<global::Metal.IMTLRenderPipelineState, NSError>? Create (IntPtr block)
{
if (block == IntPtr.Zero)
return null;
- var del = (global::System.Action<global::Metal.IMTLLibrary, NSError>) GetExistingManagedDelegate (block);
+ var del = (global::System.Action<global::Metal.IMTLRenderPipelineState, NSError>) GetExistingManagedDelegate (block);
return del ?? new NIDActionArity2V110 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- unsafe void Invoke (global::Metal.IMTLLibrary arg1, NSError arg2)
+ unsafe void Invoke (global::Metal.IMTLRenderPipelineState arg1, NSError arg2)
{
var arg1__handle__ = arg1.GetHandle ();
var arg2__handle__ = arg2.GetHandle ();
@@ -27694,47 +27654,47 @@ namespace ObjCRuntime {
}
} /* class NIDActionArity2V110 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
- [UserDelegateType (typeof (global::System.Action<global::Metal.IMTLRenderPipelineState, NSError>))]
- internal delegate void DActionArity2V111 (IntPtr block, IntPtr arg1, IntPtr arg2);
+ [UserDelegateType (typeof (global::System.Action<global::MetalPerformanceShaders.MPSImage, NSError>))]
+ internal delegate void DActionArity2V113 (IntPtr block, IntPtr arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V111 {
- static internal readonly DActionArity2V111 Handler = Invoke;
- [MonoPInvokeCallback (typeof (DActionArity2V111))]
+ static internal class SDActionArity2V113 {
+ static internal readonly DActionArity2V113 Handler = Invoke;
+ [MonoPInvokeCallback (typeof (DActionArity2V113))]
static unsafe void Invoke (IntPtr block, IntPtr arg1, IntPtr arg2) {
var descriptor = (BlockLiteral *) block;
- var del = (global::System.Action<global::Metal.IMTLRenderPipelineState, NSError>) (descriptor->Target);
+ var del = (global::System.Action<global::MetalPerformanceShaders.MPSImage, NSError>) (descriptor->Target);
if (del != null)
- del ( Runtime.GetINativeObject<Metal.IMTLRenderPipelineState> (arg1, false)!, Runtime.GetNSObject<NSError> (arg2)!);
+ del ( Runtime.GetNSObject<MetalPerformanceShaders.MPSImage> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V111 */
- internal sealed class NIDActionArity2V111 : TrampolineBlockBase {
- DActionArity2V111 invoker;
+ } /* class SDActionArity2V113 */
+ internal sealed class NIDActionArity2V113 : TrampolineBlockBase {
+ DActionArity2V113 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V111 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V113 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V111> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V113> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static global::System.Action<global::Metal.IMTLRenderPipelineState, NSError>? Create (IntPtr block)
+ public unsafe static global::System.Action<global::MetalPerformanceShaders.MPSImage, NSError>? Create (IntPtr block)
{
if (block == IntPtr.Zero)
return null;
- var del = (global::System.Action<global::Metal.IMTLRenderPipelineState, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V111 ((BlockLiteral *) block).Invoke;
+ var del = (global::System.Action<global::MetalPerformanceShaders.MPSImage, NSError>) GetExistingManagedDelegate (block);
+ return del ?? new NIDActionArity2V113 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- unsafe void Invoke (global::Metal.IMTLRenderPipelineState arg1, NSError arg2)
+ unsafe void Invoke (global::MetalPerformanceShaders.MPSImage arg1, NSError arg2)
{
var arg1__handle__ = arg1.GetHandle ();
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V111 */
+ } /* class NIDActionArity2V113 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
- [UserDelegateType (typeof (global::System.Action<global::MetalPerformanceShaders.MPSImage, NSError>))]
+ [UserDelegateType (typeof (global::System.Action<global::NaturalLanguage.NLTaggerAssetsResult, NSError>))]
internal delegate void DActionArity2V114 (IntPtr block, IntPtr arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
@@ -27744,9 +27704,9 @@ namespace ObjCRuntime {
[MonoPInvokeCallback (typeof (DActionArity2V114))]
static unsafe void Invoke (IntPtr block, IntPtr arg1, IntPtr arg2) {
var descriptor = (BlockLiteral *) block;
- var del = (global::System.Action<global::MetalPerformanceShaders.MPSImage, NSError>) (descriptor->Target);
+ var del = (global::System.Action<global::NaturalLanguage.NLTaggerAssetsResult, NSError>) (descriptor->Target);
if (del != null)
- del ( Runtime.GetNSObject<MetalPerformanceShaders.MPSImage> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
+ del ((NaturalLanguage.NLTaggerAssetsResult) (long) arg1, Runtime.GetNSObject<NSError> (arg2)!);
}
} /* class SDActionArity2V114 */
internal sealed class NIDActionArity2V114 : TrampolineBlockBase {
@@ -27758,106 +27718,106 @@ namespace ObjCRuntime {
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static global::System.Action<global::MetalPerformanceShaders.MPSImage, NSError>? Create (IntPtr block)
+ public unsafe static global::System.Action<global::NaturalLanguage.NLTaggerAssetsResult, NSError>? Create (IntPtr block)
{
if (block == IntPtr.Zero)
return null;
- var del = (global::System.Action<global::MetalPerformanceShaders.MPSImage, NSError>) GetExistingManagedDelegate (block);
+ var del = (global::System.Action<global::NaturalLanguage.NLTaggerAssetsResult, NSError>) GetExistingManagedDelegate (block);
return del ?? new NIDActionArity2V114 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- unsafe void Invoke (global::MetalPerformanceShaders.MPSImage arg1, NSError arg2)
+ unsafe void Invoke (global::NaturalLanguage.NLTaggerAssetsResult arg1, NSError arg2)
{
- var arg1__handle__ = arg1.GetHandle ();
var arg2__handle__ = arg2.GetHandle ();
- invoker (BlockPointer, arg1__handle__, arg2__handle__);
+ invoker (BlockPointer, (IntPtr) (long) arg1, arg2__handle__);
}
} /* class NIDActionArity2V114 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
- [UserDelegateType (typeof (global::System.Action<global::NaturalLanguage.NLTaggerAssetsResult, NSError>))]
- internal delegate void DActionArity2V115 (IntPtr block, IntPtr arg1, IntPtr arg2);
+ [UserDelegateType (typeof (global::System.Action<global::NetworkExtension.NEAppPushManager[], NSError>))]
+ internal delegate void DActionArity2V116 (IntPtr block, IntPtr arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V115 {
- static internal readonly DActionArity2V115 Handler = Invoke;
- [MonoPInvokeCallback (typeof (DActionArity2V115))]
+ static internal class SDActionArity2V116 {
+ static internal readonly DActionArity2V116 Handler = Invoke;
+ [MonoPInvokeCallback (typeof (DActionArity2V116))]
static unsafe void Invoke (IntPtr block, IntPtr arg1, IntPtr arg2) {
var descriptor = (BlockLiteral *) block;
- var del = (global::System.Action<global::NaturalLanguage.NLTaggerAssetsResult, NSError>) (descriptor->Target);
+ var del = (global::System.Action<global::NetworkExtension.NEAppPushManager[], NSError>) (descriptor->Target);
if (del != null)
- del ((NaturalLanguage.NLTaggerAssetsResult) (long) arg1, Runtime.GetNSObject<NSError> (arg2)!);
+ del (CFArray.ArrayFromHandle<global::NetworkExtension.NEAppPushManager> (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)]
- public unsafe static global::System.Action<global::NaturalLanguage.NLTaggerAssetsResult, NSError>? Create (IntPtr block)
+ public unsafe static global::System.Action<global::NetworkExtension.NEAppPushManager[], NSError>? Create (IntPtr block)
{
if (block == IntPtr.Zero)
return null;
- var del = (global::System.Action<global::NaturalLanguage.NLTaggerAssetsResult, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V115 ((BlockLiteral *) block).Invoke;
+ var del = (global::System.Action<global::NetworkExtension.NEAppPushManager[], NSError>) GetExistingManagedDelegate (block);
+ return del ?? new NIDActionArity2V116 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- unsafe void Invoke (global::NaturalLanguage.NLTaggerAssetsResult arg1, NSError arg2)
+ unsafe void Invoke (global::NetworkExtension.NEAppPushManager[] arg1, NSError arg2)
{
+ if (arg1 is null)
+ ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (arg1));
var arg2__handle__ = arg2.GetHandle ();
- invoker (BlockPointer, (IntPtr) (long) arg1, arg2__handle__);
+ var nsa_arg1 = arg1 is null ? null : NSArray.FromNSObjects (arg1);
+ invoker (BlockPointer, nsa_arg1.GetHandle (), arg2__handle__);
+ if (nsa_arg1 != null)
+ nsa_arg1.Dispose ();
}
- } /* class NIDActionArity2V115 */
+ } /* class NIDActionArity2V116 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
- [UserDelegateType (typeof (global::System.Action<global::NetworkExtension.NEAppPushManager[], NSError>))]
- internal delegate void DActionArity2V117 (IntPtr block, IntPtr arg1, IntPtr arg2);
+ [UserDelegateType (typeof (global::System.Action<global::PassKit.PKAddShareablePassConfiguration, NSError>))]
+ internal delegate void DActionArity2V119 (IntPtr block, IntPtr arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V117 {
- static internal readonly DActionArity2V117 Handler = Invoke;
- [MonoPInvokeCallback (typeof (DActionArity2V117))]
+ static internal class SDActionArity2V119 {
+ static internal readonly DActionArity2V119 Handler = Invoke;
+ [MonoPInvokeCallback (typeof (DActionArity2V119))]
static unsafe void Invoke (IntPtr block, IntPtr arg1, IntPtr arg2) {
var descriptor = (BlockLiteral *) block;
- var del = (global::System.Action<global::NetworkExtension.NEAppPushManager[], NSError>) (descriptor->Target);
+ var del = (global::System.Action<global::PassKit.PKAddShareablePassConfiguration, NSError>) (descriptor->Target);
if (del != null)
- del (CFArray.ArrayFromHandle<global::NetworkExtension.NEAppPushManager> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
+ del ( Runtime.GetNSObject<PassKit.PKAddShareablePassConfiguration> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V117 */
- internal sealed class NIDActionArity2V117 : TrampolineBlockBase {
- DActionArity2V117 invoker;
+ } /* class SDActionArity2V119 */
+ internal sealed class NIDActionArity2V119 : TrampolineBlockBase {
+ DActionArity2V119 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V117 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V119 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V117> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V119> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static global::System.Action<global::NetworkExtension.NEAppPushManager[], NSError>? Create (IntPtr block)
+ public unsafe static global::System.Action<global::PassKit.PKAddShareablePassConfiguration, NSError>? Create (IntPtr block)
{
if (block == IntPtr.Zero)
return null;
- var del = (global::System.Action<global::NetworkExtension.NEAppPushManager[], NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V117 ((BlockLiteral *) block).Invoke;
+ var del = (global::System.Action<global::PassKit.PKAddShareablePassConfiguration, NSError>) GetExistingManagedDelegate (block);
+ return del ?? new NIDActionArity2V119 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- unsafe void Invoke (global::NetworkExtension.NEAppPushManager[] arg1, NSError arg2)
+ unsafe void Invoke (global::PassKit.PKAddShareablePassConfiguration arg1, NSError arg2)
{
- if (arg1 is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (arg1));
+ var arg1__handle__ = arg1.GetHandle ();
var arg2__handle__ = arg2.GetHandle ();
- var nsa_arg1 = arg1 is null ? null : NSArray.FromNSObjects (arg1);
- invoker (BlockPointer, nsa_arg1.GetHandle (), arg2__handle__);
- if (nsa_arg1 != null)
- nsa_arg1.Dispose ();
+ invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V117 */
+ } /* class NIDActionArity2V119 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
- [UserDelegateType (typeof (global::System.Action<global::PassKit.PKAddShareablePassConfiguration, NSError>))]
+ [UserDelegateType (typeof (global::System.Action<global::PassKit.PKPaymentAuthorizationStatus, global::PassKit.PKPaymentSummaryItem[]>))]
internal delegate void DActionArity2V120 (IntPtr block, IntPtr arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
@@ -27867,9 +27827,9 @@ namespace ObjCRuntime {
[MonoPInvokeCallback (typeof (DActionArity2V120))]
static unsafe void Invoke (IntPtr block, IntPtr arg1, IntPtr arg2) {
var descriptor = (BlockLiteral *) block;
- var del = (global::System.Action<global::PassKit.PKAddShareablePassConfiguration, NSError>) (descriptor->Target);
+ var del = (global::System.Action<global::PassKit.PKPaymentAuthorizationStatus, global::PassKit.PKPaymentSummaryItem[]>) (descriptor->Target);
if (del != null)
- del ( Runtime.GetNSObject<PassKit.PKAddShareablePassConfiguration> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
+ del ((PassKit.PKPaymentAuthorizationStatus) (long) arg1, CFArray.ArrayFromHandle<global::PassKit.PKPaymentSummaryItem> (arg2)!);
}
} /* class SDActionArity2V120 */
internal sealed class NIDActionArity2V120 : TrampolineBlockBase {
@@ -27881,23 +27841,26 @@ namespace ObjCRuntime {
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static global::System.Action<global::PassKit.PKAddShareablePassConfiguration, NSError>? Create (IntPtr block)
+ public unsafe static global::System.Action<global::PassKit.PKPaymentAuthorizationStatus, global::PassKit.PKPaymentSummaryItem[]>? Create (IntPtr block)
{
if (block == IntPtr.Zero)
return null;
- var del = (global::System.Action<global::PassKit.PKAddShareablePassConfiguration, NSError>) GetExistingManagedDelegate (block);
+ var del = (global::System.Action<global::PassKit.PKPaymentAuthorizationStatus, global::PassKit.PKPaymentSummaryItem[]>) GetExistingManagedDelegate (block);
return del ?? new NIDActionArity2V120 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- unsafe void Invoke (global::PassKit.PKAddShareablePassConfiguration arg1, NSError arg2)
+ unsafe void Invoke (global::PassKit.PKPaymentAuthorizationStatus arg1, global::PassKit.PKPaymentSummaryItem[] arg2)
{
- var arg1__handle__ = arg1.GetHandle ();
- var arg2__handle__ = arg2.GetHandle ();
- invoker (BlockPointer, arg1__handle__, arg2__handle__);
+ if (arg2 is null)
+ ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (arg2));
+ var nsa_arg2 = arg2 is null ? null : NSArray.FromNSObjects (arg2);
+ invoker (BlockPointer, (IntPtr) (long) arg1, nsa_arg2.GetHandle ());
+ if (nsa_arg2 != null)
+ nsa_arg2.Dispose ();
}
} /* class NIDActionArity2V120 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
- [UserDelegateType (typeof (global::System.Action<global::PassKit.PKPaymentAuthorizationStatus, global::PassKit.PKPaymentSummaryItem[]>))]
+ [UserDelegateType (typeof (global::System.Action<global::Photos.PHLivePhoto, NSDictionary>))]
internal delegate void DActionArity2V121 (IntPtr block, IntPtr arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
@@ -27907,9 +27870,9 @@ namespace ObjCRuntime {
[MonoPInvokeCallback (typeof (DActionArity2V121))]
static unsafe void Invoke (IntPtr block, IntPtr arg1, IntPtr arg2) {
var descriptor = (BlockLiteral *) block;
- var del = (global::System.Action<global::PassKit.PKPaymentAuthorizationStatus, global::PassKit.PKPaymentSummaryItem[]>) (descriptor->Target);
+ var del = (global::System.Action<global::Photos.PHLivePhoto, NSDictionary>) (descriptor->Target);
if (del != null)
- del ((PassKit.PKPaymentAuthorizationStatus) (long) arg1, CFArray.ArrayFromHandle<global::PassKit.PKPaymentSummaryItem> (arg2)!);
+ del ( Runtime.GetNSObject<PHLivePhoto> (arg1)!, Runtime.GetNSObject<NSDictionary> (arg2)!);
}
} /* class SDActionArity2V121 */
internal sealed class NIDActionArity2V121 : TrampolineBlockBase {
@@ -27921,26 +27884,23 @@ namespace ObjCRuntime {
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static global::System.Action<global::PassKit.PKPaymentAuthorizationStatus, global::PassKit.PKPaymentSummaryItem[]>? Create (IntPtr block)
+ public unsafe static global::System.Action<global::Photos.PHLivePhoto, NSDictionary>? Create (IntPtr block)
{
if (block == IntPtr.Zero)
return null;
- var del = (global::System.Action<global::PassKit.PKPaymentAuthorizationStatus, global::PassKit.PKPaymentSummaryItem[]>) GetExistingManagedDelegate (block);
+ var del = (global::System.Action<global::Photos.PHLivePhoto, NSDictionary>) GetExistingManagedDelegate (block);
return del ?? new NIDActionArity2V121 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- unsafe void Invoke (global::PassKit.PKPaymentAuthorizationStatus arg1, global::PassKit.PKPaymentSummaryItem[] arg2)
+ unsafe void Invoke (global::Photos.PHLivePhoto arg1, NSDictionary arg2)
{
- if (arg2 is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (arg2));
- var nsa_arg2 = arg2 is null ? null : NSArray.FromNSObjects (arg2);
- invoker (BlockPointer, (IntPtr) (long) arg1, nsa_arg2.GetHandle ());
- if (nsa_arg2 != null)
- nsa_arg2.Dispose ();
+ var arg1__handle__ = arg1.GetHandle ();
+ var arg2__handle__ = arg2.GetHandle ();
+ invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
} /* class NIDActionArity2V121 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
- [UserDelegateType (typeof (global::System.Action<global::Photos.PHLivePhoto, NSDictionary>))]
+ [UserDelegateType (typeof (global::System.Action<global::Photos.PHLivePhoto, NSError>))]
internal delegate void DActionArity2V122 (IntPtr block, IntPtr arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
@@ -27950,9 +27910,9 @@ namespace ObjCRuntime {
[MonoPInvokeCallback (typeof (DActionArity2V122))]
static unsafe void Invoke (IntPtr block, IntPtr arg1, IntPtr arg2) {
var descriptor = (BlockLiteral *) block;
- var del = (global::System.Action<global::Photos.PHLivePhoto, NSDictionary>) (descriptor->Target);
+ var del = (global::System.Action<global::Photos.PHLivePhoto, NSError>) (descriptor->Target);
if (del != null)
- del ( Runtime.GetNSObject<PHLivePhoto> (arg1)!, Runtime.GetNSObject<NSDictionary> (arg2)!);
+ del ( Runtime.GetNSObject<PHLivePhoto> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
} /* class SDActionArity2V122 */
internal sealed class NIDActionArity2V122 : TrampolineBlockBase {
@@ -27964,15 +27924,15 @@ namespace ObjCRuntime {
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static global::System.Action<global::Photos.PHLivePhoto, NSDictionary>? Create (IntPtr block)
+ public unsafe static global::System.Action<global::Photos.PHLivePhoto, NSError>? Create (IntPtr block)
{
if (block == IntPtr.Zero)
return null;
- var del = (global::System.Action<global::Photos.PHLivePhoto, NSDictionary>) GetExistingManagedDelegate (block);
+ var del = (global::System.Action<global::Photos.PHLivePhoto, NSError>) GetExistingManagedDelegate (block);
return del ?? new NIDActionArity2V122 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- unsafe void Invoke (global::Photos.PHLivePhoto arg1, NSDictionary arg2)
+ unsafe void Invoke (global::Photos.PHLivePhoto arg1, NSError arg2)
{
var arg1__handle__ = arg1.GetHandle ();
var arg2__handle__ = arg2.GetHandle ();
@@ -27980,7 +27940,7 @@ namespace ObjCRuntime {
}
} /* class NIDActionArity2V122 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
- [UserDelegateType (typeof (global::System.Action<global::Photos.PHLivePhoto, NSError>))]
+ [UserDelegateType (typeof (global::System.Action<global::QuickLook.QLPreviewReply, NSError>))]
internal delegate void DActionArity2V123 (IntPtr block, IntPtr arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
@@ -27990,9 +27950,9 @@ namespace ObjCRuntime {
[MonoPInvokeCallback (typeof (DActionArity2V123))]
static unsafe void Invoke (IntPtr block, IntPtr arg1, IntPtr arg2) {
var descriptor = (BlockLiteral *) block;
- var del = (global::System.Action<global::Photos.PHLivePhoto, NSError>) (descriptor->Target);
+ var del = (global::System.Action<global::QuickLook.QLPreviewReply, NSError>) (descriptor->Target);
if (del != null)
- del ( Runtime.GetNSObject<PHLivePhoto> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
+ del ( Runtime.GetNSObject<QLPreviewReply> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
} /* class SDActionArity2V123 */
internal sealed class NIDActionArity2V123 : TrampolineBlockBase {
@@ -28004,15 +27964,15 @@ namespace ObjCRuntime {
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static global::System.Action<global::Photos.PHLivePhoto, NSError>? Create (IntPtr block)
+ public unsafe static global::System.Action<global::QuickLook.QLPreviewReply, NSError>? Create (IntPtr block)
{
if (block == IntPtr.Zero)
return null;
- var del = (global::System.Action<global::Photos.PHLivePhoto, NSError>) GetExistingManagedDelegate (block);
+ var del = (global::System.Action<global::QuickLook.QLPreviewReply, NSError>) GetExistingManagedDelegate (block);
return del ?? new NIDActionArity2V123 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- unsafe void Invoke (global::Photos.PHLivePhoto arg1, NSError arg2)
+ unsafe void Invoke (global::QuickLook.QLPreviewReply arg1, NSError arg2)
{
var arg1__handle__ = arg1.GetHandle ();
var arg2__handle__ = arg2.GetHandle ();
@@ -28020,7 +27980,7 @@ namespace ObjCRuntime {
}
} /* class NIDActionArity2V123 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
- [UserDelegateType (typeof (global::System.Action<global::QuickLook.QLPreviewReply, NSError>))]
+ [UserDelegateType (typeof (global::System.Action<global::QuickLook.QLThumbnailReply, NSError>))]
internal delegate void DActionArity2V124 (IntPtr block, IntPtr arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
@@ -28030,9 +27990,9 @@ namespace ObjCRuntime {
[MonoPInvokeCallback (typeof (DActionArity2V124))]
static unsafe void Invoke (IntPtr block, IntPtr arg1, IntPtr arg2) {
var descriptor = (BlockLiteral *) block;
- var del = (global::System.Action<global::QuickLook.QLPreviewReply, NSError>) (descriptor->Target);
+ var del = (global::System.Action<global::QuickLook.QLThumbnailReply, NSError>) (descriptor->Target);
if (del != null)
- del ( Runtime.GetNSObject<QLPreviewReply> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
+ del ( Runtime.GetNSObject<QLThumbnailReply> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
} /* class SDActionArity2V124 */
internal sealed class NIDActionArity2V124 : TrampolineBlockBase {
@@ -28044,15 +28004,15 @@ namespace ObjCRuntime {
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static global::System.Action<global::QuickLook.QLPreviewReply, NSError>? Create (IntPtr block)
+ public unsafe static global::System.Action<global::QuickLook.QLThumbnailReply, NSError>? Create (IntPtr block)
{
if (block == IntPtr.Zero)
return null;
- var del = (global::System.Action<global::QuickLook.QLPreviewReply, NSError>) GetExistingManagedDelegate (block);
+ var del = (global::System.Action<global::QuickLook.QLThumbnailReply, NSError>) GetExistingManagedDelegate (block);
return del ?? new NIDActionArity2V124 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- unsafe void Invoke (global::QuickLook.QLPreviewReply arg1, NSError arg2)
+ unsafe void Invoke (global::QuickLook.QLThumbnailReply arg1, NSError arg2)
{
var arg1__handle__ = arg1.GetHandle ();
var arg2__handle__ = arg2.GetHandle ();
@@ -28060,7 +28020,7 @@ namespace ObjCRuntime {
}
} /* class NIDActionArity2V124 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
- [UserDelegateType (typeof (global::System.Action<global::QuickLook.QLThumbnailReply, NSError>))]
+ [UserDelegateType (typeof (global::System.Action<global::QuickLookThumbnailing.QLThumbnailRepresentation, NSError>))]
internal delegate void DActionArity2V125 (IntPtr block, IntPtr arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
@@ -28070,9 +28030,9 @@ namespace ObjCRuntime {
[MonoPInvokeCallback (typeof (DActionArity2V125))]
static unsafe void Invoke (IntPtr block, IntPtr arg1, IntPtr arg2) {
var descriptor = (BlockLiteral *) block;
- var del = (global::System.Action<global::QuickLook.QLThumbnailReply, NSError>) (descriptor->Target);
+ var del = (global::System.Action<global::QuickLookThumbnailing.QLThumbnailRepresentation, NSError>) (descriptor->Target);
if (del != null)
- del ( Runtime.GetNSObject<QLThumbnailReply> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
+ del ( Runtime.GetNSObject<QuickLookThumbnailing.QLThumbnailRepresentation> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
} /* class SDActionArity2V125 */
internal sealed class NIDActionArity2V125 : TrampolineBlockBase {
@@ -28084,15 +28044,15 @@ namespace ObjCRuntime {
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static global::System.Action<global::QuickLook.QLThumbnailReply, NSError>? Create (IntPtr block)
+ public unsafe static global::System.Action<global::QuickLookThumbnailing.QLThumbnailRepresentation, NSError>? Create (IntPtr block)
{
if (block == IntPtr.Zero)
return null;
- var del = (global::System.Action<global::QuickLook.QLThumbnailReply, NSError>) GetExistingManagedDelegate (block);
+ var del = (global::System.Action<global::QuickLookThumbnailing.QLThumbnailRepresentation, NSError>) GetExistingManagedDelegate (block);
return del ?? new NIDActionArity2V125 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- unsafe void Invoke (global::QuickLook.QLThumbnailReply arg1, NSError arg2)
+ unsafe void Invoke (global::QuickLookThumbnailing.QLThumbnailRepresentation arg1, NSError arg2)
{
var arg1__handle__ = arg1.GetHandle ();
var arg2__handle__ = arg2.GetHandle ();
@@ -28100,7 +28060,7 @@ namespace ObjCRuntime {
}
} /* class NIDActionArity2V125 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
- [UserDelegateType (typeof (global::System.Action<global::QuickLookThumbnailing.QLThumbnailRepresentation, NSError>))]
+ [UserDelegateType (typeof (global::System.Action<global::ReplayKit.RPBroadcastActivityViewController, NSError>))]
internal delegate void DActionArity2V126 (IntPtr block, IntPtr arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
@@ -28110,9 +28070,9 @@ namespace ObjCRuntime {
[MonoPInvokeCallback (typeof (DActionArity2V126))]
static unsafe void Invoke (IntPtr block, IntPtr arg1, IntPtr arg2) {
var descriptor = (BlockLiteral *) block;
- var del = (global::System.Action<global::QuickLookThumbnailing.QLThumbnailRepresentation, NSError>) (descriptor->Target);
+ var del = (global::System.Action<global::ReplayKit.RPBroadcastActivityViewController, NSError>) (descriptor->Target);
if (del != null)
- del ( Runtime.GetNSObject<QuickLookThumbnailing.QLThumbnailRepresentation> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
+ del ( Runtime.GetNSObject<ReplayKit.RPBroadcastActivityViewController> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
} /* class SDActionArity2V126 */
internal sealed class NIDActionArity2V126 : TrampolineBlockBase {
@@ -28124,15 +28084,15 @@ namespace ObjCRuntime {
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static global::System.Action<global::QuickLookThumbnailing.QLThumbnailRepresentation, NSError>? Create (IntPtr block)
+ public unsafe static global::System.Action<global::ReplayKit.RPBroadcastActivityViewController, NSError>? Create (IntPtr block)
{
if (block == IntPtr.Zero)
return null;
- var del = (global::System.Action<global::QuickLookThumbnailing.QLThumbnailRepresentation, NSError>) GetExistingManagedDelegate (block);
+ var del = (global::System.Action<global::ReplayKit.RPBroadcastActivityViewController, NSError>) GetExistingManagedDelegate (block);
return del ?? new NIDActionArity2V126 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- unsafe void Invoke (global::QuickLookThumbnailing.QLThumbnailRepresentation arg1, NSError arg2)
+ unsafe void Invoke (global::ReplayKit.RPBroadcastActivityViewController arg1, NSError arg2)
{
var arg1__handle__ = arg1.GetHandle ();
var arg2__handle__ = arg2.GetHandle ();
@@ -28140,7 +28100,7 @@ namespace ObjCRuntime {
}
} /* class NIDActionArity2V126 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
- [UserDelegateType (typeof (global::System.Action<global::ReplayKit.RPBroadcastActivityViewController, NSError>))]
+ [UserDelegateType (typeof (global::System.Action<global::ReplayKit.RPPreviewViewController, NSError>))]
internal delegate void DActionArity2V127 (IntPtr block, IntPtr arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
@@ -28150,9 +28110,9 @@ namespace ObjCRuntime {
[MonoPInvokeCallback (typeof (DActionArity2V127))]
static unsafe void Invoke (IntPtr block, IntPtr arg1, IntPtr arg2) {
var descriptor = (BlockLiteral *) block;
- var del = (global::System.Action<global::ReplayKit.RPBroadcastActivityViewController, NSError>) (descriptor->Target);
+ var del = (global::System.Action<global::ReplayKit.RPPreviewViewController, NSError>) (descriptor->Target);
if (del != null)
- del ( Runtime.GetNSObject<ReplayKit.RPBroadcastActivityViewController> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
+ del ( Runtime.GetNSObject<ReplayKit.RPPreviewViewController> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
} /* class SDActionArity2V127 */
internal sealed class NIDActionArity2V127 : TrampolineBlockBase {
@@ -28164,15 +28124,15 @@ namespace ObjCRuntime {
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static global::System.Action<global::ReplayKit.RPBroadcastActivityViewController, NSError>? Create (IntPtr block)
+ public unsafe static global::System.Action<global::ReplayKit.RPPreviewViewController, NSError>? Create (IntPtr block)
{
if (block == IntPtr.Zero)
return null;
- var del = (global::System.Action<global::ReplayKit.RPBroadcastActivityViewController, NSError>) GetExistingManagedDelegate (block);
+ var del = (global::System.Action<global::ReplayKit.RPPreviewViewController, NSError>) GetExistingManagedDelegate (block);
return del ?? new NIDActionArity2V127 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- unsafe void Invoke (global::ReplayKit.RPBroadcastActivityViewController arg1, NSError arg2)
+ unsafe void Invoke (global::ReplayKit.RPPreviewViewController arg1, NSError arg2)
{
var arg1__handle__ = arg1.GetHandle ();
var arg2__handle__ = arg2.GetHandle ();
@@ -28180,7 +28140,7 @@ namespace ObjCRuntime {
}
} /* class NIDActionArity2V127 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
- [UserDelegateType (typeof (global::System.Action<global::ReplayKit.RPPreviewViewController, NSError>))]
+ [UserDelegateType (typeof (global::System.Action<global::SafariServices.SFContentBlockerState, NSError>))]
internal delegate void DActionArity2V128 (IntPtr block, IntPtr arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
@@ -28190,9 +28150,9 @@ namespace ObjCRuntime {
[MonoPInvokeCallback (typeof (DActionArity2V128))]
static unsafe void Invoke (IntPtr block, IntPtr arg1, IntPtr arg2) {
var descriptor = (BlockLiteral *) block;
- var del = (global::System.Action<global::ReplayKit.RPPreviewViewController, NSError>) (descriptor->Target);
+ var del = (global::System.Action<global::SafariServices.SFContentBlockerState, NSError>) (descriptor->Target);
if (del != null)
- del ( Runtime.GetNSObject<ReplayKit.RPPreviewViewController> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
+ del ( Runtime.GetNSObject<SafariServices.SFContentBlockerState> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
} /* class SDActionArity2V128 */
internal sealed class NIDActionArity2V128 : TrampolineBlockBase {
@@ -28204,52 +28164,12 @@ namespace ObjCRuntime {
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static global::System.Action<global::ReplayKit.RPPreviewViewController, NSError>? Create (IntPtr block)
- {
- if (block == IntPtr.Zero)
- return null;
- var del = (global::System.Action<global::ReplayKit.RPPreviewViewController, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V128 ((BlockLiteral *) block).Invoke;
- }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- unsafe void Invoke (global::ReplayKit.RPPreviewViewController arg1, NSError arg2)
- {
- var arg1__handle__ = arg1.GetHandle ();
- var arg2__handle__ = arg2.GetHandle ();
- invoker (BlockPointer, arg1__handle__, arg2__handle__);
- }
- } /* class NIDActionArity2V128 */
- [UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
- [UserDelegateType (typeof (global::System.Action<global::SafariServices.SFContentBlockerState, NSError>))]
- internal delegate void DActionArity2V129 (IntPtr block, IntPtr arg1, IntPtr arg2);
- //
- // This class bridges native block invocations that call into C#
- //
- static internal class SDActionArity2V129 {
- static internal readonly DActionArity2V129 Handler = Invoke;
- [MonoPInvokeCallback (typeof (DActionArity2V129))]
- static unsafe void Invoke (IntPtr block, IntPtr arg1, IntPtr 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 SDActionArity2V129 */
- internal sealed class NIDActionArity2V129 : TrampolineBlockBase {
- DActionArity2V129 invoker;
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V129 (BlockLiteral *block) : base (block)
- {
- invoker = block->GetDelegateForBlock<DActionArity2V129> ();
- }
- [Preserve (Conditional=true)]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
public unsafe static global::System.Action<global::SafariServices.SFContentBlockerState, NSError>? Create (IntPtr block)
{
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::SafariServices.SFContentBlockerState, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V129 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V128 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::SafariServices.SFContentBlockerState arg1, NSError arg2)
@@ -28258,29 +28178,29 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V129 */
+ } /* class NIDActionArity2V128 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::Security.SecIdentity, NSArray>))]
- internal delegate void DActionArity2V119 (IntPtr block, IntPtr arg1, IntPtr arg2);
+ internal delegate void DActionArity2V118 (IntPtr block, IntPtr arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V119 {
- static internal readonly DActionArity2V119 Handler = Invoke;
- [MonoPInvokeCallback (typeof (DActionArity2V119))]
+ static internal class SDActionArity2V118 {
+ static internal readonly DActionArity2V118 Handler = Invoke;
+ [MonoPInvokeCallback (typeof (DActionArity2V118))]
static unsafe void Invoke (IntPtr block, IntPtr arg1, IntPtr 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 SDActionArity2V119 */
- internal sealed class NIDActionArity2V119 : TrampolineBlockBase {
- DActionArity2V119 invoker;
+ } /* class SDActionArity2V118 */
+ internal sealed class NIDActionArity2V118 : TrampolineBlockBase {
+ DActionArity2V118 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V119 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V118 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V119> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V118> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -28289,7 +28209,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::Security.SecIdentity, NSArray>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V119 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V118 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::Security.SecIdentity arg1, NSArray arg2)
@@ -28298,29 +28218,29 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V119 */
+ } /* class NIDActionArity2V118 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::ShazamKit.SHMediaItem, NSError>))]
- internal delegate void DActionArity2V130 (IntPtr block, IntPtr arg1, IntPtr arg2);
+ internal delegate void DActionArity2V129 (IntPtr block, IntPtr arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V130 {
- static internal readonly DActionArity2V130 Handler = Invoke;
- [MonoPInvokeCallback (typeof (DActionArity2V130))]
+ static internal class SDActionArity2V129 {
+ static internal readonly DActionArity2V129 Handler = Invoke;
+ [MonoPInvokeCallback (typeof (DActionArity2V129))]
static unsafe void Invoke (IntPtr block, IntPtr arg1, IntPtr 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 SDActionArity2V130 */
- internal sealed class NIDActionArity2V130 : TrampolineBlockBase {
- DActionArity2V130 invoker;
+ } /* class SDActionArity2V129 */
+ internal sealed class NIDActionArity2V129 : TrampolineBlockBase {
+ DActionArity2V129 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V130 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V129 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V130> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V129> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -28329,7 +28249,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::ShazamKit.SHMediaItem, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V130 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V129 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::ShazamKit.SHMediaItem arg1, NSError arg2)
@@ -28338,29 +28258,29 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V130 */
+ } /* class NIDActionArity2V129 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::Speech.SFSpeechRecognitionResult, NSError>))]
- internal delegate void DActionArity2V131 (IntPtr block, IntPtr arg1, IntPtr arg2);
+ internal delegate void DActionArity2V130 (IntPtr block, IntPtr arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V131 {
- static internal readonly DActionArity2V131 Handler = Invoke;
- [MonoPInvokeCallback (typeof (DActionArity2V131))]
+ static internal class SDActionArity2V130 {
+ static internal readonly DActionArity2V130 Handler = Invoke;
+ [MonoPInvokeCallback (typeof (DActionArity2V130))]
static unsafe void Invoke (IntPtr block, IntPtr arg1, IntPtr 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 SDActionArity2V131 */
- internal sealed class NIDActionArity2V131 : TrampolineBlockBase {
- DActionArity2V131 invoker;
+ } /* class SDActionArity2V130 */
+ internal sealed class NIDActionArity2V130 : TrampolineBlockBase {
+ DActionArity2V130 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V131 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V130 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V131> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V130> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -28369,7 +28289,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::Speech.SFSpeechRecognitionResult, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V131 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V130 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::Speech.SFSpeechRecognitionResult arg1, NSError arg2)
@@ -28378,29 +28298,29 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V131 */
+ } /* class NIDActionArity2V130 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::StoreKit.SKCloudServiceCapability, NSError>))]
- internal delegate void DActionArity2V132 (IntPtr block, UIntPtr arg1, IntPtr arg2);
+ internal delegate void DActionArity2V131 (IntPtr block, UIntPtr arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V132 {
- static internal readonly DActionArity2V132 Handler = Invoke;
- [MonoPInvokeCallback (typeof (DActionArity2V132))]
+ static internal class SDActionArity2V131 {
+ static internal readonly DActionArity2V131 Handler = Invoke;
+ [MonoPInvokeCallback (typeof (DActionArity2V131))]
static unsafe void Invoke (IntPtr block, UIntPtr arg1, IntPtr 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 SDActionArity2V132 */
- internal sealed class NIDActionArity2V132 : TrampolineBlockBase {
- DActionArity2V132 invoker;
+ } /* class SDActionArity2V131 */
+ internal sealed class NIDActionArity2V131 : TrampolineBlockBase {
+ DActionArity2V131 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V132 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V131 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V132> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V131> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -28409,7 +28329,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::StoreKit.SKCloudServiceCapability, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V132 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V131 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::StoreKit.SKCloudServiceCapability arg1, NSError arg2)
@@ -28417,29 +28337,29 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, (UIntPtr) (ulong) arg1, arg2__handle__);
}
- } /* class NIDActionArity2V132 */
+ } /* class NIDActionArity2V131 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::StoreKit.SKProductStorePromotionVisibility, NSError>))]
- internal delegate void DActionArity2V135 (IntPtr block, IntPtr arg1, IntPtr arg2);
+ internal delegate void DActionArity2V134 (IntPtr block, IntPtr arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V135 {
- static internal readonly DActionArity2V135 Handler = Invoke;
- [MonoPInvokeCallback (typeof (DActionArity2V135))]
+ static internal class SDActionArity2V134 {
+ static internal readonly DActionArity2V134 Handler = Invoke;
+ [MonoPInvokeCallback (typeof (DActionArity2V134))]
static unsafe void Invoke (IntPtr block, IntPtr arg1, IntPtr 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 SDActionArity2V135 */
- internal sealed class NIDActionArity2V135 : TrampolineBlockBase {
- DActionArity2V135 invoker;
+ } /* class SDActionArity2V134 */
+ internal sealed class NIDActionArity2V134 : TrampolineBlockBase {
+ DActionArity2V134 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V135 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V134 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V135> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V134> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -28448,7 +28368,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::StoreKit.SKProductStorePromotionVisibility, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V135 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V134 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::StoreKit.SKProductStorePromotionVisibility arg1, NSError arg2)
@@ -28456,29 +28376,29 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, (IntPtr) (long) arg1, arg2__handle__);
}
- } /* class NIDActionArity2V135 */
+ } /* class NIDActionArity2V134 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::StoreKit.SKProduct[], NSError>))]
- internal delegate void DActionArity2V134 (IntPtr block, IntPtr arg1, IntPtr arg2);
+ internal delegate void DActionArity2V133 (IntPtr block, IntPtr arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V134 {
- static internal readonly DActionArity2V134 Handler = Invoke;
- [MonoPInvokeCallback (typeof (DActionArity2V134))]
+ static internal class SDActionArity2V133 {
+ static internal readonly DActionArity2V133 Handler = Invoke;
+ [MonoPInvokeCallback (typeof (DActionArity2V133))]
static unsafe void Invoke (IntPtr block, IntPtr arg1, IntPtr 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 SDActionArity2V134 */
- internal sealed class NIDActionArity2V134 : TrampolineBlockBase {
- DActionArity2V134 invoker;
+ } /* class SDActionArity2V133 */
+ internal sealed class NIDActionArity2V133 : TrampolineBlockBase {
+ DActionArity2V133 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V134 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V133 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V134> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V133> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -28487,7 +28407,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::StoreKit.SKProduct[], NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V134 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V133 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::StoreKit.SKProduct[] arg1, NSError arg2)
@@ -28500,7 +28420,7 @@ namespace ObjCRuntime {
if (nsa_arg1 != null)
nsa_arg1.Dispose ();
}
- } /* class NIDActionArity2V134 */
+ } /* class NIDActionArity2V133 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<bool, global::AVKit.AVAudioSessionRouteSelection>))]
internal delegate void DActionArity2V24 (IntPtr block, bool arg1, IntPtr arg2);
@@ -28906,26 +28826,26 @@ namespace ObjCRuntime {
} /* class NIDActionArity2V63 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::ThreadNetwork.THCredentials, NSError>))]
- internal delegate void DActionArity2V137 (IntPtr block, IntPtr arg1, IntPtr arg2);
+ internal delegate void DActionArity2V136 (IntPtr block, IntPtr arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V137 {
- static internal readonly DActionArity2V137 Handler = Invoke;
- [MonoPInvokeCallback (typeof (DActionArity2V137))]
+ static internal class SDActionArity2V136 {
+ static internal readonly DActionArity2V136 Handler = Invoke;
+ [MonoPInvokeCallback (typeof (DActionArity2V136))]
static unsafe void Invoke (IntPtr block, IntPtr arg1, IntPtr 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 SDActionArity2V137 */
- internal sealed class NIDActionArity2V137 : TrampolineBlockBase {
- DActionArity2V137 invoker;
+ } /* class SDActionArity2V136 */
+ internal sealed class NIDActionArity2V136 : TrampolineBlockBase {
+ DActionArity2V136 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V137 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V136 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V137> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V136> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -28934,7 +28854,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::ThreadNetwork.THCredentials, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V137 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V136 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::ThreadNetwork.THCredentials arg1, NSError arg2)
@@ -28943,29 +28863,29 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V137 */
+ } /* class NIDActionArity2V136 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::UIKit.NSTextLayoutManager, global::UIKit.NSTextLayoutFragment>))]
- internal delegate void DActionArity2V139 (IntPtr block, IntPtr arg1, IntPtr arg2);
+ internal delegate void DActionArity2V138 (IntPtr block, IntPtr arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V139 {
- static internal readonly DActionArity2V139 Handler = Invoke;
- [MonoPInvokeCallback (typeof (DActionArity2V139))]
+ static internal class SDActionArity2V138 {
+ static internal readonly DActionArity2V138 Handler = Invoke;
+ [MonoPInvokeCallback (typeof (DActionArity2V138))]
static unsafe void Invoke (IntPtr block, IntPtr arg1, IntPtr 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 SDActionArity2V138 */
+ internal sealed class NIDActionArity2V138 : TrampolineBlockBase {
+ DActionArity2V138 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V139 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V138 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V139> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V138> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -28974,7 +28894,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 NIDActionArity2V138 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::UIKit.NSTextLayoutManager arg1, global::UIKit.NSTextLayoutFragment arg2)
@@ -28983,29 +28903,29 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V139 */
+ } /* class NIDActionArity2V138 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::UIKit.UIImage, NSError>))]
- internal delegate void DActionArity2V153 (IntPtr block, IntPtr arg1, IntPtr arg2);
+ internal delegate void DActionArity2V152 (IntPtr block, IntPtr arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V153 {
- static internal readonly DActionArity2V153 Handler = Invoke;
- [MonoPInvokeCallback (typeof (DActionArity2V153))]
+ static internal class SDActionArity2V152 {
+ static internal readonly DActionArity2V152 Handler = Invoke;
+ [MonoPInvokeCallback (typeof (DActionArity2V152))]
static unsafe void Invoke (IntPtr block, IntPtr arg1, IntPtr 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 SDActionArity2V152 */
+ internal sealed class NIDActionArity2V152 : TrampolineBlockBase {
+ DActionArity2V152 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V153 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V152 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V153> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V152> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -29014,7 +28934,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 NIDActionArity2V152 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::UIKit.UIImage arg1, NSError arg2)
@@ -29023,29 +28943,29 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V153 */
+ } /* class NIDActionArity2V152 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::UIKit.UISpringLoadedInteraction, global::UIKit.IUISpringLoadedInteractionContext>))]
- internal delegate void DActionArity2V146 (IntPtr block, IntPtr arg1, IntPtr arg2);
+ internal delegate void DActionArity2V145 (IntPtr block, IntPtr arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V146 {
- static internal readonly DActionArity2V146 Handler = Invoke;
- [MonoPInvokeCallback (typeof (DActionArity2V146))]
+ static internal class SDActionArity2V145 {
+ static internal readonly DActionArity2V145 Handler = Invoke;
+ [MonoPInvokeCallback (typeof (DActionArity2V145))]
static unsafe void Invoke (IntPtr block, IntPtr arg1, IntPtr 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 SDActionArity2V145 */
+ internal sealed class NIDActionArity2V145 : TrampolineBlockBase {
+ DActionArity2V145 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V146 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V145 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V146> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V145> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -29054,7 +28974,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 NIDActionArity2V145 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::UIKit.UISpringLoadedInteraction arg1, global::UIKit.IUISpringLoadedInteractionContext arg2)
@@ -29063,29 +28983,29 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V146 */
+ } /* class NIDActionArity2V145 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::UIKit.UITableViewRowAction, NSIndexPath>))]
- internal delegate void DActionArity2V147 (IntPtr block, IntPtr arg1, IntPtr arg2);
+ internal delegate void DActionArity2V146 (IntPtr block, IntPtr arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V147 {
- static internal readonly DActionArity2V147 Handler = Invoke;
- [MonoPInvokeCallback (typeof (DActionArity2V147))]
+ static internal class SDActionArity2V146 {
+ static internal readonly DActionArity2V146 Handler = Invoke;
+ [MonoPInvokeCallback (typeof (DActionArity2V146))]
static unsafe void Invoke (IntPtr block, IntPtr arg1, IntPtr 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 SDActionArity2V146 */
+ internal sealed class NIDActionArity2V146 : TrampolineBlockBase {
+ DActionArity2V146 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V147 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V146 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V147> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V146> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -29094,7 +29014,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 NIDActionArity2V146 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::UIKit.UITableViewRowAction arg1, NSIndexPath arg2)
@@ -29103,7 +29023,7 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V147 */
+ } /* class NIDActionArity2V146 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::UIKit.UIViewController, NSError>))]
internal delegate void DActionArity2V83 (IntPtr block, IntPtr arg1, IntPtr arg2);
@@ -29146,26 +29066,26 @@ namespace ObjCRuntime {
} /* class NIDActionArity2V83 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::VideoSubscriberAccount.VSAccountAccessStatus, NSError>))]
- internal delegate void DActionArity2V148 (IntPtr block, IntPtr arg1, IntPtr arg2);
+ internal delegate void DActionArity2V147 (IntPtr block, IntPtr arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V148 {
- static internal readonly DActionArity2V148 Handler = Invoke;
- [MonoPInvokeCallback (typeof (DActionArity2V148))]
+ static internal class SDActionArity2V147 {
+ static internal readonly DActionArity2V147 Handler = Invoke;
+ [MonoPInvokeCallback (typeof (DActionArity2V147))]
static unsafe void Invoke (IntPtr block, IntPtr arg1, IntPtr 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 SDActionArity2V147 */
+ internal sealed class NIDActionArity2V147 : TrampolineBlockBase {
+ DActionArity2V147 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V148 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V147 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V148> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V147> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -29174,7 +29094,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 NIDActionArity2V147 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::VideoSubscriberAccount.VSAccountAccessStatus arg1, NSError arg2)
@@ -29182,29 +29102,29 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, (IntPtr) (long) arg1, arg2__handle__);
}
- } /* class NIDActionArity2V148 */
+ } /* class NIDActionArity2V147 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::VideoSubscriberAccount.VSAccountMetadata, NSError>))]
- internal delegate void DActionArity2V149 (IntPtr block, IntPtr arg1, IntPtr arg2);
+ internal delegate void DActionArity2V148 (IntPtr block, IntPtr arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V149 {
- static internal readonly DActionArity2V149 Handler = Invoke;
- [MonoPInvokeCallback (typeof (DActionArity2V149))]
+ static internal class SDActionArity2V148 {
+ static internal readonly DActionArity2V148 Handler = Invoke;
+ [MonoPInvokeCallback (typeof (DActionArity2V148))]
static unsafe void Invoke (IntPtr block, IntPtr arg1, IntPtr 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 SDActionArity2V148 */
+ internal sealed class NIDActionArity2V148 : TrampolineBlockBase {
+ DActionArity2V148 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V149 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V148 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V149> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V148> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -29213,7 +29133,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 NIDActionArity2V148 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::VideoSubscriberAccount.VSAccountMetadata arg1, NSError arg2)
@@ -29222,29 +29142,29 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V149 */
+ } /* class NIDActionArity2V148 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::WebKit.WKContentRuleList, NSError>))]
- internal delegate void DActionArity2V150 (IntPtr block, IntPtr arg1, IntPtr arg2);
+ internal delegate void DActionArity2V149 (IntPtr block, IntPtr arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V150 {
- static internal readonly DActionArity2V150 Handler = Invoke;
- [MonoPInvokeCallback (typeof (DActionArity2V150))]
+ static internal class SDActionArity2V149 {
+ static internal readonly DActionArity2V149 Handler = Invoke;
+ [MonoPInvokeCallback (typeof (DActionArity2V149))]
static unsafe void Invoke (IntPtr block, IntPtr arg1, IntPtr 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 SDActionArity2V149 */
+ internal sealed class NIDActionArity2V149 : TrampolineBlockBase {
+ DActionArity2V149 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V150 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V149 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V150> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V149> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -29253,7 +29173,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 NIDActionArity2V149 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::WebKit.WKContentRuleList arg1, NSError arg2)
@@ -29262,29 +29182,29 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V150 */
+ } /* class NIDActionArity2V149 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::WebKit.WKNavigationActionPolicy, global::WebKit.WKWebpagePreferences>))]
- internal delegate void DActionArity2V151 (IntPtr block, IntPtr arg1, IntPtr arg2);
+ internal delegate void DActionArity2V150 (IntPtr block, IntPtr arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V151 {
- static internal readonly DActionArity2V151 Handler = Invoke;
- [MonoPInvokeCallback (typeof (DActionArity2V151))]
+ static internal class SDActionArity2V150 {
+ static internal readonly DActionArity2V150 Handler = Invoke;
+ [MonoPInvokeCallback (typeof (DActionArity2V150))]
static unsafe void Invoke (IntPtr block, IntPtr arg1, IntPtr 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 SDActionArity2V150 */
+ internal sealed class NIDActionArity2V150 : TrampolineBlockBase {
+ DActionArity2V150 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V151 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V150 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V151> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V150> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -29293,7 +29213,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 NIDActionArity2V150 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::WebKit.WKNavigationActionPolicy arg1, global::WebKit.WKWebpagePreferences arg2)
@@ -29301,7 +29221,7 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, (IntPtr) (long) arg1, arg2__handle__);
}
- } /* class NIDActionArity2V151 */
+ } /* class NIDActionArity2V150 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::CloudKit.CKRecord, global::CloudKit.CKRecordID, NSError>))]
internal delegate void DActionArity3V1 (IntPtr block, IntPtr arg1, IntPtr arg2, IntPtr arg3);
diff --git a/old/ios/native/PassKit/PKAddShareablePassConfiguration.g.cs b/new/ios/native/PassKit/PKAddShareablePassConfiguration.g.cs
index 1fa6c7f..370f88e 100644
--- a/old/ios/native/PassKit/PKAddShareablePassConfiguration.g.cs
+++ b/new/ios/native/PassKit/PKAddShareablePassConfiguration.g.cs
@@ -78,7 +78,7 @@ namespace PassKit {
[Export ("configurationForPassMetadata:provisioningPolicyIdentifier:primaryAction:completion:")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static void GetConfiguration (PKShareablePassMetadata[] passMetadata, string provisioningPolicyIdentifier, PKAddShareablePassConfigurationPrimaryAction action, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V120))]global::System.Action<PKAddShareablePassConfiguration, NSError> completion)
+ public unsafe static void GetConfiguration (PKShareablePassMetadata[] passMetadata, string provisioningPolicyIdentifier, PKAddShareablePassConfigurationPrimaryAction action, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V119))]global::System.Action<PKAddShareablePassConfiguration, NSError> completion)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -95,7 +95,7 @@ namespace PassKit {
BlockLiteral block_completion;
block_completion = new BlockLiteral ();
block_ptr_completion = &block_completion;
- block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V120.Handler, completion);
+ block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V119.Handler, completion);
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr_UIntPtr_IntPtr (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/ios/native/PassKit/PKPaymentAuthorizationControllerDelegate.g.cs b/new/ios/native/PassKit/PKPaymentAuthorizationControllerDelegate.g.cs
index eede845..d20c989 100644
--- a/old/ios/native/PassKit/PKPaymentAuthorizationControllerDelegate.g.cs
+++ b/new/ios/native/PassKit/PKPaymentAuthorizationControllerDelegate.g.cs
@@ -56,7 +56,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.NIDActionArity2V121) })]
+ [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.NIDActionArity2V120) })]
[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) })]
@@ -111,7 +111,7 @@ namespace PassKit {
[Deprecated (PlatformName.WatchOS, 4,0, message: "Use 'DidSelectShippingMethod' overload with the 'Action<PKPaymentRequestPaymentMethodUpdate>' parameter instead.")]
[Deprecated (PlatformName.iOS, 11,0, message: "Use 'DidSelectShippingMethod' overload with the 'Action<PKPaymentRequestPaymentMethodUpdate>' parameter instead.")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static void DidSelectShippingMethod (this IPKPaymentAuthorizationControllerDelegate This, PKPaymentAuthorizationController controller, PKShippingMethod shippingMethod, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V121))]global::System.Action<PKPaymentAuthorizationStatus, PKPaymentSummaryItem[]> completion)
+ public unsafe static void DidSelectShippingMethod (this IPKPaymentAuthorizationControllerDelegate This, PKPaymentAuthorizationController controller, PKShippingMethod shippingMethod, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V120))]global::System.Action<PKPaymentAuthorizationStatus, PKPaymentSummaryItem[]> completion)
{
var controller__handle__ = controller!.GetNonNullHandle (nameof (controller));
var shippingMethod__handle__ = shippingMethod!.GetNonNullHandle (nameof (shippingMethod));
@@ -121,7 +121,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.SDActionArity2V120.Handler, completion);
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr_IntPtr (This.Handle, Selector.GetHandle ("paymentAuthorizationController:didSelectShippingMethod:completion:"), controller__handle__, shippingMethod__handle__, (IntPtr) block_ptr_completion);
block_ptr_completion->CleanupBlock ();
}
@@ -442,7 +442,7 @@ namespace PassKit {
[Deprecated (PlatformName.WatchOS, 4,0, message: "Use 'DidSelectShippingMethod' overload with the 'Action<PKPaymentRequestPaymentMethodUpdate>' parameter instead.")]
[Deprecated (PlatformName.iOS, 11,0, message: "Use 'DidSelectShippingMethod' overload with the 'Action<PKPaymentRequestPaymentMethodUpdate>' parameter instead.")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void DidSelectShippingMethod (PKPaymentAuthorizationController controller, PKShippingMethod shippingMethod, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V121))]global::System.Action<PKPaymentAuthorizationStatus, PKPaymentSummaryItem[]> completion)
+ public unsafe virtual void DidSelectShippingMethod (PKPaymentAuthorizationController controller, PKShippingMethod shippingMethod, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V120))]global::System.Action<PKPaymentAuthorizationStatus, PKPaymentSummaryItem[]> completion)
{
throw new You_Should_Not_Call_base_In_This_Method ();
}
diff --git a/old/ios/native/Photos/PHLivePhoto.g.cs b/new/ios/native/Photos/PHLivePhoto.g.cs
index e82ea65..6767d36 100644
--- a/old/ios/native/Photos/PHLivePhoto.g.cs
+++ b/new/ios/native/Photos/PHLivePhoto.g.cs
@@ -153,7 +153,7 @@ namespace Photos {
[Export ("requestLivePhotoWithResourceFileURLs:placeholderImage:targetSize:contentMode:resultHandler:")]
[Introduced (PlatformName.MacOSX, 10,15, ObjCRuntime.PlatformArchitecture.All)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static int RequestLivePhoto (NSUrl[] fileUrls, global::UIKit.UIImage? image, CGSize targetSize, PHImageContentMode contentMode, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V122))]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.NIDActionArity2V121))]global::System.Action<PHLivePhoto, NSDictionary> resultHandler)
{
if (fileUrls is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (fileUrls));
@@ -165,7 +165,7 @@ namespace Photos {
BlockLiteral block_resultHandler;
block_resultHandler = new BlockLiteral ();
block_ptr_resultHandler = &block_resultHandler;
- block_resultHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V122.Handler, resultHandler);
+ block_resultHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V121.Handler, resultHandler);
int ret;
ret = global::ObjCRuntime.Messaging.int_objc_msgSend_IntPtr_IntPtr_CGSize_IntPtr_IntPtr (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/ios/native/Photos/PHLivePhotoEditingContext.g.cs b/new/ios/native/Photos/PHLivePhotoEditingContext.g.cs
index b25c1bc..e9af521 100644
--- a/old/ios/native/Photos/PHLivePhotoEditingContext.g.cs
+++ b/new/ios/native/Photos/PHLivePhotoEditingContext.g.cs
@@ -92,7 +92,7 @@ namespace Photos {
}
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe void PrepareLivePhotoForPlayback (CGSize targetSize, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V123))]global::System.Action<PHLivePhoto, NSError> handler)
+ public unsafe void PrepareLivePhotoForPlayback (CGSize targetSize, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V122))]global::System.Action<PHLivePhoto, NSError> handler)
{
_PrepareLivePhotoForPlayback (targetSize, null, handler);
}
@@ -109,7 +109,7 @@ namespace Photos {
return tcs.Task;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void PrepareLivePhotoForPlayback (CGSize targetSize, NSDictionary<NSString, NSObject>? options, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V123))]global::System.Action<PHLivePhoto, NSError> handler)
+ public unsafe virtual void PrepareLivePhotoForPlayback (CGSize targetSize, NSDictionary<NSString, NSObject>? options, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V122))]global::System.Action<PHLivePhoto, NSError> handler)
{
_PrepareLivePhotoForPlayback (targetSize, (options as NSDictionary), handler);
}
@@ -128,7 +128,7 @@ namespace Photos {
[Introduced (PlatformName.iOS, 11,0, ObjCRuntime.PlatformArchitecture.All)]
[Introduced (PlatformName.TvOS, 11,0, ObjCRuntime.PlatformArchitecture.All)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe void PrepareLivePhotoForPlayback (CGSize targetSize, PHLivePhotoEditingOption? options, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V123))]global::System.Action<PHLivePhoto, NSError> handler)
+ public unsafe void PrepareLivePhotoForPlayback (CGSize targetSize, PHLivePhotoEditingOption? options, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V122))]global::System.Action<PHLivePhoto, NSError> handler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -202,7 +202,7 @@ namespace Photos {
}
[Export ("prepareLivePhotoForPlaybackWithTargetSize:options:completionHandler:")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- internal unsafe virtual void _PrepareLivePhotoForPlayback (CGSize targetSize, NSDictionary? options, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V123))]global::System.Action<PHLivePhoto, NSError> handler)
+ internal unsafe virtual void _PrepareLivePhotoForPlayback (CGSize targetSize, NSDictionary? options, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V122))]global::System.Action<PHLivePhoto, NSError> handler)
{
var options__handle__ = options.GetHandle ();
if (handler is null)
@@ -211,7 +211,7 @@ namespace Photos {
BlockLiteral block_handler;
block_handler = new BlockLiteral ();
block_ptr_handler = &block_handler;
- block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V123.Handler, handler);
+ block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V122.Handler, handler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_CGSize_IntPtr_IntPtr (this.Handle, Selector.GetHandle ("prepareLivePhotoForPlaybackWithTargetSize:options:completionHandler:"), targetSize, options__handle__, (IntPtr) block_ptr_handler);
} else {
diff --git a/old/ios/native/QuickLook/QLPreviewingController.g.cs b/new/ios/native/QuickLook/QLPreviewingController.g.cs
index 052c694..716c2d3 100644
--- a/old/ios/native/QuickLook/QLPreviewingController.g.cs
+++ b/new/ios/native/QuickLook/QLPreviewingController.g.cs
@@ -53,7 +53,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.NIDActionArity2V124) })]
+ [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.NIDActionArity2V123) })]
public partial interface IQLPreviewingController : INativeObject, IDisposable
{
}
@@ -104,7 +104,7 @@ namespace QuickLook {
[Introduced (PlatformName.iOS, 15,0, ObjCRuntime.PlatformArchitecture.All)]
[Introduced (PlatformName.MacCatalyst, 15,0, ObjCRuntime.PlatformArchitecture.All)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static void ProvidePreview (this IQLPreviewingController This, QLFilePreviewRequest request, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V124))]global::System.Action<QLPreviewReply, NSError> handler)
+ public unsafe static void ProvidePreview (this IQLPreviewingController This, QLFilePreviewRequest request, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V123))]global::System.Action<QLPreviewReply, NSError> handler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -117,7 +117,7 @@ namespace QuickLook {
BlockLiteral block_handler;
block_handler = new BlockLiteral ();
block_ptr_handler = &block_handler;
- block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V124.Handler, handler);
+ block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V123.Handler, handler);
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr (This.Handle, Selector.GetHandle ("providePreviewForFileRequest:completionHandler:"), request__handle__, (IntPtr) block_ptr_handler);
block_ptr_handler->CleanupBlock ();
#endif
diff --git a/old/ios/native/QuickLook/QLThumbnailProvider.g.cs b/new/ios/native/QuickLook/QLThumbnailProvider.g.cs
index 760417c..597220c 100644
--- a/old/ios/native/QuickLook/QLThumbnailProvider.g.cs
+++ b/new/ios/native/QuickLook/QLThumbnailProvider.g.cs
@@ -92,7 +92,7 @@ namespace QuickLook {
[Export ("provideThumbnailForFileRequest:completionHandler:")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void ProvideThumbnail (QLFileThumbnailRequest request, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V125))]global::System.Action<QLThumbnailReply, NSError> handler)
+ public unsafe virtual void ProvideThumbnail (QLFileThumbnailRequest request, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V124))]global::System.Action<QLThumbnailReply, NSError> handler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -105,7 +105,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.SDActionArity2V124.Handler, handler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr (this.Handle, Selector.GetHandle ("provideThumbnailForFileRequest:completionHandler:"), request__handle__, (IntPtr) block_ptr_handler);
} else {
diff --git a/old/ios/native/QuickLookThumbnailing/QLThumbnailGenerator.g.cs b/new/ios/native/QuickLookThumbnailing/QLThumbnailGenerator.g.cs
index 6b03069..1b6502f 100644
--- a/old/ios/native/QuickLookThumbnailing/QLThumbnailGenerator.g.cs
+++ b/new/ios/native/QuickLookThumbnailing/QLThumbnailGenerator.g.cs
@@ -90,7 +90,7 @@ namespace QuickLookThumbnailing {
}
[Export ("generateBestRepresentationForRequest:completionHandler:")]
[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.NIDActionArity2V125))]global::System.Action<QLThumbnailRepresentation, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -102,7 +102,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.SDActionArity2V125.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr (this.Handle, Selector.GetHandle ("generateBestRepresentationForRequest:completionHandler:"), request__handle__, (IntPtr) block_ptr_completionHandler);
} else {
diff --git a/old/ios/native/ReplayKit/RPBroadcastActivityViewController.g.cs b/new/ios/native/ReplayKit/RPBroadcastActivityViewController.g.cs
index 431f7d2..76c73f9 100644
--- a/old/ios/native/ReplayKit/RPBroadcastActivityViewController.g.cs
+++ b/new/ios/native/ReplayKit/RPBroadcastActivityViewController.g.cs
@@ -111,7 +111,7 @@ namespace ReplayKit {
}
[Export ("loadBroadcastActivityViewControllerWithHandler:")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static void LoadBroadcastActivityViewController ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V127))]global::System.Action<RPBroadcastActivityViewController, NSError> handler)
+ public unsafe static void LoadBroadcastActivityViewController ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V126))]global::System.Action<RPBroadcastActivityViewController, NSError> handler)
{
if (handler is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (handler));
@@ -119,7 +119,7 @@ namespace ReplayKit {
BlockLiteral block_handler;
block_handler = new BlockLiteral ();
block_ptr_handler = &block_handler;
- block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V127.Handler, handler);
+ block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V126.Handler, handler);
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (class_ptr, Selector.GetHandle ("loadBroadcastActivityViewControllerWithHandler:"), (IntPtr) block_ptr_handler);
block_ptr_handler->CleanupBlock ();
}
@@ -139,7 +139,7 @@ namespace ReplayKit {
[Introduced (PlatformName.iOS, 11,0, ObjCRuntime.PlatformArchitecture.All)]
[Unavailable (PlatformName.TvOS, ObjCRuntime.PlatformArchitecture.All)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static void LoadBroadcastActivityViewController (string? preferredExtension, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V127))]global::System.Action<RPBroadcastActivityViewController, NSError> handler)
+ public unsafe static void LoadBroadcastActivityViewController (string? preferredExtension, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V126))]global::System.Action<RPBroadcastActivityViewController, NSError> handler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -151,7 +151,7 @@ namespace ReplayKit {
BlockLiteral block_handler;
block_handler = new BlockLiteral ();
block_ptr_handler = &block_handler;
- block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V127.Handler, handler);
+ block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V126.Handler, handler);
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr (class_ptr, Selector.GetHandle ("loadBroadcastActivityViewControllerWithPreferredExtension:handler:"), nspreferredExtension, (IntPtr) block_ptr_handler);
CFString.ReleaseNative (nspreferredExtension);
block_ptr_handler->CleanupBlock ();
diff --git a/old/ios/native/ReplayKit/RPScreenRecorder.g.cs b/new/ios/native/ReplayKit/RPScreenRecorder.g.cs
index 37ec726..d2647ae 100644
--- a/old/ios/native/ReplayKit/RPScreenRecorder.g.cs
+++ b/new/ios/native/ReplayKit/RPScreenRecorder.g.cs
@@ -404,7 +404,7 @@ namespace ReplayKit {
}
[Export ("stopRecordingWithHandler:")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void StopRecording ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V128))]global::System.Action<RPPreviewViewController, NSError>? handler)
+ public unsafe virtual void StopRecording ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V127))]global::System.Action<RPPreviewViewController, NSError>? handler)
{
BlockLiteral *block_ptr_handler;
BlockLiteral block_handler;
@@ -413,7 +413,7 @@ namespace ReplayKit {
} else {
block_handler = new BlockLiteral ();
block_ptr_handler = &block_handler;
- block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V128.Handler, handler);
+ block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V127.Handler, handler);
}
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("stopRecordingWithHandler:"), (IntPtr) block_ptr_handler);
diff --git a/old/ios/native/SafariServices/SFContentBlockerManager.g.cs b/new/ios/native/SafariServices/SFContentBlockerManager.g.cs
index 8e38f83..8b5100c 100644
--- a/old/ios/native/SafariServices/SFContentBlockerManager.g.cs
+++ b/new/ios/native/SafariServices/SFContentBlockerManager.g.cs
@@ -83,7 +83,7 @@ namespace SafariServices {
[Export ("getStateOfContentBlockerWithIdentifier:completionHandler:")]
[Introduced (PlatformName.iOS, 10,0, ObjCRuntime.PlatformArchitecture.All)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static void GetStateOfContentBlocker (string identifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V129))]global::System.Action<SFContentBlockerState, NSError> completionHandler)
+ public unsafe static void GetStateOfContentBlocker (string identifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V128))]global::System.Action<SFContentBlockerState, NSError> completionHandler)
{
if (identifier is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (identifier));
@@ -94,7 +94,7 @@ namespace SafariServices {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V129.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V128.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr (class_ptr, Selector.GetHandle ("getStateOfContentBlockerWithIdentifier:completionHandler:"), nsidentifier, (IntPtr) block_ptr_completionHandler);
CFString.ReleaseNative (nsidentifier);
block_ptr_completionHandler->CleanupBlock ();
diff --git a/old/ios/native/ShazamKit/SHMediaItem.g.cs b/new/ios/native/ShazamKit/SHMediaItem.g.cs
index ff98a3a..db6edde 100644
--- a/old/ios/native/ShazamKit/SHMediaItem.g.cs
+++ b/new/ios/native/ShazamKit/SHMediaItem.g.cs
@@ -133,7 +133,7 @@ namespace ShazamKit {
}
[Export ("fetchMediaItemWithShazamID:completionHandler:")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static void FetchMediaItem (string shazamId, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V130))]global::System.Action<SHMediaItem, NSError> completionHandler)
+ public unsafe static void FetchMediaItem (string shazamId, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V129))]global::System.Action<SHMediaItem, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -147,7 +147,7 @@ namespace ShazamKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V130.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V129.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr (class_ptr, Selector.GetHandle ("fetchMediaItemWithShazamID:completionHandler:"), nsshazamId, (IntPtr) block_ptr_completionHandler);
CFString.ReleaseNative (nsshazamId);
block_ptr_completionHandler->CleanupBlock ();
diff --git a/old/ios/native/Speech/SFSpeechRecognizer.g.cs b/new/ios/native/Speech/SFSpeechRecognizer.g.cs
index 06a3b73..d5fb0f8 100644
--- a/old/ios/native/Speech/SFSpeechRecognizer.g.cs
+++ b/new/ios/native/Speech/SFSpeechRecognizer.g.cs
@@ -94,7 +94,7 @@ namespace Speech {
}
[Export ("recognitionTaskWithRequest:resultHandler:")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual SFSpeechRecognitionTask GetRecognitionTask (SFSpeechRecognitionRequest request, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V131))]global::System.Action<SFSpeechRecognitionResult, NSError> resultHandler)
+ public unsafe virtual SFSpeechRecognitionTask GetRecognitionTask (SFSpeechRecognitionRequest request, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V130))]global::System.Action<SFSpeechRecognitionResult, NSError> resultHandler)
{
var request__handle__ = request!.GetNonNullHandle (nameof (request));
if (resultHandler is null)
@@ -103,7 +103,7 @@ namespace Speech {
BlockLiteral block_resultHandler;
block_resultHandler = new BlockLiteral ();
block_ptr_resultHandler = &block_resultHandler;
- block_resultHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V131.Handler, resultHandler);
+ block_resultHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V130.Handler, resultHandler);
SFSpeechRecognitionTask? ret;
if (IsDirectBinding) {
ret = Runtime.GetNSObject<SFSpeechRecognitionTask> (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend_IntPtr_IntPtr (this.Handle, Selector.GetHandle ("recognitionTaskWithRequest:resultHandler:"), request__handle__, (IntPtr) block_ptr_resultHandler))!;
diff --git a/old/ios/native/StoreKit/SKCloudServiceController.g.cs b/new/ios/native/StoreKit/SKCloudServiceController.g.cs
index 911e7dd..bffb93f 100644
--- a/old/ios/native/StoreKit/SKCloudServiceController.g.cs
+++ b/new/ios/native/StoreKit/SKCloudServiceController.g.cs
@@ -106,7 +106,7 @@ namespace StoreKit {
}
[Export ("requestCapabilitiesWithCompletionHandler:")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void RequestCapabilities ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V132))]global::System.Action<SKCloudServiceCapability, NSError> completionHandler)
+ public unsafe virtual void RequestCapabilities ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V131))]global::System.Action<SKCloudServiceCapability, NSError> completionHandler)
{
if (completionHandler is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (completionHandler));
@@ -114,7 +114,7 @@ namespace StoreKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V132.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V131.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("requestCapabilitiesWithCompletionHandler:"), (IntPtr) block_ptr_completionHandler);
} else {
@@ -140,7 +140,7 @@ namespace StoreKit {
[Deprecated (PlatformName.iOS, 11,0, message: "Use 'RequestUserToken' instead.")]
[Deprecated (PlatformName.TvOS, 11,0, message: "Use 'RequestUserToken' instead.")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void RequestPersonalizationToken (string clientToken, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V133))]global::System.Action<NSString, NSError> completionHandler)
+ public unsafe virtual void RequestPersonalizationToken (string clientToken, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V132))]global::System.Action<NSString, NSError> completionHandler)
{
if (clientToken is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (clientToken));
@@ -151,7 +151,7 @@ namespace StoreKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V133.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V132.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr (this.Handle, Selector.GetHandle ("requestPersonalizationTokenForClientToken:withCompletionHandler:"), nsclientToken, (IntPtr) block_ptr_completionHandler);
} else {
@@ -180,7 +180,7 @@ namespace StoreKit {
[Introduced (PlatformName.iOS, 11,0, ObjCRuntime.PlatformArchitecture.All)]
[Introduced (PlatformName.TvOS, 11,0, ObjCRuntime.PlatformArchitecture.All)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void RequestStorefrontCountryCode ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V133))]global::System.Action<NSString, NSError> completionHandler)
+ public unsafe virtual void RequestStorefrontCountryCode ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V132))]global::System.Action<NSString, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -191,7 +191,7 @@ namespace StoreKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V133.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V132.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("requestStorefrontCountryCodeWithCompletionHandler:"), (IntPtr) block_ptr_completionHandler);
} else {
@@ -216,7 +216,7 @@ namespace StoreKit {
}
[Export ("requestStorefrontIdentifierWithCompletionHandler:")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void RequestStorefrontIdentifier ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V133))]global::System.Action<NSString, NSError> completionHandler)
+ public unsafe virtual void RequestStorefrontIdentifier ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V132))]global::System.Action<NSString, NSError> completionHandler)
{
if (completionHandler is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (completionHandler));
@@ -224,7 +224,7 @@ namespace StoreKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V133.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V132.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("requestStorefrontIdentifierWithCompletionHandler:"), (IntPtr) block_ptr_completionHandler);
} else {
@@ -248,7 +248,7 @@ namespace StoreKit {
[Introduced (PlatformName.iOS, 11,0, ObjCRuntime.PlatformArchitecture.All)]
[Introduced (PlatformName.TvOS, 11,0, ObjCRuntime.PlatformArchitecture.All)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void RequestUserToken (string developerToken, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V133))]global::System.Action<NSString, NSError> completionHandler)
+ public unsafe virtual void RequestUserToken (string developerToken, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V132))]global::System.Action<NSString, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -262,7 +262,7 @@ namespace StoreKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V133.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V132.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr (this.Handle, Selector.GetHandle ("requestUserTokenForDeveloperToken:completionHandler:"), nsdeveloperToken, (IntPtr) block_ptr_completionHandler);
} else {
diff --git a/old/ios/native/StoreKit/SKProductStorePromotionController.g.cs b/new/ios/native/StoreKit/SKProductStorePromotionController.g.cs
index 84adb5c..3fdb667 100644
--- a/old/ios/native/StoreKit/SKProductStorePromotionController.g.cs
+++ b/new/ios/native/StoreKit/SKProductStorePromotionController.g.cs
@@ -78,7 +78,7 @@ namespace StoreKit {
[Export ("fetchStorePromotionOrderWithCompletionHandler:")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void FetchStorePromotionOrder ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V134))]global::System.Action<SKProduct[], NSError>? completionHandler)
+ public unsafe virtual void FetchStorePromotionOrder ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V133))]global::System.Action<SKProduct[], NSError>? completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -90,7 +90,7 @@ namespace StoreKit {
} else {
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V134.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V133.Handler, completionHandler);
}
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("fetchStorePromotionOrderWithCompletionHandler:"), (IntPtr) block_ptr_completionHandler);
@@ -115,7 +115,7 @@ namespace StoreKit {
}
[Export ("fetchStorePromotionVisibilityForProduct:completionHandler:")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void FetchStorePromotionVisibility (SKProduct product, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V135))]global::System.Action<SKProductStorePromotionVisibility, NSError>? completionHandler)
+ public unsafe virtual void FetchStorePromotionVisibility (SKProduct product, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V134))]global::System.Action<SKProductStorePromotionVisibility, NSError>? completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -128,7 +128,7 @@ namespace StoreKit {
} else {
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V135.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V134.Handler, completionHandler);
}
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr (this.Handle, Selector.GetHandle ("fetchStorePromotionVisibilityForProduct:completionHandler:"), product__handle__, (IntPtr) block_ptr_completionHandler);
diff --git a/old/ios/native/SupportDelegates.g.cs b/new/ios/native/SupportDelegates.g.cs
index 00691b6..5433cc8 100644
--- a/old/ios/native/SupportDelegates.g.cs
+++ b/new/ios/native/SupportDelegates.g.cs
@@ -115,7 +115,6 @@ namespace CarPlay {
}
namespace Chip {
#nullable enable
- public delegate void ChipDeviceConnectionCallback (Chip.ChipDevice? device, NSError? error);
public delegate void ChipResponseHandler (NSError? error, NSDictionary? data);
}
namespace CloudKit {
diff --git a/old/ios/native/ThreadNetwork/THClient.g.cs b/new/ios/native/ThreadNetwork/THClient.g.cs
index bdb7cda..c9edea9 100644
--- a/old/ios/native/ThreadNetwork/THClient.g.cs
+++ b/new/ios/native/ThreadNetwork/THClient.g.cs
@@ -127,7 +127,7 @@ namespace ThreadNetwork {
}
[Export ("retrieveAllCredentials:")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void RetrieveAllCredentials ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V136))]global::System.Action<NSSet<THCredentials>, NSError> completion)
+ public unsafe virtual void RetrieveAllCredentials ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V135))]global::System.Action<NSSet<THCredentials>, NSError> completion)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -138,7 +138,7 @@ namespace ThreadNetwork {
BlockLiteral block_completion;
block_completion = new BlockLiteral ();
block_ptr_completion = &block_completion;
- block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V136.Handler, completion);
+ block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V135.Handler, completion);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("retrieveAllCredentials:"), (IntPtr) block_ptr_completion);
} else {
@@ -161,7 +161,7 @@ namespace ThreadNetwork {
}
[Export ("retrieveCredentialsForBorderAgent:completion:")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void RetrieveCredentialsForBorderAgent (NSData borderAgentId, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V137))]global::System.Action<THCredentials, NSError> completion)
+ public unsafe virtual void RetrieveCredentialsForBorderAgent (NSData borderAgentId, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V136))]global::System.Action<THCredentials, NSError> completion)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -173,7 +173,7 @@ namespace ThreadNetwork {
BlockLiteral block_completion;
block_completion = new BlockLiteral ();
block_ptr_completion = &block_completion;
- block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V137.Handler, completion);
+ block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V136.Handler, completion);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr (this.Handle, Selector.GetHandle ("retrieveCredentialsForBorderAgent:completion:"), borderAgentId__handle__, (IntPtr) block_ptr_completion);
} else {
@@ -196,7 +196,7 @@ namespace ThreadNetwork {
}
[Export ("retrieveCredentialsForExtendedPANID:completion:")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void RetrieveCredentialsForExtendedPanId (NSData extendedPanId, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V137))]global::System.Action<THCredentials, NSError> completion)
+ public unsafe virtual void RetrieveCredentialsForExtendedPanId (NSData extendedPanId, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V136))]global::System.Action<THCredentials, NSError> completion)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -208,7 +208,7 @@ namespace ThreadNetwork {
BlockLiteral block_completion;
block_completion = new BlockLiteral ();
block_ptr_completion = &block_completion;
- block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V137.Handler, completion);
+ block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V136.Handler, completion);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr (this.Handle, Selector.GetHandle ("retrieveCredentialsForExtendedPANID:completion:"), extendedPanId__handle__, (IntPtr) block_ptr_completion);
} else {
@@ -231,7 +231,7 @@ namespace ThreadNetwork {
}
[Export ("retrievePreferredCredentials:")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void RetrievePreferredCredentials ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V137))]global::System.Action<THCredentials, NSError> completion)
+ public unsafe virtual void RetrievePreferredCredentials ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V136))]global::System.Action<THCredentials, NSError> completion)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -242,7 +242,7 @@ namespace ThreadNetwork {
BlockLiteral block_completion;
block_completion = new BlockLiteral ();
block_ptr_completion = &block_completion;
- block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V137.Handler, completion);
+ block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V136.Handler, completion);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("retrievePreferredCredentials:"), (IntPtr) block_ptr_completion);
} else {
diff --git a/old/ios/native/UIKit/NSFileProviderExtension.g.cs b/new/ios/native/UIKit/NSFileProviderExtension.g.cs
index ca4cc91..4e49328 100644
--- a/old/ios/native/UIKit/NSFileProviderExtension.g.cs
+++ b/new/ios/native/UIKit/NSFileProviderExtension.g.cs
@@ -86,7 +86,7 @@ namespace UIKit {
[Export ("createDirectoryWithName:inParentItemIdentifier:completionHandler:")]
[Introduced (PlatformName.iOS, 11,0, ObjCRuntime.PlatformArchitecture.All)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void CreateDirectory (string directoryName, string parentItemIdentifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V138))]global::System.Action<global::FileProvider.INSFileProviderItem, NSError> completionHandler)
+ public unsafe virtual void CreateDirectory (string directoryName, string parentItemIdentifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V137))]global::System.Action<global::FileProvider.INSFileProviderItem, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -103,7 +103,7 @@ namespace UIKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V138.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V137.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr_IntPtr (this.Handle, Selector.GetHandle ("createDirectoryWithName:inParentItemIdentifier:completionHandler:"), nsdirectoryName, nsparentItemIdentifier, (IntPtr) block_ptr_completionHandler);
} else {
@@ -334,7 +334,7 @@ namespace UIKit {
[Export ("importDocumentAtURL:toParentItemIdentifier:completionHandler:")]
[Introduced (PlatformName.iOS, 11,0, ObjCRuntime.PlatformArchitecture.All)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void ImportDocument (NSUrl fileUrl, string parentItemIdentifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V138))]global::System.Action<global::FileProvider.INSFileProviderItem, NSError> completionHandler)
+ public unsafe virtual void ImportDocument (NSUrl fileUrl, string parentItemIdentifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V137))]global::System.Action<global::FileProvider.INSFileProviderItem, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -349,7 +349,7 @@ namespace UIKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V138.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V137.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr_IntPtr (this.Handle, Selector.GetHandle ("importDocumentAtURL:toParentItemIdentifier:completionHandler:"), fileUrl__handle__, nsparentItemIdentifier, (IntPtr) block_ptr_completionHandler);
} else {
@@ -417,7 +417,7 @@ namespace UIKit {
[Export ("renameItemWithIdentifier:toName:completionHandler:")]
[Introduced (PlatformName.iOS, 11,0, ObjCRuntime.PlatformArchitecture.All)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void RenameItem (string itemIdentifier, string itemName, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V138))]global::System.Action<global::FileProvider.INSFileProviderItem, NSError> completionHandler)
+ public unsafe virtual void RenameItem (string itemIdentifier, string itemName, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V137))]global::System.Action<global::FileProvider.INSFileProviderItem, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -434,7 +434,7 @@ namespace UIKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V138.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V137.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr_IntPtr (this.Handle, Selector.GetHandle ("renameItemWithIdentifier:toName:completionHandler:"), nsitemIdentifier, nsitemName, (IntPtr) block_ptr_completionHandler);
} else {
@@ -461,7 +461,7 @@ namespace UIKit {
[Export ("reparentItemWithIdentifier:toParentItemWithIdentifier:newName:completionHandler:")]
[Introduced (PlatformName.iOS, 11,0, ObjCRuntime.PlatformArchitecture.All)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void ReparentItem (string itemIdentifier, string parentItemIdentifier, string? newName, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V138))]global::System.Action<global::FileProvider.INSFileProviderItem, NSError> completionHandler)
+ public unsafe virtual void ReparentItem (string itemIdentifier, string parentItemIdentifier, string? newName, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V137))]global::System.Action<global::FileProvider.INSFileProviderItem, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -479,7 +479,7 @@ namespace UIKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V138.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V137.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr_IntPtr_IntPtr (this.Handle, Selector.GetHandle ("reparentItemWithIdentifier:toParentItemWithIdentifier:newName:completionHandler:"), nsitemIdentifier, nsparentItemIdentifier, nsnewName, (IntPtr) block_ptr_completionHandler);
} else {
@@ -507,7 +507,7 @@ namespace UIKit {
[Export ("setFavoriteRank:forItemIdentifier:completionHandler:")]
[Introduced (PlatformName.iOS, 11,0, ObjCRuntime.PlatformArchitecture.All)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void SetFavoriteRank (NSNumber? favoriteRank, string itemIdentifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V138))]global::System.Action<global::FileProvider.INSFileProviderItem, NSError> completionHandler)
+ public unsafe virtual void SetFavoriteRank (NSNumber? favoriteRank, string itemIdentifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V137))]global::System.Action<global::FileProvider.INSFileProviderItem, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -522,7 +522,7 @@ namespace UIKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V138.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V137.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr_IntPtr (this.Handle, Selector.GetHandle ("setFavoriteRank:forItemIdentifier:completionHandler:"), favoriteRank__handle__, nsitemIdentifier, (IntPtr) block_ptr_completionHandler);
} else {
@@ -548,7 +548,7 @@ namespace UIKit {
[Export ("setLastUsedDate:forItemIdentifier:completionHandler:")]
[Introduced (PlatformName.iOS, 11,0, ObjCRuntime.PlatformArchitecture.All)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void SetLastUsedDate (NSDate? lastUsedDate, string itemIdentifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V138))]global::System.Action<global::FileProvider.INSFileProviderItem, NSError> completionHandler)
+ public unsafe virtual void SetLastUsedDate (NSDate? lastUsedDate, string itemIdentifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V137))]global::System.Action<global::FileProvider.INSFileProviderItem, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -563,7 +563,7 @@ namespace UIKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V138.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V137.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr_IntPtr (this.Handle, Selector.GetHandle ("setLastUsedDate:forItemIdentifier:completionHandler:"), lastUsedDate__handle__, nsitemIdentifier, (IntPtr) block_ptr_completionHandler);
} else {
@@ -589,7 +589,7 @@ namespace UIKit {
[Export ("setTagData:forItemIdentifier:completionHandler:")]
[Introduced (PlatformName.iOS, 11,0, ObjCRuntime.PlatformArchitecture.All)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void SetTagData (NSData? tagData, string itemIdentifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V138))]global::System.Action<global::FileProvider.INSFileProviderItem, NSError> completionHandler)
+ public unsafe virtual void SetTagData (NSData? tagData, string itemIdentifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V137))]global::System.Action<global::FileProvider.INSFileProviderItem, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -604,7 +604,7 @@ namespace UIKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V138.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V137.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr_IntPtr (this.Handle, Selector.GetHandle ("setTagData:forItemIdentifier:completionHandler:"), tagData__handle__, nsitemIdentifier, (IntPtr) block_ptr_completionHandler);
} else {
@@ -672,7 +672,7 @@ namespace UIKit {
[Export ("trashItemWithIdentifier:completionHandler:")]
[Introduced (PlatformName.iOS, 11,0, ObjCRuntime.PlatformArchitecture.All)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void TrashItem (string itemIdentifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V138))]global::System.Action<global::FileProvider.INSFileProviderItem, NSError> completionHandler)
+ public unsafe virtual void TrashItem (string itemIdentifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V137))]global::System.Action<global::FileProvider.INSFileProviderItem, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -686,7 +686,7 @@ namespace UIKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V138.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V137.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr (this.Handle, Selector.GetHandle ("trashItemWithIdentifier:completionHandler:"), nsitemIdentifier, (IntPtr) block_ptr_completionHandler);
} else {
@@ -712,7 +712,7 @@ namespace UIKit {
[Export ("untrashItemWithIdentifier:toParentItemIdentifier:completionHandler:")]
[Introduced (PlatformName.iOS, 11,0, ObjCRuntime.PlatformArchitecture.All)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void UntrashItem (string itemIdentifier, string? parentItemIdentifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V138))]global::System.Action<global::FileProvider.INSFileProviderItem, NSError> completionHandler)
+ public unsafe virtual void UntrashItem (string itemIdentifier, string? parentItemIdentifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V137))]global::System.Action<global::FileProvider.INSFileProviderItem, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -727,7 +727,7 @@ namespace UIKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V138.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V137.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr_IntPtr (this.Handle, Selector.GetHandle ("untrashItemWithIdentifier:toParentItemIdentifier:completionHandler:"), nsitemIdentifier, nsparentItemIdentifier, (IntPtr) block_ptr_completionHandler);
} else {
diff --git a/old/ios/native/UIKit/NSTextLayoutManager.g.cs b/new/ios/native/UIKit/NSTextLayoutManager.g.cs
index cf0050c..dfae300 100644
--- a/old/ios/native/UIKit/NSTextLayoutManager.g.cs
+++ b/new/ios/native/UIKit/NSTextLayoutManager.g.cs
@@ -700,7 +700,7 @@ namespace UIKit {
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
public unsafe virtual global::System.Action<NSTextLayoutManager, NSTextLayoutFragment>? RenderingAttributesValidator {
- [return: DelegateProxy (typeof (ObjCRuntime.Trampolines.SDActionArity2V139))]
+ [return: DelegateProxy (typeof (ObjCRuntime.Trampolines.SDActionArity2V138))]
[Export ("renderingAttributesValidator", ArgumentSemantic.Copy)]
get {
#if ARCH_32
@@ -713,10 +713,10 @@ namespace UIKit {
} else {
ret = global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("renderingAttributesValidator"));
}
- return global::ObjCRuntime.Trampolines.NIDActionArity2V139.Create (ret)!;
+ return global::ObjCRuntime.Trampolines.NIDActionArity2V138.Create (ret)!;
#endif
}
- [param: BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V139))]
+ [param: BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V138))]
[Export ("setRenderingAttributesValidator:", ArgumentSemantic.Copy)]
set {
#if ARCH_32
@@ -727,7 +727,7 @@ namespace UIKit {
BlockLiteral block_value;
block_value = new BlockLiteral ();
block_ptr_value = &block_value;
- block_value.SetupBlockUnsafe (Trampolines.SDActionArity2V139.Handler, value);
+ block_value.SetupBlockUnsafe (Trampolines.SDActionArity2V138.Handler, value);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("setRenderingAttributesValidator:"), (IntPtr) block_ptr_value);
} else {
diff --git a/old/ios/native/UIKit/UIActivityViewController.g.cs b/new/ios/native/UIKit/UIActivityViewController.g.cs
index 0f66c89..448ccee 100644
--- a/old/ios/native/UIKit/UIActivityViewController.g.cs
+++ b/new/ios/native/UIKit/UIActivityViewController.g.cs
@@ -158,7 +158,7 @@ namespace UIKit {
[Deprecated (PlatformName.iOS, 8,0, message: "Use the 'CompletionWithItemsHandler' property instead.")]
public unsafe virtual global::System.Action<NSString, bool>? CompletionHandler {
[Deprecated (PlatformName.iOS, 8,0, message: "Use the 'CompletionWithItemsHandler' property instead.")]
- [return: DelegateProxy (typeof (ObjCRuntime.Trampolines.SDActionArity2V140))]
+ [return: DelegateProxy (typeof (ObjCRuntime.Trampolines.SDActionArity2V139))]
[Export ("completionHandler", ArgumentSemantic.Copy)]
get {
global::UIKit.UIApplication.EnsureUIThread ();
@@ -168,9 +168,9 @@ namespace UIKit {
} else {
ret = global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("completionHandler"));
}
- return global::ObjCRuntime.Trampolines.NIDActionArity2V140.Create (ret)!;
+ return global::ObjCRuntime.Trampolines.NIDActionArity2V139.Create (ret)!;
}
- [param: BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V140))]
+ [param: BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V139))]
[Deprecated (PlatformName.iOS, 8,0, message: "Use the 'CompletionWithItemsHandler' property instead.")]
[Export ("setCompletionHandler:", ArgumentSemantic.Copy)]
set {
@@ -179,7 +179,7 @@ namespace UIKit {
BlockLiteral block_value;
block_value = new BlockLiteral ();
block_ptr_value = &block_value;
- block_value.SetupBlockUnsafe (Trampolines.SDActionArity2V140.Handler, value);
+ block_value.SetupBlockUnsafe (Trampolines.SDActionArity2V139.Handler, value);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("setCompletionHandler:"), (IntPtr) block_ptr_value);
} else {
diff --git a/old/ios/native/UIKit/UIDocumentBrowserViewControllerDelegate.g.cs b/new/ios/native/UIKit/UIDocumentBrowserViewControllerDelegate.g.cs
index 1bd2394..d51c051 100644
--- a/old/ios/native/UIKit/UIDocumentBrowserViewControllerDelegate.g.cs
+++ b/new/ios/native/UIKit/UIDocumentBrowserViewControllerDelegate.g.cs
@@ -53,7 +53,7 @@ namespace UIKit {
[Introduced (PlatformName.iOS, 11,0, ObjCRuntime.PlatformArchitecture.All)]
[Protocol (Name = "UIDocumentBrowserViewControllerDelegate", WrapperType = typeof (UIDocumentBrowserViewControllerDelegateWrapper))]
[ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "DidPickDocumentUrls", Selector = "documentBrowser:didPickDocumentURLs:", ParameterType = new Type [] { typeof (UIDocumentBrowserViewController), typeof (NSUrl[]) }, ParameterByRef = new bool [] { false, false })]
- [ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "DidRequestDocumentCreation", Selector = "documentBrowser:didRequestDocumentCreationWithHandler:", ParameterType = new Type [] { typeof (UIDocumentBrowserViewController), typeof (global::System.Action<NSUrl, global::UIKit.UIDocumentBrowserImportMode>) }, ParameterByRef = new bool [] { false, false }, ParameterBlockProxy = new Type? [] { null, typeof (ObjCRuntime.Trampolines.NIDActionArity2V141) })]
+ [ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "DidRequestDocumentCreation", Selector = "documentBrowser:didRequestDocumentCreationWithHandler:", ParameterType = new Type [] { typeof (UIDocumentBrowserViewController), typeof (global::System.Action<NSUrl, global::UIKit.UIDocumentBrowserImportMode>) }, ParameterByRef = new bool [] { false, false }, ParameterBlockProxy = new Type? [] { null, typeof (ObjCRuntime.Trampolines.NIDActionArity2V140) })]
[ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "DidImportDocument", Selector = "documentBrowser:didImportDocumentAtURL:toDestinationURL:", ParameterType = new Type [] { typeof (UIDocumentBrowserViewController), typeof (NSUrl), typeof (NSUrl) }, ParameterByRef = new bool [] { false, false, false })]
[ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "FailedToImportDocument", Selector = "documentBrowser:failedToImportDocumentAtURL:error:", ParameterType = new Type [] { typeof (UIDocumentBrowserViewController), typeof (NSUrl), typeof (NSError) }, ParameterByRef = new bool [] { false, false, false })]
[ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "GetApplicationActivities", Selector = "documentBrowser:applicationActivitiesForDocumentURLs:", ReturnType = typeof (UIActivity[]), ParameterType = new Type [] { typeof (UIDocumentBrowserViewController), typeof (NSUrl[]) }, ParameterByRef = new bool [] { false, false })]
@@ -80,7 +80,7 @@ namespace UIKit {
#endif
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static void DidRequestDocumentCreation (this IUIDocumentBrowserViewControllerDelegate This, UIDocumentBrowserViewController controller, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V141))]global::System.Action<NSUrl, UIDocumentBrowserImportMode> importHandler)
+ public unsafe static void DidRequestDocumentCreation (this IUIDocumentBrowserViewControllerDelegate This, UIDocumentBrowserViewController controller, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V140))]global::System.Action<NSUrl, UIDocumentBrowserImportMode> importHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -93,7 +93,7 @@ namespace UIKit {
BlockLiteral block_importHandler;
block_importHandler = new BlockLiteral ();
block_ptr_importHandler = &block_importHandler;
- block_importHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V141.Handler, importHandler);
+ block_importHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V140.Handler, importHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr (This.Handle, Selector.GetHandle ("documentBrowser:didRequestDocumentCreationWithHandler:"), controller__handle__, (IntPtr) block_ptr_importHandler);
block_ptr_importHandler->CleanupBlock ();
#endif
@@ -248,7 +248,7 @@ namespace UIKit {
}
[Export ("documentBrowser:didRequestDocumentCreationWithHandler:")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void DidRequestDocumentCreation (UIDocumentBrowserViewController controller, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V141))]global::System.Action<NSUrl, UIDocumentBrowserImportMode> importHandler)
+ public unsafe virtual void DidRequestDocumentCreation (UIDocumentBrowserViewController controller, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V140))]global::System.Action<NSUrl, UIDocumentBrowserImportMode> importHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
diff --git a/old/ios/native/UIKit/UIPasteboard.g.cs b/new/ios/native/UIKit/UIPasteboard.g.cs
index 2c659dd..7d47616 100644
--- a/old/ios/native/UIKit/UIPasteboard.g.cs
+++ b/new/ios/native/UIKit/UIPasteboard.g.cs
@@ -137,7 +137,7 @@ namespace UIKit {
[Export ("detectPatternsForPatterns:completionHandler:")]
[Introduced (PlatformName.iOS, 14,0, ObjCRuntime.PlatformArchitecture.All)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void DetectPatterns (NSSet<NSString> patterns, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V142))]global::System.Action<NSSet<NSString>, NSError> completionHandler)
+ public unsafe virtual void DetectPatterns (NSSet<NSString> patterns, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V141))]global::System.Action<NSSet<NSString>, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -150,7 +150,7 @@ namespace UIKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V142.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V141.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr (this.Handle, Selector.GetHandle ("detectPatternsForPatterns:completionHandler:"), patterns__handle__, (IntPtr) block_ptr_completionHandler);
} else {
@@ -175,7 +175,7 @@ namespace UIKit {
[Export ("detectPatternsForPatterns:inItemSet:completionHandler:")]
[Introduced (PlatformName.iOS, 14,0, ObjCRuntime.PlatformArchitecture.All)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void DetectPatterns (NSSet<NSString> patterns, NSIndexSet? itemSet, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V143))]global::System.Action<NSSet<NSString>[], NSError> completionHandler)
+ public unsafe virtual void DetectPatterns (NSSet<NSString> patterns, NSIndexSet? itemSet, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V142))]global::System.Action<NSSet<NSString>[], NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -189,7 +189,7 @@ namespace UIKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V143.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V142.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr_IntPtr (this.Handle, Selector.GetHandle ("detectPatternsForPatterns:inItemSet:completionHandler:"), patterns__handle__, itemSet__handle__, (IntPtr) block_ptr_completionHandler);
} else {
@@ -214,7 +214,7 @@ namespace UIKit {
[Export ("detectValuesForPatterns:completionHandler:")]
[Introduced (PlatformName.iOS, 14,0, ObjCRuntime.PlatformArchitecture.All)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void DetectValues (NSSet<NSString> patterns, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V144))]global::System.Action<NSDictionary<NSString, NSObject>, NSError> completionHandler)
+ public unsafe virtual void DetectValues (NSSet<NSString> patterns, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V143))]global::System.Action<NSDictionary<NSString, NSObject>, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -227,7 +227,7 @@ namespace UIKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V144.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V143.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr (this.Handle, Selector.GetHandle ("detectValuesForPatterns:completionHandler:"), patterns__handle__, (IntPtr) block_ptr_completionHandler);
} else {
@@ -252,7 +252,7 @@ namespace UIKit {
[Export ("detectValuesForPatterns:inItemSet:completionHandler:")]
[Introduced (PlatformName.iOS, 14,0, ObjCRuntime.PlatformArchitecture.All)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void DetectValues (NSSet<NSString> patterns, NSIndexSet? itemSet, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V145))]global::System.Action<NSDictionary<NSString, NSObject>[], NSError> completionHandler)
+ public unsafe virtual void DetectValues (NSSet<NSString> patterns, NSIndexSet? itemSet, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V144))]global::System.Action<NSDictionary<NSString, NSObject>[], NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -266,7 +266,7 @@ namespace UIKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V145.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V144.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr_IntPtr (this.Handle, Selector.GetHandle ("detectValuesForPatterns:inItemSet:completionHandler:"), patterns__handle__, itemSet__handle__, (IntPtr) block_ptr_completionHandler);
} else {
diff --git a/old/ios/native/UIKit/UISpringLoadedInteraction.g.cs b/new/ios/native/UIKit/UISpringLoadedInteraction.g.cs
index 3c0a9a0..62cb4b5 100644
--- a/old/ios/native/UIKit/UISpringLoadedInteraction.g.cs
+++ b/new/ios/native/UIKit/UISpringLoadedInteraction.g.cs
@@ -77,7 +77,7 @@ namespace UIKit {
[Export ("initWithInteractionBehavior:interactionEffect:activationHandler:")]
[DesignatedInitializer]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe UISpringLoadedInteraction (IUISpringLoadedInteractionBehavior? interactionBehavior, IUISpringLoadedInteractionEffect? interactionEffect, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V146))]global::System.Action<UISpringLoadedInteraction, IUISpringLoadedInteractionContext> handler)
+ public unsafe UISpringLoadedInteraction (IUISpringLoadedInteractionBehavior? interactionBehavior, IUISpringLoadedInteractionEffect? interactionEffect, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V145))]global::System.Action<UISpringLoadedInteraction, IUISpringLoadedInteractionContext> handler)
: base (NSObjectFlag.Empty)
{
#if ARCH_32
@@ -92,7 +92,7 @@ namespace UIKit {
BlockLiteral block_handler;
block_handler = new BlockLiteral ();
block_ptr_handler = &block_handler;
- block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V146.Handler, handler);
+ block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V145.Handler, handler);
if (IsDirectBinding) {
InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend_IntPtr_IntPtr_IntPtr (this.Handle, Selector.GetHandle ("initWithInteractionBehavior:interactionEffect:activationHandler:"), interactionBehavior__handle__, interactionEffect__handle__, (IntPtr) block_ptr_handler), "initWithInteractionBehavior:interactionEffect:activationHandler:");
} else {
@@ -103,7 +103,7 @@ namespace UIKit {
}
[Export ("initWithActivationHandler:")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe UISpringLoadedInteraction ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V146))]global::System.Action<UISpringLoadedInteraction, IUISpringLoadedInteractionContext> handler)
+ public unsafe UISpringLoadedInteraction ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V145))]global::System.Action<UISpringLoadedInteraction, IUISpringLoadedInteractionContext> handler)
: base (NSObjectFlag.Empty)
{
#if ARCH_32
@@ -116,7 +116,7 @@ namespace UIKit {
BlockLiteral block_handler;
block_handler = new BlockLiteral ();
block_ptr_handler = &block_handler;
- block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V146.Handler, handler);
+ block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V145.Handler, handler);
if (IsDirectBinding) {
InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("initWithActivationHandler:"), (IntPtr) block_ptr_handler), "initWithActivationHandler:");
} else {
diff --git a/old/ios/native/UIKit/UITableViewRowAction.g.cs b/new/ios/native/UIKit/UITableViewRowAction.g.cs
index b0632d7..debcaf9 100644
--- a/old/ios/native/UIKit/UITableViewRowAction.g.cs
+++ b/new/ios/native/UIKit/UITableViewRowAction.g.cs
@@ -101,7 +101,7 @@ namespace UIKit {
}
[Export ("rowActionWithStyle:title:handler:")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static UITableViewRowAction Create (UITableViewRowActionStyle style, string? title, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V147))]global::System.Action<UITableViewRowAction, NSIndexPath> handler)
+ public unsafe static UITableViewRowAction Create (UITableViewRowActionStyle style, string? title, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V146))]global::System.Action<UITableViewRowAction, NSIndexPath> handler)
{
global::UIKit.UIApplication.EnsureUIThread ();
if (handler is null)
@@ -111,7 +111,7 @@ namespace UIKit {
BlockLiteral block_handler;
block_handler = new BlockLiteral ();
block_ptr_handler = &block_handler;
- block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V147.Handler, handler);
+ block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V146.Handler, handler);
UITableViewRowAction? ret;
ret = Runtime.GetNSObject<UITableViewRowAction> (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend_IntPtr_IntPtr_IntPtr (class_ptr, Selector.GetHandle ("rowActionWithStyle:title:handler:"), (IntPtr) (long) style, nstitle, (IntPtr) block_ptr_handler))!;
CFString.ReleaseNative (nstitle);
diff --git a/old/ios/native/VideoSubscriberAccount/VSAccountManager.g.cs b/new/ios/native/VideoSubscriberAccount/VSAccountManager.g.cs
index 687c000..8635dec 100644
--- a/old/ios/native/VideoSubscriberAccount/VSAccountManager.g.cs
+++ b/new/ios/native/VideoSubscriberAccount/VSAccountManager.g.cs
@@ -85,7 +85,7 @@ namespace VideoSubscriberAccount {
[Export ("checkAccessStatusWithOptions:completionHandler:")]
[Unavailable (PlatformName.MacOSX, ObjCRuntime.PlatformArchitecture.All)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void CheckAccessStatus (NSDictionary options, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V148))]global::System.Action<VSAccountAccessStatus, NSError> completionHandler)
+ public unsafe virtual void CheckAccessStatus (NSDictionary options, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V147))]global::System.Action<VSAccountAccessStatus, NSError> completionHandler)
{
var options__handle__ = options!.GetNonNullHandle (nameof (options));
if (completionHandler is null)
@@ -94,7 +94,7 @@ namespace VideoSubscriberAccount {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V148.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V147.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr (this.Handle, Selector.GetHandle ("checkAccessStatusWithOptions:completionHandler:"), options__handle__, (IntPtr) block_ptr_completionHandler);
} else {
@@ -118,7 +118,7 @@ namespace VideoSubscriberAccount {
[Export ("enqueueAccountMetadataRequest:completionHandler:")]
[Unavailable (PlatformName.MacOSX, ObjCRuntime.PlatformArchitecture.All)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual VSAccountManagerResult Enqueue (VSAccountMetadataRequest accountMetadataRequest, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V149))]global::System.Action<VSAccountMetadata, NSError> completionHandler)
+ public unsafe virtual VSAccountManagerResult Enqueue (VSAccountMetadataRequest accountMetadataRequest, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V148))]global::System.Action<VSAccountMetadata, NSError> completionHandler)
{
var accountMetadataRequest__handle__ = accountMetadataRequest!.GetNonNullHandle (nameof (accountMetadataRequest));
if (completionHandler is null)
@@ -127,7 +127,7 @@ namespace VideoSubscriberAccount {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V149.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V148.Handler, completionHandler);
VSAccountManagerResult? ret;
if (IsDirectBinding) {
ret = Runtime.GetNSObject<VSAccountManagerResult> (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend_IntPtr_IntPtr (this.Handle, Selector.GetHandle ("enqueueAccountMetadataRequest:completionHandler:"), accountMetadataRequest__handle__, (IntPtr) block_ptr_completionHandler))!;
diff --git a/old/ios/native/WebKit/WKContentRuleListStore.g.cs b/new/ios/native/WebKit/WKContentRuleListStore.g.cs
index 358481d..f369549 100644
--- a/old/ios/native/WebKit/WKContentRuleListStore.g.cs
+++ b/new/ios/native/WebKit/WKContentRuleListStore.g.cs
@@ -91,7 +91,7 @@ namespace WebKit {
[Export ("compileContentRuleListForIdentifier:encodedContentRuleList:completionHandler:")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void CompileContentRuleList (string identifier, string encodedContentRuleList, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V150))]global::System.Action<WKContentRuleList, NSError> completionHandler)
+ public unsafe virtual void CompileContentRuleList (string identifier, string encodedContentRuleList, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V149))]global::System.Action<WKContentRuleList, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -108,7 +108,7 @@ namespace WebKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V150.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V149.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr_IntPtr (this.Handle, Selector.GetHandle ("compileContentRuleListForIdentifier:encodedContentRuleList:completionHandler:"), nsidentifier, nsencodedContentRuleList, (IntPtr) block_ptr_completionHandler);
} else {
@@ -175,7 +175,7 @@ namespace WebKit {
}
[Export ("lookUpContentRuleListForIdentifier:completionHandler:")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void LookUpContentRuleList (string identifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V150))]global::System.Action<WKContentRuleList, NSError> completionHandler)
+ public unsafe virtual void LookUpContentRuleList (string identifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V149))]global::System.Action<WKContentRuleList, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -189,7 +189,7 @@ namespace WebKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V150.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V149.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr (this.Handle, Selector.GetHandle ("lookUpContentRuleListForIdentifier:completionHandler:"), nsidentifier, (IntPtr) block_ptr_completionHandler);
} else {
diff --git a/old/ios/native/WebKit/WKNavigationDelegate.g.cs b/new/ios/native/WebKit/WKNavigationDelegate.g.cs
index c5baf51..71b6609 100644
--- a/old/ios/native/WebKit/WKNavigationDelegate.g.cs
+++ b/new/ios/native/WebKit/WKNavigationDelegate.g.cs
@@ -53,7 +53,7 @@ namespace WebKit {
[Protocol (Name = "WKNavigationDelegate", WrapperType = typeof (WKNavigationDelegateWrapper))]
[ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "DecidePolicy", Selector = "webView:decidePolicyForNavigationAction:decisionHandler:", ParameterType = new Type [] { typeof (WebKit.WKWebView), typeof (WebKit.WKNavigationAction), typeof (global::System.Action<global::WebKit.WKNavigationActionPolicy>) }, ParameterByRef = new bool [] { false, false, false }, ParameterBlockProxy = new Type? [] { null, null, typeof (ObjCRuntime.Trampolines.NIDActionArity1V262) })]
[ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "DecidePolicy", Selector = "webView:decidePolicyForNavigationResponse:decisionHandler:", ParameterType = new Type [] { typeof (WebKit.WKWebView), typeof (WebKit.WKNavigationResponse), typeof (global::System.Action<global::WebKit.WKNavigationResponsePolicy>) }, ParameterByRef = new bool [] { false, false, false }, ParameterBlockProxy = new Type? [] { null, null, typeof (ObjCRuntime.Trampolines.NIDActionArity1V263) })]
- [ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "DecidePolicy", Selector = "webView:decidePolicyForNavigationAction:preferences:decisionHandler:", ParameterType = new Type [] { typeof (WebKit.WKWebView), typeof (WebKit.WKNavigationAction), typeof (WebKit.WKWebpagePreferences), typeof (global::System.Action<global::WebKit.WKNavigationActionPolicy, global::WebKit.WKWebpagePreferences>) }, ParameterByRef = new bool [] { false, false, false, false }, ParameterBlockProxy = new Type? [] { null, null, null, typeof (ObjCRuntime.Trampolines.NIDActionArity2V151) })]
+ [ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "DecidePolicy", Selector = "webView:decidePolicyForNavigationAction:preferences:decisionHandler:", ParameterType = new Type [] { typeof (WebKit.WKWebView), typeof (WebKit.WKNavigationAction), typeof (WebKit.WKWebpagePreferences), typeof (global::System.Action<global::WebKit.WKNavigationActionPolicy, global::WebKit.WKWebpagePreferences>) }, ParameterByRef = new bool [] { false, false, false, false }, ParameterBlockProxy = new Type? [] { null, null, null, typeof (ObjCRuntime.Trampolines.NIDActionArity2V150) })]
[ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "DidStartProvisionalNavigation", Selector = "webView:didStartProvisionalNavigation:", ParameterType = new Type [] { typeof (WebKit.WKWebView), typeof (WebKit.WKNavigation) }, ParameterByRef = new bool [] { false, false })]
[ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "DidReceiveServerRedirectForProvisionalNavigation", Selector = "webView:didReceiveServerRedirectForProvisionalNavigation:", ParameterType = new Type [] { typeof (WebKit.WKWebView), typeof (WebKit.WKNavigation) }, ParameterByRef = new bool [] { false, false })]
[ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "DidFailProvisionalNavigation", Selector = "webView:didFailProvisionalNavigation:withError:", ParameterType = new Type [] { typeof (WebKit.WKWebView), typeof (WebKit.WKNavigation), typeof (NSError) }, ParameterByRef = new bool [] { false, false, false })]
@@ -102,7 +102,7 @@ namespace WebKit {
[Introduced (PlatformName.MacOSX, 10,15, ObjCRuntime.PlatformArchitecture.All)]
[Introduced (PlatformName.iOS, 13,0, ObjCRuntime.PlatformArchitecture.All)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static void DecidePolicy (this IWKNavigationDelegate This, WKWebView webView, WKNavigationAction navigationAction, WKWebpagePreferences preferences, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V151))]global::System.Action<WKNavigationActionPolicy, WKWebpagePreferences> decisionHandler)
+ public unsafe static void DecidePolicy (this IWKNavigationDelegate This, WKWebView webView, WKNavigationAction navigationAction, WKWebpagePreferences preferences, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V150))]global::System.Action<WKNavigationActionPolicy, WKWebpagePreferences> decisionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -116,7 +116,7 @@ namespace WebKit {
BlockLiteral block_decisionHandler;
block_decisionHandler = new BlockLiteral ();
block_ptr_decisionHandler = &block_decisionHandler;
- block_decisionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V151.Handler, decisionHandler);
+ block_decisionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V150.Handler, decisionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr_IntPtr_IntPtr (This.Handle, Selector.GetHandle ("webView:decidePolicyForNavigationAction:preferences:decisionHandler:"), webView__handle__, navigationAction__handle__, preferences__handle__, (IntPtr) block_ptr_decisionHandler);
block_ptr_decisionHandler->CleanupBlock ();
#endif
@@ -302,7 +302,7 @@ namespace WebKit {
[Introduced (PlatformName.MacOSX, 10,15, ObjCRuntime.PlatformArchitecture.All)]
[Introduced (PlatformName.iOS, 13,0, ObjCRuntime.PlatformArchitecture.All)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void DecidePolicy (WKWebView webView, WKNavigationAction navigationAction, WKWebpagePreferences preferences, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V151))]global::System.Action<WKNavigationActionPolicy, WKWebpagePreferences> decisionHandler)
+ public unsafe virtual void DecidePolicy (WKWebView webView, WKNavigationAction navigationAction, WKWebpagePreferences preferences, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V150))]global::System.Action<WKNavigationActionPolicy, WKWebpagePreferences> decisionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
diff --git a/old/ios/native/WebKit/WKScriptMessageHandlerWithReply.g.cs b/new/ios/native/WebKit/WKScriptMessageHandlerWithReply.g.cs
index ccb628c..d177bc9 100644
--- a/old/ios/native/WebKit/WKScriptMessageHandlerWithReply.g.cs
+++ b/new/ios/native/WebKit/WKScriptMessageHandlerWithReply.g.cs
@@ -51,13 +51,13 @@ namespace WebKit {
[Introduced (PlatformName.MacOSX, 11,0, ObjCRuntime.PlatformArchitecture.All)]
[Introduced (PlatformName.iOS, 14,0, ObjCRuntime.PlatformArchitecture.All)]
[Protocol (Name = "WKScriptMessageHandlerWithReply", WrapperType = typeof (WKScriptMessageHandlerWithReplyWrapper))]
- [ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "DidReceiveScriptMessage", Selector = "userContentController:didReceiveScriptMessage:replyHandler:", ParameterType = new Type [] { typeof (WebKit.WKUserContentController), typeof (WebKit.WKScriptMessage), typeof (global::System.Action<NSObject, NSString>) }, ParameterByRef = new bool [] { false, false, false }, ParameterBlockProxy = new Type? [] { null, null, typeof (ObjCRuntime.Trampolines.NIDActionArity2V152) })]
+ [ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "DidReceiveScriptMessage", Selector = "userContentController:didReceiveScriptMessage:replyHandler:", ParameterType = new Type [] { typeof (WebKit.WKUserContentController), typeof (WebKit.WKScriptMessage), typeof (global::System.Action<NSObject, NSString>) }, ParameterByRef = new bool [] { false, false, false }, ParameterBlockProxy = new Type? [] { null, null, typeof (ObjCRuntime.Trampolines.NIDActionArity2V151) })]
public partial interface IWKScriptMessageHandlerWithReply : INativeObject, IDisposable
{
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
[Export ("userContentController:didReceiveScriptMessage:replyHandler:")]
[Preserve (Conditional = true)]
- unsafe void DidReceiveScriptMessage (WKUserContentController userContentController, WKScriptMessage message, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V152))]global::System.Action<NSObject, NSString> replyHandler);
+ unsafe void DidReceiveScriptMessage (WKUserContentController userContentController, WKScriptMessage message, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V151))]global::System.Action<NSObject, NSString> replyHandler);
}
internal sealed class WKScriptMessageHandlerWithReplyWrapper : BaseWrapper, IWKScriptMessageHandlerWithReply {
[Preserve (Conditional = true)]
@@ -67,7 +67,7 @@ namespace WebKit {
}
[Export ("userContentController:didReceiveScriptMessage:replyHandler:")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe void DidReceiveScriptMessage (WKUserContentController userContentController, WKScriptMessage message, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V152))]global::System.Action<NSObject, NSString> replyHandler)
+ public unsafe void DidReceiveScriptMessage (WKUserContentController userContentController, WKScriptMessage message, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V151))]global::System.Action<NSObject, NSString> replyHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -80,7 +80,7 @@ namespace WebKit {
BlockLiteral block_replyHandler;
block_replyHandler = new BlockLiteral ();
block_ptr_replyHandler = &block_replyHandler;
- block_replyHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V152.Handler, replyHandler);
+ block_replyHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V151.Handler, replyHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr_IntPtr (this.Handle, Selector.GetHandle ("userContentController:didReceiveScriptMessage:replyHandler:"), userContentController__handle__, message__handle__, (IntPtr) block_ptr_replyHandler);
block_ptr_replyHandler->CleanupBlock ();
#endif
diff --git a/old/ios/native/WebKit/WKWebView.g.cs b/new/ios/native/WebKit/WKWebView.g.cs
index fdad630..9b981cc 100644
--- a/old/ios/native/WebKit/WKWebView.g.cs
+++ b/new/ios/native/WebKit/WKWebView.g.cs
@@ -864,7 +864,7 @@ namespace WebKit {
[Introduced (PlatformName.MacOSX, 10,13, ObjCRuntime.PlatformArchitecture.All)]
[Introduced (PlatformName.iOS, 11,0, ObjCRuntime.PlatformArchitecture.All)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void TakeSnapshot (WKSnapshotConfiguration? snapshotConfiguration, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V153))]global::System.Action<global::UIKit.UIImage, NSError> completionHandler)
+ public unsafe virtual void TakeSnapshot (WKSnapshotConfiguration? snapshotConfiguration, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V152))]global::System.Action<global::UIKit.UIImage, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -876,7 +876,7 @@ namespace WebKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V153.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V152.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr (this.Handle, Selector.GetHandle ("takeSnapshotWithConfiguration:completionHandler:"), snapshotConfiguration__handle__, (IntPtr) block_ptr_completionHandler);
} else {
diff --git a/old/mac/full/Chip/ChipDeviceController.g.cs b/old/mac/full/Chip/ChipDeviceController.g.cs
deleted file mode 100644
index 76c5e6a..0000000
--- a/old/mac/full/Chip/ChipDeviceController.g.cs
+++ /dev/null
@@ -1,394 +0,0 @@
-//
-// 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.Diagnostics;
-using System.ComponentModel;
-using System.Threading.Tasks;
-using System.Runtime.InteropServices;
-using System.Diagnostics.CodeAnalysis;
-using QTKit;
-using Metal;
-using CoreML;
-using OpenGL;
-using AppKit;
-using Photos;
-using ModelIO;
-using Network;
-using SceneKit;
-using Contacts;
-using Security;
-using CloudKit;
-using AudioUnit;
-using CoreVideo;
-using CoreMedia;
-using CoreImage;
-using SpriteKit;
-using Foundation;
-using ObjCRuntime;
-using MediaPlayer;
-using GameplayKit;
-using CoreGraphics;
-using CoreLocation;
-using AVFoundation;
-using FileProvider;
-using CoreAnimation;
-using CoreFoundation;
-using NetworkExtension;
-using MetalPerformanceShadersGraph;
-#nullable enable
-#if !NET
-using NativeHandle = System.IntPtr;
-#endif
-namespace Chip {
- [Register("CHIPDeviceController", true)]
- [Introduced (PlatformName.MacOSX, 12,0, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.WatchOS, 8,0, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.TvOS, 15,0, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.iOS, 15,0, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.MacCatalyst, 15,0, ObjCRuntime.PlatformArchitecture.All)]
- public unsafe partial class ChipDeviceController : NSObject {
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- const string selGetConnectedDevice_Queue_CompletionHandler_ = "getConnectedDevice:queue:completionHandler:";
- static readonly IntPtr selGetConnectedDevice_Queue_CompletionHandler_Handle = Selector.GetHandle ("getConnectedDevice:queue:completionHandler:");
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- const string selGetControllerNodeId = "getControllerNodeId";
- static readonly IntPtr selGetControllerNodeIdHandle = Selector.GetHandle ("getControllerNodeId");
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- const string selGetPairedDevice_Error_ = "getPairedDevice:error:";
- static readonly IntPtr selGetPairedDevice_Error_Handle = Selector.GetHandle ("getPairedDevice:error:");
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- const string selIsDevicePaired_Error_ = "isDevicePaired:error:";
- static readonly IntPtr selIsDevicePaired_Error_Handle = Selector.GetHandle ("isDevicePaired:error:");
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- const string selIsRunning = "isRunning";
- static readonly IntPtr selIsRunningHandle = Selector.GetHandle ("isRunning");
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- const string selPairDevice_Address_Port_Discriminator_SetupPINCode_Error_ = "pairDevice:address:port:discriminator:setupPINCode:error:";
- static readonly IntPtr selPairDevice_Address_Port_Discriminator_SetupPINCode_Error_Handle = Selector.GetHandle ("pairDevice:address:port:discriminator:setupPINCode:error:");
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- const string selPairDevice_OnboardingPayload_OnboardingPayloadType_Error_ = "pairDevice:onboardingPayload:onboardingPayloadType:error:";
- static readonly IntPtr selPairDevice_OnboardingPayload_OnboardingPayloadType_Error_Handle = Selector.GetHandle ("pairDevice:onboardingPayload:onboardingPayloadType:error:");
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- const string selPairDeviceWithoutSecurity_Address_Port_Error_ = "pairDeviceWithoutSecurity:address:port:error:";
- static readonly IntPtr selPairDeviceWithoutSecurity_Address_Port_Error_Handle = Selector.GetHandle ("pairDeviceWithoutSecurity:address:port:error:");
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- const string selSetListenPort_ = "setListenPort:";
- static readonly IntPtr selSetListenPort_Handle = Selector.GetHandle ("setListenPort:");
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- const string selSetPairingDelegate_Queue_ = "setPairingDelegate:queue:";
- static readonly IntPtr selSetPairingDelegate_Queue_Handle = Selector.GetHandle ("setPairingDelegate:queue:");
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- const string selSharedController = "sharedController";
- static readonly IntPtr selSharedControllerHandle = Selector.GetHandle ("sharedController");
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- const string selShutdown = "shutdown";
- static readonly IntPtr selShutdownHandle = Selector.GetHandle ("shutdown");
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- const string selStartup_VendorId_NocSigner_ = "startup:vendorId:nocSigner:";
- static readonly IntPtr selStartup_VendorId_NocSigner_Handle = Selector.GetHandle ("startup:vendorId:nocSigner:");
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- const string selStopDevicePairing_Error_ = "stopDevicePairing:error:";
- static readonly IntPtr selStopDevicePairing_Error_Handle = Selector.GetHandle ("stopDevicePairing:error:");
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- const string selUnpairDevice_Error_ = "unpairDevice:error:";
- static readonly IntPtr selUnpairDevice_Error_Handle = Selector.GetHandle ("unpairDevice:error:");
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- const string selUpdateDevice_FabricId_ = "updateDevice:fabricId:";
- static readonly IntPtr selUpdateDevice_FabricId_Handle = Selector.GetHandle ("updateDevice:fabricId:");
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- static readonly IntPtr class_ptr = Class.GetHandle ("CHIPDeviceController");
- public override IntPtr ClassHandle { get { return class_ptr; } }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- [EditorBrowsable (EditorBrowsableState.Advanced)]
- protected ChipDeviceController (NSObjectFlag t) : base (t)
- {
- }
-
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- [EditorBrowsable (EditorBrowsableState.Advanced)]
- protected internal ChipDeviceController (IntPtr handle) : base (handle)
- {
- }
-
- [Export ("getConnectedDevice:queue:completionHandler:")]
- [Introduced (PlatformName.MacOSX, 12,1, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.WatchOS, 8,3, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.TvOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.iOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.MacCatalyst, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual bool GetConnectedDevice (ulong deviceID, global::CoreFoundation.DispatchQueue queue, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipDeviceConnectionCallback))]ChipDeviceConnectionCallback completionHandler)
- {
- var queue__handle__ = queue!.GetNonNullHandle (nameof (queue));
- if (completionHandler is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (completionHandler));
- BlockLiteral *block_ptr_completionHandler;
- BlockLiteral block_completionHandler;
- block_completionHandler = new BlockLiteral ();
- block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDChipDeviceConnectionCallback.Handler, completionHandler);
- bool ret;
- if (IsDirectBinding) {
- ret = global::ObjCRuntime.Messaging.bool_objc_msgSend_UInt64_IntPtr_IntPtr (this.Handle, selGetConnectedDevice_Queue_CompletionHandler_Handle, deviceID, queue.Handle, (IntPtr) block_ptr_completionHandler);
- } else {
- ret = global::ObjCRuntime.Messaging.bool_objc_msgSendSuper_UInt64_IntPtr_IntPtr (this.SuperHandle, selGetConnectedDevice_Queue_CompletionHandler_Handle, deviceID, queue.Handle, (IntPtr) block_ptr_completionHandler);
- }
- block_ptr_completionHandler->CleanupBlock ();
- return ret!;
- }
- [Introduced (PlatformName.MacOSX, 12,1, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.WatchOS, 8,3, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.TvOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.iOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.MacCatalyst, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipDevice> GetConnectedDeviceAsync (ulong deviceID, global::CoreFoundation.DispatchQueue queue)
- {
- var tcs = new TaskCompletionSource<ChipDevice> ();
- GetConnectedDevice(deviceID, queue, (device_, error_) => {
- if (error_ != null)
- tcs.SetException (new NSErrorException(error_));
- else
- tcs.SetResult (device_!);
- });
- return tcs.Task;
- }
- [Introduced (PlatformName.MacOSX, 12,1, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.WatchOS, 8,3, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.TvOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.iOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.MacCatalyst, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipDevice> GetConnectedDeviceAsync (ulong deviceID, global::CoreFoundation.DispatchQueue queue, out bool result)
- {
- var tcs = new TaskCompletionSource<ChipDevice> ();
- result = GetConnectedDevice(deviceID, queue, (device_, error_) => {
- if (error_ != null)
- tcs.SetException (new NSErrorException(error_));
- else
- tcs.SetResult (device_!);
- })!;
- return tcs.Task;
- }
- [Export ("getPairedDevice:error:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public virtual ChipDevice? GetPairedDevice (ulong deviceId, out NSError? error)
- {
- IntPtr errorValue = IntPtr.Zero;
- ChipDevice? ret;
- if (IsDirectBinding) {
- ret = Runtime.GetNSObject<ChipDevice> (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend_UInt64_ref_IntPtr (this.Handle, selGetPairedDevice_Error_Handle, deviceId, ref errorValue))!;
- } else {
- ret = Runtime.GetNSObject<ChipDevice> (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper_UInt64_ref_IntPtr (this.SuperHandle, selGetPairedDevice_Error_Handle, deviceId, ref errorValue))!;
- }
- error = Runtime.GetNSObject<NSError> (errorValue)!;
- return ret!;
- }
- [Export ("isDevicePaired:error:")]
- [Introduced (PlatformName.MacOSX, 12,1, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.WatchOS, 8,3, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.TvOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.iOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.MacCatalyst, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public virtual bool IsDevicePaired (ulong deviceID, out NSError? error)
- {
- IntPtr errorValue = IntPtr.Zero;
- bool ret;
- if (IsDirectBinding) {
- ret = global::ObjCRuntime.Messaging.bool_objc_msgSend_UInt64_ref_IntPtr (this.Handle, selIsDevicePaired_Error_Handle, deviceID, ref errorValue);
- } else {
- ret = global::ObjCRuntime.Messaging.bool_objc_msgSendSuper_UInt64_ref_IntPtr (this.SuperHandle, selIsDevicePaired_Error_Handle, deviceID, ref errorValue);
- }
- error = Runtime.GetNSObject<NSError> (errorValue)!;
- return ret!;
- }
- [Export ("pairDevice:address:port:discriminator:setupPINCode:error:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public virtual bool PairDevice (ulong deviceId, string address, ushort port, ushort discriminator, uint setupPinCode, out NSError? error)
- {
- if (address is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (address));
- IntPtr errorValue = IntPtr.Zero;
- var nsaddress = CFString.CreateNative (address);
- bool ret;
- if (IsDirectBinding) {
- ret = global::ObjCRuntime.Messaging.bool_objc_msgSend_UInt64_IntPtr_UInt16_UInt16_UInt32_ref_IntPtr (this.Handle, selPairDevice_Address_Port_Discriminator_SetupPINCode_Error_Handle, deviceId, nsaddress, port, discriminator, setupPinCode, ref errorValue);
- } else {
- ret = global::ObjCRuntime.Messaging.bool_objc_msgSendSuper_UInt64_IntPtr_UInt16_UInt16_UInt32_ref_IntPtr (this.SuperHandle, selPairDevice_Address_Port_Discriminator_SetupPINCode_Error_Handle, deviceId, nsaddress, port, discriminator, setupPinCode, ref errorValue);
- }
- CFString.ReleaseNative (nsaddress);
- error = Runtime.GetNSObject<NSError> (errorValue)!;
- return ret!;
- }
- [Export ("pairDevice:onboardingPayload:onboardingPayloadType:error:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public virtual bool PairDevice (ulong deviceId, string onboardingPayload, ChipOnboardingPayloadType onboardingPayloadType, out NSError? error)
- {
- if (onboardingPayload is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (onboardingPayload));
- IntPtr errorValue = IntPtr.Zero;
- var nsonboardingPayload = CFString.CreateNative (onboardingPayload);
- bool ret;
- if (IsDirectBinding) {
- ret = global::ObjCRuntime.Messaging.bool_objc_msgSend_UInt64_IntPtr_UIntPtr_ref_IntPtr (this.Handle, selPairDevice_OnboardingPayload_OnboardingPayloadType_Error_Handle, deviceId, nsonboardingPayload, (UIntPtr) (ulong) onboardingPayloadType, ref errorValue);
- } else {
- ret = global::ObjCRuntime.Messaging.bool_objc_msgSendSuper_UInt64_IntPtr_UIntPtr_ref_IntPtr (this.SuperHandle, selPairDevice_OnboardingPayload_OnboardingPayloadType_Error_Handle, deviceId, nsonboardingPayload, (UIntPtr) (ulong) onboardingPayloadType, ref errorValue);
- }
- CFString.ReleaseNative (nsonboardingPayload);
- error = Runtime.GetNSObject<NSError> (errorValue)!;
- return ret!;
- }
- [Export ("pairDeviceWithoutSecurity:address:port:error:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public virtual bool PairDeviceWithoutSecurity (ulong deviceId, string address, ushort port, out NSError? error)
- {
- if (address is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (address));
- IntPtr errorValue = IntPtr.Zero;
- var nsaddress = CFString.CreateNative (address);
- bool ret;
- if (IsDirectBinding) {
- ret = global::ObjCRuntime.Messaging.bool_objc_msgSend_UInt64_IntPtr_UInt16_ref_IntPtr (this.Handle, selPairDeviceWithoutSecurity_Address_Port_Error_Handle, deviceId, nsaddress, port, ref errorValue);
- } else {
- ret = global::ObjCRuntime.Messaging.bool_objc_msgSendSuper_UInt64_IntPtr_UInt16_ref_IntPtr (this.SuperHandle, selPairDeviceWithoutSecurity_Address_Port_Error_Handle, deviceId, nsaddress, port, ref errorValue);
- }
- CFString.ReleaseNative (nsaddress);
- error = Runtime.GetNSObject<NSError> (errorValue)!;
- return ret!;
- }
- [Export ("setListenPort:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public virtual void SetListenPort (ushort port)
- {
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_UInt16 (this.Handle, selSetListenPort_Handle, port);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_UInt16 (this.SuperHandle, selSetListenPort_Handle, port);
- }
- }
- [Export ("setPairingDelegate:queue:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public virtual void SetPairingDelegate (IChipDevicePairingDelegate @delegate, global::CoreFoundation.DispatchQueue queue)
- {
- var @delegate__handle__ = @delegate!.GetNonNullHandle (nameof (@delegate));
- var queue__handle__ = queue!.GetNonNullHandle (nameof (queue));
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr (this.Handle, selSetPairingDelegate_Queue_Handle, @delegate__handle__, queue.Handle);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr_IntPtr (this.SuperHandle, selSetPairingDelegate_Queue_Handle, @delegate__handle__, queue.Handle);
- }
- }
- [Export ("shutdown")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public virtual bool Shutdown ()
- {
- if (IsDirectBinding) {
- return global::ObjCRuntime.Messaging.bool_objc_msgSend (this.Handle, selShutdownHandle);
- } else {
- return global::ObjCRuntime.Messaging.bool_objc_msgSendSuper (this.SuperHandle, selShutdownHandle);
- }
- }
- [Obsolete ("This method is removed.", false)]
- [EditorBrowsable (EditorBrowsableState.Never)]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public virtual bool Startup (IChipPersistentStorageDelegate? storageDelegate)
- {
- return true ? throw new InvalidOperationException (Constants.RemovedFromChip) : false;
- }
- [Export ("startup:vendorId:nocSigner:")]
- [Introduced (PlatformName.MacOSX, 12,1, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.WatchOS, 8,3, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.TvOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.iOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.MacCatalyst, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public virtual bool Startup (IChipPersistentStorageDelegate? storageDelegate, ushort vendorId, IChipKeypair? nocSigner)
- {
- var storageDelegate__handle__ = storageDelegate.GetHandle ();
- var nocSigner__handle__ = nocSigner.GetHandle ();
- if (IsDirectBinding) {
- return global::ObjCRuntime.Messaging.bool_objc_msgSend_IntPtr_UInt16_IntPtr (this.Handle, selStartup_VendorId_NocSigner_Handle, storageDelegate__handle__, vendorId, nocSigner__handle__);
- } else {
- return global::ObjCRuntime.Messaging.bool_objc_msgSendSuper_IntPtr_UInt16_IntPtr (this.SuperHandle, selStartup_VendorId_NocSigner_Handle, storageDelegate__handle__, vendorId, nocSigner__handle__);
- }
- }
- [Export ("stopDevicePairing:error:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public virtual bool StopDevicePairing (ulong deviceId, out NSError? error)
- {
- IntPtr errorValue = IntPtr.Zero;
- bool ret;
- if (IsDirectBinding) {
- ret = global::ObjCRuntime.Messaging.bool_objc_msgSend_UInt64_ref_IntPtr (this.Handle, selStopDevicePairing_Error_Handle, deviceId, ref errorValue);
- } else {
- ret = global::ObjCRuntime.Messaging.bool_objc_msgSendSuper_UInt64_ref_IntPtr (this.SuperHandle, selStopDevicePairing_Error_Handle, deviceId, ref errorValue);
- }
- error = Runtime.GetNSObject<NSError> (errorValue)!;
- return ret!;
- }
- [Export ("unpairDevice:error:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public virtual bool UnpairDevice (ulong deviceId, out NSError? error)
- {
- IntPtr errorValue = IntPtr.Zero;
- bool ret;
- if (IsDirectBinding) {
- ret = global::ObjCRuntime.Messaging.bool_objc_msgSend_UInt64_ref_IntPtr (this.Handle, selUnpairDevice_Error_Handle, deviceId, ref errorValue);
- } else {
- ret = global::ObjCRuntime.Messaging.bool_objc_msgSendSuper_UInt64_ref_IntPtr (this.SuperHandle, selUnpairDevice_Error_Handle, deviceId, ref errorValue);
- }
- error = Runtime.GetNSObject<NSError> (errorValue)!;
- return ret!;
- }
- [Export ("updateDevice:fabricId:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public virtual void UpdateDevice (ulong deviceId, ulong fabricId)
- {
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_UInt64_UInt64 (this.Handle, selUpdateDevice_FabricId_Handle, deviceId, fabricId);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_UInt64_UInt64 (this.SuperHandle, selUpdateDevice_FabricId_Handle, deviceId, fabricId);
- }
- }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public virtual NSNumber ControllerNodeId {
- [Export ("getControllerNodeId")]
- get {
- NSNumber? ret;
- if (IsDirectBinding) {
- ret = Runtime.GetNSObject<NSNumber> (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend (this.Handle, selGetControllerNodeIdHandle))!;
- } else {
- ret = Runtime.GetNSObject<NSNumber> (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper (this.SuperHandle, selGetControllerNodeIdHandle))!;
- }
- return ret!;
- }
- }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public virtual bool IsRunning {
- [Export ("isRunning")]
- get {
- if (IsDirectBinding) {
- return global::ObjCRuntime.Messaging.bool_objc_msgSend (this.Handle, selIsRunningHandle);
- } else {
- return global::ObjCRuntime.Messaging.bool_objc_msgSendSuper (this.SuperHandle, selIsRunningHandle);
- }
- }
- }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public static ChipDeviceController SharedController {
- [Export ("sharedController")]
- get {
- ChipDeviceController? ret;
- ret = Runtime.GetNSObject<ChipDeviceController> (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend (class_ptr, selSharedControllerHandle))!;
- return ret!;
- }
- }
- } /* class ChipDeviceController */
- //
- // Async result classes
- //
-}
diff --git a/old/mac/full/Chip/ChipGeneralCommissioning.g.cs b/old/mac/full/Chip/ChipGeneralCommissioning.g.cs
deleted file mode 100644
index 4aa50e8..0000000
--- a/old/mac/full/Chip/ChipGeneralCommissioning.g.cs
+++ /dev/null
@@ -1,336 +0,0 @@
-//
-// 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.Diagnostics;
-using System.ComponentModel;
-using System.Threading.Tasks;
-using System.Runtime.InteropServices;
-using System.Diagnostics.CodeAnalysis;
-using QTKit;
-using Metal;
-using CoreML;
-using OpenGL;
-using AppKit;
-using Photos;
-using ModelIO;
-using Network;
-using SceneKit;
-using Contacts;
-using Security;
-using CloudKit;
-using AudioUnit;
-using CoreVideo;
-using CoreMedia;
-using CoreImage;
-using SpriteKit;
-using Foundation;
-using ObjCRuntime;
-using MediaPlayer;
-using GameplayKit;
-using CoreGraphics;
-using CoreLocation;
-using AVFoundation;
-using FileProvider;
-using CoreAnimation;
-using CoreFoundation;
-using NetworkExtension;
-using MetalPerformanceShadersGraph;
-#nullable enable
-#if !NET
-using NativeHandle = System.IntPtr;
-#endif
-namespace Chip {
- [Register("CHIPGeneralCommissioning", true)]
- [Introduced (PlatformName.MacOSX, 12,0, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.WatchOS, 8,0, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.TvOS, 15,0, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.iOS, 15,0, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.MacCatalyst, 15,0, ObjCRuntime.PlatformArchitecture.All)]
- public unsafe partial class ChipGeneralCommissioning : ChipCluster {
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- const string selArmFailSafe_Breadcrumb_TimeoutMs_ResponseHandler_ = "armFailSafe:breadcrumb:timeoutMs:responseHandler:";
- static readonly IntPtr selArmFailSafe_Breadcrumb_TimeoutMs_ResponseHandler_Handle = Selector.GetHandle ("armFailSafe:breadcrumb:timeoutMs:responseHandler:");
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- const string selCommissioningComplete_ = "commissioningComplete:";
- static readonly IntPtr selCommissioningComplete_Handle = Selector.GetHandle ("commissioningComplete:");
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- const string selInitWithDevice_Endpoint_Queue_ = "initWithDevice:endpoint:queue:";
- static readonly IntPtr selInitWithDevice_Endpoint_Queue_Handle = Selector.GetHandle ("initWithDevice:endpoint:queue:");
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- const string selReadAttributeBasicCommissioningInfoListWithResponseHandler_ = "readAttributeBasicCommissioningInfoListWithResponseHandler:";
- static readonly IntPtr selReadAttributeBasicCommissioningInfoListWithResponseHandler_Handle = Selector.GetHandle ("readAttributeBasicCommissioningInfoListWithResponseHandler:");
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- const string selReadAttributeBreadcrumbWithResponseHandler_ = "readAttributeBreadcrumbWithResponseHandler:";
- static readonly IntPtr selReadAttributeBreadcrumbWithResponseHandler_Handle = Selector.GetHandle ("readAttributeBreadcrumbWithResponseHandler:");
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- const string selReadAttributeClusterRevisionWithResponseHandler_ = "readAttributeClusterRevisionWithResponseHandler:";
- static readonly IntPtr selReadAttributeClusterRevisionWithResponseHandler_Handle = Selector.GetHandle ("readAttributeClusterRevisionWithResponseHandler:");
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- const string selSetRegulatoryConfig_CountryCode_Breadcrumb_TimeoutMs_ResponseHandler_ = "setRegulatoryConfig:countryCode:breadcrumb:timeoutMs:responseHandler:";
- static readonly IntPtr selSetRegulatoryConfig_CountryCode_Breadcrumb_TimeoutMs_ResponseHandler_Handle = Selector.GetHandle ("setRegulatoryConfig:countryCode:breadcrumb:timeoutMs:responseHandler:");
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- const string selWriteAttributeBreadcrumbWithValue_ResponseHandler_ = "writeAttributeBreadcrumbWithValue:responseHandler:";
- static readonly IntPtr selWriteAttributeBreadcrumbWithValue_ResponseHandler_Handle = Selector.GetHandle ("writeAttributeBreadcrumbWithValue:responseHandler:");
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- static readonly IntPtr class_ptr = Class.GetHandle ("CHIPGeneralCommissioning");
- public override IntPtr ClassHandle { get { return class_ptr; } }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- [EditorBrowsable (EditorBrowsableState.Advanced)]
- protected ChipGeneralCommissioning (NSObjectFlag t) : base (t)
- {
- }
-
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- [EditorBrowsable (EditorBrowsableState.Advanced)]
- protected internal ChipGeneralCommissioning (IntPtr handle) : base (handle)
- {
- }
-
- [Export ("initWithDevice:endpoint:queue:")]
- [Introduced (PlatformName.MacOSX, 12,1, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.WatchOS, 8,3, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.TvOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.iOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.MacCatalyst, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [DesignatedInitializer]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public ChipGeneralCommissioning (ChipDevice device, ushort endpoint, global::CoreFoundation.DispatchQueue queue)
- : base (NSObjectFlag.Empty)
- {
- var device__handle__ = device!.GetNonNullHandle (nameof (device));
- var queue__handle__ = queue!.GetNonNullHandle (nameof (queue));
- if (IsDirectBinding) {
- InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend_IntPtr_UInt16_IntPtr (this.Handle, selInitWithDevice_Endpoint_Queue_Handle, device__handle__, endpoint, queue.Handle), "initWithDevice:endpoint:queue:");
- } else {
- InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper_IntPtr_UInt16_IntPtr (this.SuperHandle, selInitWithDevice_Endpoint_Queue_Handle, device__handle__, endpoint, queue.Handle), "initWithDevice:endpoint:queue:");
- }
- }
- [Deprecated (PlatformName.iOS, 15,2)]
- [Deprecated (PlatformName.TvOS, 15,2)]
- [Deprecated (PlatformName.WatchOS, 8,3)]
- [Deprecated (PlatformName.MacOSX, 12,1)]
- [Deprecated (PlatformName.MacCatalyst, 15,2)]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public ChipGeneralCommissioning (ChipDevice device, byte endpoint, global::CoreFoundation.DispatchQueue queue)
- : this (device, (ushort) endpoint, queue)
- {
- }
- [Export ("armFailSafe:breadcrumb:timeoutMs:responseHandler:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void ArmFailSafe (ushort expiryLengthSeconds, ulong breadcrumb, uint timeoutMs, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- if (responseHandler is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (responseHandler));
- BlockLiteral *block_ptr_responseHandler;
- BlockLiteral block_responseHandler;
- block_responseHandler = new BlockLiteral ();
- block_ptr_responseHandler = &block_responseHandler;
- block_responseHandler.SetupBlockUnsafe (Trampolines.SDChipResponseHandler.Handler, responseHandler);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_UInt16_UInt64_UInt32_IntPtr (this.Handle, selArmFailSafe_Breadcrumb_TimeoutMs_ResponseHandler_Handle, expiryLengthSeconds, breadcrumb, timeoutMs, (IntPtr) block_ptr_responseHandler);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_UInt16_UInt64_UInt32_IntPtr (this.SuperHandle, selArmFailSafe_Breadcrumb_TimeoutMs_ResponseHandler_Handle, expiryLengthSeconds, breadcrumb, timeoutMs, (IntPtr) block_ptr_responseHandler);
- }
- block_ptr_responseHandler->CleanupBlock ();
- }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> ArmFailSafeAsync (ushort expiryLengthSeconds, ulong breadcrumb, uint timeoutMs)
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- ArmFailSafe(expiryLengthSeconds, breadcrumb, timeoutMs, (error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- [Export ("commissioningComplete:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void CommissioningComplete ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- if (responseHandler is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (responseHandler));
- BlockLiteral *block_ptr_responseHandler;
- BlockLiteral block_responseHandler;
- block_responseHandler = new BlockLiteral ();
- block_ptr_responseHandler = &block_responseHandler;
- block_responseHandler.SetupBlockUnsafe (Trampolines.SDChipResponseHandler.Handler, responseHandler);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, selCommissioningComplete_Handle, (IntPtr) block_ptr_responseHandler);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr (this.SuperHandle, selCommissioningComplete_Handle, (IntPtr) block_ptr_responseHandler);
- }
- block_ptr_responseHandler->CleanupBlock ();
- }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> CommissioningCompleteAsync ()
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- CommissioningComplete((error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- [Export ("readAttributeBasicCommissioningInfoListWithResponseHandler:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void ReadAttributeBasicCommissioningInfoList ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- if (responseHandler is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (responseHandler));
- BlockLiteral *block_ptr_responseHandler;
- BlockLiteral block_responseHandler;
- block_responseHandler = new BlockLiteral ();
- block_ptr_responseHandler = &block_responseHandler;
- block_responseHandler.SetupBlockUnsafe (Trampolines.SDChipResponseHandler.Handler, responseHandler);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, selReadAttributeBasicCommissioningInfoListWithResponseHandler_Handle, (IntPtr) block_ptr_responseHandler);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr (this.SuperHandle, selReadAttributeBasicCommissioningInfoListWithResponseHandler_Handle, (IntPtr) block_ptr_responseHandler);
- }
- block_ptr_responseHandler->CleanupBlock ();
- }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> ReadAttributeBasicCommissioningInfoListAsync ()
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- ReadAttributeBasicCommissioningInfoList((error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- [Export ("readAttributeBreadcrumbWithResponseHandler:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void ReadAttributeBreadcrumb ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- if (responseHandler is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (responseHandler));
- BlockLiteral *block_ptr_responseHandler;
- BlockLiteral block_responseHandler;
- block_responseHandler = new BlockLiteral ();
- block_ptr_responseHandler = &block_responseHandler;
- block_responseHandler.SetupBlockUnsafe (Trampolines.SDChipResponseHandler.Handler, responseHandler);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, selReadAttributeBreadcrumbWithResponseHandler_Handle, (IntPtr) block_ptr_responseHandler);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr (this.SuperHandle, selReadAttributeBreadcrumbWithResponseHandler_Handle, (IntPtr) block_ptr_responseHandler);
- }
- block_ptr_responseHandler->CleanupBlock ();
- }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> ReadAttributeBreadcrumbAsync ()
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- ReadAttributeBreadcrumb((error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- [Export ("readAttributeClusterRevisionWithResponseHandler:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void ReadAttributeClusterRevision ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- if (responseHandler is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (responseHandler));
- BlockLiteral *block_ptr_responseHandler;
- BlockLiteral block_responseHandler;
- block_responseHandler = new BlockLiteral ();
- block_ptr_responseHandler = &block_responseHandler;
- block_responseHandler.SetupBlockUnsafe (Trampolines.SDChipResponseHandler.Handler, responseHandler);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, selReadAttributeClusterRevisionWithResponseHandler_Handle, (IntPtr) block_ptr_responseHandler);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr (this.SuperHandle, selReadAttributeClusterRevisionWithResponseHandler_Handle, (IntPtr) block_ptr_responseHandler);
- }
- block_ptr_responseHandler->CleanupBlock ();
- }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> ReadAttributeClusterRevisionAsync ()
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- ReadAttributeClusterRevision((error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- [Obsolete ("This method is removed.", false)]
- [EditorBrowsable (EditorBrowsableState.Never)]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void ReadAttributeFabricId ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- throw new InvalidOperationException (Constants.RemovedFromChip);
- }
- [Obsolete ("This method is removed.", false)]
- [EditorBrowsable (EditorBrowsableState.Never)]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> ReadAttributeFabricIdAsync ()
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- ReadAttributeFabricId((error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- [Export ("setRegulatoryConfig:countryCode:breadcrumb:timeoutMs:responseHandler:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void SetRegulatoryConfig (byte location, string countryCode, ulong breadcrumb, uint timeoutMs, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- if (countryCode is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (countryCode));
- if (responseHandler is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (responseHandler));
- var nscountryCode = CFString.CreateNative (countryCode);
- BlockLiteral *block_ptr_responseHandler;
- BlockLiteral block_responseHandler;
- block_responseHandler = new BlockLiteral ();
- block_ptr_responseHandler = &block_responseHandler;
- block_responseHandler.SetupBlockUnsafe (Trampolines.SDChipResponseHandler.Handler, responseHandler);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_byte_IntPtr_UInt64_UInt32_IntPtr (this.Handle, selSetRegulatoryConfig_CountryCode_Breadcrumb_TimeoutMs_ResponseHandler_Handle, location, nscountryCode, breadcrumb, timeoutMs, (IntPtr) block_ptr_responseHandler);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_byte_IntPtr_UInt64_UInt32_IntPtr (this.SuperHandle, selSetRegulatoryConfig_CountryCode_Breadcrumb_TimeoutMs_ResponseHandler_Handle, location, nscountryCode, breadcrumb, timeoutMs, (IntPtr) block_ptr_responseHandler);
- }
- CFString.ReleaseNative (nscountryCode);
- block_ptr_responseHandler->CleanupBlock ();
- }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> SetRegulatoryConfigAsync (byte location, string countryCode, ulong breadcrumb, uint timeoutMs)
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- SetRegulatoryConfig(location, countryCode, breadcrumb, timeoutMs, (error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- [Export ("writeAttributeBreadcrumbWithValue:responseHandler:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void WriteAttributeBreadcrumb (ulong value, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- if (responseHandler is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (responseHandler));
- BlockLiteral *block_ptr_responseHandler;
- BlockLiteral block_responseHandler;
- block_responseHandler = new BlockLiteral ();
- block_ptr_responseHandler = &block_responseHandler;
- block_responseHandler.SetupBlockUnsafe (Trampolines.SDChipResponseHandler.Handler, responseHandler);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_UInt64_IntPtr (this.Handle, selWriteAttributeBreadcrumbWithValue_ResponseHandler_Handle, value, (IntPtr) block_ptr_responseHandler);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_UInt64_IntPtr (this.SuperHandle, selWriteAttributeBreadcrumbWithValue_ResponseHandler_Handle, value, (IntPtr) block_ptr_responseHandler);
- }
- block_ptr_responseHandler->CleanupBlock ();
- }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> WriteAttributeBreadcrumbAsync (ulong value)
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- WriteAttributeBreadcrumb(value, (error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- } /* class ChipGeneralCommissioning */
- //
- // Async result classes
- //
-}
diff --git a/old/mac/full/Chip/ChipLowPower.g.cs b/old/mac/full/Chip/ChipLowPower.g.cs
deleted file mode 100644
index 3f7df42..0000000
--- a/old/mac/full/Chip/ChipLowPower.g.cs
+++ /dev/null
@@ -1,164 +0,0 @@
-//
-// 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.Diagnostics;
-using System.ComponentModel;
-using System.Threading.Tasks;
-using System.Runtime.InteropServices;
-using System.Diagnostics.CodeAnalysis;
-using QTKit;
-using Metal;
-using CoreML;
-using OpenGL;
-using AppKit;
-using Photos;
-using ModelIO;
-using Network;
-using SceneKit;
-using Contacts;
-using Security;
-using CloudKit;
-using AudioUnit;
-using CoreVideo;
-using CoreMedia;
-using CoreImage;
-using SpriteKit;
-using Foundation;
-using ObjCRuntime;
-using MediaPlayer;
-using GameplayKit;
-using CoreGraphics;
-using CoreLocation;
-using AVFoundation;
-using FileProvider;
-using CoreAnimation;
-using CoreFoundation;
-using NetworkExtension;
-using MetalPerformanceShadersGraph;
-#nullable enable
-#if !NET
-using NativeHandle = System.IntPtr;
-#endif
-namespace Chip {
- [Register("CHIPLowPower", true)]
- [Introduced (PlatformName.MacOSX, 12,0, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.WatchOS, 8,0, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.TvOS, 15,0, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.iOS, 15,0, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.MacCatalyst, 15,0, ObjCRuntime.PlatformArchitecture.All)]
- public unsafe partial class ChipLowPower : ChipCluster {
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- const string selInitWithDevice_Endpoint_Queue_ = "initWithDevice:endpoint:queue:";
- static readonly IntPtr selInitWithDevice_Endpoint_Queue_Handle = Selector.GetHandle ("initWithDevice:endpoint:queue:");
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- const string selReadAttributeClusterRevisionWithResponseHandler_ = "readAttributeClusterRevisionWithResponseHandler:";
- static readonly IntPtr selReadAttributeClusterRevisionWithResponseHandler_Handle = Selector.GetHandle ("readAttributeClusterRevisionWithResponseHandler:");
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- const string selSleep_ = "sleep:";
- static readonly IntPtr selSleep_Handle = Selector.GetHandle ("sleep:");
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- static readonly IntPtr class_ptr = Class.GetHandle ("CHIPLowPower");
- public override IntPtr ClassHandle { get { return class_ptr; } }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- [EditorBrowsable (EditorBrowsableState.Advanced)]
- protected ChipLowPower (NSObjectFlag t) : base (t)
- {
- }
-
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- [EditorBrowsable (EditorBrowsableState.Advanced)]
- protected internal ChipLowPower (IntPtr handle) : base (handle)
- {
- }
-
- [Export ("initWithDevice:endpoint:queue:")]
- [Introduced (PlatformName.MacOSX, 12,1, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.WatchOS, 8,3, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.TvOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.iOS, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.MacCatalyst, 15,2, ObjCRuntime.PlatformArchitecture.All)]
- [DesignatedInitializer]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public ChipLowPower (ChipDevice device, ushort endpoint, global::CoreFoundation.DispatchQueue queue)
- : base (NSObjectFlag.Empty)
- {
- var device__handle__ = device!.GetNonNullHandle (nameof (device));
- var queue__handle__ = queue!.GetNonNullHandle (nameof (queue));
- if (IsDirectBinding) {
- InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend_IntPtr_UInt16_IntPtr (this.Handle, selInitWithDevice_Endpoint_Queue_Handle, device__handle__, endpoint, queue.Handle), "initWithDevice:endpoint:queue:");
- } else {
- InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper_IntPtr_UInt16_IntPtr (this.SuperHandle, selInitWithDevice_Endpoint_Queue_Handle, device__handle__, endpoint, queue.Handle), "initWithDevice:endpoint:queue:");
- }
- }
- [Deprecated (PlatformName.iOS, 15,2)]
- [Deprecated (PlatformName.TvOS, 15,2)]
- [Deprecated (PlatformName.WatchOS, 8,3)]
- [Deprecated (PlatformName.MacOSX, 12,1)]
- [Deprecated (PlatformName.MacCatalyst, 15,2)]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public ChipLowPower (ChipDevice device, byte endpoint, global::CoreFoundation.DispatchQueue queue)
- : this (device, (ushort) endpoint, queue)
- {
- }
- [Export ("readAttributeClusterRevisionWithResponseHandler:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void ReadAttributeClusterRevision ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- if (responseHandler is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (responseHandler));
- BlockLiteral *block_ptr_responseHandler;
- BlockLiteral block_responseHandler;
- block_responseHandler = new BlockLiteral ();
- block_ptr_responseHandler = &block_responseHandler;
- block_responseHandler.SetupBlockUnsafe (Trampolines.SDChipResponseHandler.Handler, responseHandler);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, selReadAttributeClusterRevisionWithResponseHandler_Handle, (IntPtr) block_ptr_responseHandler);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr (this.SuperHandle, selReadAttributeClusterRevisionWithResponseHandler_Handle, (IntPtr) block_ptr_responseHandler);
- }
- block_ptr_responseHandler->CleanupBlock ();
- }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> ReadAttributeClusterRevisionAsync ()
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- ReadAttributeClusterRevision((error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- [Export ("sleep:")]
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void Sleep ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDChipResponseHandler))]ChipResponseHandler responseHandler)
- {
- if (responseHandler is null)
- ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (responseHandler));
- BlockLiteral *block_ptr_responseHandler;
- BlockLiteral block_responseHandler;
- block_responseHandler = new BlockLiteral ();
- block_ptr_responseHandler = &block_responseHandler;
- block_responseHandler.SetupBlockUnsafe (Trampolines.SDChipResponseHandler.Handler, responseHandler);
- if (IsDirectBinding) {
- global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, selSleep_Handle, (IntPtr) block_ptr_responseHandler);
- } else {
- global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr (this.SuperHandle, selSleep_Handle, (IntPtr) block_ptr_responseHandler);
- }
- block_ptr_responseHandler->CleanupBlock ();
- }
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual Task<ChipReadAttributeResult> SleepAsync ()
- {
- var tcs = new TaskCompletionSource<ChipReadAttributeResult> ();
- Sleep((error_, data_) => {
- tcs.SetResult (new ChipReadAttributeResult (error_!, data_!));
- });
- return tcs.Task;
- }
- } /* class ChipLowPower */
- //
- // Async result classes
- //
-}
diff --git a/old/mac/full/Chip/ChipTestCluster.g.cs b/old/mac/full/Chip/ChipTestCluster.g.cs
deleted file mode 100644
index 37a7740..0000000
--- a/old/mac/full/Chip/ChipTestCluster.g.cs
+++ /dev/null
@@ -1,1708 +0,0 @@
-//
-// 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.Diagnostics;
-using System.ComponentModel;
-using System.Threading.Tasks;
-using System.Runtime.InteropServices;
-using System.Diagnostics.CodeAnalysis;
-using QTKit;
-using Metal;
-using CoreML;
-using OpenGL;
-using AppKit;
-using Photos;
-using ModelIO;
-using Network;
-using SceneKit;
-using Contacts;
-using Security;
-using CloudKit;
-using AudioUnit;
-using CoreVideo;
-using CoreMedia;
-using CoreImage;
-using SpriteKit;
-using Foundation;
-using ObjCRuntime;
-using MediaPlayer;
-using GameplayKit;
-using CoreGraphics;
-using CoreLocation;
-using AVFoundation;
-using FileProvider;
-using CoreAnimation;
-using CoreFoundation;
-using NetworkExtension;
-using MetalPerformanceShadersGraph;
-#nullable enable
-#if !NET
-using NativeHandle = System.IntPtr;
-#endif
-namespace Chip {
- [Register("CHIPTestCluster", true)]
- [Introduced (PlatformName.MacOSX, 12,0, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.WatchOS, 8,0, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.TvOS, 15,0, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.iOS, 15,0, ObjCRuntime.PlatformArchitecture.All)]
- [Introduced (PlatformName.MacCatalyst, 15,0, ObjCRuntime.PlatformArchitecture.All)]
- public unsafe partial class ChipTestCluster : ChipCluster {
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- const string selInitWithDevice_Endpoint_Queue_ = "initWithDevice:endpoint:queue:";
- static readonly IntPtr selInitWithDevice_Endpoint_Queue_Handle = Selector.GetHandle ("initWithDevice:endpoint:queue:");
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- const string selReadAttributeBitmap16WithResponseHandler_ = "readAttributeBitmap16WithResponseHandler:";
- static readonly IntPtr selReadAttributeBitmap16WithResponseHandler_Handle = Selector.GetHandle ("readAttributeBitmap16WithResponseHandler:");
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- const string selReadAttributeBitmap32WithResponseHandler_ = "readAttributeBitmap32WithResponseHandler:";
- static readonly IntPtr selReadAttributeBitmap32WithResponseHandler_Handle = Selector.GetHandle ("readAttributeBitmap32WithResponseHandler:");
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- const string selReadAttributeBitmap64WithResponseHandler_ = "readAttributeBitmap64WithResponseHandler:";
- static readonly IntPtr selReadAttributeBitmap64WithResponseHandler_Handle = Selector.GetHandle ("readAttributeBitmap64WithResponseHandler:");
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- const string selReadAttributeBitmap8WithResponseHandler_ = "readAttributeBitmap8WithResponseHandler:";
- static readonly IntPtr selReadAttributeBitmap8WithResponseHandler_Handle = Selector.GetHandle ("readAttributeBitmap8WithResponseHandler:");
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- const string selReadAttributeBooleanWithResponseHandler_ = "readAttributeBooleanWithResponseHandler:";
- static readonly IntPtr selReadAttributeBooleanWithResponseHandler_Handle = Selector.GetHandle ("readAttributeBooleanWithResponseHandler:");
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- const string selReadAttributeCharStringWithResponseHandler_ = "readAttributeCharStringWithResponseHandler:";
- static readonly IntPtr selReadAttributeCharStringWithResponseHandler_Handle = Selector.GetHandle ("readAttributeCharStringWithResponseHandler:");
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- const string selReadAttributeClusterRevisionWithResponseHandler_ = "readAttributeClusterRevisionWithResponseHandler:";
- static readonly IntPtr selReadAttributeClusterRevisionWithResponseHandler_Handle = Selector.GetHandle ("readAttributeClusterRevisionWithResponseHandler:");
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- const string selReadAttributeEnum16WithResponseHandler_ = "readAttributeEnum16WithResponseHandler:";
- static readonly IntPtr selReadAttributeEnum16WithResponseHandler_Handle = Selector.GetHandle ("readAttributeEnum16WithResponseHandler:");
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- const string selReadAttributeEnum8WithResponseHandler_ = "readAttributeEnum8WithResponseHandler:";
- static readonly IntPtr selReadAttributeEnum8WithResponseHandler_Handle = Selector.GetHandle ("readAttributeEnum8WithResponseHandler:");
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- const string selReadAttributeInt16sWithResponseHandler_ = "readAttributeInt16sWithResponseHandler:";
- static readonly IntPtr selReadAttributeInt16sWithResponseHandler_Handle = Selector.GetHandle ("readAttributeInt16sWithResponseHandler:");
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- const string selReadAttributeInt16uWithResponseHandler_ = "readAttributeInt16uWithResponseHandler:";
- static readonly IntPtr selReadAttributeInt16uWithResponseHandler_Handle = Selector.GetHandle ("readAttributeInt16uWithResponseHandler:");
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- const string selReadAttributeInt32sWithResponseHandler_ = "readAttributeInt32sWithResponseHandler:";
- static readonly IntPtr selReadAttributeInt32sWithResponseHandler_Handle = Selector.GetHandle ("readAttributeInt32sWithResponseHandler:");
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- const string selReadAttributeInt32uWithResponseHandler_ = "readAttributeInt32uWithResponseHandler:";
- static readonly IntPtr selReadAttributeInt32uWithResponseHandler_Handle = Selector.GetHandle ("readAttributeInt32uWithResponseHandler:");
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- const string selReadAttributeInt64sWithResponseHandler_ = "readAttributeInt64sWithResponseHandler:";
- static readonly IntPtr selReadAttributeInt64sWithResponseHandler_Handle = Selector.GetHandle ("readAttributeInt64sWithResponseHandler:");
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- const string selReadAttribut
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment