Skip to content

Instantly share code, notes, and snippets.

@vs-mobiletools-engineering-service2
Created September 1, 2022 22:57
Show Gist options
  • Save vs-mobiletools-engineering-service2/0d492717034be6d1f38ef680c0fd0a1e to your computer and use it in GitHub Desktop.
Save vs-mobiletools-engineering-service2/0d492717034be6d1f38ef680c0fd0a1e to your computer and use it in GitHub Desktop.
generator-diff/generator.diff
diff --git a/old/Constants.ios.generated.cs b/new/Constants.ios.generated.cs
index 5ed2b25..3588d52 100644
--- a/old/Constants.ios.generated.cs
+++ b/new/Constants.ios.generated.cs
@@ -171,6 +171,7 @@ namespace ObjCRuntime {
// iOS 16.0
public const string BackgroundAssetsLibrary = "/System/Library/Frameworks/BackgroundAssets.framework/BackgroundAssets";
public const string PushToTalkLibrary = "/System/Library/Frameworks/PushToTalk.framework/PushToTalk";
+ public const string SharedWithYouLibrary = "/System/Library/Frameworks/SharedWithYouCore.framework/SharedWithYouCore";
public const string SharedWithYouCoreLibrary = "/System/Library/Frameworks/SharedWithYouCore.framework/SharedWithYouCore";
}
diff --git a/old/dotnet/Constants.ios.generated.cs b/new/dotnet/Constants.ios.generated.cs
index ea5d5f7..e2e9fe3 100644
--- a/old/dotnet/Constants.ios.generated.cs
+++ b/new/dotnet/Constants.ios.generated.cs
@@ -169,6 +169,7 @@ namespace ObjCRuntime {
// iOS 16.0
public const string BackgroundAssetsLibrary = "/System/Library/Frameworks/BackgroundAssets.framework/BackgroundAssets";
public const string PushToTalkLibrary = "/System/Library/Frameworks/PushToTalk.framework/PushToTalk";
+ public const string SharedWithYouLibrary = "/System/Library/Frameworks/SharedWithYouCore.framework/SharedWithYouCore";
public const string SharedWithYouCoreLibrary = "/System/Library/Frameworks/SharedWithYouCore.framework/SharedWithYouCore";
}
diff --git a/old/dotnet/Constants.maccatalyst.generated.cs b/new/dotnet/Constants.maccatalyst.generated.cs
index 50f947d..6d7d8d9 100644
--- a/old/dotnet/Constants.maccatalyst.generated.cs
+++ b/new/dotnet/Constants.maccatalyst.generated.cs
@@ -135,6 +135,7 @@ namespace ObjCRuntime {
public const string BackgroundAssetsLibrary = "/System/Library/Frameworks/BackgroundAssets.framework/BackgroundAssets";
public const string ExecutionPolicyLibrary = "/System/Library/Frameworks/ExecutionPolicy.framework/ExecutionPolicy";
public const string PushToTalkLibrary = "/System/Library/Frameworks/PushToTalk.framework/PushToTalk";
+ public const string SharedWithYouLibrary = "/System/Library/Frameworks/SharedWithYouCore.framework/SharedWithYouCore";
public const string SharedWithYouCoreLibrary = "/System/Library/Frameworks/SharedWithYouCore.framework/SharedWithYouCore";
}
diff --git a/old/dotnet/ios/generated-sources/ObjCRuntime/Libraries.g.cs b/new/dotnet/ios/generated-sources/ObjCRuntime/Libraries.g.cs
index bd3c7b8..6ff1ca9 100644
--- a/old/dotnet/ios/generated-sources/ObjCRuntime/Libraries.g.cs
+++ b/new/dotnet/ios/generated-sources/ObjCRuntime/Libraries.g.cs
@@ -312,6 +312,9 @@ namespace ObjCRuntime {
static public class SensorKit {
static public readonly IntPtr Handle = Dlfcn._dlopen (Constants.SensorKitLibrary, 0);
}
+ static public class SharedWithYou {
+ static public readonly IntPtr Handle = Dlfcn._dlopen (Constants.SharedWithYouLibrary, 0);
+ }
static public class SharedWithYouCore {
static public readonly IntPtr Handle = Dlfcn._dlopen (Constants.SharedWithYouCoreLibrary, 0);
}
diff --git a/old/dotnet/ios/generated-sources/ObjCRuntime/Trampolines.g.cs b/new/dotnet/ios/generated-sources/ObjCRuntime/Trampolines.g.cs
index 89b3a40..02fc361 100644
--- a/old/dotnet/ios/generated-sources/ObjCRuntime/Trampolines.g.cs
+++ b/new/dotnet/ios/generated-sources/ObjCRuntime/Trampolines.g.cs
@@ -26950,28 +26950,28 @@ namespace ObjCRuntime {
} /* class NIDActionArity2V31 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSArray<global::VideoSubscriberAccount.VSUserAccount>, NSError>))]
- internal delegate void DActionArity2V159 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V162 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V159 {
- static internal readonly DActionArity2V159 Handler = Invoke;
+ static internal class SDActionArity2V162 {
+ static internal readonly DActionArity2V162 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V159))]
+ [MonoPInvokeCallback (typeof (DActionArity2V162))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<NSArray<global::VideoSubscriberAccount.VSUserAccount>, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<global::Foundation.NSArray<global::VideoSubscriberAccount.VSUserAccount>> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V159 */
- internal sealed class NIDActionArity2V159 : TrampolineBlockBase {
- DActionArity2V159 invoker;
+ } /* class SDActionArity2V162 */
+ internal sealed class NIDActionArity2V162 : TrampolineBlockBase {
+ DActionArity2V162 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V159 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V162 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V159> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V162> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -26980,7 +26980,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<NSArray<global::VideoSubscriberAccount.VSUserAccount>, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V159 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V162 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSArray<global::VideoSubscriberAccount.VSUserAccount> arg1, NSError arg2)
@@ -26989,7 +26989,7 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V159 */
+ } /* class NIDActionArity2V162 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSData, NSError>))]
internal delegate void DActionArity2V19 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
@@ -27214,28 +27214,28 @@ namespace ObjCRuntime {
} /* class NIDActionArity2V75 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSDictionary<NSString, NSObject>, NSError>))]
- internal delegate void DActionArity2V153 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V156 (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 SDActionArity2V156 {
+ static internal readonly DActionArity2V156 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V153))]
+ [MonoPInvokeCallback (typeof (DActionArity2V156))]
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 SDActionArity2V153 */
- internal sealed class NIDActionArity2V153 : TrampolineBlockBase {
- DActionArity2V153 invoker;
+ } /* class SDActionArity2V156 */
+ internal sealed class NIDActionArity2V156 : TrampolineBlockBase {
+ DActionArity2V156 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V153 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V156 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V153> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V156> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -27244,7 +27244,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<NSDictionary<NSString, NSObject>, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V153 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V156 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSDictionary<NSString, NSObject> arg1, NSError arg2)
@@ -27253,31 +27253,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V153 */
+ } /* class NIDActionArity2V156 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSDictionary<NSString, NSObject>[], NSError>))]
- internal delegate void DActionArity2V154 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V157 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V154 {
- static internal readonly DActionArity2V154 Handler = Invoke;
+ static internal class SDActionArity2V157 {
+ static internal readonly DActionArity2V157 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V154))]
+ [MonoPInvokeCallback (typeof (DActionArity2V157))]
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 SDActionArity2V154 */
- internal sealed class NIDActionArity2V154 : TrampolineBlockBase {
- DActionArity2V154 invoker;
+ } /* class SDActionArity2V157 */
+ internal sealed class NIDActionArity2V157 : TrampolineBlockBase {
+ DActionArity2V157 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V154 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V157 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V154> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V157> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -27286,7 +27286,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<NSDictionary<NSString, NSObject>[], NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V154 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V157 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSDictionary<NSString, NSObject>[] arg1, NSError arg2)
@@ -27299,7 +27299,7 @@ namespace ObjCRuntime {
if (nsa_arg1 != null)
nsa_arg1.Dispose ();
}
- } /* class NIDActionArity2V154 */
+ } /* class NIDActionArity2V157 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSDictionary<NSString, NSOperation>, NSError>))]
internal delegate void DActionArity2V39 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
@@ -27474,28 +27474,28 @@ namespace ObjCRuntime {
} /* class NIDActionArity2V76 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSObject, NSString>))]
- internal delegate void DActionArity2V162 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V165 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V162 {
- static internal readonly DActionArity2V162 Handler = Invoke;
+ static internal class SDActionArity2V165 {
+ static internal readonly DActionArity2V165 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V162))]
+ [MonoPInvokeCallback (typeof (DActionArity2V165))]
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 SDActionArity2V162 */
- internal sealed class NIDActionArity2V162 : TrampolineBlockBase {
- DActionArity2V162 invoker;
+ } /* class SDActionArity2V165 */
+ internal sealed class NIDActionArity2V165 : TrampolineBlockBase {
+ DActionArity2V165 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V162 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V165 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V162> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V165> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -27504,7 +27504,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<NSObject, NSString>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V162 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V165 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSObject arg1, NSString arg2)
@@ -27513,31 +27513,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V162 */
+ } /* class NIDActionArity2V165 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSSet<NSString>, NSError>))]
- internal delegate void DActionArity2V151 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V154 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V151 {
- static internal readonly DActionArity2V151 Handler = Invoke;
+ static internal class SDActionArity2V154 {
+ static internal readonly DActionArity2V154 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V151))]
+ [MonoPInvokeCallback (typeof (DActionArity2V154))]
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 SDActionArity2V151 */
- internal sealed class NIDActionArity2V151 : TrampolineBlockBase {
- DActionArity2V151 invoker;
+ } /* class SDActionArity2V154 */
+ internal sealed class NIDActionArity2V154 : TrampolineBlockBase {
+ DActionArity2V154 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V151 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V154 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V151> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V154> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -27546,7 +27546,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<NSSet<NSString>, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V151 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V154 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSSet<NSString> arg1, NSError arg2)
@@ -27555,31 +27555,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V151 */
+ } /* class NIDActionArity2V154 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSSet<NSString>[], NSError>))]
- internal delegate void DActionArity2V152 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V155 (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 SDActionArity2V155 {
+ static internal readonly DActionArity2V155 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V152))]
+ [MonoPInvokeCallback (typeof (DActionArity2V155))]
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 SDActionArity2V152 */
- internal sealed class NIDActionArity2V152 : TrampolineBlockBase {
- DActionArity2V152 invoker;
+ } /* class SDActionArity2V155 */
+ internal sealed class NIDActionArity2V155 : TrampolineBlockBase {
+ DActionArity2V155 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V152 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V155 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V152> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V155> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -27588,7 +27588,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<NSSet<NSString>[], NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V152 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V155 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSSet<NSString>[] arg1, NSError arg2)
@@ -27601,31 +27601,31 @@ namespace ObjCRuntime {
if (nsa_arg1 != null)
nsa_arg1.Dispose ();
}
- } /* class NIDActionArity2V152 */
+ } /* class NIDActionArity2V155 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSSet<global::ThreadNetwork.THCredentials>, NSError>))]
- internal delegate void DActionArity2V146 (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 SDActionArity2V146 {
- static internal readonly DActionArity2V146 Handler = Invoke;
+ static internal class SDActionArity2V149 {
+ static internal readonly DActionArity2V149 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V146))]
+ [MonoPInvokeCallback (typeof (DActionArity2V149))]
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 SDActionArity2V146 */
- internal sealed class NIDActionArity2V146 : TrampolineBlockBase {
- DActionArity2V146 invoker;
+ } /* class SDActionArity2V149 */
+ internal sealed class NIDActionArity2V149 : TrampolineBlockBase {
+ DActionArity2V149 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V146 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V149 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V146> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V149> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -27634,7 +27634,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<NSSet<global::ThreadNetwork.THCredentials>, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V146 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V149 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSSet<global::ThreadNetwork.THCredentials> arg1, NSError arg2)
@@ -27643,31 +27643,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V146 */
+ } /* class NIDActionArity2V149 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSString, NSError>))]
- internal delegate void DActionArity2V143 (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 SDActionArity2V143 {
- static internal readonly DActionArity2V143 Handler = Invoke;
+ static internal class SDActionArity2V146 {
+ static internal readonly DActionArity2V146 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V143))]
+ [MonoPInvokeCallback (typeof (DActionArity2V146))]
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 SDActionArity2V143 */
- internal sealed class NIDActionArity2V143 : TrampolineBlockBase {
- DActionArity2V143 invoker;
+ } /* class SDActionArity2V146 */
+ internal sealed class NIDActionArity2V146 : TrampolineBlockBase {
+ DActionArity2V146 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V143 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V146 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V143> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V146> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -27676,7 +27676,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<NSString, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V143 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V146 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSString arg1, NSError arg2)
@@ -27685,31 +27685,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V143 */
+ } /* class NIDActionArity2V146 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSString, bool>))]
- internal delegate void DActionArity2V149 (IntPtr block, NativeHandle arg1, bool arg2);
+ internal delegate void DActionArity2V152 (IntPtr block, NativeHandle arg1, bool arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V149 {
- static internal readonly DActionArity2V149 Handler = Invoke;
+ static internal class SDActionArity2V152 {
+ static internal readonly DActionArity2V152 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V149))]
+ [MonoPInvokeCallback (typeof (DActionArity2V152))]
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 SDActionArity2V149 */
- internal sealed class NIDActionArity2V149 : TrampolineBlockBase {
- DActionArity2V149 invoker;
+ } /* class SDActionArity2V152 */
+ internal sealed class NIDActionArity2V152 : TrampolineBlockBase {
+ DActionArity2V152 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V149 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V152 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V149> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V152> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -27718,7 +27718,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<NSString, bool>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V149 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V152 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSString arg1, bool arg2)
@@ -27726,7 +27726,7 @@ namespace ObjCRuntime {
var arg1__handle__ = arg1.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2);
}
- } /* class NIDActionArity2V149 */
+ } /* class NIDActionArity2V152 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSUrl, NSError>))]
internal delegate void DActionArity2V27 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
@@ -27771,28 +27771,28 @@ namespace ObjCRuntime {
} /* class NIDActionArity2V27 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSUrl, global::UIKit.UIDocumentBrowserImportMode>))]
- internal delegate void DActionArity2V150 (IntPtr block, NativeHandle arg1, UIntPtr arg2);
+ internal delegate void DActionArity2V153 (IntPtr block, NativeHandle arg1, UIntPtr arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V150 {
- static internal readonly DActionArity2V150 Handler = Invoke;
+ static internal class SDActionArity2V153 {
+ static internal readonly DActionArity2V153 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V150))]
+ [MonoPInvokeCallback (typeof (DActionArity2V153))]
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 SDActionArity2V150 */
- internal sealed class NIDActionArity2V150 : TrampolineBlockBase {
- DActionArity2V150 invoker;
+ } /* class SDActionArity2V153 */
+ internal sealed class NIDActionArity2V153 : TrampolineBlockBase {
+ DActionArity2V153 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V150 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V153 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V150> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V153> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -27801,7 +27801,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<NSUrl, global::UIKit.UIDocumentBrowserImportMode>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V150 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V153 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSUrl arg1, global::UIKit.UIDocumentBrowserImportMode arg2)
@@ -27809,7 +27809,7 @@ namespace ObjCRuntime {
var arg1__handle__ = arg1.GetHandle ();
invoker (BlockPointer, arg1__handle__, (UIntPtr) (ulong) arg2);
}
- } /* class NIDActionArity2V150 */
+ } /* class NIDActionArity2V153 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSUrlSessionAuthChallengeDisposition, NSUrlCredential>))]
internal delegate void DActionArity2V11 (IntPtr block, IntPtr arg1, NativeHandle arg2);
@@ -30191,7 +30191,7 @@ namespace ObjCRuntime {
}
} /* class NIDActionArity2V125 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
- [UserDelegateType (typeof (global::System.Action<global::ShazamKit.SHMediaItem, NSError>))]
+ [UserDelegateType (typeof (global::System.Action<global::SharedWithYou.SWCollaborationHighlight, NSError>))]
internal delegate void DActionArity2V139 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
@@ -30203,9 +30203,9 @@ namespace ObjCRuntime {
[MonoPInvokeCallback (typeof (DActionArity2V139))]
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);
+ var del = (global::System.Action<global::SharedWithYou.SWCollaborationHighlight, NSError>) (descriptor->Target);
if (del != null)
- del ( Runtime.GetNSObject<ShazamKit.SHMediaItem> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
+ del ( Runtime.GetNSObject<SharedWithYou.SWCollaborationHighlight> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
} /* class SDActionArity2V139 */
internal sealed class NIDActionArity2V139 : TrampolineBlockBase {
@@ -30217,15 +30217,15 @@ namespace ObjCRuntime {
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static global::System.Action<global::ShazamKit.SHMediaItem, NSError>? Create (IntPtr block)
+ public unsafe static global::System.Action<global::SharedWithYou.SWCollaborationHighlight, NSError>? Create (IntPtr block)
{
if (block == IntPtr.Zero)
return null;
- var del = (global::System.Action<global::ShazamKit.SHMediaItem, NSError>) GetExistingManagedDelegate (block);
+ var del = (global::System.Action<global::SharedWithYou.SWCollaborationHighlight, NSError>) GetExistingManagedDelegate (block);
return del ?? new NIDActionArity2V139 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- unsafe void Invoke (global::ShazamKit.SHMediaItem arg1, NSError arg2)
+ unsafe void Invoke (global::SharedWithYou.SWCollaborationHighlight arg1, NSError arg2)
{
var arg1__handle__ = arg1.GetHandle ();
var arg2__handle__ = arg2.GetHandle ();
@@ -30233,7 +30233,7 @@ namespace ObjCRuntime {
}
} /* class NIDActionArity2V139 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
- [UserDelegateType (typeof (global::System.Action<global::ShazamKit.SHSignature, NSError>))]
+ [UserDelegateType (typeof (global::System.Action<global::SharedWithYou.SWHighlight, NSError>))]
internal delegate void DActionArity2V140 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
@@ -30245,9 +30245,9 @@ namespace ObjCRuntime {
[MonoPInvokeCallback (typeof (DActionArity2V140))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
- var del = (global::System.Action<global::ShazamKit.SHSignature, NSError>) (descriptor->Target);
+ var del = (global::System.Action<global::SharedWithYou.SWHighlight, NSError>) (descriptor->Target);
if (del != null)
- del ( Runtime.GetNSObject<ShazamKit.SHSignature> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
+ del ( Runtime.GetNSObject<SharedWithYou.SWHighlight> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
} /* class SDActionArity2V140 */
internal sealed class NIDActionArity2V140 : TrampolineBlockBase {
@@ -30259,15 +30259,15 @@ namespace ObjCRuntime {
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static global::System.Action<global::ShazamKit.SHSignature, NSError>? Create (IntPtr block)
+ public unsafe static global::System.Action<global::SharedWithYou.SWHighlight, NSError>? Create (IntPtr block)
{
if (block == IntPtr.Zero)
return null;
- var del = (global::System.Action<global::ShazamKit.SHSignature, NSError>) GetExistingManagedDelegate (block);
+ var del = (global::System.Action<global::SharedWithYou.SWHighlight, NSError>) GetExistingManagedDelegate (block);
return del ?? new NIDActionArity2V140 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- unsafe void Invoke (global::ShazamKit.SHSignature arg1, NSError arg2)
+ unsafe void Invoke (global::SharedWithYou.SWHighlight arg1, NSError arg2)
{
var arg1__handle__ = arg1.GetHandle ();
var arg2__handle__ = arg2.GetHandle ();
@@ -30275,7 +30275,7 @@ namespace ObjCRuntime {
}
} /* class NIDActionArity2V140 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
- [UserDelegateType (typeof (global::System.Action<global::Speech.SFSpeechRecognitionResult, NSError>))]
+ [UserDelegateType (typeof (global::System.Action<global::SharedWithYouCore.SWSignedPersonIdentityProof, NSError>))]
internal delegate void DActionArity2V141 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
@@ -30287,9 +30287,9 @@ namespace ObjCRuntime {
[MonoPInvokeCallback (typeof (DActionArity2V141))]
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);
+ var del = (global::System.Action<global::SharedWithYouCore.SWSignedPersonIdentityProof, NSError>) (descriptor->Target);
if (del != null)
- del ( Runtime.GetNSObject<Speech.SFSpeechRecognitionResult> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
+ del ( Runtime.GetNSObject<SharedWithYouCore.SWSignedPersonIdentityProof> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
} /* class SDActionArity2V141 */
internal sealed class NIDActionArity2V141 : TrampolineBlockBase {
@@ -30301,15 +30301,15 @@ namespace ObjCRuntime {
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static global::System.Action<global::Speech.SFSpeechRecognitionResult, NSError>? Create (IntPtr block)
+ public unsafe static global::System.Action<global::SharedWithYouCore.SWSignedPersonIdentityProof, NSError>? Create (IntPtr block)
{
if (block == IntPtr.Zero)
return null;
- var del = (global::System.Action<global::Speech.SFSpeechRecognitionResult, NSError>) GetExistingManagedDelegate (block);
+ var del = (global::System.Action<global::SharedWithYouCore.SWSignedPersonIdentityProof, NSError>) GetExistingManagedDelegate (block);
return del ?? new NIDActionArity2V141 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- unsafe void Invoke (global::Speech.SFSpeechRecognitionResult arg1, NSError arg2)
+ unsafe void Invoke (global::SharedWithYouCore.SWSignedPersonIdentityProof arg1, NSError arg2)
{
var arg1__handle__ = arg1.GetHandle ();
var arg2__handle__ = arg2.GetHandle ();
@@ -30317,8 +30317,8 @@ namespace ObjCRuntime {
}
} /* class NIDActionArity2V141 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
- [UserDelegateType (typeof (global::System.Action<global::StoreKit.SKCloudServiceCapability, NSError>))]
- internal delegate void DActionArity2V142 (IntPtr block, UIntPtr arg1, NativeHandle arg2);
+ [UserDelegateType (typeof (global::System.Action<global::ShazamKit.SHMediaItem, NSError>))]
+ internal delegate void DActionArity2V142 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
@@ -30327,11 +30327,11 @@ namespace ObjCRuntime {
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
[MonoPInvokeCallback (typeof (DActionArity2V142))]
- static unsafe void Invoke (IntPtr block, UIntPtr arg1, NativeHandle arg2) {
+ static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
- var del = (global::System.Action<global::StoreKit.SKCloudServiceCapability, NSError>) (descriptor->Target);
+ var del = (global::System.Action<global::ShazamKit.SHMediaItem, NSError>) (descriptor->Target);
if (del != null)
- del ((StoreKit.SKCloudServiceCapability) (ulong) arg1, Runtime.GetNSObject<NSError> (arg2)!);
+ del ( Runtime.GetNSObject<ShazamKit.SHMediaItem> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
} /* class SDActionArity2V142 */
internal sealed class NIDActionArity2V142 : TrampolineBlockBase {
@@ -30343,63 +30343,65 @@ namespace ObjCRuntime {
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static global::System.Action<global::StoreKit.SKCloudServiceCapability, NSError>? Create (IntPtr block)
+ public unsafe static global::System.Action<global::ShazamKit.SHMediaItem, NSError>? Create (IntPtr block)
{
if (block == IntPtr.Zero)
return null;
- var del = (global::System.Action<global::StoreKit.SKCloudServiceCapability, NSError>) GetExistingManagedDelegate (block);
+ var del = (global::System.Action<global::ShazamKit.SHMediaItem, NSError>) GetExistingManagedDelegate (block);
return del ?? new NIDActionArity2V142 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- unsafe void Invoke (global::StoreKit.SKCloudServiceCapability arg1, NSError arg2)
+ unsafe void Invoke (global::ShazamKit.SHMediaItem arg1, NSError arg2)
{
+ var arg1__handle__ = arg1.GetHandle ();
var arg2__handle__ = arg2.GetHandle ();
- invoker (BlockPointer, (UIntPtr) (ulong) arg1, arg2__handle__);
+ invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
} /* class NIDActionArity2V142 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
- [UserDelegateType (typeof (global::System.Action<global::StoreKit.SKProductStorePromotionVisibility, NSError>))]
- internal delegate void DActionArity2V145 (IntPtr block, IntPtr arg1, NativeHandle arg2);
+ [UserDelegateType (typeof (global::System.Action<global::ShazamKit.SHSignature, NSError>))]
+ internal delegate void DActionArity2V143 (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 SDActionArity2V143 {
+ static internal readonly DActionArity2V143 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V145))]
- static unsafe void Invoke (IntPtr block, IntPtr arg1, NativeHandle arg2) {
+ [MonoPInvokeCallback (typeof (DActionArity2V143))]
+ static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
- var del = (global::System.Action<global::StoreKit.SKProductStorePromotionVisibility, NSError>) (descriptor->Target);
+ var del = (global::System.Action<global::ShazamKit.SHSignature, NSError>) (descriptor->Target);
if (del != null)
- del ((StoreKit.SKProductStorePromotionVisibility) (long) arg1, Runtime.GetNSObject<NSError> (arg2)!);
+ del ( Runtime.GetNSObject<ShazamKit.SHSignature> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V145 */
- internal sealed class NIDActionArity2V145 : TrampolineBlockBase {
- DActionArity2V145 invoker;
- [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V145 (BlockLiteral *block) : base (block)
+ } /* class SDActionArity2V143 */
+ internal sealed class NIDActionArity2V143 : TrampolineBlockBase {
+ DActionArity2V143 invoker;
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public unsafe NIDActionArity2V143 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V145> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V143> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static global::System.Action<global::StoreKit.SKProductStorePromotionVisibility, NSError>? Create (IntPtr block)
+ public unsafe static global::System.Action<global::ShazamKit.SHSignature, NSError>? Create (IntPtr block)
{
if (block == IntPtr.Zero)
return null;
- var del = (global::System.Action<global::StoreKit.SKProductStorePromotionVisibility, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V145 ((BlockLiteral *) block).Invoke;
+ var del = (global::System.Action<global::ShazamKit.SHSignature, NSError>) GetExistingManagedDelegate (block);
+ return del ?? new NIDActionArity2V143 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- unsafe void Invoke (global::StoreKit.SKProductStorePromotionVisibility arg1, NSError arg2)
+ unsafe void Invoke (global::ShazamKit.SHSignature arg1, NSError arg2)
{
+ var arg1__handle__ = arg1.GetHandle ();
var arg2__handle__ = arg2.GetHandle ();
- invoker (BlockPointer, (IntPtr) (long) arg1, arg2__handle__);
+ invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V145 */
+ } /* class NIDActionArity2V143 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
- [UserDelegateType (typeof (global::System.Action<global::StoreKit.SKProduct[], NSError>))]
+ [UserDelegateType (typeof (global::System.Action<global::Speech.SFSpeechRecognitionResult, NSError>))]
internal delegate void DActionArity2V144 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
@@ -30411,9 +30413,9 @@ namespace ObjCRuntime {
[MonoPInvokeCallback (typeof (DActionArity2V144))]
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);
+ var del = (global::System.Action<global::Speech.SFSpeechRecognitionResult, NSError>) (descriptor->Target);
if (del != null)
- del (CFArray.ArrayFromHandle<global::StoreKit.SKProduct> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
+ del ( Runtime.GetNSObject<Speech.SFSpeechRecognitionResult> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
} /* class SDActionArity2V144 */
internal sealed class NIDActionArity2V144 : TrampolineBlockBase {
@@ -30425,12 +30427,136 @@ namespace ObjCRuntime {
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public unsafe static global::System.Action<global::Speech.SFSpeechRecognitionResult, NSError>? Create (IntPtr block)
+ {
+ if (block == IntPtr.Zero)
+ return null;
+ var del = (global::System.Action<global::Speech.SFSpeechRecognitionResult, NSError>) GetExistingManagedDelegate (block);
+ return del ?? new NIDActionArity2V144 ((BlockLiteral *) block).Invoke;
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ unsafe void Invoke (global::Speech.SFSpeechRecognitionResult arg1, NSError arg2)
+ {
+ var arg1__handle__ = arg1.GetHandle ();
+ var arg2__handle__ = arg2.GetHandle ();
+ invoker (BlockPointer, arg1__handle__, arg2__handle__);
+ }
+ } /* class NIDActionArity2V144 */
+ [UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
+ [UserDelegateType (typeof (global::System.Action<global::StoreKit.SKCloudServiceCapability, NSError>))]
+ internal delegate void DActionArity2V145 (IntPtr block, UIntPtr arg1, NativeHandle arg2);
+ //
+ // This class bridges native block invocations that call into C#
+ //
+ static internal class SDActionArity2V145 {
+ static internal readonly DActionArity2V145 Handler = Invoke;
+ [Preserve (Conditional = true)]
+ [global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
+ [MonoPInvokeCallback (typeof (DActionArity2V145))]
+ 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 SDActionArity2V145 */
+ internal sealed class NIDActionArity2V145 : TrampolineBlockBase {
+ DActionArity2V145 invoker;
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public unsafe NIDActionArity2V145 (BlockLiteral *block) : base (block)
+ {
+ invoker = block->GetDelegateForBlock<DActionArity2V145> ();
+ }
+ [Preserve (Conditional=true)]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public unsafe static global::System.Action<global::StoreKit.SKCloudServiceCapability, NSError>? Create (IntPtr block)
+ {
+ if (block == IntPtr.Zero)
+ return null;
+ var del = (global::System.Action<global::StoreKit.SKCloudServiceCapability, NSError>) GetExistingManagedDelegate (block);
+ return del ?? new NIDActionArity2V145 ((BlockLiteral *) block).Invoke;
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ unsafe void Invoke (global::StoreKit.SKCloudServiceCapability arg1, NSError arg2)
+ {
+ var arg2__handle__ = arg2.GetHandle ();
+ invoker (BlockPointer, (UIntPtr) (ulong) arg1, arg2__handle__);
+ }
+ } /* class NIDActionArity2V145 */
+ [UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
+ [UserDelegateType (typeof (global::System.Action<global::StoreKit.SKProductStorePromotionVisibility, NSError>))]
+ internal delegate void DActionArity2V148 (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;
+ [Preserve (Conditional = true)]
+ [global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
+ [MonoPInvokeCallback (typeof (DActionArity2V148))]
+ 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 SDActionArity2V148 */
+ internal sealed class NIDActionArity2V148 : TrampolineBlockBase {
+ DActionArity2V148 invoker;
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public unsafe NIDActionArity2V148 (BlockLiteral *block) : base (block)
+ {
+ invoker = block->GetDelegateForBlock<DActionArity2V148> ();
+ }
+ [Preserve (Conditional=true)]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public unsafe static global::System.Action<global::StoreKit.SKProductStorePromotionVisibility, NSError>? Create (IntPtr block)
+ {
+ if (block == IntPtr.Zero)
+ return null;
+ var del = (global::System.Action<global::StoreKit.SKProductStorePromotionVisibility, NSError>) GetExistingManagedDelegate (block);
+ return del ?? new NIDActionArity2V148 ((BlockLiteral *) block).Invoke;
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ unsafe void Invoke (global::StoreKit.SKProductStorePromotionVisibility arg1, NSError arg2)
+ {
+ var arg2__handle__ = arg2.GetHandle ();
+ invoker (BlockPointer, (IntPtr) (long) arg1, arg2__handle__);
+ }
+ } /* class NIDActionArity2V148 */
+ [UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
+ [UserDelegateType (typeof (global::System.Action<global::StoreKit.SKProduct[], NSError>))]
+ internal delegate void DActionArity2V147 (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;
+ [Preserve (Conditional = true)]
+ [global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
+ [MonoPInvokeCallback (typeof (DActionArity2V147))]
+ 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 SDActionArity2V147 */
+ internal sealed class NIDActionArity2V147 : TrampolineBlockBase {
+ DActionArity2V147 invoker;
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public unsafe NIDActionArity2V147 (BlockLiteral *block) : base (block)
+ {
+ invoker = block->GetDelegateForBlock<DActionArity2V147> ();
+ }
+ [Preserve (Conditional=true)]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
public unsafe static global::System.Action<global::StoreKit.SKProduct[], NSError>? Create (IntPtr block)
{
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::StoreKit.SKProduct[], NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V144 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V147 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::StoreKit.SKProduct[] arg1, NSError arg2)
@@ -30443,7 +30569,7 @@ namespace ObjCRuntime {
if (nsa_arg1 != null)
nsa_arg1.Dispose ();
}
- } /* class NIDActionArity2V144 */
+ } /* class NIDActionArity2V147 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<bool, global::AVKit.AVAudioSessionRouteSelection>))]
internal delegate void DActionArity2V25 (IntPtr block, bool arg1, IntPtr arg2);
@@ -30909,28 +31035,28 @@ namespace ObjCRuntime {
} /* class NIDActionArity2V79 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::ThreadNetwork.THCredentials, NSError>))]
- internal delegate void DActionArity2V147 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V150 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V147 {
- static internal readonly DActionArity2V147 Handler = Invoke;
+ static internal class SDActionArity2V150 {
+ static internal readonly DActionArity2V150 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V147))]
+ [MonoPInvokeCallback (typeof (DActionArity2V150))]
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 SDActionArity2V147 */
- internal sealed class NIDActionArity2V147 : TrampolineBlockBase {
- DActionArity2V147 invoker;
+ } /* class SDActionArity2V150 */
+ internal sealed class NIDActionArity2V150 : TrampolineBlockBase {
+ DActionArity2V150 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V147 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V150 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V147> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V150> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -30939,7 +31065,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::ThreadNetwork.THCredentials, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V147 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V150 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::ThreadNetwork.THCredentials arg1, NSError arg2)
@@ -30948,31 +31074,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V147 */
+ } /* class NIDActionArity2V150 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::UIKit.NSTextLayoutManager, global::UIKit.NSTextLayoutFragment>))]
- internal delegate void DActionArity2V148 (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 SDActionArity2V148 {
- static internal readonly DActionArity2V148 Handler = Invoke;
+ static internal class SDActionArity2V151 {
+ static internal readonly DActionArity2V151 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V148))]
+ [MonoPInvokeCallback (typeof (DActionArity2V151))]
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 SDActionArity2V148 */
- internal sealed class NIDActionArity2V148 : TrampolineBlockBase {
- DActionArity2V148 invoker;
+ } /* class SDActionArity2V151 */
+ internal sealed class NIDActionArity2V151 : TrampolineBlockBase {
+ DActionArity2V151 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V148 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V151 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V148> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V151> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -30981,7 +31107,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 NIDActionArity2V148 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V151 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::UIKit.NSTextLayoutManager arg1, global::UIKit.NSTextLayoutFragment arg2)
@@ -30990,31 +31116,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V148 */
+ } /* class NIDActionArity2V151 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::UIKit.UIImage, NSError>))]
- internal delegate void DActionArity2V163 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V166 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V163 {
- static internal readonly DActionArity2V163 Handler = Invoke;
+ static internal class SDActionArity2V166 {
+ static internal readonly DActionArity2V166 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V163))]
+ [MonoPInvokeCallback (typeof (DActionArity2V166))]
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 SDActionArity2V163 */
- internal sealed class NIDActionArity2V163 : TrampolineBlockBase {
- DActionArity2V163 invoker;
+ } /* class SDActionArity2V166 */
+ internal sealed class NIDActionArity2V166 : TrampolineBlockBase {
+ DActionArity2V166 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V163 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V166 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V163> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V166> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -31023,7 +31149,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::UIKit.UIImage, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V163 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V166 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::UIKit.UIImage arg1, NSError arg2)
@@ -31032,31 +31158,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V163 */
+ } /* class NIDActionArity2V166 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::UIKit.UISpringLoadedInteraction, global::UIKit.IUISpringLoadedInteractionContext>))]
- internal delegate void DActionArity2V155 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V158 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V155 {
- static internal readonly DActionArity2V155 Handler = Invoke;
+ static internal class SDActionArity2V158 {
+ static internal readonly DActionArity2V158 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V155))]
+ [MonoPInvokeCallback (typeof (DActionArity2V158))]
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 SDActionArity2V155 */
- internal sealed class NIDActionArity2V155 : TrampolineBlockBase {
- DActionArity2V155 invoker;
+ } /* class SDActionArity2V158 */
+ internal sealed class NIDActionArity2V158 : TrampolineBlockBase {
+ DActionArity2V158 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V155 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V158 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V155> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V158> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -31065,7 +31191,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 NIDActionArity2V155 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V158 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::UIKit.UISpringLoadedInteraction arg1, global::UIKit.IUISpringLoadedInteractionContext arg2)
@@ -31074,31 +31200,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V155 */
+ } /* class NIDActionArity2V158 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::UIKit.UITableViewRowAction, NSIndexPath>))]
- internal delegate void DActionArity2V156 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V159 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V156 {
- static internal readonly DActionArity2V156 Handler = Invoke;
+ static internal class SDActionArity2V159 {
+ static internal readonly DActionArity2V159 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V156))]
+ [MonoPInvokeCallback (typeof (DActionArity2V159))]
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 SDActionArity2V156 */
- internal sealed class NIDActionArity2V156 : TrampolineBlockBase {
- DActionArity2V156 invoker;
+ } /* class SDActionArity2V159 */
+ internal sealed class NIDActionArity2V159 : TrampolineBlockBase {
+ DActionArity2V159 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V156 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V159 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V156> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V159> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -31107,7 +31233,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::UIKit.UITableViewRowAction, NSIndexPath>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V156 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V159 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::UIKit.UITableViewRowAction arg1, NSIndexPath arg2)
@@ -31116,7 +31242,7 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V156 */
+ } /* class NIDActionArity2V159 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::UIKit.UIViewController, NSError>))]
internal delegate void DActionArity2V89 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
@@ -31161,28 +31287,28 @@ namespace ObjCRuntime {
} /* class NIDActionArity2V89 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::VideoSubscriberAccount.VSAccountAccessStatus, NSError>))]
- internal delegate void DActionArity2V157 (IntPtr block, IntPtr arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V160 (IntPtr block, IntPtr arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V157 {
- static internal readonly DActionArity2V157 Handler = Invoke;
+ static internal class SDActionArity2V160 {
+ static internal readonly DActionArity2V160 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V157))]
+ [MonoPInvokeCallback (typeof (DActionArity2V160))]
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 SDActionArity2V157 */
- internal sealed class NIDActionArity2V157 : TrampolineBlockBase {
- DActionArity2V157 invoker;
+ } /* class SDActionArity2V160 */
+ internal sealed class NIDActionArity2V160 : TrampolineBlockBase {
+ DActionArity2V160 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V157 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V160 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V157> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V160> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -31191,7 +31317,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::VideoSubscriberAccount.VSAccountAccessStatus, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V157 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V160 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::VideoSubscriberAccount.VSAccountAccessStatus arg1, NSError arg2)
@@ -31199,31 +31325,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, (IntPtr) (long) arg1, arg2__handle__);
}
- } /* class NIDActionArity2V157 */
+ } /* class NIDActionArity2V160 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::VideoSubscriberAccount.VSAccountMetadata, NSError>))]
- internal delegate void DActionArity2V158 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V161 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V158 {
- static internal readonly DActionArity2V158 Handler = Invoke;
+ static internal class SDActionArity2V161 {
+ static internal readonly DActionArity2V161 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V158))]
+ [MonoPInvokeCallback (typeof (DActionArity2V161))]
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 SDActionArity2V158 */
- internal sealed class NIDActionArity2V158 : TrampolineBlockBase {
- DActionArity2V158 invoker;
+ } /* class SDActionArity2V161 */
+ internal sealed class NIDActionArity2V161 : TrampolineBlockBase {
+ DActionArity2V161 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V158 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V161 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V158> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V161> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -31232,7 +31358,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::VideoSubscriberAccount.VSAccountMetadata, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V158 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V161 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::VideoSubscriberAccount.VSAccountMetadata arg1, NSError arg2)
@@ -31241,31 +31367,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V158 */
+ } /* class NIDActionArity2V161 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::WebKit.WKContentRuleList, NSError>))]
- internal delegate void DActionArity2V160 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V163 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V160 {
- static internal readonly DActionArity2V160 Handler = Invoke;
+ static internal class SDActionArity2V163 {
+ static internal readonly DActionArity2V163 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V160))]
+ [MonoPInvokeCallback (typeof (DActionArity2V163))]
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 SDActionArity2V160 */
- internal sealed class NIDActionArity2V160 : TrampolineBlockBase {
- DActionArity2V160 invoker;
+ } /* class SDActionArity2V163 */
+ internal sealed class NIDActionArity2V163 : TrampolineBlockBase {
+ DActionArity2V163 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V160 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V163 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V160> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V163> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -31274,7 +31400,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::WebKit.WKContentRuleList, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V160 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V163 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::WebKit.WKContentRuleList arg1, NSError arg2)
@@ -31283,31 +31409,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V160 */
+ } /* class NIDActionArity2V163 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::WebKit.WKNavigationActionPolicy, global::WebKit.WKWebpagePreferences>))]
- internal delegate void DActionArity2V161 (IntPtr block, IntPtr arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V164 (IntPtr block, IntPtr arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V161 {
- static internal readonly DActionArity2V161 Handler = Invoke;
+ static internal class SDActionArity2V164 {
+ static internal readonly DActionArity2V164 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V161))]
+ [MonoPInvokeCallback (typeof (DActionArity2V164))]
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 SDActionArity2V161 */
- internal sealed class NIDActionArity2V161 : TrampolineBlockBase {
- DActionArity2V161 invoker;
+ } /* class SDActionArity2V164 */
+ internal sealed class NIDActionArity2V164 : TrampolineBlockBase {
+ DActionArity2V164 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V161 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V164 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V161> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V164> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -31316,7 +31442,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 NIDActionArity2V161 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V164 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::WebKit.WKNavigationActionPolicy arg1, global::WebKit.WKWebpagePreferences arg2)
@@ -31324,7 +31450,7 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, (IntPtr) (long) arg1, arg2__handle__);
}
- } /* class NIDActionArity2V161 */
+ } /* class NIDActionArity2V164 */
[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/new/dotnet/ios/generated-sources/SharedWithYou/SWAttributionView.g.cs b/new/dotnet/ios/generated-sources/SharedWithYou/SWAttributionView.g.cs
new file mode 100644
index 0000000..48327c6
--- /dev/null
+++ b/new/dotnet/ios/generated-sources/SharedWithYou/SWAttributionView.g.cs
@@ -0,0 +1,470 @@
+//
+// 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 SharedWithYou {
+ [Register("SWAttributionView", true)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ public unsafe partial class SWAttributionView : global::UIKit.UIView {
+ [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 ("SWAttributionView");
+ #endif
+ public override NativeHandle ClassHandle { get { return class_ptr; } }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ [Export ("init")]
+ public SWAttributionView () : base (NSObjectFlag.Empty)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ if (IsDirectBinding) {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend (this.Handle, global::ObjCRuntime.Selector.GetHandle ("init")), "init");
+ } else {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper (this.SuperHandle, global::ObjCRuntime.Selector.GetHandle ("init")), "init");
+ }
+ #endif
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [DesignatedInitializer]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ [Export ("initWithCoder:")]
+ public SWAttributionView (NSCoder coder) : base (NSObjectFlag.Empty)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ if (IsDirectBinding) {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("initWithCoder:"), coder.Handle), "initWithCoder:");
+ } else {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("initWithCoder:"), coder.Handle), "initWithCoder:");
+ }
+ #endif
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ protected SWAttributionView (NSObjectFlag t) : base (t)
+ {
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ protected internal SWAttributionView (NativeHandle handle) : base (handle)
+ {
+ }
+
+ [Export ("initWithFrame:")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ [DesignatedInitializer]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public SWAttributionView (CGRect frame)
+ : 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.NativeHandle_objc_msgSend_CGRect (this.Handle, Selector.GetHandle ("initWithFrame:"), frame), "initWithFrame:");
+ } else {
+ InitializeHandle (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper_CGRect (this.SuperHandle, Selector.GetHandle ("initWithFrame:"), frame), "initWithFrame:");
+ }
+ #endif
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ public virtual SWAttributionViewBackgroundStyle BackgroundStyle {
+ [Export ("backgroundStyle", ArgumentSemantic.UnsafeUnretained)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ SWAttributionViewBackgroundStyle ret;
+ if (IsDirectBinding) {
+ ret = (SharedWithYou.SWAttributionViewBackgroundStyle) (long) global::ObjCRuntime.Messaging.IntPtr_objc_msgSend (this.Handle, Selector.GetHandle ("backgroundStyle"));
+ } else {
+ ret = (SharedWithYou.SWAttributionViewBackgroundStyle) (long) global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("backgroundStyle"));
+ }
+ return ret!;
+ #endif
+ }
+ [Export ("setBackgroundStyle:", ArgumentSemantic.UnsafeUnretained)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ set {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("setBackgroundStyle:"), (IntPtr) (long) value);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("setBackgroundStyle:"), (IntPtr) (long) value);
+ }
+ #endif
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ public virtual SWAttributionViewDisplayContext DisplayContext {
+ [Export ("displayContext", ArgumentSemantic.UnsafeUnretained)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ SWAttributionViewDisplayContext ret;
+ if (IsDirectBinding) {
+ ret = (SharedWithYou.SWAttributionViewDisplayContext) (long) global::ObjCRuntime.Messaging.IntPtr_objc_msgSend (this.Handle, Selector.GetHandle ("displayContext"));
+ } else {
+ ret = (SharedWithYou.SWAttributionViewDisplayContext) (long) global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("displayContext"));
+ }
+ return ret!;
+ #endif
+ }
+ [Export ("setDisplayContext:", ArgumentSemantic.UnsafeUnretained)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ set {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("setDisplayContext:"), (IntPtr) (long) value);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("setDisplayContext:"), (IntPtr) (long) value);
+ }
+ #endif
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ public virtual SWHighlight? Highlight {
+ [Export ("highlight", ArgumentSemantic.Retain)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ SWHighlight? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject<SWHighlight> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend (this.Handle, Selector.GetHandle ("highlight")))!;
+ } else {
+ ret = Runtime.GetNSObject<SWHighlight> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("highlight")))!;
+ }
+ return ret!;
+ #endif
+ }
+ [Export ("setHighlight:", ArgumentSemantic.Retain)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ set {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ var value__handle__ = value.GetHandle ();
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("setHighlight:"), value__handle__);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_NativeHandle (this.SuperHandle, Selector.GetHandle ("setHighlight:"), value__handle__);
+ }
+ #endif
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ public virtual global::UIKit.UIMenu HighlightMenu {
+ [Export ("highlightMenu", ArgumentSemantic.Retain)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ global::UIKit.UIMenu? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject<global::UIKit.UIMenu> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend (this.Handle, Selector.GetHandle ("highlightMenu")))!;
+ } else {
+ ret = Runtime.GetNSObject<global::UIKit.UIMenu> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("highlightMenu")))!;
+ }
+ return ret!;
+ #endif
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ public virtual SWAttributionViewHorizontalAlignment HorizontalAlignment {
+ [Export ("horizontalAlignment", ArgumentSemantic.UnsafeUnretained)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ SWAttributionViewHorizontalAlignment ret;
+ if (IsDirectBinding) {
+ ret = (SharedWithYou.SWAttributionViewHorizontalAlignment) (long) global::ObjCRuntime.Messaging.IntPtr_objc_msgSend (this.Handle, Selector.GetHandle ("horizontalAlignment"));
+ } else {
+ ret = (SharedWithYou.SWAttributionViewHorizontalAlignment) (long) global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("horizontalAlignment"));
+ }
+ return ret!;
+ #endif
+ }
+ [Export ("setHorizontalAlignment:", ArgumentSemantic.UnsafeUnretained)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ set {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("setHorizontalAlignment:"), (IntPtr) (long) value);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("setHorizontalAlignment:"), (IntPtr) (long) value);
+ }
+ #endif
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ public virtual string? MenuTitleForHideAction {
+ [Export ("menuTitleForHideAction", ArgumentSemantic.Retain)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ if (IsDirectBinding) {
+ return CFString.FromHandle (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend (this.Handle, Selector.GetHandle ("menuTitleForHideAction")))!;
+ } else {
+ return CFString.FromHandle (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("menuTitleForHideAction")))!;
+ }
+ #endif
+ }
+ [Export ("setMenuTitleForHideAction:", ArgumentSemantic.Retain)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ set {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ var nsvalue = CFString.CreateNative (value);
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("setMenuTitleForHideAction:"), nsvalue);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_NativeHandle (this.SuperHandle, Selector.GetHandle ("setMenuTitleForHideAction:"), nsvalue);
+ }
+ CFString.ReleaseNative (nsvalue);
+ #endif
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ public virtual nfloat PreferredMaxLayoutWidth {
+ [Export ("preferredMaxLayoutWidth")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ if (IsDirectBinding) {
+ return global::ObjCRuntime.Messaging.nfloat_objc_msgSend (this.Handle, Selector.GetHandle ("preferredMaxLayoutWidth"));
+ } else {
+ return global::ObjCRuntime.Messaging.nfloat_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("preferredMaxLayoutWidth"));
+ }
+ #endif
+ }
+ [Export ("setPreferredMaxLayoutWidth:")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ set {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_nfloat (this.Handle, Selector.GetHandle ("setPreferredMaxLayoutWidth:"), value);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_nfloat (this.SuperHandle, Selector.GetHandle ("setPreferredMaxLayoutWidth:"), value);
+ }
+ #endif
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ public virtual global::UIKit.UIMenu? SupplementalMenu {
+ [Export ("supplementalMenu", ArgumentSemantic.Retain)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ global::UIKit.UIMenu? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject<global::UIKit.UIMenu> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend (this.Handle, Selector.GetHandle ("supplementalMenu")))!;
+ } else {
+ ret = Runtime.GetNSObject<global::UIKit.UIMenu> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("supplementalMenu")))!;
+ }
+ return ret!;
+ #endif
+ }
+ [Export ("setSupplementalMenu:", ArgumentSemantic.Retain)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ set {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ var value__handle__ = value.GetHandle ();
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("setSupplementalMenu:"), value__handle__);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_NativeHandle (this.SuperHandle, Selector.GetHandle ("setSupplementalMenu:"), value__handle__);
+ }
+ #endif
+ }
+ }
+ public partial class SWAttributionViewAppearance : global::UIKit.UIView.UIViewAppearance {
+ protected internal SWAttributionViewAppearance (IntPtr handle) : base (handle) {}
+ }
+ public static new SWAttributionViewAppearance Appearance {
+ get { return new SWAttributionViewAppearance (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend (class_ptr, ObjCRuntime.Selector.GetHandle ("appearance"))); }
+ }
+ public static new SWAttributionViewAppearance GetAppearance<T> () where T: SWAttributionView {
+ return new SWAttributionViewAppearance (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend (Class.GetHandle (typeof (T)), ObjCRuntime.Selector.GetHandle ("appearance")));
+ }
+ public static new SWAttributionViewAppearance AppearanceWhenContainedIn (params Type [] containers)
+ {
+ return new SWAttributionViewAppearance (UIAppearance.GetAppearance (class_ptr, containers));
+ }
+ public static new SWAttributionViewAppearance GetAppearance (UITraitCollection traits) {
+ return new SWAttributionViewAppearance (UIAppearance.GetAppearance (class_ptr, traits));
+ }
+ public static new SWAttributionViewAppearance GetAppearance (UITraitCollection traits, params Type [] containers) {
+ return new SWAttributionViewAppearance (UIAppearance.GetAppearance (class_ptr, traits, containers));
+ }
+ public static new SWAttributionViewAppearance GetAppearance<T> (UITraitCollection traits) where T: SWAttributionView {
+ return new SWAttributionViewAppearance (UIAppearance.GetAppearance (Class.GetHandle (typeof (T)), traits));
+ }
+ public static new SWAttributionViewAppearance GetAppearance<T> (UITraitCollection traits, params Type [] containers) where T: SWAttributionView{
+ return new SWAttributionViewAppearance (UIAppearance.GetAppearance (Class.GetHandle (typeof (T)), containers));
+ }
+ } /* class SWAttributionView */
+}
diff --git a/new/dotnet/ios/generated-sources/SharedWithYou/SWAttributionViewBackgroundStyle.g.cs b/new/dotnet/ios/generated-sources/SharedWithYou/SWAttributionViewBackgroundStyle.g.cs
new file mode 100644
index 0000000..57f87b1
--- /dev/null
+++ b/new/dotnet/ios/generated-sources/SharedWithYou/SWAttributionViewBackgroundStyle.g.cs
@@ -0,0 +1,62 @@
+//
+// 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 SharedWithYou {
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ [Native]
+ public enum SWAttributionViewBackgroundStyle : long {
+ Default = 0,
+ Color = 1,
+ Material = 2,
+ }
+}
diff --git a/new/dotnet/ios/generated-sources/SharedWithYou/SWAttributionViewDisplayContext.g.cs b/new/dotnet/ios/generated-sources/SharedWithYou/SWAttributionViewDisplayContext.g.cs
new file mode 100644
index 0000000..a5a7961
--- /dev/null
+++ b/new/dotnet/ios/generated-sources/SharedWithYou/SWAttributionViewDisplayContext.g.cs
@@ -0,0 +1,61 @@
+//
+// 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 SharedWithYou {
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ [Native]
+ public enum SWAttributionViewDisplayContext : long {
+ Summary = 0,
+ Detail = 1,
+ }
+}
diff --git a/new/dotnet/ios/generated-sources/SharedWithYou/SWAttributionViewHorizontalAlignment.g.cs b/new/dotnet/ios/generated-sources/SharedWithYou/SWAttributionViewHorizontalAlignment.g.cs
new file mode 100644
index 0000000..4444ac6
--- /dev/null
+++ b/new/dotnet/ios/generated-sources/SharedWithYou/SWAttributionViewHorizontalAlignment.g.cs
@@ -0,0 +1,63 @@
+//
+// 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 SharedWithYou {
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ [Native]
+ public enum SWAttributionViewHorizontalAlignment : long {
+ Default = 0,
+ Leading = 1,
+ Center = 2,
+ Trailing = 3,
+ }
+}
diff --git a/new/dotnet/ios/generated-sources/SharedWithYou/SWCollaborationHighlight.g.cs b/new/dotnet/ios/generated-sources/SharedWithYou/SWCollaborationHighlight.g.cs
new file mode 100644
index 0000000..9ef3817
--- /dev/null
+++ b/new/dotnet/ios/generated-sources/SharedWithYou/SWCollaborationHighlight.g.cs
@@ -0,0 +1,244 @@
+//
+// 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 SharedWithYou {
+ [Register("SWCollaborationHighlight", true)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ public unsafe partial class SWCollaborationHighlight : SWHighlight, INSCoding, INSCopying, INSSecureCoding {
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ #if ARCH_32
+ #pragma warning disable 649
+ static readonly NativeHandle class_ptr;
+ #pragma warning restore 649
+ #else
+ static readonly NativeHandle class_ptr = Class.GetHandle ("SWCollaborationHighlight");
+ #endif
+ public override NativeHandle ClassHandle { get { return class_ptr; } }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ [Export ("init")]
+ public SWCollaborationHighlight () : base (NSObjectFlag.Empty)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ if (IsDirectBinding) {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend (this.Handle, global::ObjCRuntime.Selector.GetHandle ("init")), "init");
+ } else {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper (this.SuperHandle, global::ObjCRuntime.Selector.GetHandle ("init")), "init");
+ }
+ #endif
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [DesignatedInitializer]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ [Export ("initWithCoder:")]
+ public SWCollaborationHighlight (NSCoder coder) : base (NSObjectFlag.Empty)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ if (IsDirectBinding) {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("initWithCoder:"), coder.Handle), "initWithCoder:");
+ } else {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("initWithCoder:"), coder.Handle), "initWithCoder:");
+ }
+ #endif
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ protected SWCollaborationHighlight (NSObjectFlag t) : base (t)
+ {
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ protected internal SWCollaborationHighlight (NativeHandle handle) : base (handle)
+ {
+ }
+
+ [Export ("copyWithZone:")]
+ [return: ReleaseAttribute ()]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public new virtual NSObject Copy (NSZone? zone)
+ {
+ var zone__handle__ = zone.GetHandle ();
+ NSObject? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("copyWithZone:"), zone__handle__))!;
+ } else {
+ ret = Runtime.GetNSObject (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper_NativeHandle (this.SuperHandle, Selector.GetHandle ("copyWithZone:"), zone__handle__))!;
+ }
+ if (ret != null)
+ global::ObjCRuntime.Messaging.void_objc_msgSend (ret.Handle, Selector.GetHandle ("release"));
+ return ret!;
+ }
+ [Export ("encodeWithCoder:")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public new virtual void EncodeTo (NSCoder encoder)
+ {
+ var encoder__handle__ = encoder!.GetNonNullHandle (nameof (encoder));
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("encodeWithCoder:"), encoder__handle__);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_NativeHandle (this.SuperHandle, Selector.GetHandle ("encodeWithCoder:"), encoder__handle__);
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ public virtual string CollaborationIdentifier {
+ [Export ("collaborationIdentifier")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ if (IsDirectBinding) {
+ return CFString.FromHandle (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend (this.Handle, Selector.GetHandle ("collaborationIdentifier")))!;
+ } else {
+ return CFString.FromHandle (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("collaborationIdentifier")))!;
+ }
+ #endif
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ public virtual global::UniformTypeIdentifiers.UTType ContentType {
+ [Export ("contentType", ArgumentSemantic.Copy)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ global::UniformTypeIdentifiers.UTType? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject<global::UniformTypeIdentifiers.UTType> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend (this.Handle, Selector.GetHandle ("contentType")))!;
+ } else {
+ ret = Runtime.GetNSObject<global::UniformTypeIdentifiers.UTType> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("contentType")))!;
+ }
+ return ret!;
+ #endif
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ public virtual NSDate CreationDate {
+ [Export ("creationDate", ArgumentSemantic.Copy)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ NSDate? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject<NSDate> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend (this.Handle, Selector.GetHandle ("creationDate")))!;
+ } else {
+ ret = Runtime.GetNSObject<NSDate> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("creationDate")))!;
+ }
+ return ret!;
+ #endif
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ public virtual string? Title {
+ [Export ("title")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ if (IsDirectBinding) {
+ return CFString.FromHandle (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend (this.Handle, Selector.GetHandle ("title")))!;
+ } else {
+ return CFString.FromHandle (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("title")))!;
+ }
+ #endif
+ }
+ }
+ } /* class SWCollaborationHighlight */
+}
diff --git a/new/dotnet/ios/generated-sources/SharedWithYou/SWCollaborationView.g.cs b/new/dotnet/ios/generated-sources/SharedWithYou/SWCollaborationView.g.cs
new file mode 100644
index 0000000..849747d
--- /dev/null
+++ b/new/dotnet/ios/generated-sources/SharedWithYou/SWCollaborationView.g.cs
@@ -0,0 +1,680 @@
+//
+// 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 SharedWithYou {
+ [Register("SWCollaborationView", true)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ public unsafe partial class SWCollaborationView : global::UIKit.UIView {
+ [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 ("SWCollaborationView");
+ #endif
+ public override NativeHandle ClassHandle { get { return class_ptr; } }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ [Export ("init")]
+ public SWCollaborationView () : base (NSObjectFlag.Empty)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ if (IsDirectBinding) {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend (this.Handle, global::ObjCRuntime.Selector.GetHandle ("init")), "init");
+ } else {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper (this.SuperHandle, global::ObjCRuntime.Selector.GetHandle ("init")), "init");
+ }
+ #endif
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [DesignatedInitializer]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ [Export ("initWithCoder:")]
+ public SWCollaborationView (NSCoder coder) : base (NSObjectFlag.Empty)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ if (IsDirectBinding) {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("initWithCoder:"), coder.Handle), "initWithCoder:");
+ } else {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("initWithCoder:"), coder.Handle), "initWithCoder:");
+ }
+ #endif
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ protected SWCollaborationView (NSObjectFlag t) : base (t)
+ {
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ protected internal SWCollaborationView (NativeHandle handle) : base (handle)
+ {
+ }
+
+ [Export ("initWithFrame:")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [DesignatedInitializer]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public SWCollaborationView (CGRect frame)
+ : 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.NativeHandle_objc_msgSend_CGRect (this.Handle, Selector.GetHandle ("initWithFrame:"), frame), "initWithFrame:");
+ } else {
+ InitializeHandle (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper_CGRect (this.SuperHandle, Selector.GetHandle ("initWithFrame:"), frame), "initWithFrame:");
+ }
+ #endif
+ }
+ [Export ("initWithItemProvider:")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public SWCollaborationView (NSItemProvider itemProvider)
+ : base (NSObjectFlag.Empty)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ var itemProvider__handle__ = itemProvider!.GetNonNullHandle (nameof (itemProvider));
+ if (IsDirectBinding) {
+ InitializeHandle (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("initWithItemProvider:"), itemProvider__handle__), "initWithItemProvider:");
+ } else {
+ InitializeHandle (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper_NativeHandle (this.SuperHandle, Selector.GetHandle ("initWithItemProvider:"), itemProvider__handle__), "initWithItemProvider:");
+ }
+ #endif
+ }
+ [Export ("dismissPopover:")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public unsafe virtual void DismissPopover ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDAction))]global::System.Action? callback)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ BlockLiteral *block_ptr_callback;
+ BlockLiteral block_callback;
+ if (callback is null){
+ block_ptr_callback = null;
+ } else {
+ block_callback = new BlockLiteral ();
+ block_ptr_callback = &block_callback;
+ block_callback.SetupBlockUnsafe (Trampolines.SDAction.Handler, callback);
+ }
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("dismissPopover:"), (IntPtr) block_ptr_callback);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_NativeHandle (this.SuperHandle, Selector.GetHandle ("dismissPopover:"), (IntPtr) block_ptr_callback);
+ }
+ if (block_ptr_callback != null)
+ block_ptr_callback->CleanupBlock ();
+ #endif
+ }
+ [Export ("setContentView:")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual void SetContentView (global::UIKit.UIView detailViewListContentView)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ var detailViewListContentView__handle__ = detailViewListContentView!.GetNonNullHandle (nameof (detailViewListContentView));
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("setContentView:"), detailViewListContentView__handle__);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_NativeHandle (this.SuperHandle, Selector.GetHandle ("setContentView:"), detailViewListContentView__handle__);
+ }
+ #endif
+ }
+ [Export ("setShowManageButton:")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual void SetShowManageButton (bool showManageButton)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_bool (this.Handle, Selector.GetHandle ("setShowManageButton:"), showManageButton);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_bool (this.SuperHandle, Selector.GetHandle ("setShowManageButton:"), showManageButton);
+ }
+ #endif
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ public virtual nuint ActiveParticipantCount {
+ [Export ("activeParticipantCount")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ if (IsDirectBinding) {
+ return global::ObjCRuntime.Messaging.UIntPtr_objc_msgSend (this.Handle, Selector.GetHandle ("activeParticipantCount"));
+ } else {
+ return global::ObjCRuntime.Messaging.UIntPtr_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("activeParticipantCount"));
+ }
+ #endif
+ }
+ [Export ("setActiveParticipantCount:")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ set {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_UIntPtr (this.Handle, Selector.GetHandle ("setActiveParticipantCount:"), value);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_UIntPtr (this.SuperHandle, Selector.GetHandle ("setActiveParticipantCount:"), value);
+ }
+ #endif
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("macos")]
+ [UnsupportedOSPlatform ("tvos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ public global::UIKit.IUICloudSharingControllerDelegate? CloudSharingControllerDelegate {
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ get {
+ return (WeakCloudSharingControllerDelegate as global::UIKit.IUICloudSharingControllerDelegate)!;
+ }
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ set {
+ var rvalue = value as NSObject;
+ if (!(value is null) && rvalue is null)
+ throw new ArgumentException ("The object passed of type " + value.GetType () + " does not derive from NSObject");
+ WeakCloudSharingControllerDelegate = rvalue;
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ public global::UIKit.IUICloudSharingControllerDelegate? CloudSharingDelegate {
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ get {
+ return (WeakCloudSharingDelegate as global::UIKit.IUICloudSharingControllerDelegate)!;
+ }
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ set {
+ var rvalue = value as NSObject;
+ if (!(value is null) && rvalue is null)
+ throw new ArgumentException ("The object passed of type " + value.GetType () + " does not derive from NSObject");
+ WeakCloudSharingDelegate = rvalue;
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ public ISWCollaborationViewDelegate? Delegate {
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ get {
+ return (WeakDelegate as ISWCollaborationViewDelegate)!;
+ }
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ set {
+ var rvalue = value as NSObject;
+ if (!(value is null) && rvalue is null)
+ throw new ArgumentException ("The object passed of type " + value.GetType () + " does not derive from NSObject");
+ WeakDelegate = rvalue;
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ public virtual global::UIKit.UIImage HeaderImage {
+ [Export ("headerImage", ArgumentSemantic.Retain)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ global::UIKit.UIImage? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject<global::UIKit.UIImage> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend (this.Handle, Selector.GetHandle ("headerImage")))!;
+ } else {
+ ret = Runtime.GetNSObject<global::UIKit.UIImage> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("headerImage")))!;
+ }
+ return ret!;
+ #endif
+ }
+ [Export ("setHeaderImage:", ArgumentSemantic.Retain)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ set {
+ #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 (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("setHeaderImage:"), value__handle__);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_NativeHandle (this.SuperHandle, Selector.GetHandle ("setHeaderImage:"), value__handle__);
+ }
+ #endif
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ public virtual string HeaderSubtitle {
+ [Export ("headerSubtitle")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ if (IsDirectBinding) {
+ return CFString.FromHandle (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend (this.Handle, Selector.GetHandle ("headerSubtitle")))!;
+ } else {
+ return CFString.FromHandle (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("headerSubtitle")))!;
+ }
+ #endif
+ }
+ [Export ("setHeaderSubtitle:")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ set {
+ #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));
+ var nsvalue = CFString.CreateNative (value);
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("setHeaderSubtitle:"), nsvalue);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_NativeHandle (this.SuperHandle, Selector.GetHandle ("setHeaderSubtitle:"), nsvalue);
+ }
+ CFString.ReleaseNative (nsvalue);
+ #endif
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ public virtual string HeaderTitle {
+ [Export ("headerTitle")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ if (IsDirectBinding) {
+ return CFString.FromHandle (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend (this.Handle, Selector.GetHandle ("headerTitle")))!;
+ } else {
+ return CFString.FromHandle (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("headerTitle")))!;
+ }
+ #endif
+ }
+ [Export ("setHeaderTitle:")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ set {
+ #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));
+ var nsvalue = CFString.CreateNative (value);
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("setHeaderTitle:"), nsvalue);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_NativeHandle (this.SuperHandle, Selector.GetHandle ("setHeaderTitle:"), nsvalue);
+ }
+ CFString.ReleaseNative (nsvalue);
+ #endif
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ public virtual string ManageButtonTitle {
+ [Export ("manageButtonTitle")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ if (IsDirectBinding) {
+ return CFString.FromHandle (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend (this.Handle, Selector.GetHandle ("manageButtonTitle")))!;
+ } else {
+ return CFString.FromHandle (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("manageButtonTitle")))!;
+ }
+ #endif
+ }
+ [Export ("setManageButtonTitle:")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ set {
+ #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));
+ var nsvalue = CFString.CreateNative (value);
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("setManageButtonTitle:"), nsvalue);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_NativeHandle (this.SuperHandle, Selector.GetHandle ("setManageButtonTitle:"), nsvalue);
+ }
+ CFString.ReleaseNative (nsvalue);
+ #endif
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ object? __mt_WeakCloudSharingControllerDelegate_var;
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("macos")]
+ [UnsupportedOSPlatform ("tvos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ public virtual NSObject? WeakCloudSharingControllerDelegate {
+ [Export ("cloudSharingControllerDelegate", ArgumentSemantic.Weak)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ NSObject? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend (this.Handle, Selector.GetHandle ("cloudSharingControllerDelegate")))!;
+ } else {
+ ret = Runtime.GetNSObject (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("cloudSharingControllerDelegate")))!;
+ }
+ MarkDirty ();
+ __mt_WeakCloudSharingControllerDelegate_var = ret;
+ return ret!;
+ #endif
+ }
+ [Export ("setCloudSharingControllerDelegate:", ArgumentSemantic.Weak)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ set {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ var value__handle__ = value.GetHandle ();
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("setCloudSharingControllerDelegate:"), value__handle__);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_NativeHandle (this.SuperHandle, Selector.GetHandle ("setCloudSharingControllerDelegate:"), value__handle__);
+ }
+ MarkDirty ();
+ __mt_WeakCloudSharingControllerDelegate_var = value;
+ #endif
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ object? __mt_WeakCloudSharingDelegate_var;
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ public virtual NSObject? WeakCloudSharingDelegate {
+ [Export ("cloudSharingDelegate", ArgumentSemantic.Weak)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ NSObject? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend (this.Handle, Selector.GetHandle ("cloudSharingDelegate")))!;
+ } else {
+ ret = Runtime.GetNSObject (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("cloudSharingDelegate")))!;
+ }
+ MarkDirty ();
+ __mt_WeakCloudSharingDelegate_var = ret;
+ return ret!;
+ #endif
+ }
+ [Export ("setCloudSharingDelegate:", ArgumentSemantic.Weak)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ set {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ var value__handle__ = value.GetHandle ();
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("setCloudSharingDelegate:"), value__handle__);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_NativeHandle (this.SuperHandle, Selector.GetHandle ("setCloudSharingDelegate:"), value__handle__);
+ }
+ MarkDirty ();
+ __mt_WeakCloudSharingDelegate_var = value;
+ #endif
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ object? __mt_WeakDelegate_var;
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ public virtual NSObject? WeakDelegate {
+ [Export ("delegate", ArgumentSemantic.Weak)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ NSObject? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend (this.Handle, Selector.GetHandle ("delegate")))!;
+ } else {
+ ret = Runtime.GetNSObject (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("delegate")))!;
+ }
+ MarkDirty ();
+ __mt_WeakDelegate_var = ret;
+ return ret!;
+ #endif
+ }
+ [Export ("setDelegate:", ArgumentSemantic.Weak)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ set {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ var value__handle__ = value.GetHandle ();
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("setDelegate:"), value__handle__);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_NativeHandle (this.SuperHandle, Selector.GetHandle ("setDelegate:"), value__handle__);
+ }
+ MarkDirty ();
+ __mt_WeakDelegate_var = value;
+ #endif
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ protected override void Dispose (bool disposing)
+ {
+ base.Dispose (disposing);
+ if (Handle == IntPtr.Zero) {
+ __mt_WeakCloudSharingControllerDelegate_var = null;
+ __mt_WeakCloudSharingDelegate_var = null;
+ __mt_WeakDelegate_var = null;
+ }
+ }
+ public partial class SWCollaborationViewAppearance : global::UIKit.UIView.UIViewAppearance {
+ protected internal SWCollaborationViewAppearance (IntPtr handle) : base (handle) {}
+ }
+ public static new SWCollaborationViewAppearance Appearance {
+ get { return new SWCollaborationViewAppearance (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend (class_ptr, ObjCRuntime.Selector.GetHandle ("appearance"))); }
+ }
+ public static new SWCollaborationViewAppearance GetAppearance<T> () where T: SWCollaborationView {
+ return new SWCollaborationViewAppearance (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend (Class.GetHandle (typeof (T)), ObjCRuntime.Selector.GetHandle ("appearance")));
+ }
+ public static new SWCollaborationViewAppearance AppearanceWhenContainedIn (params Type [] containers)
+ {
+ return new SWCollaborationViewAppearance (UIAppearance.GetAppearance (class_ptr, containers));
+ }
+ public static new SWCollaborationViewAppearance GetAppearance (UITraitCollection traits) {
+ return new SWCollaborationViewAppearance (UIAppearance.GetAppearance (class_ptr, traits));
+ }
+ public static new SWCollaborationViewAppearance GetAppearance (UITraitCollection traits, params Type [] containers) {
+ return new SWCollaborationViewAppearance (UIAppearance.GetAppearance (class_ptr, traits, containers));
+ }
+ public static new SWCollaborationViewAppearance GetAppearance<T> (UITraitCollection traits) where T: SWCollaborationView {
+ return new SWCollaborationViewAppearance (UIAppearance.GetAppearance (Class.GetHandle (typeof (T)), traits));
+ }
+ public static new SWCollaborationViewAppearance GetAppearance<T> (UITraitCollection traits, params Type [] containers) where T: SWCollaborationView{
+ return new SWCollaborationViewAppearance (UIAppearance.GetAppearance (Class.GetHandle (typeof (T)), containers));
+ }
+ } /* class SWCollaborationView */
+}
diff --git a/new/dotnet/ios/generated-sources/SharedWithYou/SWCollaborationViewDelegate.g.cs b/new/dotnet/ios/generated-sources/SharedWithYou/SWCollaborationViewDelegate.g.cs
new file mode 100644
index 0000000..eb6e90b
--- /dev/null
+++ b/new/dotnet/ios/generated-sources/SharedWithYou/SWCollaborationViewDelegate.g.cs
@@ -0,0 +1,194 @@
+//
+// 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 SharedWithYou {
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [Protocol (Name = "SWCollaborationViewDelegate", WrapperType = typeof (SWCollaborationViewDelegateWrapper))]
+ [ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "ShouldPresentPopover", Selector = "collaborationViewShouldPresentPopover:", ReturnType = typeof (bool), ParameterType = new Type [] { typeof (SharedWithYou.SWCollaborationView) }, ParameterByRef = new bool [] { false })]
+ [ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "WillPresentPopover", Selector = "collaborationViewWillPresentPopover:", ParameterType = new Type [] { typeof (SharedWithYou.SWCollaborationView) }, ParameterByRef = new bool [] { false })]
+ [ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "DidDismissPopover", Selector = "collaborationViewDidDismissPopover:", ParameterType = new Type [] { typeof (SharedWithYou.SWCollaborationView) }, ParameterByRef = new bool [] { false })]
+ public partial interface ISWCollaborationViewDelegate : INativeObject, IDisposable
+ {
+ }
+ public static partial class SWCollaborationViewDelegate_Extensions {
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public static bool ShouldPresentPopover (this ISWCollaborationViewDelegate This, SWCollaborationView collaborationView)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ var collaborationView__handle__ = collaborationView!.GetNonNullHandle (nameof (collaborationView));
+ return global::ObjCRuntime.Messaging.bool_objc_msgSend_NativeHandle (This.Handle, Selector.GetHandle ("collaborationViewShouldPresentPopover:"), collaborationView__handle__);
+ #endif
+ }
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public static void WillPresentPopover (this ISWCollaborationViewDelegate This, SWCollaborationView collaborationView)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ var collaborationView__handle__ = collaborationView!.GetNonNullHandle (nameof (collaborationView));
+ global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (This.Handle, Selector.GetHandle ("collaborationViewWillPresentPopover:"), collaborationView__handle__);
+ #endif
+ }
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public static void DidDismissPopover (this ISWCollaborationViewDelegate This, SWCollaborationView collaborationView)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ var collaborationView__handle__ = collaborationView!.GetNonNullHandle (nameof (collaborationView));
+ global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (This.Handle, Selector.GetHandle ("collaborationViewDidDismissPopover:"), collaborationView__handle__);
+ #endif
+ }
+ }
+ internal sealed class SWCollaborationViewDelegateWrapper : BaseWrapper, ISWCollaborationViewDelegate {
+ [Preserve (Conditional = true)]
+ public SWCollaborationViewDelegateWrapper (NativeHandle handle, bool owns)
+ : base (handle, owns)
+ {
+ }
+ }
+}
+namespace SharedWithYou {
+ [Protocol()]
+ [Register("Microsoft_iOS__SharedWithYou_SWCollaborationViewDelegate", false)]
+ [Model]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ public unsafe partial class SWCollaborationViewDelegate : NSObject, ISWCollaborationViewDelegate {
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ [Export ("init")]
+ public SWCollaborationViewDelegate () : base (NSObjectFlag.Empty)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ IsDirectBinding = false;
+ 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 SWCollaborationViewDelegate (NSObjectFlag t) : base (t)
+ {
+ IsDirectBinding = false;
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ protected internal SWCollaborationViewDelegate (NativeHandle handle) : base (handle)
+ {
+ IsDirectBinding = false;
+ }
+
+ [Export ("collaborationViewDidDismissPopover:")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual void DidDismissPopover (SWCollaborationView collaborationView)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ throw new You_Should_Not_Call_base_In_This_Method ();
+ #endif
+ }
+ [Export ("collaborationViewShouldPresentPopover:")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual bool ShouldPresentPopover (SWCollaborationView collaborationView)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ throw new You_Should_Not_Call_base_In_This_Method ();
+ #endif
+ }
+ [Export ("collaborationViewWillPresentPopover:")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual void WillPresentPopover (SWCollaborationView collaborationView)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ throw new You_Should_Not_Call_base_In_This_Method ();
+ #endif
+ }
+ } /* class SWCollaborationViewDelegate */
+}
diff --git a/new/dotnet/ios/generated-sources/SharedWithYou/SWHighlight.g.cs b/new/dotnet/ios/generated-sources/SharedWithYou/SWHighlight.g.cs
new file mode 100644
index 0000000..13735ac
--- /dev/null
+++ b/new/dotnet/ios/generated-sources/SharedWithYou/SWHighlight.g.cs
@@ -0,0 +1,200 @@
+//
+// 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 SharedWithYou {
+ [Register("SWHighlight", true)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ public unsafe partial class SWHighlight : NSObject, INSCoding, INSCopying, INSSecureCoding {
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ #if ARCH_32
+ #pragma warning disable 649
+ static readonly NativeHandle class_ptr;
+ #pragma warning restore 649
+ #else
+ static readonly NativeHandle class_ptr = Class.GetHandle ("SWHighlight");
+ #endif
+ public override NativeHandle ClassHandle { get { return class_ptr; } }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [DesignatedInitializer]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ [Export ("initWithCoder:")]
+ public SWHighlight (NSCoder coder) : base (NSObjectFlag.Empty)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ if (IsDirectBinding) {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("initWithCoder:"), coder.Handle), "initWithCoder:");
+ } else {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("initWithCoder:"), coder.Handle), "initWithCoder:");
+ }
+ #endif
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ protected SWHighlight (NSObjectFlag t) : base (t)
+ {
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ protected internal SWHighlight (NativeHandle handle) : base (handle)
+ {
+ }
+
+ [Export ("copyWithZone:")]
+ [return: ReleaseAttribute ()]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual NSObject Copy (NSZone? zone)
+ {
+ var zone__handle__ = zone.GetHandle ();
+ NSObject? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("copyWithZone:"), zone__handle__))!;
+ } else {
+ ret = Runtime.GetNSObject (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper_NativeHandle (this.SuperHandle, Selector.GetHandle ("copyWithZone:"), zone__handle__))!;
+ }
+ if (ret != null)
+ global::ObjCRuntime.Messaging.void_objc_msgSend (ret.Handle, Selector.GetHandle ("release"));
+ return ret!;
+ }
+ [Export ("encodeWithCoder:")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual void EncodeTo (NSCoder encoder)
+ {
+ var encoder__handle__ = encoder!.GetNonNullHandle (nameof (encoder));
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("encodeWithCoder:"), encoder__handle__);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_NativeHandle (this.SuperHandle, Selector.GetHandle ("encodeWithCoder:"), encoder__handle__);
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ public virtual NSObject Identifier {
+ [Export ("identifier", ArgumentSemantic.Copy)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ NSObject? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend (this.Handle, Selector.GetHandle ("identifier")))!;
+ } else {
+ ret = Runtime.GetNSObject (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("identifier")))!;
+ }
+ return ret!;
+ #endif
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ public virtual NSUrl Url {
+ [Export ("URL", ArgumentSemantic.Copy)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ NSUrl? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject<NSUrl> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend (this.Handle, Selector.GetHandle ("URL")))!;
+ } else {
+ ret = Runtime.GetNSObject<NSUrl> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("URL")))!;
+ }
+ return ret!;
+ #endif
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ static NSString? _MetadataTypeIdentifier;
+ [Field ("SWCollaborationMetadataTypeIdentifier", "SharedWithYou")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ public static NSString MetadataTypeIdentifier {
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ get {
+ if (_MetadataTypeIdentifier is null)
+ _MetadataTypeIdentifier = Dlfcn.GetStringConstant (Libraries.SharedWithYou.Handle, "SWCollaborationMetadataTypeIdentifier")!;
+ return _MetadataTypeIdentifier;
+ }
+ }
+ } /* class SWHighlight */
+}
diff --git a/new/dotnet/ios/generated-sources/SharedWithYou/SWHighlightCenter.g.cs b/new/dotnet/ios/generated-sources/SharedWithYou/SWHighlightCenter.g.cs
new file mode 100644
index 0000000..5709fba
--- /dev/null
+++ b/new/dotnet/ios/generated-sources/SharedWithYou/SWHighlightCenter.g.cs
@@ -0,0 +1,414 @@
+//
+// 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 SharedWithYou {
+ [Register("SWHighlightCenter", true)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ public unsafe partial class SWHighlightCenter : 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 ("SWHighlightCenter");
+ #endif
+ public override NativeHandle ClassHandle { get { return class_ptr; } }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ [Export ("init")]
+ public SWHighlightCenter () : 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 SWHighlightCenter (NSObjectFlag t) : base (t)
+ {
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ protected internal SWHighlightCenter (NativeHandle handle) : base (handle)
+ {
+ }
+
+ [Export ("collaborationHighlightForIdentifier:error:")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual SWCollaborationHighlight? GetCollaborationHighlight (string collaborationIdentifier, out NSError? error)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ if (collaborationIdentifier is null)
+ ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (collaborationIdentifier));
+ NativeHandle errorValue = IntPtr.Zero;
+ var nscollaborationIdentifier = CFString.CreateNative (collaborationIdentifier);
+ SWCollaborationHighlight? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject<SWCollaborationHighlight> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend_NativeHandle_ref_NativeHandle (this.Handle, Selector.GetHandle ("collaborationHighlightForIdentifier:error:"), nscollaborationIdentifier, ref errorValue))!;
+ } else {
+ ret = Runtime.GetNSObject<SWCollaborationHighlight> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper_NativeHandle_ref_NativeHandle (this.SuperHandle, Selector.GetHandle ("collaborationHighlightForIdentifier:error:"), nscollaborationIdentifier, ref errorValue))!;
+ }
+ CFString.ReleaseNative (nscollaborationIdentifier);
+ error = Runtime.GetNSObject<NSError> (errorValue)!;
+ return ret!;
+ #endif
+ }
+ [Export ("getCollaborationHighlightForURL:completionHandler:")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public unsafe virtual void GetCollaborationHighlight (NSUrl url, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V139))]global::System.Action<SWCollaborationHighlight, NSError> completionHandler)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ var url__handle__ = url!.GetNonNullHandle (nameof (url));
+ 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.SDActionArity2V139.Handler, completionHandler);
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("getCollaborationHighlightForURL:completionHandler:"), url__handle__, (IntPtr) block_ptr_completionHandler);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_NativeHandle_NativeHandle (this.SuperHandle, Selector.GetHandle ("getCollaborationHighlightForURL:completionHandler:"), url__handle__, (IntPtr) block_ptr_completionHandler);
+ }
+ block_ptr_completionHandler->CleanupBlock ();
+ #endif
+ }
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public unsafe virtual Task<SWCollaborationHighlight> GetCollaborationHighlightAsync (NSUrl url)
+ {
+ var tcs = new TaskCompletionSource<SWCollaborationHighlight> ();
+ GetCollaborationHighlight(url, (arg1_, arg2_) => {
+ if (arg2_ != null)
+ tcs.SetException (new NSErrorException(arg2_));
+ else
+ tcs.SetResult (arg1_!);
+ });
+ return tcs.Task;
+ }
+ [Export ("getHighlightForURL:completionHandler:")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public unsafe virtual void GetHighlight (NSUrl urL, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V140))]global::System.Action<SWHighlight, NSError> completionHandler)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ var urL__handle__ = urL!.GetNonNullHandle (nameof (urL));
+ 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.SDActionArity2V140.Handler, completionHandler);
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("getHighlightForURL:completionHandler:"), urL__handle__, (IntPtr) block_ptr_completionHandler);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_NativeHandle_NativeHandle (this.SuperHandle, Selector.GetHandle ("getHighlightForURL:completionHandler:"), urL__handle__, (IntPtr) block_ptr_completionHandler);
+ }
+ block_ptr_completionHandler->CleanupBlock ();
+ #endif
+ }
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public unsafe virtual Task<SWHighlight> GetHighlightAsync (NSUrl urL)
+ {
+ var tcs = new TaskCompletionSource<SWHighlight> ();
+ GetHighlight(urL, (arg1_, arg2_) => {
+ if (arg2_ != null)
+ tcs.SetException (new NSErrorException(arg2_));
+ else
+ tcs.SetResult (arg1_!);
+ });
+ return tcs.Task;
+ }
+ [Export ("getSignedIdentityProofForCollaborationHighlight:usingData:completionHandler:")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public unsafe virtual void GetSignedIdentityProof (SWCollaborationHighlight collaborationHighlight, NSData data, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V141))]global::System.Action<global::SharedWithYouCore.SWSignedPersonIdentityProof, NSError> completionHandler)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ var collaborationHighlight__handle__ = collaborationHighlight!.GetNonNullHandle (nameof (collaborationHighlight));
+ var data__handle__ = data!.GetNonNullHandle (nameof (data));
+ 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.SDActionArity2V141.Handler, completionHandler);
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("getSignedIdentityProofForCollaborationHighlight:usingData:completionHandler:"), collaborationHighlight__handle__, data__handle__, (IntPtr) block_ptr_completionHandler);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_NativeHandle_NativeHandle_NativeHandle (this.SuperHandle, Selector.GetHandle ("getSignedIdentityProofForCollaborationHighlight:usingData:completionHandler:"), collaborationHighlight__handle__, data__handle__, (IntPtr) block_ptr_completionHandler);
+ }
+ block_ptr_completionHandler->CleanupBlock ();
+ #endif
+ }
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public unsafe virtual Task<global::SharedWithYouCore.SWSignedPersonIdentityProof> GetSignedIdentityProofAsync (SWCollaborationHighlight collaborationHighlight, NSData data)
+ {
+ var tcs = new TaskCompletionSource<global::SharedWithYouCore.SWSignedPersonIdentityProof> ();
+ GetSignedIdentityProof(collaborationHighlight, data, (arg1_, arg2_) => {
+ if (arg2_ != null)
+ tcs.SetException (new NSErrorException(arg2_));
+ else
+ tcs.SetResult (arg1_!);
+ });
+ return tcs.Task;
+ }
+ [Export ("postNoticeForHighlightEvent:")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual void PostNotice (ISWHighlightEvent @event)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ var @event__handle__ = @event!.GetNonNullHandle (nameof (@event));
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("postNoticeForHighlightEvent:"), @event__handle__);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_NativeHandle (this.SuperHandle, Selector.GetHandle ("postNoticeForHighlightEvent:"), @event__handle__);
+ }
+ #endif
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ public ISWHighlightCenterDelegate? Delegate {
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ get {
+ return (WeakDelegate as ISWHighlightCenterDelegate)!;
+ }
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ set {
+ var rvalue = value as NSObject;
+ if (!(value is null) && rvalue is null)
+ throw new ArgumentException ("The object passed of type " + value.GetType () + " does not derive from NSObject");
+ WeakDelegate = rvalue;
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ public static string HighlightCollectionTitle {
+ [Export ("highlightCollectionTitle")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ return CFString.FromHandle (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend (class_ptr, Selector.GetHandle ("highlightCollectionTitle")))!;
+ #endif
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ public virtual SWHighlight[] Highlights {
+ [Export ("highlights", ArgumentSemantic.Copy)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ SWHighlight[]? ret;
+ if (IsDirectBinding) {
+ ret = CFArray.ArrayFromHandle<SWHighlight>(global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend (this.Handle, Selector.GetHandle ("highlights")))!;
+ } else {
+ ret = CFArray.ArrayFromHandle<SWHighlight>(global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("highlights")))!;
+ }
+ return ret!;
+ #endif
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ public static bool SystemCollaborationSupportAvailable {
+ [Export ("isSystemCollaborationSupportAvailable")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ return global::ObjCRuntime.Messaging.bool_objc_msgSend (class_ptr, Selector.GetHandle ("isSystemCollaborationSupportAvailable"));
+ #endif
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ object? __mt_WeakDelegate_var;
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ public virtual NSObject? WeakDelegate {
+ [Export ("delegate", ArgumentSemantic.Weak)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ NSObject? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend (this.Handle, Selector.GetHandle ("delegate")))!;
+ } else {
+ ret = Runtime.GetNSObject (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("delegate")))!;
+ }
+ MarkDirty ();
+ __mt_WeakDelegate_var = ret;
+ return ret!;
+ #endif
+ }
+ [Export ("setDelegate:", ArgumentSemantic.Weak)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ set {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ var value__handle__ = value.GetHandle ();
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("setDelegate:"), value__handle__);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_NativeHandle (this.SuperHandle, Selector.GetHandle ("setDelegate:"), value__handle__);
+ }
+ MarkDirty ();
+ __mt_WeakDelegate_var = value;
+ #endif
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ protected override void Dispose (bool disposing)
+ {
+ base.Dispose (disposing);
+ if (Handle == IntPtr.Zero) {
+ __mt_WeakDelegate_var = null;
+ }
+ }
+ } /* class SWHighlightCenter */
+}
diff --git a/new/dotnet/ios/generated-sources/SharedWithYou/SWHighlightCenterDelegate.g.cs b/new/dotnet/ios/generated-sources/SharedWithYou/SWHighlightCenterDelegate.g.cs
new file mode 100644
index 0000000..c53b4c9
--- /dev/null
+++ b/new/dotnet/ios/generated-sources/SharedWithYou/SWHighlightCenterDelegate.g.cs
@@ -0,0 +1,139 @@
+//
+// 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 SharedWithYou {
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ [Protocol (Name = "SWHighlightCenterDelegate", WrapperType = typeof (SWHighlightCenterDelegateWrapper))]
+ [ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "HighlightsDidChange", Selector = "highlightCenterHighlightsDidChange:", ParameterType = new Type [] { typeof (SharedWithYou.SWHighlightCenter) }, ParameterByRef = new bool [] { false })]
+ public partial interface ISWHighlightCenterDelegate : INativeObject, IDisposable
+ {
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [Export ("highlightCenterHighlightsDidChange:")]
+ [Preserve (Conditional = true)]
+ void HighlightsDidChange (SWHighlightCenter highlightCenter);
+ }
+ internal sealed class SWHighlightCenterDelegateWrapper : BaseWrapper, ISWHighlightCenterDelegate {
+ [Preserve (Conditional = true)]
+ public SWHighlightCenterDelegateWrapper (NativeHandle handle, bool owns)
+ : base (handle, owns)
+ {
+ }
+ [Export ("highlightCenterHighlightsDidChange:")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public void HighlightsDidChange (SWHighlightCenter highlightCenter)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ var highlightCenter__handle__ = highlightCenter!.GetNonNullHandle (nameof (highlightCenter));
+ global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("highlightCenterHighlightsDidChange:"), highlightCenter__handle__);
+ #endif
+ }
+ }
+}
+namespace SharedWithYou {
+ [Protocol()]
+ [Register("Microsoft_iOS__SharedWithYou_SWHighlightCenterDelegate", false)]
+ [Model]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ public unsafe abstract partial class SWHighlightCenterDelegate : NSObject, ISWHighlightCenterDelegate {
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ [Export ("init")]
+ protected SWHighlightCenterDelegate () : base (NSObjectFlag.Empty)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ IsDirectBinding = false;
+ 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 SWHighlightCenterDelegate (NSObjectFlag t) : base (t)
+ {
+ IsDirectBinding = false;
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ protected internal SWHighlightCenterDelegate (NativeHandle handle) : base (handle)
+ {
+ IsDirectBinding = false;
+ }
+
+ [Export ("highlightCenterHighlightsDidChange:")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual void HighlightsDidChange (SWHighlightCenter highlightCenter)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ throw new You_Should_Not_Call_base_In_This_Method ();
+ #endif
+ }
+ } /* class SWHighlightCenterDelegate */
+}
diff --git a/new/dotnet/ios/generated-sources/SharedWithYou/SWHighlightCenterErrorCode.g.cs b/new/dotnet/ios/generated-sources/SharedWithYou/SWHighlightCenterErrorCode.g.cs
new file mode 100644
index 0000000..bdfe55a
--- /dev/null
+++ b/new/dotnet/ios/generated-sources/SharedWithYou/SWHighlightCenterErrorCode.g.cs
@@ -0,0 +1,63 @@
+//
+// 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 SharedWithYou {
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ [Native]
+ public enum SWHighlightCenterErrorCode : long {
+ NoError = 0,
+ InternalError = 1,
+ InvalidURL = 2,
+ AccessDenied = 3,
+ }
+}
diff --git a/new/dotnet/ios/generated-sources/SharedWithYou/SWHighlightChangeEvent.g.cs b/new/dotnet/ios/generated-sources/SharedWithYou/SWHighlightChangeEvent.g.cs
new file mode 100644
index 0000000..c89b371
--- /dev/null
+++ b/new/dotnet/ios/generated-sources/SharedWithYou/SWHighlightChangeEvent.g.cs
@@ -0,0 +1,202 @@
+//
+// 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 SharedWithYou {
+ [Register("SWHighlightChangeEvent", true)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ public unsafe partial class SWHighlightChangeEvent : NSObject, INSCoding, INSCopying, INSSecureCoding, ISWHighlightEvent {
+ [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 ("SWHighlightChangeEvent");
+ #endif
+ public override NativeHandle ClassHandle { get { return class_ptr; } }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [DesignatedInitializer]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ [Export ("initWithCoder:")]
+ public SWHighlightChangeEvent (NSCoder coder) : base (NSObjectFlag.Empty)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ if (IsDirectBinding) {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("initWithCoder:"), coder.Handle), "initWithCoder:");
+ } else {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("initWithCoder:"), coder.Handle), "initWithCoder:");
+ }
+ #endif
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ protected SWHighlightChangeEvent (NSObjectFlag t) : base (t)
+ {
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ protected internal SWHighlightChangeEvent (NativeHandle handle) : base (handle)
+ {
+ }
+
+ [Export ("initWithHighlight:trigger:")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public SWHighlightChangeEvent (SWHighlight highlight, SWHighlightChangeEventTrigger trigger)
+ : base (NSObjectFlag.Empty)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ var highlight__handle__ = highlight!.GetNonNullHandle (nameof (highlight));
+ if (IsDirectBinding) {
+ InitializeHandle (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend_NativeHandle_IntPtr (this.Handle, Selector.GetHandle ("initWithHighlight:trigger:"), highlight__handle__, (IntPtr) (long) trigger), "initWithHighlight:trigger:");
+ } else {
+ InitializeHandle (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper_NativeHandle_IntPtr (this.SuperHandle, Selector.GetHandle ("initWithHighlight:trigger:"), highlight__handle__, (IntPtr) (long) trigger), "initWithHighlight:trigger:");
+ }
+ #endif
+ }
+ [Export ("copyWithZone:")]
+ [return: ReleaseAttribute ()]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual NSObject Copy (NSZone? zone)
+ {
+ var zone__handle__ = zone.GetHandle ();
+ NSObject? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("copyWithZone:"), zone__handle__))!;
+ } else {
+ ret = Runtime.GetNSObject (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper_NativeHandle (this.SuperHandle, Selector.GetHandle ("copyWithZone:"), zone__handle__))!;
+ }
+ if (ret != null)
+ global::ObjCRuntime.Messaging.void_objc_msgSend (ret.Handle, Selector.GetHandle ("release"));
+ return ret!;
+ }
+ [Export ("encodeWithCoder:")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual void EncodeTo (NSCoder encoder)
+ {
+ var encoder__handle__ = encoder!.GetNonNullHandle (nameof (encoder));
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("encodeWithCoder:"), encoder__handle__);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_NativeHandle (this.SuperHandle, Selector.GetHandle ("encodeWithCoder:"), encoder__handle__);
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ public virtual SWHighlightChangeEventTrigger ChangeEventTrigger {
+ [Export ("changeEventTrigger", ArgumentSemantic.UnsafeUnretained)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ SWHighlightChangeEventTrigger ret;
+ if (IsDirectBinding) {
+ ret = (SharedWithYou.SWHighlightChangeEventTrigger) (long) global::ObjCRuntime.Messaging.IntPtr_objc_msgSend (this.Handle, Selector.GetHandle ("changeEventTrigger"));
+ } else {
+ ret = (SharedWithYou.SWHighlightChangeEventTrigger) (long) global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("changeEventTrigger"));
+ }
+ return ret!;
+ #endif
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ public virtual NSUrl HighlightUrl {
+ [Export ("highlightURL", ArgumentSemantic.Copy)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ NSUrl? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject<NSUrl> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend (this.Handle, Selector.GetHandle ("highlightURL")))!;
+ } else {
+ ret = Runtime.GetNSObject<NSUrl> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("highlightURL")))!;
+ }
+ return ret!;
+ #endif
+ }
+ }
+ } /* class SWHighlightChangeEvent */
+}
diff --git a/new/dotnet/ios/generated-sources/SharedWithYou/SWHighlightChangeEventTrigger.g.cs b/new/dotnet/ios/generated-sources/SharedWithYou/SWHighlightChangeEventTrigger.g.cs
new file mode 100644
index 0000000..4fc3b89
--- /dev/null
+++ b/new/dotnet/ios/generated-sources/SharedWithYou/SWHighlightChangeEventTrigger.g.cs
@@ -0,0 +1,61 @@
+//
+// 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 SharedWithYou {
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [Native]
+ public enum SWHighlightChangeEventTrigger : long {
+ Edit = 1,
+ Comment = 2,
+ }
+}
diff --git a/new/dotnet/ios/generated-sources/SharedWithYou/SWHighlightEvent.g.cs b/new/dotnet/ios/generated-sources/SharedWithYou/SWHighlightEvent.g.cs
new file mode 100644
index 0000000..96a7d63
--- /dev/null
+++ b/new/dotnet/ios/generated-sources/SharedWithYou/SWHighlightEvent.g.cs
@@ -0,0 +1,114 @@
+//
+// 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 SharedWithYou {
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [Protocol (Name = "SWHighlightEvent", WrapperType = typeof (SWHighlightEventWrapper))]
+ [ProtocolMember (IsRequired = true, IsProperty = true, IsStatic = false, Name = "HighlightUrl", Selector = "highlightURL", PropertyType = typeof (NSUrl), GetterSelector = "highlightURL", ArgumentSemantic = ArgumentSemantic.Copy)]
+ public partial interface ISWHighlightEvent : INativeObject, IDisposable,
+ Foundation.INSCoding
+ , Foundation.INSCopying
+ , Foundation.INSSecureCoding
+ {
+ [Preserve (Conditional = true)]
+ NSUrl HighlightUrl {
+ [Export ("highlightURL", ArgumentSemantic.Copy)]
+ get;
+ }
+ }
+ internal sealed class SWHighlightEventWrapper : BaseWrapper, ISWHighlightEvent {
+ [Preserve (Conditional = true)]
+ public SWHighlightEventWrapper (NativeHandle handle, bool owns)
+ : base (handle, owns)
+ {
+ }
+ [Export ("encodeWithCoder:")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public void EncodeTo (NSCoder encoder)
+ {
+ var encoder__handle__ = encoder!.GetNonNullHandle (nameof (encoder));
+ global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("encodeWithCoder:"), encoder__handle__);
+ }
+ [Export ("copyWithZone:")]
+ [return: ReleaseAttribute ()]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public NSObject Copy (NSZone? zone)
+ {
+ var zone__handle__ = zone.GetHandle ();
+ NSObject? ret;
+ ret = Runtime.GetNSObject (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("copyWithZone:"), zone__handle__))!;
+ if (ret != null)
+ global::ObjCRuntime.Messaging.void_objc_msgSend (ret.Handle, Selector.GetHandle ("release"));
+ return ret!;
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ public NSUrl HighlightUrl {
+ [Export ("highlightURL", ArgumentSemantic.Copy)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ return Runtime.GetNSObject<NSUrl> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend (this.Handle, Selector.GetHandle ("highlightURL")))!;
+ #endif
+ }
+ }
+ }
+}
diff --git a/new/dotnet/ios/generated-sources/SharedWithYou/SWHighlightMembershipEvent.g.cs b/new/dotnet/ios/generated-sources/SharedWithYou/SWHighlightMembershipEvent.g.cs
new file mode 100644
index 0000000..5983d0b
--- /dev/null
+++ b/new/dotnet/ios/generated-sources/SharedWithYou/SWHighlightMembershipEvent.g.cs
@@ -0,0 +1,202 @@
+//
+// 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 SharedWithYou {
+ [Register("SWHighlightMembershipEvent", true)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ public unsafe partial class SWHighlightMembershipEvent : NSObject, INSCoding, INSCopying, INSSecureCoding, ISWHighlightEvent {
+ [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 ("SWHighlightMembershipEvent");
+ #endif
+ public override NativeHandle ClassHandle { get { return class_ptr; } }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [DesignatedInitializer]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ [Export ("initWithCoder:")]
+ public SWHighlightMembershipEvent (NSCoder coder) : base (NSObjectFlag.Empty)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ if (IsDirectBinding) {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("initWithCoder:"), coder.Handle), "initWithCoder:");
+ } else {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("initWithCoder:"), coder.Handle), "initWithCoder:");
+ }
+ #endif
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ protected SWHighlightMembershipEvent (NSObjectFlag t) : base (t)
+ {
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ protected internal SWHighlightMembershipEvent (NativeHandle handle) : base (handle)
+ {
+ }
+
+ [Export ("initWithHighlight:trigger:")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public SWHighlightMembershipEvent (SWHighlight highlight, SWHighlightMembershipEventTrigger trigger)
+ : base (NSObjectFlag.Empty)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ var highlight__handle__ = highlight!.GetNonNullHandle (nameof (highlight));
+ if (IsDirectBinding) {
+ InitializeHandle (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend_NativeHandle_IntPtr (this.Handle, Selector.GetHandle ("initWithHighlight:trigger:"), highlight__handle__, (IntPtr) (long) trigger), "initWithHighlight:trigger:");
+ } else {
+ InitializeHandle (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper_NativeHandle_IntPtr (this.SuperHandle, Selector.GetHandle ("initWithHighlight:trigger:"), highlight__handle__, (IntPtr) (long) trigger), "initWithHighlight:trigger:");
+ }
+ #endif
+ }
+ [Export ("copyWithZone:")]
+ [return: ReleaseAttribute ()]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual NSObject Copy (NSZone? zone)
+ {
+ var zone__handle__ = zone.GetHandle ();
+ NSObject? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("copyWithZone:"), zone__handle__))!;
+ } else {
+ ret = Runtime.GetNSObject (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper_NativeHandle (this.SuperHandle, Selector.GetHandle ("copyWithZone:"), zone__handle__))!;
+ }
+ if (ret != null)
+ global::ObjCRuntime.Messaging.void_objc_msgSend (ret.Handle, Selector.GetHandle ("release"));
+ return ret!;
+ }
+ [Export ("encodeWithCoder:")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual void EncodeTo (NSCoder encoder)
+ {
+ var encoder__handle__ = encoder!.GetNonNullHandle (nameof (encoder));
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("encodeWithCoder:"), encoder__handle__);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_NativeHandle (this.SuperHandle, Selector.GetHandle ("encodeWithCoder:"), encoder__handle__);
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ public virtual NSUrl HighlightUrl {
+ [Export ("highlightURL", ArgumentSemantic.Copy)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ NSUrl? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject<NSUrl> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend (this.Handle, Selector.GetHandle ("highlightURL")))!;
+ } else {
+ ret = Runtime.GetNSObject<NSUrl> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("highlightURL")))!;
+ }
+ return ret!;
+ #endif
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ public virtual SWHighlightMembershipEventTrigger MembershipEventTrigger {
+ [Export ("membershipEventTrigger", ArgumentSemantic.UnsafeUnretained)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ SWHighlightMembershipEventTrigger ret;
+ if (IsDirectBinding) {
+ ret = (SharedWithYou.SWHighlightMembershipEventTrigger) (long) global::ObjCRuntime.Messaging.IntPtr_objc_msgSend (this.Handle, Selector.GetHandle ("membershipEventTrigger"));
+ } else {
+ ret = (SharedWithYou.SWHighlightMembershipEventTrigger) (long) global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("membershipEventTrigger"));
+ }
+ return ret!;
+ #endif
+ }
+ }
+ } /* class SWHighlightMembershipEvent */
+}
diff --git a/new/dotnet/ios/generated-sources/SharedWithYou/SWHighlightMembershipEventTrigger.g.cs b/new/dotnet/ios/generated-sources/SharedWithYou/SWHighlightMembershipEventTrigger.g.cs
new file mode 100644
index 0000000..d89c490
--- /dev/null
+++ b/new/dotnet/ios/generated-sources/SharedWithYou/SWHighlightMembershipEventTrigger.g.cs
@@ -0,0 +1,61 @@
+//
+// 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 SharedWithYou {
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [Native]
+ public enum SWHighlightMembershipEventTrigger : long {
+ AddedCollaborator = 1,
+ RemovedCollaborator = 2,
+ }
+}
diff --git a/new/dotnet/ios/generated-sources/SharedWithYou/SWHighlightMentionEvent.g.cs b/new/dotnet/ios/generated-sources/SharedWithYou/SWHighlightMentionEvent.g.cs
new file mode 100644
index 0000000..74ce536
--- /dev/null
+++ b/new/dotnet/ios/generated-sources/SharedWithYou/SWHighlightMentionEvent.g.cs
@@ -0,0 +1,225 @@
+//
+// 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 SharedWithYou {
+ [Register("SWHighlightMentionEvent", true)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ public unsafe partial class SWHighlightMentionEvent : NSObject, INSCoding, INSCopying, INSSecureCoding, ISWHighlightEvent {
+ [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 ("SWHighlightMentionEvent");
+ #endif
+ public override NativeHandle ClassHandle { get { return class_ptr; } }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [DesignatedInitializer]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ [Export ("initWithCoder:")]
+ public SWHighlightMentionEvent (NSCoder coder) : base (NSObjectFlag.Empty)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ if (IsDirectBinding) {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("initWithCoder:"), coder.Handle), "initWithCoder:");
+ } else {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("initWithCoder:"), coder.Handle), "initWithCoder:");
+ }
+ #endif
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ protected SWHighlightMentionEvent (NSObjectFlag t) : base (t)
+ {
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ protected internal SWHighlightMentionEvent (NativeHandle handle) : base (handle)
+ {
+ }
+
+ [Export ("initWithHighlight:mentionedPersonCloudKitShareHandle:")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public SWHighlightMentionEvent (SWHighlight highlight, string handle)
+ : base (NSObjectFlag.Empty)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ var highlight__handle__ = highlight!.GetNonNullHandle (nameof (highlight));
+ if (handle is null)
+ ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (handle));
+ var nshandle = CFString.CreateNative (handle);
+ if (IsDirectBinding) {
+ InitializeHandle (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("initWithHighlight:mentionedPersonCloudKitShareHandle:"), highlight__handle__, nshandle), "initWithHighlight:mentionedPersonCloudKitShareHandle:");
+ } else {
+ InitializeHandle (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper_NativeHandle_NativeHandle (this.SuperHandle, Selector.GetHandle ("initWithHighlight:mentionedPersonCloudKitShareHandle:"), highlight__handle__, nshandle), "initWithHighlight:mentionedPersonCloudKitShareHandle:");
+ }
+ CFString.ReleaseNative (nshandle);
+ #endif
+ }
+ [Export ("initWithHighlight:mentionedPersonIdentity:")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public SWHighlightMentionEvent (SWHighlight highlight, global::SharedWithYouCore.SWPersonIdentity identity)
+ : base (NSObjectFlag.Empty)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ var highlight__handle__ = highlight!.GetNonNullHandle (nameof (highlight));
+ var identity__handle__ = identity!.GetNonNullHandle (nameof (identity));
+ if (IsDirectBinding) {
+ InitializeHandle (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("initWithHighlight:mentionedPersonIdentity:"), highlight__handle__, identity__handle__), "initWithHighlight:mentionedPersonIdentity:");
+ } else {
+ InitializeHandle (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper_NativeHandle_NativeHandle (this.SuperHandle, Selector.GetHandle ("initWithHighlight:mentionedPersonIdentity:"), highlight__handle__, identity__handle__), "initWithHighlight:mentionedPersonIdentity:");
+ }
+ #endif
+ }
+ [Export ("copyWithZone:")]
+ [return: ReleaseAttribute ()]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual NSObject Copy (NSZone? zone)
+ {
+ var zone__handle__ = zone.GetHandle ();
+ NSObject? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("copyWithZone:"), zone__handle__))!;
+ } else {
+ ret = Runtime.GetNSObject (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper_NativeHandle (this.SuperHandle, Selector.GetHandle ("copyWithZone:"), zone__handle__))!;
+ }
+ if (ret != null)
+ global::ObjCRuntime.Messaging.void_objc_msgSend (ret.Handle, Selector.GetHandle ("release"));
+ return ret!;
+ }
+ [Export ("encodeWithCoder:")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual void EncodeTo (NSCoder encoder)
+ {
+ var encoder__handle__ = encoder!.GetNonNullHandle (nameof (encoder));
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("encodeWithCoder:"), encoder__handle__);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_NativeHandle (this.SuperHandle, Selector.GetHandle ("encodeWithCoder:"), encoder__handle__);
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ public virtual NSUrl HighlightUrl {
+ [Export ("highlightURL", ArgumentSemantic.Copy)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ NSUrl? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject<NSUrl> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend (this.Handle, Selector.GetHandle ("highlightURL")))!;
+ } else {
+ ret = Runtime.GetNSObject<NSUrl> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("highlightURL")))!;
+ }
+ return ret!;
+ #endif
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ public virtual string MentionedPersonHandle {
+ [Export ("mentionedPersonHandle", ArgumentSemantic.Retain)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ if (IsDirectBinding) {
+ return CFString.FromHandle (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend (this.Handle, Selector.GetHandle ("mentionedPersonHandle")))!;
+ } else {
+ return CFString.FromHandle (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("mentionedPersonHandle")))!;
+ }
+ #endif
+ }
+ }
+ } /* class SWHighlightMentionEvent */
+}
diff --git a/new/dotnet/ios/generated-sources/SharedWithYou/SWHighlightPersistenceEvent.g.cs b/new/dotnet/ios/generated-sources/SharedWithYou/SWHighlightPersistenceEvent.g.cs
new file mode 100644
index 0000000..efdfe0f
--- /dev/null
+++ b/new/dotnet/ios/generated-sources/SharedWithYou/SWHighlightPersistenceEvent.g.cs
@@ -0,0 +1,202 @@
+//
+// 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 SharedWithYou {
+ [Register("SWHighlightPersistenceEvent", true)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ public unsafe partial class SWHighlightPersistenceEvent : NSObject, INSCoding, INSCopying, INSSecureCoding, ISWHighlightEvent {
+ [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 ("SWHighlightPersistenceEvent");
+ #endif
+ public override NativeHandle ClassHandle { get { return class_ptr; } }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [DesignatedInitializer]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ [Export ("initWithCoder:")]
+ public SWHighlightPersistenceEvent (NSCoder coder) : base (NSObjectFlag.Empty)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ if (IsDirectBinding) {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("initWithCoder:"), coder.Handle), "initWithCoder:");
+ } else {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("initWithCoder:"), coder.Handle), "initWithCoder:");
+ }
+ #endif
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ protected SWHighlightPersistenceEvent (NSObjectFlag t) : base (t)
+ {
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ protected internal SWHighlightPersistenceEvent (NativeHandle handle) : base (handle)
+ {
+ }
+
+ [Export ("initWithHighlight:trigger:")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public SWHighlightPersistenceEvent (SWHighlight highlight, SWHighlightPersistenceEventTrigger trigger)
+ : base (NSObjectFlag.Empty)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ var highlight__handle__ = highlight!.GetNonNullHandle (nameof (highlight));
+ if (IsDirectBinding) {
+ InitializeHandle (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend_NativeHandle_IntPtr (this.Handle, Selector.GetHandle ("initWithHighlight:trigger:"), highlight__handle__, (IntPtr) (long) trigger), "initWithHighlight:trigger:");
+ } else {
+ InitializeHandle (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper_NativeHandle_IntPtr (this.SuperHandle, Selector.GetHandle ("initWithHighlight:trigger:"), highlight__handle__, (IntPtr) (long) trigger), "initWithHighlight:trigger:");
+ }
+ #endif
+ }
+ [Export ("copyWithZone:")]
+ [return: ReleaseAttribute ()]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual NSObject Copy (NSZone? zone)
+ {
+ var zone__handle__ = zone.GetHandle ();
+ NSObject? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("copyWithZone:"), zone__handle__))!;
+ } else {
+ ret = Runtime.GetNSObject (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper_NativeHandle (this.SuperHandle, Selector.GetHandle ("copyWithZone:"), zone__handle__))!;
+ }
+ if (ret != null)
+ global::ObjCRuntime.Messaging.void_objc_msgSend (ret.Handle, Selector.GetHandle ("release"));
+ return ret!;
+ }
+ [Export ("encodeWithCoder:")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual void EncodeTo (NSCoder encoder)
+ {
+ var encoder__handle__ = encoder!.GetNonNullHandle (nameof (encoder));
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("encodeWithCoder:"), encoder__handle__);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_NativeHandle (this.SuperHandle, Selector.GetHandle ("encodeWithCoder:"), encoder__handle__);
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ public virtual NSUrl HighlightUrl {
+ [Export ("highlightURL", ArgumentSemantic.Copy)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ NSUrl? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject<NSUrl> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend (this.Handle, Selector.GetHandle ("highlightURL")))!;
+ } else {
+ ret = Runtime.GetNSObject<NSUrl> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("highlightURL")))!;
+ }
+ return ret!;
+ #endif
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ public virtual SWHighlightPersistenceEventTrigger PersistenceEventTrigger {
+ [Export ("persistenceEventTrigger", ArgumentSemantic.UnsafeUnretained)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ SWHighlightPersistenceEventTrigger ret;
+ if (IsDirectBinding) {
+ ret = (SharedWithYou.SWHighlightPersistenceEventTrigger) (long) global::ObjCRuntime.Messaging.IntPtr_objc_msgSend (this.Handle, Selector.GetHandle ("persistenceEventTrigger"));
+ } else {
+ ret = (SharedWithYou.SWHighlightPersistenceEventTrigger) (long) global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("persistenceEventTrigger"));
+ }
+ return ret!;
+ #endif
+ }
+ }
+ } /* class SWHighlightPersistenceEvent */
+}
diff --git a/new/dotnet/ios/generated-sources/SharedWithYou/SWHighlightPersistenceEventTrigger.g.cs b/new/dotnet/ios/generated-sources/SharedWithYou/SWHighlightPersistenceEventTrigger.g.cs
new file mode 100644
index 0000000..60950df
--- /dev/null
+++ b/new/dotnet/ios/generated-sources/SharedWithYou/SWHighlightPersistenceEventTrigger.g.cs
@@ -0,0 +1,63 @@
+//
+// 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 SharedWithYou {
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [Native]
+ public enum SWHighlightPersistenceEventTrigger : long {
+ Created = 1,
+ Deleted = 2,
+ Renamed = 3,
+ Moved = 4,
+ }
+}
diff --git a/new/dotnet/ios/generated-sources/SharedWithYou/SWRemoveParticipantAlertController.g.cs b/new/dotnet/ios/generated-sources/SharedWithYou/SWRemoveParticipantAlertController.g.cs
new file mode 100644
index 0000000..e68b38e
--- /dev/null
+++ b/new/dotnet/ios/generated-sources/SharedWithYou/SWRemoveParticipantAlertController.g.cs
@@ -0,0 +1,113 @@
+//
+// 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 SharedWithYou {
+ [Register("SWRemoveParticipantAlertController", true)]
+ [UnsupportedOSPlatform ("macos")]
+ [UnsupportedOSPlatform ("tvos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ public unsafe partial class SWRemoveParticipantAlertController : global::UIKit.UIViewController {
+ [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 ("SWRemoveParticipantAlertController");
+ #endif
+ public override NativeHandle ClassHandle { get { return class_ptr; } }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [DesignatedInitializer]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ [Export ("initWithCoder:")]
+ public SWRemoveParticipantAlertController (NSCoder coder) : base (NSObjectFlag.Empty)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ if (IsDirectBinding) {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("initWithCoder:"), coder.Handle), "initWithCoder:");
+ } else {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("initWithCoder:"), coder.Handle), "initWithCoder:");
+ }
+ #endif
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ protected SWRemoveParticipantAlertController (NSObjectFlag t) : base (t)
+ {
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ protected internal SWRemoveParticipantAlertController (NativeHandle handle) : base (handle)
+ {
+ }
+
+ [Export ("alertControllerWithParticipant:highlight:")]
+ [UnsupportedOSPlatform ("macos")]
+ [UnsupportedOSPlatform ("tvos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public static SWRemoveParticipantAlertController Create (global::SharedWithYouCore.SWPerson participant, SWCollaborationHighlight highlight)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ var participant__handle__ = participant!.GetNonNullHandle (nameof (participant));
+ var highlight__handle__ = highlight!.GetNonNullHandle (nameof (highlight));
+ return Runtime.GetNSObject<SWRemoveParticipantAlertController> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend_NativeHandle_NativeHandle (class_ptr, Selector.GetHandle ("alertControllerWithParticipant:highlight:"), participant__handle__, highlight__handle__))!;
+ #endif
+ }
+ } /* class SWRemoveParticipantAlertController */
+}
diff --git a/old/dotnet/ios/generated-sources/ShazamKit/SHMediaItem.g.cs b/new/dotnet/ios/generated-sources/ShazamKit/SHMediaItem.g.cs
index 90c31db..d3e01cb 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.NIDActionArity2V139))]global::System.Action<SHMediaItem, NSError> completionHandler)
+ public unsafe static void FetchMediaItem (string shazamId, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V142))]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.SDActionArity2V139.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V142.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/ShazamKit/SHSignatureGenerator.g.cs b/new/dotnet/ios/generated-sources/ShazamKit/SHSignatureGenerator.g.cs
index dcc13f7..85de8a2 100644
--- a/old/dotnet/ios/generated-sources/ShazamKit/SHSignatureGenerator.g.cs
+++ b/new/dotnet/ios/generated-sources/ShazamKit/SHSignatureGenerator.g.cs
@@ -122,7 +122,7 @@ namespace ShazamKit {
[SupportedOSPlatform ("ios16.0")]
[SupportedOSPlatform ("maccatalyst16.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static void GenerateSignature (global::AVFoundation.AVAsset asset, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V140))]global::System.Action<SHSignature, NSError> completionHandler)
+ public unsafe static void GenerateSignature (global::AVFoundation.AVAsset asset, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V143))]global::System.Action<SHSignature, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -134,7 +134,7 @@ namespace ShazamKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V140.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V143.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (class_ptr, Selector.GetHandle ("generateSignatureFromAsset:completionHandler:"), asset__handle__, (IntPtr) block_ptr_completionHandler);
block_ptr_completionHandler->CleanupBlock ();
#endif
diff --git a/old/dotnet/ios/generated-sources/Speech/SFSpeechRecognizer.g.cs b/new/dotnet/ios/generated-sources/Speech/SFSpeechRecognizer.g.cs
index 5657c32..c0bbf87 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.NIDActionArity2V141))]global::System.Action<SFSpeechRecognitionResult, NSError> resultHandler)
+ public unsafe virtual SFSpeechRecognitionTask GetRecognitionTask (SFSpeechRecognitionRequest request, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V144))]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.SDActionArity2V141.Handler, resultHandler);
+ block_resultHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V144.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 ab41578..4f14c2a 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.NIDActionArity2V142))]global::System.Action<SKCloudServiceCapability, NSError> completionHandler)
+ public unsafe virtual void RequestCapabilities ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V145))]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.SDActionArity2V142.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V145.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.NIDActionArity2V143))]global::System.Action<NSString, NSError> completionHandler)
+ public unsafe virtual void RequestPersonalizationToken (string clientToken, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V146))]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.SDActionArity2V143.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V146.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.NIDActionArity2V143))]global::System.Action<NSString, NSError> completionHandler)
+ public unsafe virtual void RequestStorefrontCountryCode ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V146))]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.SDActionArity2V143.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V146.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.NIDActionArity2V143))]global::System.Action<NSString, NSError> completionHandler)
+ public unsafe virtual void RequestStorefrontIdentifier ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V146))]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.SDActionArity2V143.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V146.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.NIDActionArity2V143))]global::System.Action<NSString, NSError> completionHandler)
+ public unsafe virtual void RequestUserToken (string developerToken, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V146))]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.SDActionArity2V143.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V146.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 e9e65d8..15c2736 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.NIDActionArity2V144))]global::System.Action<SKProduct[], NSError>? completionHandler)
+ public unsafe virtual void FetchStorePromotionOrder ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V147))]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.SDActionArity2V144.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V147.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.NIDActionArity2V145))]global::System.Action<SKProductStorePromotionVisibility, NSError>? completionHandler)
+ public unsafe virtual void FetchStorePromotionVisibility (SKProduct product, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V148))]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.SDActionArity2V145.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V148.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 0ee47cd..b10a8bd 100644
--- a/old/dotnet/ios/generated-sources/ThreadNetwork/THClient.g.cs
+++ b/new/dotnet/ios/generated-sources/ThreadNetwork/THClient.g.cs
@@ -175,7 +175,7 @@ namespace ThreadNetwork {
[UnsupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("ios15.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void RetrieveAllCredentials ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V146))]global::System.Action<NSSet<THCredentials>, NSError> completion)
+ public unsafe virtual void RetrieveAllCredentials ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V149))]global::System.Action<NSSet<THCredentials>, NSError> completion)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -186,7 +186,7 @@ namespace ThreadNetwork {
BlockLiteral block_completion;
block_completion = new BlockLiteral ();
block_ptr_completion = &block_completion;
- block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V146.Handler, completion);
+ block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V149.Handler, completion);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("retrieveAllCredentials:"), (IntPtr) block_ptr_completion);
} else {
@@ -215,7 +215,7 @@ namespace ThreadNetwork {
[UnsupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("ios15.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void RetrieveCredentialsForBorderAgent (NSData borderAgentId, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V147))]global::System.Action<THCredentials, NSError> completion)
+ public unsafe virtual void RetrieveCredentialsForBorderAgent (NSData borderAgentId, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V150))]global::System.Action<THCredentials, NSError> completion)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -227,7 +227,7 @@ namespace ThreadNetwork {
BlockLiteral block_completion;
block_completion = new BlockLiteral ();
block_ptr_completion = &block_completion;
- block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V147.Handler, completion);
+ block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V150.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 {
@@ -256,7 +256,7 @@ namespace ThreadNetwork {
[UnsupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("ios15.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void RetrieveCredentialsForExtendedPanId (NSData extendedPanId, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V147))]global::System.Action<THCredentials, NSError> completion)
+ public unsafe virtual void RetrieveCredentialsForExtendedPanId (NSData extendedPanId, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V150))]global::System.Action<THCredentials, NSError> completion)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -268,7 +268,7 @@ namespace ThreadNetwork {
BlockLiteral block_completion;
block_completion = new BlockLiteral ();
block_ptr_completion = &block_completion;
- block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V147.Handler, completion);
+ block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V150.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 {
@@ -297,7 +297,7 @@ namespace ThreadNetwork {
[UnsupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("ios15.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void RetrievePreferredCredentials ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V147))]global::System.Action<THCredentials, NSError> completion)
+ public unsafe virtual void RetrievePreferredCredentials ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V150))]global::System.Action<THCredentials, NSError> completion)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -308,7 +308,7 @@ namespace ThreadNetwork {
BlockLiteral block_completion;
block_completion = new BlockLiteral ();
block_ptr_completion = &block_completion;
- block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V147.Handler, completion);
+ block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V150.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 cdd4a32..3d0e9d1 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.SDActionArity2V148))]
+ [return: DelegateProxy (typeof (ObjCRuntime.Trampolines.SDActionArity2V151))]
[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.NIDActionArity2V148.Create (ret)!;
+ return global::ObjCRuntime.Trampolines.NIDActionArity2V151.Create (ret)!;
#endif
}
- [param: BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V148))]
+ [param: BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V151))]
[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.SDActionArity2V148.Handler, value);
+ block_value.SetupBlockUnsafe (Trampolines.SDActionArity2V151.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 b1f4290..877c5cf 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.SDActionArity2V149))]
+ [return: DelegateProxy (typeof (ObjCRuntime.Trampolines.SDActionArity2V152))]
[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.NIDActionArity2V149.Create (ret)!;
+ return global::ObjCRuntime.Trampolines.NIDActionArity2V152.Create (ret)!;
}
- [param: BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V149))]
+ [param: BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V152))]
[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.SDActionArity2V149.Handler, value);
+ block_value.SetupBlockUnsafe (Trampolines.SDActionArity2V152.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 857d6f8..0b5c232 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.NIDActionArity2V150) })]
+ [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.NIDActionArity2V153) })]
[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.NIDActionArity2V150))]global::System.Action<NSUrl, UIDocumentBrowserImportMode> importHandler)
+ public unsafe static void DidRequestDocumentCreation (this IUIDocumentBrowserViewControllerDelegate This, UIDocumentBrowserViewController controller, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V153))]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.SDActionArity2V150.Handler, importHandler);
+ block_importHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V153.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.NIDActionArity2V150))]global::System.Action<NSUrl, UIDocumentBrowserImportMode> importHandler)
+ public unsafe virtual void DidRequestDocumentCreation (UIDocumentBrowserViewController controller, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V153))]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 8daa0bd..ddce936 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.NIDActionArity2V151))]global::System.Action<NSSet<NSString>, NSError> completionHandler)
+ public unsafe virtual void DetectPatterns (NSSet<NSString> patterns, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V154))]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.SDActionArity2V151.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V154.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.NIDActionArity2V152))]global::System.Action<NSSet<NSString>[], NSError> completionHandler)
+ public unsafe virtual void DetectPatterns (NSSet<NSString> patterns, NSIndexSet? itemSet, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V155))]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.SDActionArity2V152.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V155.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.NIDActionArity2V153))]global::System.Action<NSDictionary<NSString, NSObject>, NSError> completionHandler)
+ public unsafe virtual void DetectValues (NSSet<NSString> patterns, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V156))]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.SDActionArity2V153.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V156.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.NIDActionArity2V154))]global::System.Action<NSDictionary<NSString, NSObject>[], NSError> completionHandler)
+ public unsafe virtual void DetectValues (NSSet<NSString> patterns, NSIndexSet? itemSet, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V157))]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.SDActionArity2V154.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V157.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 b52f9b3..2a220a1 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.NIDActionArity2V155))]global::System.Action<UISpringLoadedInteraction, IUISpringLoadedInteractionContext> handler)
+ public unsafe UISpringLoadedInteraction (IUISpringLoadedInteractionBehavior? interactionBehavior, IUISpringLoadedInteractionEffect? interactionEffect, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V158))]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.SDActionArity2V155.Handler, handler);
+ block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V158.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.NIDActionArity2V155))]global::System.Action<UISpringLoadedInteraction, IUISpringLoadedInteractionContext> handler)
+ public unsafe UISpringLoadedInteraction ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V158))]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.SDActionArity2V155.Handler, handler);
+ block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V158.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 d0cf328..84221a6 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.NIDActionArity2V156))]global::System.Action<UITableViewRowAction, NSIndexPath> handler)
+ public unsafe static UITableViewRowAction Create (UITableViewRowActionStyle style, string? title, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V159))]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.SDActionArity2V156.Handler, handler);
+ block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V159.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 c3371d8..972055f 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.NIDActionArity2V157))]global::System.Action<VSAccountAccessStatus, NSError> completionHandler)
+ public unsafe virtual void CheckAccessStatus (NSDictionary options, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V160))]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.SDActionArity2V157.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V160.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.NIDActionArity2V158))]global::System.Action<VSAccountMetadata, NSError> completionHandler)
+ public unsafe virtual VSAccountManagerResult Enqueue (VSAccountMetadataRequest accountMetadataRequest, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V161))]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.SDActionArity2V158.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V161.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/VideoSubscriberAccount/VSUserAccountManager.g.cs b/new/dotnet/ios/generated-sources/VideoSubscriberAccount/VSUserAccountManager.g.cs
index ee25c17..0c53132 100644
--- a/old/dotnet/ios/generated-sources/VideoSubscriberAccount/VSUserAccountManager.g.cs
+++ b/new/dotnet/ios/generated-sources/VideoSubscriberAccount/VSUserAccountManager.g.cs
@@ -82,7 +82,7 @@ namespace VideoSubscriberAccount {
[SupportedOSPlatform ("ios16.0")]
[SupportedOSPlatform ("macos13.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void QueryUserAccounts (VSUserAccountQueryOptions options, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V159))]global::System.Action<NSArray<VSUserAccount>, NSError> completion)
+ public unsafe virtual void QueryUserAccounts (VSUserAccountQueryOptions options, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V162))]global::System.Action<NSArray<VSUserAccount>, NSError> completion)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -93,7 +93,7 @@ namespace VideoSubscriberAccount {
BlockLiteral block_completion;
block_completion = new BlockLiteral ();
block_ptr_completion = &block_completion;
- block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V159.Handler, completion);
+ block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V162.Handler, completion);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_NativeHandle (this.Handle, Selector.GetHandle ("queryUserAccountsWithOptions:completion:"), (IntPtr) (long) options, (IntPtr) block_ptr_completion);
} else {
diff --git a/old/dotnet/ios/generated-sources/WebKit/WKContentRuleListStore.g.cs b/new/dotnet/ios/generated-sources/WebKit/WKContentRuleListStore.g.cs
index f78afbd..759e78b 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.NIDActionArity2V160))]global::System.Action<WKContentRuleList, NSError> completionHandler)
+ public unsafe virtual void CompileContentRuleList (string identifier, string encodedContentRuleList, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V163))]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.SDActionArity2V160.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V163.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.NIDActionArity2V160))]global::System.Action<WKContentRuleList, NSError> completionHandler)
+ public unsafe virtual void LookUpContentRuleList (string identifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V163))]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.SDActionArity2V160.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V163.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 6ced37b..d04a569 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.NIDActionArity1V265) })]
[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.NIDActionArity1V266) })]
- [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.NIDActionArity2V161) })]
+ [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.NIDActionArity2V164) })]
[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.NIDActionArity2V161))]global::System.Action<WKNavigationActionPolicy, WKWebpagePreferences> decisionHandler)
+ public unsafe static void DecidePolicy (this IWKNavigationDelegate This, WKWebView webView, WKNavigationAction navigationAction, WKWebpagePreferences preferences, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V164))]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.SDActionArity2V161.Handler, decisionHandler);
+ block_decisionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V164.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.NIDActionArity2V161))]global::System.Action<WKNavigationActionPolicy, WKWebpagePreferences> decisionHandler)
+ public unsafe virtual void DecidePolicy (WKWebView webView, WKNavigationAction navigationAction, WKWebpagePreferences preferences, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V164))]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 0b41ade..00acb7a 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.NIDActionArity2V162) })]
+ [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.NIDActionArity2V165) })]
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.NIDActionArity2V162))]global::System.Action<NSObject, NSString> replyHandler);
+ unsafe void DidReceiveScriptMessage (WKUserContentController userContentController, WKScriptMessage message, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V165))]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.NIDActionArity2V162))]global::System.Action<NSObject, NSString> replyHandler)
+ public unsafe void DidReceiveScriptMessage (WKUserContentController userContentController, WKScriptMessage message, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V165))]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.SDActionArity2V162.Handler, replyHandler);
+ block_replyHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V165.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 4155044..63447ca 100644
--- a/old/dotnet/ios/generated-sources/WebKit/WKWebView.g.cs
+++ b/new/dotnet/ios/generated-sources/WebKit/WKWebView.g.cs
@@ -930,7 +930,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.NIDActionArity2V163))]global::System.Action<global::UIKit.UIImage, NSError> completionHandler)
+ public unsafe virtual void TakeSnapshot (WKSnapshotConfiguration? snapshotConfiguration, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V166))]global::System.Action<global::UIKit.UIImage, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -942,7 +942,7 @@ namespace WebKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V163.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V166.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/dotnet/maccatalyst/generated-sources/ObjCRuntime/Libraries.g.cs b/new/dotnet/maccatalyst/generated-sources/ObjCRuntime/Libraries.g.cs
index d29b980..fc89b1c 100644
--- a/old/dotnet/maccatalyst/generated-sources/ObjCRuntime/Libraries.g.cs
+++ b/new/dotnet/maccatalyst/generated-sources/ObjCRuntime/Libraries.g.cs
@@ -291,6 +291,9 @@ namespace ObjCRuntime {
static public class SensorKit {
static public readonly IntPtr Handle = Dlfcn._dlopen (Constants.SensorKitLibrary, 0);
}
+ static public class SharedWithYou {
+ static public readonly IntPtr Handle = Dlfcn._dlopen (Constants.SharedWithYouLibrary, 0);
+ }
static public class SharedWithYouCore {
static public readonly IntPtr Handle = Dlfcn._dlopen (Constants.SharedWithYouCoreLibrary, 0);
}
diff --git a/old/dotnet/maccatalyst/generated-sources/ObjCRuntime/Trampolines.g.cs b/new/dotnet/maccatalyst/generated-sources/ObjCRuntime/Trampolines.g.cs
index fbc58aa..bb01ea1 100644
--- a/old/dotnet/maccatalyst/generated-sources/ObjCRuntime/Trampolines.g.cs
+++ b/new/dotnet/maccatalyst/generated-sources/ObjCRuntime/Trampolines.g.cs
@@ -25728,28 +25728,28 @@ namespace ObjCRuntime {
} /* class NIDActionArity2V68 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSDictionary<NSString, NSObject>, NSError>))]
- internal delegate void DActionArity2V141 (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 SDActionArity2V141 {
- static internal readonly DActionArity2V141 Handler = Invoke;
+ static internal class SDActionArity2V144 {
+ static internal readonly DActionArity2V144 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V141))]
+ [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 ( Runtime.GetNSObject<global::Foundation.NSDictionary<NSString, NSObject>> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V141 */
- internal sealed class NIDActionArity2V141 : TrampolineBlockBase {
- DActionArity2V141 invoker;
+ } /* class SDActionArity2V144 */
+ internal sealed class NIDActionArity2V144 : TrampolineBlockBase {
+ DActionArity2V144 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V141 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V144 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V141> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V144> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -25758,7 +25758,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<NSDictionary<NSString, NSObject>, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V141 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V144 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSDictionary<NSString, NSObject> arg1, NSError arg2)
@@ -25767,31 +25767,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V141 */
+ } /* class NIDActionArity2V144 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSDictionary<NSString, NSObject>[], NSError>))]
- internal delegate void DActionArity2V142 (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 SDActionArity2V142 {
- static internal readonly DActionArity2V142 Handler = Invoke;
+ static internal class SDActionArity2V145 {
+ static internal readonly DActionArity2V145 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V142))]
+ [MonoPInvokeCallback (typeof (DActionArity2V145))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<NSDictionary<NSString, NSObject>[], NSError>) (descriptor->Target);
if (del != null)
del (CFArray.ArrayFromHandle<NSDictionary<NSString, NSObject>> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V142 */
- internal sealed class NIDActionArity2V142 : TrampolineBlockBase {
- DActionArity2V142 invoker;
+ } /* class SDActionArity2V145 */
+ internal sealed class NIDActionArity2V145 : TrampolineBlockBase {
+ DActionArity2V145 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V142 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V145 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V142> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V145> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -25800,7 +25800,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<NSDictionary<NSString, NSObject>[], NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V142 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V145 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSDictionary<NSString, NSObject>[] arg1, NSError arg2)
@@ -25813,7 +25813,7 @@ namespace ObjCRuntime {
if (nsa_arg1 != null)
nsa_arg1.Dispose ();
}
- } /* class NIDActionArity2V142 */
+ } /* class NIDActionArity2V145 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSDictionary<NSString, NSOperation>, NSError>))]
internal delegate void DActionArity2V36 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
@@ -25946,28 +25946,28 @@ namespace ObjCRuntime {
} /* class NIDActionArity2V69 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSObject, NSString>))]
- internal delegate void DActionArity2V147 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V150 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V147 {
- static internal readonly DActionArity2V147 Handler = Invoke;
+ static internal class SDActionArity2V150 {
+ static internal readonly DActionArity2V150 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V147))]
+ [MonoPInvokeCallback (typeof (DActionArity2V150))]
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 SDActionArity2V147 */
- internal sealed class NIDActionArity2V147 : TrampolineBlockBase {
- DActionArity2V147 invoker;
+ } /* class SDActionArity2V150 */
+ internal sealed class NIDActionArity2V150 : TrampolineBlockBase {
+ DActionArity2V150 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V147 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V150 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V147> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V150> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -25976,7 +25976,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<NSObject, NSString>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V147 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V150 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSObject arg1, NSString arg2)
@@ -25985,31 +25985,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V147 */
+ } /* class NIDActionArity2V150 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSSet<NSString>, NSError>))]
- internal delegate void DActionArity2V139 (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 SDActionArity2V139 {
- static internal readonly DActionArity2V139 Handler = Invoke;
+ static internal class SDActionArity2V142 {
+ static internal readonly DActionArity2V142 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V139))]
+ [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 ( Runtime.GetNSObject<global::Foundation.NSSet<NSString>> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V139 */
- internal sealed class NIDActionArity2V139 : TrampolineBlockBase {
- DActionArity2V139 invoker;
+ } /* class SDActionArity2V142 */
+ internal sealed class NIDActionArity2V142 : TrampolineBlockBase {
+ DActionArity2V142 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V139 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V142 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V139> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V142> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -26018,7 +26018,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<NSSet<NSString>, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V139 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V142 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSSet<NSString> arg1, NSError arg2)
@@ -26027,31 +26027,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V139 */
+ } /* class NIDActionArity2V142 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSSet<NSString>[], NSError>))]
- internal delegate void DActionArity2V140 (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 SDActionArity2V140 {
- static internal readonly DActionArity2V140 Handler = Invoke;
+ static internal class SDActionArity2V143 {
+ static internal readonly DActionArity2V143 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V140))]
+ [MonoPInvokeCallback (typeof (DActionArity2V143))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<NSSet<NSString>[], NSError>) (descriptor->Target);
if (del != null)
del (CFArray.ArrayFromHandle<NSSet<NSString>> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V140 */
- internal sealed class NIDActionArity2V140 : TrampolineBlockBase {
- DActionArity2V140 invoker;
+ } /* class SDActionArity2V143 */
+ internal sealed class NIDActionArity2V143 : TrampolineBlockBase {
+ DActionArity2V143 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V140 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V143 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V140> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V143> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -26060,7 +26060,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<NSSet<NSString>[], NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V140 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V143 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSSet<NSString>[] arg1, NSError arg2)
@@ -26073,31 +26073,31 @@ namespace ObjCRuntime {
if (nsa_arg1 != null)
nsa_arg1.Dispose ();
}
- } /* class NIDActionArity2V140 */
+ } /* class NIDActionArity2V143 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSString, NSError>))]
- internal delegate void DActionArity2V133 (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 SDActionArity2V133 {
- static internal readonly DActionArity2V133 Handler = Invoke;
+ static internal class SDActionArity2V136 {
+ static internal readonly DActionArity2V136 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V133))]
+ [MonoPInvokeCallback (typeof (DActionArity2V136))]
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 SDActionArity2V133 */
- internal sealed class NIDActionArity2V133 : TrampolineBlockBase {
- DActionArity2V133 invoker;
+ } /* class SDActionArity2V136 */
+ internal sealed class NIDActionArity2V136 : TrampolineBlockBase {
+ DActionArity2V136 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V133 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V136 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V133> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V136> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -26106,7 +26106,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 NIDActionArity2V136 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSString arg1, NSError arg2)
@@ -26115,31 +26115,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V133 */
+ } /* class NIDActionArity2V136 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSString, bool>))]
- internal delegate void DActionArity2V137 (IntPtr block, NativeHandle arg1, bool arg2);
+ internal delegate void DActionArity2V140 (IntPtr block, NativeHandle arg1, bool arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V137 {
- static internal readonly DActionArity2V137 Handler = Invoke;
+ static internal class SDActionArity2V140 {
+ static internal readonly DActionArity2V140 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V137))]
+ [MonoPInvokeCallback (typeof (DActionArity2V140))]
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 SDActionArity2V137 */
- internal sealed class NIDActionArity2V137 : TrampolineBlockBase {
- DActionArity2V137 invoker;
+ } /* class SDActionArity2V140 */
+ internal sealed class NIDActionArity2V140 : TrampolineBlockBase {
+ DActionArity2V140 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V137 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V140 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V137> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V140> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -26148,7 +26148,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<NSString, bool>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V137 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V140 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSString arg1, bool arg2)
@@ -26156,7 +26156,7 @@ namespace ObjCRuntime {
var arg1__handle__ = arg1.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2);
}
- } /* class NIDActionArity2V137 */
+ } /* class NIDActionArity2V140 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSUrl, NSError>))]
internal delegate void DActionArity2V55 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
@@ -26201,28 +26201,28 @@ namespace ObjCRuntime {
} /* class NIDActionArity2V55 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSUrl, global::UIKit.UIDocumentBrowserImportMode>))]
- internal delegate void DActionArity2V138 (IntPtr block, NativeHandle arg1, UIntPtr arg2);
+ internal delegate void DActionArity2V141 (IntPtr block, NativeHandle arg1, UIntPtr arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V138 {
- static internal readonly DActionArity2V138 Handler = Invoke;
+ static internal class SDActionArity2V141 {
+ static internal readonly DActionArity2V141 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V138))]
+ [MonoPInvokeCallback (typeof (DActionArity2V141))]
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 SDActionArity2V138 */
- internal sealed class NIDActionArity2V138 : TrampolineBlockBase {
- DActionArity2V138 invoker;
+ } /* class SDActionArity2V141 */
+ internal sealed class NIDActionArity2V141 : TrampolineBlockBase {
+ DActionArity2V141 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V138 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V141 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V138> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V141> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -26231,7 +26231,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<NSUrl, global::UIKit.UIDocumentBrowserImportMode>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V138 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V141 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSUrl arg1, global::UIKit.UIDocumentBrowserImportMode arg2)
@@ -26239,7 +26239,7 @@ namespace ObjCRuntime {
var arg1__handle__ = arg1.GetHandle ();
invoker (BlockPointer, arg1__handle__, (UIntPtr) (ulong) arg2);
}
- } /* class NIDActionArity2V138 */
+ } /* class NIDActionArity2V141 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSUrlSessionAuthChallengeDisposition, NSUrlCredential>))]
internal delegate void DActionArity2V7 (IntPtr block, IntPtr arg1, NativeHandle arg2);
@@ -28491,7 +28491,7 @@ namespace ObjCRuntime {
}
} /* class NIDActionArity2V116 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
- [UserDelegateType (typeof (global::System.Action<global::ShazamKit.SHMediaItem, NSError>))]
+ [UserDelegateType (typeof (global::System.Action<global::SharedWithYou.SWCollaborationHighlight, NSError>))]
internal delegate void DActionArity2V129 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
@@ -28503,9 +28503,9 @@ namespace ObjCRuntime {
[MonoPInvokeCallback (typeof (DActionArity2V129))]
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);
+ var del = (global::System.Action<global::SharedWithYou.SWCollaborationHighlight, NSError>) (descriptor->Target);
if (del != null)
- del ( Runtime.GetNSObject<ShazamKit.SHMediaItem> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
+ del ( Runtime.GetNSObject<SharedWithYou.SWCollaborationHighlight> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
} /* class SDActionArity2V129 */
internal sealed class NIDActionArity2V129 : TrampolineBlockBase {
@@ -28517,15 +28517,15 @@ namespace ObjCRuntime {
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static global::System.Action<global::ShazamKit.SHMediaItem, NSError>? Create (IntPtr block)
+ public unsafe static global::System.Action<global::SharedWithYou.SWCollaborationHighlight, NSError>? Create (IntPtr block)
{
if (block == IntPtr.Zero)
return null;
- var del = (global::System.Action<global::ShazamKit.SHMediaItem, NSError>) GetExistingManagedDelegate (block);
+ var del = (global::System.Action<global::SharedWithYou.SWCollaborationHighlight, NSError>) GetExistingManagedDelegate (block);
return del ?? new NIDActionArity2V129 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- unsafe void Invoke (global::ShazamKit.SHMediaItem arg1, NSError arg2)
+ unsafe void Invoke (global::SharedWithYou.SWCollaborationHighlight arg1, NSError arg2)
{
var arg1__handle__ = arg1.GetHandle ();
var arg2__handle__ = arg2.GetHandle ();
@@ -28533,7 +28533,7 @@ namespace ObjCRuntime {
}
} /* class NIDActionArity2V129 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
- [UserDelegateType (typeof (global::System.Action<global::ShazamKit.SHSignature, NSError>))]
+ [UserDelegateType (typeof (global::System.Action<global::SharedWithYou.SWHighlight, NSError>))]
internal delegate void DActionArity2V130 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
@@ -28545,9 +28545,9 @@ namespace ObjCRuntime {
[MonoPInvokeCallback (typeof (DActionArity2V130))]
static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
- var del = (global::System.Action<global::ShazamKit.SHSignature, NSError>) (descriptor->Target);
+ var del = (global::System.Action<global::SharedWithYou.SWHighlight, NSError>) (descriptor->Target);
if (del != null)
- del ( Runtime.GetNSObject<ShazamKit.SHSignature> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
+ del ( Runtime.GetNSObject<SharedWithYou.SWHighlight> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
} /* class SDActionArity2V130 */
internal sealed class NIDActionArity2V130 : TrampolineBlockBase {
@@ -28559,15 +28559,15 @@ namespace ObjCRuntime {
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static global::System.Action<global::ShazamKit.SHSignature, NSError>? Create (IntPtr block)
+ public unsafe static global::System.Action<global::SharedWithYou.SWHighlight, NSError>? Create (IntPtr block)
{
if (block == IntPtr.Zero)
return null;
- var del = (global::System.Action<global::ShazamKit.SHSignature, NSError>) GetExistingManagedDelegate (block);
+ var del = (global::System.Action<global::SharedWithYou.SWHighlight, NSError>) GetExistingManagedDelegate (block);
return del ?? new NIDActionArity2V130 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- unsafe void Invoke (global::ShazamKit.SHSignature arg1, NSError arg2)
+ unsafe void Invoke (global::SharedWithYou.SWHighlight arg1, NSError arg2)
{
var arg1__handle__ = arg1.GetHandle ();
var arg2__handle__ = arg2.GetHandle ();
@@ -28575,7 +28575,7 @@ namespace ObjCRuntime {
}
} /* class NIDActionArity2V130 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
- [UserDelegateType (typeof (global::System.Action<global::Speech.SFSpeechRecognitionResult, NSError>))]
+ [UserDelegateType (typeof (global::System.Action<global::SharedWithYouCore.SWSignedPersonIdentityProof, NSError>))]
internal delegate void DActionArity2V131 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
@@ -28587,9 +28587,9 @@ namespace ObjCRuntime {
[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);
+ var del = (global::System.Action<global::SharedWithYouCore.SWSignedPersonIdentityProof, NSError>) (descriptor->Target);
if (del != null)
- del ( Runtime.GetNSObject<Speech.SFSpeechRecognitionResult> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
+ del ( Runtime.GetNSObject<SharedWithYouCore.SWSignedPersonIdentityProof> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
} /* class SDActionArity2V131 */
internal sealed class NIDActionArity2V131 : TrampolineBlockBase {
@@ -28601,15 +28601,15 @@ namespace ObjCRuntime {
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static global::System.Action<global::Speech.SFSpeechRecognitionResult, NSError>? Create (IntPtr block)
+ public unsafe static global::System.Action<global::SharedWithYouCore.SWSignedPersonIdentityProof, NSError>? Create (IntPtr block)
{
if (block == IntPtr.Zero)
return null;
- var del = (global::System.Action<global::Speech.SFSpeechRecognitionResult, NSError>) GetExistingManagedDelegate (block);
+ var del = (global::System.Action<global::SharedWithYouCore.SWSignedPersonIdentityProof, NSError>) GetExistingManagedDelegate (block);
return del ?? new NIDActionArity2V131 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- unsafe void Invoke (global::Speech.SFSpeechRecognitionResult arg1, NSError arg2)
+ unsafe void Invoke (global::SharedWithYouCore.SWSignedPersonIdentityProof arg1, NSError arg2)
{
var arg1__handle__ = arg1.GetHandle ();
var arg2__handle__ = arg2.GetHandle ();
@@ -28617,8 +28617,8 @@ namespace ObjCRuntime {
}
} /* class NIDActionArity2V131 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
- [UserDelegateType (typeof (global::System.Action<global::StoreKit.SKCloudServiceCapability, NSError>))]
- internal delegate void DActionArity2V132 (IntPtr block, UIntPtr arg1, NativeHandle arg2);
+ [UserDelegateType (typeof (global::System.Action<global::ShazamKit.SHMediaItem, NSError>))]
+ internal delegate void DActionArity2V132 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
@@ -28627,11 +28627,11 @@ namespace ObjCRuntime {
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
[MonoPInvokeCallback (typeof (DActionArity2V132))]
- static unsafe void Invoke (IntPtr block, UIntPtr arg1, NativeHandle arg2) {
+ static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
- var del = (global::System.Action<global::StoreKit.SKCloudServiceCapability, NSError>) (descriptor->Target);
+ var del = (global::System.Action<global::ShazamKit.SHMediaItem, NSError>) (descriptor->Target);
if (del != null)
- del ((StoreKit.SKCloudServiceCapability) (ulong) arg1, Runtime.GetNSObject<NSError> (arg2)!);
+ del ( Runtime.GetNSObject<ShazamKit.SHMediaItem> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
} /* class SDActionArity2V132 */
internal sealed class NIDActionArity2V132 : TrampolineBlockBase {
@@ -28643,23 +28643,108 @@ namespace ObjCRuntime {
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static global::System.Action<global::StoreKit.SKCloudServiceCapability, NSError>? Create (IntPtr block)
+ public unsafe static global::System.Action<global::ShazamKit.SHMediaItem, NSError>? Create (IntPtr block)
{
if (block == IntPtr.Zero)
return null;
- var del = (global::System.Action<global::StoreKit.SKCloudServiceCapability, NSError>) GetExistingManagedDelegate (block);
+ var del = (global::System.Action<global::ShazamKit.SHMediaItem, NSError>) GetExistingManagedDelegate (block);
return del ?? new NIDActionArity2V132 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- unsafe void Invoke (global::StoreKit.SKCloudServiceCapability arg1, NSError arg2)
+ unsafe void Invoke (global::ShazamKit.SHMediaItem arg1, NSError arg2)
{
+ var arg1__handle__ = arg1.GetHandle ();
var arg2__handle__ = arg2.GetHandle ();
- invoker (BlockPointer, (UIntPtr) (ulong) arg1, arg2__handle__);
+ invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
} /* class NIDActionArity2V132 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
- [UserDelegateType (typeof (global::System.Action<global::StoreKit.SKProductStorePromotionVisibility, NSError>))]
- internal delegate void DActionArity2V135 (IntPtr block, IntPtr arg1, NativeHandle arg2);
+ [UserDelegateType (typeof (global::System.Action<global::ShazamKit.SHSignature, NSError>))]
+ internal delegate void DActionArity2V133 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ //
+ // This class bridges native block invocations that call into C#
+ //
+ static internal class SDActionArity2V133 {
+ static internal readonly DActionArity2V133 Handler = Invoke;
+ [Preserve (Conditional = true)]
+ [global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
+ [MonoPInvokeCallback (typeof (DActionArity2V133))]
+ static unsafe void Invoke (IntPtr block, NativeHandle arg1, NativeHandle arg2) {
+ var descriptor = (BlockLiteral *) block;
+ var del = (global::System.Action<global::ShazamKit.SHSignature, NSError>) (descriptor->Target);
+ if (del != null)
+ del ( Runtime.GetNSObject<ShazamKit.SHSignature> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
+ }
+ } /* class SDActionArity2V133 */
+ internal sealed class NIDActionArity2V133 : TrampolineBlockBase {
+ DActionArity2V133 invoker;
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public unsafe NIDActionArity2V133 (BlockLiteral *block) : base (block)
+ {
+ invoker = block->GetDelegateForBlock<DActionArity2V133> ();
+ }
+ [Preserve (Conditional=true)]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public unsafe static global::System.Action<global::ShazamKit.SHSignature, NSError>? Create (IntPtr block)
+ {
+ if (block == IntPtr.Zero)
+ return null;
+ var del = (global::System.Action<global::ShazamKit.SHSignature, NSError>) GetExistingManagedDelegate (block);
+ return del ?? new NIDActionArity2V133 ((BlockLiteral *) block).Invoke;
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ unsafe void Invoke (global::ShazamKit.SHSignature arg1, NSError arg2)
+ {
+ var arg1__handle__ = arg1.GetHandle ();
+ var arg2__handle__ = arg2.GetHandle ();
+ invoker (BlockPointer, arg1__handle__, arg2__handle__);
+ }
+ } /* class NIDActionArity2V133 */
+ [UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
+ [UserDelegateType (typeof (global::System.Action<global::Speech.SFSpeechRecognitionResult, NSError>))]
+ internal delegate void DActionArity2V134 (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;
+ [Preserve (Conditional = true)]
+ [global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
+ [MonoPInvokeCallback (typeof (DActionArity2V134))]
+ 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 SDActionArity2V134 */
+ internal sealed class NIDActionArity2V134 : TrampolineBlockBase {
+ DActionArity2V134 invoker;
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public unsafe NIDActionArity2V134 (BlockLiteral *block) : base (block)
+ {
+ invoker = block->GetDelegateForBlock<DActionArity2V134> ();
+ }
+ [Preserve (Conditional=true)]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public unsafe static global::System.Action<global::Speech.SFSpeechRecognitionResult, NSError>? Create (IntPtr block)
+ {
+ if (block == IntPtr.Zero)
+ return null;
+ var del = (global::System.Action<global::Speech.SFSpeechRecognitionResult, NSError>) GetExistingManagedDelegate (block);
+ return del ?? new NIDActionArity2V134 ((BlockLiteral *) block).Invoke;
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ unsafe void Invoke (global::Speech.SFSpeechRecognitionResult arg1, NSError arg2)
+ {
+ var arg1__handle__ = arg1.GetHandle ();
+ var arg2__handle__ = arg2.GetHandle ();
+ invoker (BlockPointer, arg1__handle__, arg2__handle__);
+ }
+ } /* class NIDActionArity2V134 */
+ [UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
+ [UserDelegateType (typeof (global::System.Action<global::StoreKit.SKCloudServiceCapability, NSError>))]
+ internal delegate void DActionArity2V135 (IntPtr block, UIntPtr arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
@@ -28668,11 +28753,11 @@ namespace ObjCRuntime {
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
[MonoPInvokeCallback (typeof (DActionArity2V135))]
- static unsafe void Invoke (IntPtr block, IntPtr arg1, NativeHandle arg2) {
+ static unsafe void Invoke (IntPtr block, UIntPtr arg1, NativeHandle arg2) {
var descriptor = (BlockLiteral *) block;
- var del = (global::System.Action<global::StoreKit.SKProductStorePromotionVisibility, NSError>) (descriptor->Target);
+ var del = (global::System.Action<global::StoreKit.SKCloudServiceCapability, NSError>) (descriptor->Target);
if (del != null)
- del ((StoreKit.SKProductStorePromotionVisibility) (long) arg1, Runtime.GetNSObject<NSError> (arg2)!);
+ del ((StoreKit.SKCloudServiceCapability) (ulong) arg1, Runtime.GetNSObject<NSError> (arg2)!);
}
} /* class SDActionArity2V135 */
internal sealed class NIDActionArity2V135 : TrampolineBlockBase {
@@ -28684,12 +28769,53 @@ namespace ObjCRuntime {
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public unsafe static global::System.Action<global::StoreKit.SKCloudServiceCapability, NSError>? Create (IntPtr block)
+ {
+ if (block == IntPtr.Zero)
+ return null;
+ var del = (global::System.Action<global::StoreKit.SKCloudServiceCapability, NSError>) GetExistingManagedDelegate (block);
+ return del ?? new NIDActionArity2V135 ((BlockLiteral *) block).Invoke;
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ unsafe void Invoke (global::StoreKit.SKCloudServiceCapability arg1, NSError arg2)
+ {
+ var arg2__handle__ = arg2.GetHandle ();
+ invoker (BlockPointer, (UIntPtr) (ulong) arg1, arg2__handle__);
+ }
+ } /* class NIDActionArity2V135 */
+ [UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
+ [UserDelegateType (typeof (global::System.Action<global::StoreKit.SKProductStorePromotionVisibility, NSError>))]
+ internal delegate void DActionArity2V138 (IntPtr block, IntPtr arg1, NativeHandle arg2);
+ //
+ // This class bridges native block invocations that call into C#
+ //
+ static internal class SDActionArity2V138 {
+ static internal readonly DActionArity2V138 Handler = Invoke;
+ [Preserve (Conditional = true)]
+ [global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
+ [MonoPInvokeCallback (typeof (DActionArity2V138))]
+ 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 SDActionArity2V138 */
+ internal sealed class NIDActionArity2V138 : TrampolineBlockBase {
+ DActionArity2V138 invoker;
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public unsafe NIDActionArity2V138 (BlockLiteral *block) : base (block)
+ {
+ invoker = block->GetDelegateForBlock<DActionArity2V138> ();
+ }
+ [Preserve (Conditional=true)]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
public unsafe static global::System.Action<global::StoreKit.SKProductStorePromotionVisibility, NSError>? Create (IntPtr block)
{
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 NIDActionArity2V138 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::StoreKit.SKProductStorePromotionVisibility arg1, NSError arg2)
@@ -28697,31 +28823,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, (IntPtr) (long) arg1, arg2__handle__);
}
- } /* class NIDActionArity2V135 */
+ } /* class NIDActionArity2V138 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::StoreKit.SKProduct[], NSError>))]
- internal delegate void DActionArity2V134 (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 SDActionArity2V134 {
- static internal readonly DActionArity2V134 Handler = Invoke;
+ static internal class SDActionArity2V137 {
+ static internal readonly DActionArity2V137 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V134))]
+ [MonoPInvokeCallback (typeof (DActionArity2V137))]
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 SDActionArity2V134 */
- internal sealed class NIDActionArity2V134 : TrampolineBlockBase {
- DActionArity2V134 invoker;
+ } /* class SDActionArity2V137 */
+ internal sealed class NIDActionArity2V137 : TrampolineBlockBase {
+ DActionArity2V137 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V134 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V137 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V134> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V137> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -28730,7 +28856,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 NIDActionArity2V137 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::StoreKit.SKProduct[] arg1, NSError arg2)
@@ -28743,7 +28869,7 @@ namespace ObjCRuntime {
if (nsa_arg1 != null)
nsa_arg1.Dispose ();
}
- } /* class NIDActionArity2V134 */
+ } /* class NIDActionArity2V137 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<bool, global::AVKit.AVAudioSessionRouteSelection>))]
internal delegate void DActionArity2V22 (IntPtr block, bool arg1, IntPtr arg2);
@@ -29209,28 +29335,28 @@ namespace ObjCRuntime {
} /* class NIDActionArity2V72 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::UIKit.NSTextLayoutManager, global::UIKit.NSTextLayoutFragment>))]
- internal delegate void DActionArity2V136 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V139 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V136 {
- static internal readonly DActionArity2V136 Handler = Invoke;
+ static internal class SDActionArity2V139 {
+ static internal readonly DActionArity2V139 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V136))]
+ [MonoPInvokeCallback (typeof (DActionArity2V139))]
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 SDActionArity2V136 */
- internal sealed class NIDActionArity2V136 : TrampolineBlockBase {
- DActionArity2V136 invoker;
+ } /* class SDActionArity2V139 */
+ internal sealed class NIDActionArity2V139 : TrampolineBlockBase {
+ DActionArity2V139 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V136 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V139 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V136> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V139> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -29239,7 +29365,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 NIDActionArity2V136 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V139 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::UIKit.NSTextLayoutManager arg1, global::UIKit.NSTextLayoutFragment arg2)
@@ -29248,31 +29374,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V136 */
+ } /* class NIDActionArity2V139 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::UIKit.UIImage, NSError>))]
- internal delegate void DActionArity2V148 (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 SDActionArity2V148 {
- static internal readonly DActionArity2V148 Handler = Invoke;
+ static internal class SDActionArity2V151 {
+ static internal readonly DActionArity2V151 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V148))]
+ [MonoPInvokeCallback (typeof (DActionArity2V151))]
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 SDActionArity2V148 */
- internal sealed class NIDActionArity2V148 : TrampolineBlockBase {
- DActionArity2V148 invoker;
+ } /* class SDActionArity2V151 */
+ internal sealed class NIDActionArity2V151 : TrampolineBlockBase {
+ DActionArity2V151 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V148 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V151 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V148> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V151> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -29281,7 +29407,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::UIKit.UIImage, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V148 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V151 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::UIKit.UIImage arg1, NSError arg2)
@@ -29290,31 +29416,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V148 */
+ } /* class NIDActionArity2V151 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::UIKit.UISpringLoadedInteraction, global::UIKit.IUISpringLoadedInteractionContext>))]
- internal delegate void DActionArity2V143 (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 SDActionArity2V143 {
- static internal readonly DActionArity2V143 Handler = Invoke;
+ static internal class SDActionArity2V146 {
+ static internal readonly DActionArity2V146 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V143))]
+ [MonoPInvokeCallback (typeof (DActionArity2V146))]
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 SDActionArity2V143 */
- internal sealed class NIDActionArity2V143 : TrampolineBlockBase {
- DActionArity2V143 invoker;
+ } /* class SDActionArity2V146 */
+ internal sealed class NIDActionArity2V146 : TrampolineBlockBase {
+ DActionArity2V146 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V143 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V146 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V143> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V146> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -29323,7 +29449,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 NIDActionArity2V143 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V146 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::UIKit.UISpringLoadedInteraction arg1, global::UIKit.IUISpringLoadedInteractionContext arg2)
@@ -29332,31 +29458,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V143 */
+ } /* class NIDActionArity2V146 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::UIKit.UITableViewRowAction, NSIndexPath>))]
- internal delegate void DActionArity2V144 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V147 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V144 {
- static internal readonly DActionArity2V144 Handler = Invoke;
+ static internal class SDActionArity2V147 {
+ static internal readonly DActionArity2V147 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V144))]
+ [MonoPInvokeCallback (typeof (DActionArity2V147))]
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 SDActionArity2V144 */
- internal sealed class NIDActionArity2V144 : TrampolineBlockBase {
- DActionArity2V144 invoker;
+ } /* class SDActionArity2V147 */
+ internal sealed class NIDActionArity2V147 : TrampolineBlockBase {
+ DActionArity2V147 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V144 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V147 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V144> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V147> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -29365,7 +29491,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::UIKit.UITableViewRowAction, NSIndexPath>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V144 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V147 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::UIKit.UITableViewRowAction arg1, NSIndexPath arg2)
@@ -29374,7 +29500,7 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V144 */
+ } /* class NIDActionArity2V147 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::UIKit.UIViewController, NSError>))]
internal delegate void DActionArity2V82 (IntPtr block, NativeHandle arg1, NativeHandle arg2);
@@ -29419,28 +29545,28 @@ namespace ObjCRuntime {
} /* class NIDActionArity2V82 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::WebKit.WKContentRuleList, NSError>))]
- internal delegate void DActionArity2V145 (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 SDActionArity2V145 {
- static internal readonly DActionArity2V145 Handler = Invoke;
+ static internal class SDActionArity2V148 {
+ static internal readonly DActionArity2V148 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V145))]
+ [MonoPInvokeCallback (typeof (DActionArity2V148))]
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 SDActionArity2V145 */
- internal sealed class NIDActionArity2V145 : TrampolineBlockBase {
- DActionArity2V145 invoker;
+ } /* class SDActionArity2V148 */
+ internal sealed class NIDActionArity2V148 : TrampolineBlockBase {
+ DActionArity2V148 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V145 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V148 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V145> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V148> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -29449,7 +29575,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::WebKit.WKContentRuleList, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V145 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V148 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::WebKit.WKContentRuleList arg1, NSError arg2)
@@ -29458,31 +29584,31 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V145 */
+ } /* class NIDActionArity2V148 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::WebKit.WKNavigationActionPolicy, global::WebKit.WKWebpagePreferences>))]
- internal delegate void DActionArity2V146 (IntPtr block, IntPtr arg1, NativeHandle arg2);
+ internal delegate void DActionArity2V149 (IntPtr block, IntPtr arg1, NativeHandle arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V146 {
- static internal readonly DActionArity2V146 Handler = Invoke;
+ static internal class SDActionArity2V149 {
+ static internal readonly DActionArity2V149 Handler = Invoke;
[Preserve (Conditional = true)]
[global::System.Diagnostics.CodeAnalysis.DynamicDependency ("Handler")]
- [MonoPInvokeCallback (typeof (DActionArity2V146))]
+ [MonoPInvokeCallback (typeof (DActionArity2V149))]
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 SDActionArity2V146 */
- internal sealed class NIDActionArity2V146 : TrampolineBlockBase {
- DActionArity2V146 invoker;
+ } /* class SDActionArity2V149 */
+ internal sealed class NIDActionArity2V149 : TrampolineBlockBase {
+ DActionArity2V149 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V146 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V149 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V146> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V149> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -29491,7 +29617,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 NIDActionArity2V146 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V149 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::WebKit.WKNavigationActionPolicy arg1, global::WebKit.WKWebpagePreferences arg2)
@@ -29499,7 +29625,7 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, (IntPtr) (long) arg1, arg2__handle__);
}
- } /* class NIDActionArity2V146 */
+ } /* class NIDActionArity2V149 */
[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/new/dotnet/maccatalyst/generated-sources/SharedWithYou/SWAttributionView.g.cs b/new/dotnet/maccatalyst/generated-sources/SharedWithYou/SWAttributionView.g.cs
new file mode 100644
index 0000000..30a9262
--- /dev/null
+++ b/new/dotnet/maccatalyst/generated-sources/SharedWithYou/SWAttributionView.g.cs
@@ -0,0 +1,392 @@
+//
+// 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 Metal;
+using CoreML;
+using AppKit;
+using MapKit;
+using Photos;
+using ModelIO;
+using Network;
+using SceneKit;
+using Contacts;
+using Security;
+using CloudKit;
+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 FileProvider;
+using CoreAnimation;
+using CoreFoundation;
+using NetworkExtension;
+using MetalPerformanceShadersGraph;
+#nullable enable
+#if !NET
+using NativeHandle = System.IntPtr;
+#endif
+namespace SharedWithYou {
+ [Register("SWAttributionView", true)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ public unsafe partial class SWAttributionView : global::UIKit.UIView {
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ static readonly NativeHandle class_ptr = Class.GetHandle ("SWAttributionView");
+ public override NativeHandle ClassHandle { get { return class_ptr; } }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ [Export ("init")]
+ public SWAttributionView () : base (NSObjectFlag.Empty)
+ {
+ 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");
+ }
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [DesignatedInitializer]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ [Export ("initWithCoder:")]
+ public SWAttributionView (NSCoder coder) : base (NSObjectFlag.Empty)
+ {
+ if (IsDirectBinding) {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("initWithCoder:"), coder.Handle), "initWithCoder:");
+ } else {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("initWithCoder:"), coder.Handle), "initWithCoder:");
+ }
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ protected SWAttributionView (NSObjectFlag t) : base (t)
+ {
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ protected internal SWAttributionView (NativeHandle handle) : base (handle)
+ {
+ }
+
+ [Export ("initWithFrame:")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ [DesignatedInitializer]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public SWAttributionView (CGRect frame)
+ : base (NSObjectFlag.Empty)
+ {
+ if (IsDirectBinding) {
+ InitializeHandle (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend_CGRect (this.Handle, Selector.GetHandle ("initWithFrame:"), frame), "initWithFrame:");
+ } else {
+ InitializeHandle (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper_CGRect (this.SuperHandle, Selector.GetHandle ("initWithFrame:"), frame), "initWithFrame:");
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ public virtual SWAttributionViewBackgroundStyle BackgroundStyle {
+ [Export ("backgroundStyle", ArgumentSemantic.UnsafeUnretained)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ get {
+ SWAttributionViewBackgroundStyle ret;
+ if (IsDirectBinding) {
+ ret = (SharedWithYou.SWAttributionViewBackgroundStyle) (long) global::ObjCRuntime.Messaging.IntPtr_objc_msgSend (this.Handle, Selector.GetHandle ("backgroundStyle"));
+ } else {
+ ret = (SharedWithYou.SWAttributionViewBackgroundStyle) (long) global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("backgroundStyle"));
+ }
+ return ret!;
+ }
+ [Export ("setBackgroundStyle:", ArgumentSemantic.UnsafeUnretained)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ set {
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("setBackgroundStyle:"), (IntPtr) (long) value);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("setBackgroundStyle:"), (IntPtr) (long) value);
+ }
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ public virtual SWAttributionViewDisplayContext DisplayContext {
+ [Export ("displayContext", ArgumentSemantic.UnsafeUnretained)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ get {
+ SWAttributionViewDisplayContext ret;
+ if (IsDirectBinding) {
+ ret = (SharedWithYou.SWAttributionViewDisplayContext) (long) global::ObjCRuntime.Messaging.IntPtr_objc_msgSend (this.Handle, Selector.GetHandle ("displayContext"));
+ } else {
+ ret = (SharedWithYou.SWAttributionViewDisplayContext) (long) global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("displayContext"));
+ }
+ return ret!;
+ }
+ [Export ("setDisplayContext:", ArgumentSemantic.UnsafeUnretained)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ set {
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("setDisplayContext:"), (IntPtr) (long) value);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("setDisplayContext:"), (IntPtr) (long) value);
+ }
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ public virtual SWHighlight? Highlight {
+ [Export ("highlight", ArgumentSemantic.Retain)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ get {
+ SWHighlight? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject<SWHighlight> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend (this.Handle, Selector.GetHandle ("highlight")))!;
+ } else {
+ ret = Runtime.GetNSObject<SWHighlight> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("highlight")))!;
+ }
+ return ret!;
+ }
+ [Export ("setHighlight:", ArgumentSemantic.Retain)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ set {
+ var value__handle__ = value.GetHandle ();
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("setHighlight:"), value__handle__);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_NativeHandle (this.SuperHandle, Selector.GetHandle ("setHighlight:"), value__handle__);
+ }
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ public virtual global::UIKit.UIMenu HighlightMenu {
+ [Export ("highlightMenu", ArgumentSemantic.Retain)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ get {
+ global::UIKit.UIMenu? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject<global::UIKit.UIMenu> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend (this.Handle, Selector.GetHandle ("highlightMenu")))!;
+ } else {
+ ret = Runtime.GetNSObject<global::UIKit.UIMenu> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("highlightMenu")))!;
+ }
+ return ret!;
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ public virtual SWAttributionViewHorizontalAlignment HorizontalAlignment {
+ [Export ("horizontalAlignment", ArgumentSemantic.UnsafeUnretained)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ get {
+ SWAttributionViewHorizontalAlignment ret;
+ if (IsDirectBinding) {
+ ret = (SharedWithYou.SWAttributionViewHorizontalAlignment) (long) global::ObjCRuntime.Messaging.IntPtr_objc_msgSend (this.Handle, Selector.GetHandle ("horizontalAlignment"));
+ } else {
+ ret = (SharedWithYou.SWAttributionViewHorizontalAlignment) (long) global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("horizontalAlignment"));
+ }
+ return ret!;
+ }
+ [Export ("setHorizontalAlignment:", ArgumentSemantic.UnsafeUnretained)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ set {
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("setHorizontalAlignment:"), (IntPtr) (long) value);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("setHorizontalAlignment:"), (IntPtr) (long) value);
+ }
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ public virtual string? MenuTitleForHideAction {
+ [Export ("menuTitleForHideAction", ArgumentSemantic.Retain)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ get {
+ if (IsDirectBinding) {
+ return CFString.FromHandle (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend (this.Handle, Selector.GetHandle ("menuTitleForHideAction")))!;
+ } else {
+ return CFString.FromHandle (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("menuTitleForHideAction")))!;
+ }
+ }
+ [Export ("setMenuTitleForHideAction:", ArgumentSemantic.Retain)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ set {
+ var nsvalue = CFString.CreateNative (value);
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("setMenuTitleForHideAction:"), nsvalue);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_NativeHandle (this.SuperHandle, Selector.GetHandle ("setMenuTitleForHideAction:"), nsvalue);
+ }
+ CFString.ReleaseNative (nsvalue);
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ public virtual nfloat PreferredMaxLayoutWidth {
+ [Export ("preferredMaxLayoutWidth")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ get {
+ if (IsDirectBinding) {
+ return global::ObjCRuntime.Messaging.nfloat_objc_msgSend (this.Handle, Selector.GetHandle ("preferredMaxLayoutWidth"));
+ } else {
+ return global::ObjCRuntime.Messaging.nfloat_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("preferredMaxLayoutWidth"));
+ }
+ }
+ [Export ("setPreferredMaxLayoutWidth:")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ set {
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_nfloat (this.Handle, Selector.GetHandle ("setPreferredMaxLayoutWidth:"), value);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_nfloat (this.SuperHandle, Selector.GetHandle ("setPreferredMaxLayoutWidth:"), value);
+ }
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ public virtual global::UIKit.UIMenu? SupplementalMenu {
+ [Export ("supplementalMenu", ArgumentSemantic.Retain)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ get {
+ global::UIKit.UIMenu? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject<global::UIKit.UIMenu> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend (this.Handle, Selector.GetHandle ("supplementalMenu")))!;
+ } else {
+ ret = Runtime.GetNSObject<global::UIKit.UIMenu> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("supplementalMenu")))!;
+ }
+ return ret!;
+ }
+ [Export ("setSupplementalMenu:", ArgumentSemantic.Retain)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ set {
+ var value__handle__ = value.GetHandle ();
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("setSupplementalMenu:"), value__handle__);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_NativeHandle (this.SuperHandle, Selector.GetHandle ("setSupplementalMenu:"), value__handle__);
+ }
+ }
+ }
+ public partial class SWAttributionViewAppearance : global::UIKit.UIView.UIViewAppearance {
+ protected internal SWAttributionViewAppearance (IntPtr handle) : base (handle) {}
+ }
+ public static new SWAttributionViewAppearance Appearance {
+ get { return new SWAttributionViewAppearance (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend (class_ptr, ObjCRuntime.Selector.GetHandle ("appearance"))); }
+ }
+ public static new SWAttributionViewAppearance GetAppearance<T> () where T: SWAttributionView {
+ return new SWAttributionViewAppearance (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend (Class.GetHandle (typeof (T)), ObjCRuntime.Selector.GetHandle ("appearance")));
+ }
+ public static new SWAttributionViewAppearance AppearanceWhenContainedIn (params Type [] containers)
+ {
+ return new SWAttributionViewAppearance (UIAppearance.GetAppearance (class_ptr, containers));
+ }
+ public static new SWAttributionViewAppearance GetAppearance (UITraitCollection traits) {
+ return new SWAttributionViewAppearance (UIAppearance.GetAppearance (class_ptr, traits));
+ }
+ public static new SWAttributionViewAppearance GetAppearance (UITraitCollection traits, params Type [] containers) {
+ return new SWAttributionViewAppearance (UIAppearance.GetAppearance (class_ptr, traits, containers));
+ }
+ public static new SWAttributionViewAppearance GetAppearance<T> (UITraitCollection traits) where T: SWAttributionView {
+ return new SWAttributionViewAppearance (UIAppearance.GetAppearance (Class.GetHandle (typeof (T)), traits));
+ }
+ public static new SWAttributionViewAppearance GetAppearance<T> (UITraitCollection traits, params Type [] containers) where T: SWAttributionView{
+ return new SWAttributionViewAppearance (UIAppearance.GetAppearance (Class.GetHandle (typeof (T)), containers));
+ }
+ } /* class SWAttributionView */
+}
diff --git a/new/dotnet/maccatalyst/generated-sources/SharedWithYou/SWAttributionViewBackgroundStyle.g.cs b/new/dotnet/maccatalyst/generated-sources/SharedWithYou/SWAttributionViewBackgroundStyle.g.cs
new file mode 100644
index 0000000..067371f
--- /dev/null
+++ b/new/dotnet/maccatalyst/generated-sources/SharedWithYou/SWAttributionViewBackgroundStyle.g.cs
@@ -0,0 +1,62 @@
+//
+// 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 Metal;
+using CoreML;
+using AppKit;
+using MapKit;
+using Photos;
+using ModelIO;
+using Network;
+using SceneKit;
+using Contacts;
+using Security;
+using CloudKit;
+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 FileProvider;
+using CoreAnimation;
+using CoreFoundation;
+using NetworkExtension;
+using MetalPerformanceShadersGraph;
+#nullable enable
+#if !NET
+using NativeHandle = System.IntPtr;
+#endif
+namespace SharedWithYou {
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ [Native]
+ public enum SWAttributionViewBackgroundStyle : long {
+ Default = 0,
+ Color = 1,
+ Material = 2,
+ }
+}
diff --git a/new/dotnet/maccatalyst/generated-sources/SharedWithYou/SWAttributionViewDisplayContext.g.cs b/new/dotnet/maccatalyst/generated-sources/SharedWithYou/SWAttributionViewDisplayContext.g.cs
new file mode 100644
index 0000000..d3691ed
--- /dev/null
+++ b/new/dotnet/maccatalyst/generated-sources/SharedWithYou/SWAttributionViewDisplayContext.g.cs
@@ -0,0 +1,61 @@
+//
+// 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 Metal;
+using CoreML;
+using AppKit;
+using MapKit;
+using Photos;
+using ModelIO;
+using Network;
+using SceneKit;
+using Contacts;
+using Security;
+using CloudKit;
+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 FileProvider;
+using CoreAnimation;
+using CoreFoundation;
+using NetworkExtension;
+using MetalPerformanceShadersGraph;
+#nullable enable
+#if !NET
+using NativeHandle = System.IntPtr;
+#endif
+namespace SharedWithYou {
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ [Native]
+ public enum SWAttributionViewDisplayContext : long {
+ Summary = 0,
+ Detail = 1,
+ }
+}
diff --git a/new/dotnet/maccatalyst/generated-sources/SharedWithYou/SWAttributionViewHorizontalAlignment.g.cs b/new/dotnet/maccatalyst/generated-sources/SharedWithYou/SWAttributionViewHorizontalAlignment.g.cs
new file mode 100644
index 0000000..d15eead
--- /dev/null
+++ b/new/dotnet/maccatalyst/generated-sources/SharedWithYou/SWAttributionViewHorizontalAlignment.g.cs
@@ -0,0 +1,63 @@
+//
+// 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 Metal;
+using CoreML;
+using AppKit;
+using MapKit;
+using Photos;
+using ModelIO;
+using Network;
+using SceneKit;
+using Contacts;
+using Security;
+using CloudKit;
+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 FileProvider;
+using CoreAnimation;
+using CoreFoundation;
+using NetworkExtension;
+using MetalPerformanceShadersGraph;
+#nullable enable
+#if !NET
+using NativeHandle = System.IntPtr;
+#endif
+namespace SharedWithYou {
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ [Native]
+ public enum SWAttributionViewHorizontalAlignment : long {
+ Default = 0,
+ Leading = 1,
+ Center = 2,
+ Trailing = 3,
+ }
+}
diff --git a/new/dotnet/maccatalyst/generated-sources/SharedWithYou/SWCollaborationHighlight.g.cs b/new/dotnet/maccatalyst/generated-sources/SharedWithYou/SWCollaborationHighlight.g.cs
new file mode 100644
index 0000000..9539279
--- /dev/null
+++ b/new/dotnet/maccatalyst/generated-sources/SharedWithYou/SWCollaborationHighlight.g.cs
@@ -0,0 +1,214 @@
+//
+// 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 Metal;
+using CoreML;
+using AppKit;
+using MapKit;
+using Photos;
+using ModelIO;
+using Network;
+using SceneKit;
+using Contacts;
+using Security;
+using CloudKit;
+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 FileProvider;
+using CoreAnimation;
+using CoreFoundation;
+using NetworkExtension;
+using MetalPerformanceShadersGraph;
+#nullable enable
+#if !NET
+using NativeHandle = System.IntPtr;
+#endif
+namespace SharedWithYou {
+ [Register("SWCollaborationHighlight", true)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ public unsafe partial class SWCollaborationHighlight : SWHighlight, INSCoding, INSCopying, INSSecureCoding {
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ static readonly NativeHandle class_ptr = Class.GetHandle ("SWCollaborationHighlight");
+ public override NativeHandle ClassHandle { get { return class_ptr; } }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ [Export ("init")]
+ public SWCollaborationHighlight () : base (NSObjectFlag.Empty)
+ {
+ 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");
+ }
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [DesignatedInitializer]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ [Export ("initWithCoder:")]
+ public SWCollaborationHighlight (NSCoder coder) : base (NSObjectFlag.Empty)
+ {
+ if (IsDirectBinding) {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("initWithCoder:"), coder.Handle), "initWithCoder:");
+ } else {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("initWithCoder:"), coder.Handle), "initWithCoder:");
+ }
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ protected SWCollaborationHighlight (NSObjectFlag t) : base (t)
+ {
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ protected internal SWCollaborationHighlight (NativeHandle handle) : base (handle)
+ {
+ }
+
+ [Export ("copyWithZone:")]
+ [return: ReleaseAttribute ()]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public new virtual NSObject Copy (NSZone? zone)
+ {
+ var zone__handle__ = zone.GetHandle ();
+ NSObject? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("copyWithZone:"), zone__handle__))!;
+ } else {
+ ret = Runtime.GetNSObject (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper_NativeHandle (this.SuperHandle, Selector.GetHandle ("copyWithZone:"), zone__handle__))!;
+ }
+ if (ret != null)
+ global::ObjCRuntime.Messaging.void_objc_msgSend (ret.Handle, Selector.GetHandle ("release"));
+ return ret!;
+ }
+ [Export ("encodeWithCoder:")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public new virtual void EncodeTo (NSCoder encoder)
+ {
+ var encoder__handle__ = encoder!.GetNonNullHandle (nameof (encoder));
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("encodeWithCoder:"), encoder__handle__);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_NativeHandle (this.SuperHandle, Selector.GetHandle ("encodeWithCoder:"), encoder__handle__);
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ public virtual string CollaborationIdentifier {
+ [Export ("collaborationIdentifier")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ get {
+ if (IsDirectBinding) {
+ return CFString.FromHandle (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend (this.Handle, Selector.GetHandle ("collaborationIdentifier")))!;
+ } else {
+ return CFString.FromHandle (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("collaborationIdentifier")))!;
+ }
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ public virtual global::UniformTypeIdentifiers.UTType ContentType {
+ [Export ("contentType", ArgumentSemantic.Copy)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ get {
+ global::UniformTypeIdentifiers.UTType? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject<global::UniformTypeIdentifiers.UTType> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend (this.Handle, Selector.GetHandle ("contentType")))!;
+ } else {
+ ret = Runtime.GetNSObject<global::UniformTypeIdentifiers.UTType> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("contentType")))!;
+ }
+ return ret!;
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ public virtual NSDate CreationDate {
+ [Export ("creationDate", ArgumentSemantic.Copy)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ get {
+ NSDate? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject<NSDate> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend (this.Handle, Selector.GetHandle ("creationDate")))!;
+ } else {
+ ret = Runtime.GetNSObject<NSDate> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("creationDate")))!;
+ }
+ return ret!;
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ public virtual string? Title {
+ [Export ("title")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ get {
+ if (IsDirectBinding) {
+ return CFString.FromHandle (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend (this.Handle, Selector.GetHandle ("title")))!;
+ } else {
+ return CFString.FromHandle (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("title")))!;
+ }
+ }
+ }
+ } /* class SWCollaborationHighlight */
+}
diff --git a/new/dotnet/maccatalyst/generated-sources/SharedWithYou/SWCollaborationView.g.cs b/new/dotnet/maccatalyst/generated-sources/SharedWithYou/SWCollaborationView.g.cs
new file mode 100644
index 0000000..8dd43e0
--- /dev/null
+++ b/new/dotnet/maccatalyst/generated-sources/SharedWithYou/SWCollaborationView.g.cs
@@ -0,0 +1,582 @@
+//
+// 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 Metal;
+using CoreML;
+using AppKit;
+using MapKit;
+using Photos;
+using ModelIO;
+using Network;
+using SceneKit;
+using Contacts;
+using Security;
+using CloudKit;
+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 FileProvider;
+using CoreAnimation;
+using CoreFoundation;
+using NetworkExtension;
+using MetalPerformanceShadersGraph;
+#nullable enable
+#if !NET
+using NativeHandle = System.IntPtr;
+#endif
+namespace SharedWithYou {
+ [Register("SWCollaborationView", true)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ public unsafe partial class SWCollaborationView : global::UIKit.UIView {
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ static readonly NativeHandle class_ptr = Class.GetHandle ("SWCollaborationView");
+ public override NativeHandle ClassHandle { get { return class_ptr; } }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ [Export ("init")]
+ public SWCollaborationView () : base (NSObjectFlag.Empty)
+ {
+ 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");
+ }
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [DesignatedInitializer]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ [Export ("initWithCoder:")]
+ public SWCollaborationView (NSCoder coder) : base (NSObjectFlag.Empty)
+ {
+ if (IsDirectBinding) {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("initWithCoder:"), coder.Handle), "initWithCoder:");
+ } else {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("initWithCoder:"), coder.Handle), "initWithCoder:");
+ }
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ protected SWCollaborationView (NSObjectFlag t) : base (t)
+ {
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ protected internal SWCollaborationView (NativeHandle handle) : base (handle)
+ {
+ }
+
+ [Export ("initWithFrame:")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [DesignatedInitializer]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public SWCollaborationView (CGRect frame)
+ : base (NSObjectFlag.Empty)
+ {
+ if (IsDirectBinding) {
+ InitializeHandle (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend_CGRect (this.Handle, Selector.GetHandle ("initWithFrame:"), frame), "initWithFrame:");
+ } else {
+ InitializeHandle (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper_CGRect (this.SuperHandle, Selector.GetHandle ("initWithFrame:"), frame), "initWithFrame:");
+ }
+ }
+ [Export ("initWithItemProvider:")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public SWCollaborationView (NSItemProvider itemProvider)
+ : base (NSObjectFlag.Empty)
+ {
+ var itemProvider__handle__ = itemProvider!.GetNonNullHandle (nameof (itemProvider));
+ if (IsDirectBinding) {
+ InitializeHandle (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("initWithItemProvider:"), itemProvider__handle__), "initWithItemProvider:");
+ } else {
+ InitializeHandle (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper_NativeHandle (this.SuperHandle, Selector.GetHandle ("initWithItemProvider:"), itemProvider__handle__), "initWithItemProvider:");
+ }
+ }
+ [Export ("dismissPopover:")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public unsafe virtual void DismissPopover ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDAction))]global::System.Action? callback)
+ {
+ BlockLiteral *block_ptr_callback;
+ BlockLiteral block_callback;
+ if (callback is null){
+ block_ptr_callback = null;
+ } else {
+ block_callback = new BlockLiteral ();
+ block_ptr_callback = &block_callback;
+ block_callback.SetupBlockUnsafe (Trampolines.SDAction.Handler, callback);
+ }
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("dismissPopover:"), (IntPtr) block_ptr_callback);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_NativeHandle (this.SuperHandle, Selector.GetHandle ("dismissPopover:"), (IntPtr) block_ptr_callback);
+ }
+ if (block_ptr_callback != null)
+ block_ptr_callback->CleanupBlock ();
+ }
+ [Export ("setContentView:")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual void SetContentView (global::UIKit.UIView detailViewListContentView)
+ {
+ var detailViewListContentView__handle__ = detailViewListContentView!.GetNonNullHandle (nameof (detailViewListContentView));
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("setContentView:"), detailViewListContentView__handle__);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_NativeHandle (this.SuperHandle, Selector.GetHandle ("setContentView:"), detailViewListContentView__handle__);
+ }
+ }
+ [Export ("setShowManageButton:")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual void SetShowManageButton (bool showManageButton)
+ {
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_bool (this.Handle, Selector.GetHandle ("setShowManageButton:"), showManageButton);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_bool (this.SuperHandle, Selector.GetHandle ("setShowManageButton:"), showManageButton);
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ public virtual nuint ActiveParticipantCount {
+ [Export ("activeParticipantCount")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ get {
+ if (IsDirectBinding) {
+ return global::ObjCRuntime.Messaging.UIntPtr_objc_msgSend (this.Handle, Selector.GetHandle ("activeParticipantCount"));
+ } else {
+ return global::ObjCRuntime.Messaging.UIntPtr_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("activeParticipantCount"));
+ }
+ }
+ [Export ("setActiveParticipantCount:")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ set {
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_UIntPtr (this.Handle, Selector.GetHandle ("setActiveParticipantCount:"), value);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_UIntPtr (this.SuperHandle, Selector.GetHandle ("setActiveParticipantCount:"), value);
+ }
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("macos")]
+ [UnsupportedOSPlatform ("tvos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ public global::UIKit.IUICloudSharingControllerDelegate? CloudSharingControllerDelegate {
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ get {
+ return (WeakCloudSharingControllerDelegate as global::UIKit.IUICloudSharingControllerDelegate)!;
+ }
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ set {
+ var rvalue = value as NSObject;
+ if (!(value is null) && rvalue is null)
+ throw new ArgumentException ("The object passed of type " + value.GetType () + " does not derive from NSObject");
+ WeakCloudSharingControllerDelegate = rvalue;
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ public global::UIKit.IUICloudSharingControllerDelegate? CloudSharingDelegate {
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ get {
+ return (WeakCloudSharingDelegate as global::UIKit.IUICloudSharingControllerDelegate)!;
+ }
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ set {
+ var rvalue = value as NSObject;
+ if (!(value is null) && rvalue is null)
+ throw new ArgumentException ("The object passed of type " + value.GetType () + " does not derive from NSObject");
+ WeakCloudSharingDelegate = rvalue;
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ public ISWCollaborationViewDelegate? Delegate {
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ get {
+ return (WeakDelegate as ISWCollaborationViewDelegate)!;
+ }
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ set {
+ var rvalue = value as NSObject;
+ if (!(value is null) && rvalue is null)
+ throw new ArgumentException ("The object passed of type " + value.GetType () + " does not derive from NSObject");
+ WeakDelegate = rvalue;
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ public virtual global::UIKit.UIImage HeaderImage {
+ [Export ("headerImage", ArgumentSemantic.Retain)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ get {
+ global::UIKit.UIImage? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject<global::UIKit.UIImage> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend (this.Handle, Selector.GetHandle ("headerImage")))!;
+ } else {
+ ret = Runtime.GetNSObject<global::UIKit.UIImage> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("headerImage")))!;
+ }
+ return ret!;
+ }
+ [Export ("setHeaderImage:", ArgumentSemantic.Retain)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ set {
+ var value__handle__ = value!.GetNonNullHandle (nameof (value));
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("setHeaderImage:"), value__handle__);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_NativeHandle (this.SuperHandle, Selector.GetHandle ("setHeaderImage:"), value__handle__);
+ }
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ public virtual string HeaderSubtitle {
+ [Export ("headerSubtitle")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ get {
+ if (IsDirectBinding) {
+ return CFString.FromHandle (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend (this.Handle, Selector.GetHandle ("headerSubtitle")))!;
+ } else {
+ return CFString.FromHandle (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("headerSubtitle")))!;
+ }
+ }
+ [Export ("setHeaderSubtitle:")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ set {
+ if (value is null)
+ ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (value));
+ var nsvalue = CFString.CreateNative (value);
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("setHeaderSubtitle:"), nsvalue);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_NativeHandle (this.SuperHandle, Selector.GetHandle ("setHeaderSubtitle:"), nsvalue);
+ }
+ CFString.ReleaseNative (nsvalue);
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ public virtual string HeaderTitle {
+ [Export ("headerTitle")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ get {
+ if (IsDirectBinding) {
+ return CFString.FromHandle (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend (this.Handle, Selector.GetHandle ("headerTitle")))!;
+ } else {
+ return CFString.FromHandle (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("headerTitle")))!;
+ }
+ }
+ [Export ("setHeaderTitle:")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ set {
+ if (value is null)
+ ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (value));
+ var nsvalue = CFString.CreateNative (value);
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("setHeaderTitle:"), nsvalue);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_NativeHandle (this.SuperHandle, Selector.GetHandle ("setHeaderTitle:"), nsvalue);
+ }
+ CFString.ReleaseNative (nsvalue);
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ public virtual string ManageButtonTitle {
+ [Export ("manageButtonTitle")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ get {
+ if (IsDirectBinding) {
+ return CFString.FromHandle (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend (this.Handle, Selector.GetHandle ("manageButtonTitle")))!;
+ } else {
+ return CFString.FromHandle (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("manageButtonTitle")))!;
+ }
+ }
+ [Export ("setManageButtonTitle:")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ set {
+ if (value is null)
+ ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (value));
+ var nsvalue = CFString.CreateNative (value);
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("setManageButtonTitle:"), nsvalue);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_NativeHandle (this.SuperHandle, Selector.GetHandle ("setManageButtonTitle:"), nsvalue);
+ }
+ CFString.ReleaseNative (nsvalue);
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ object? __mt_WeakCloudSharingControllerDelegate_var;
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("macos")]
+ [UnsupportedOSPlatform ("tvos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ public virtual NSObject? WeakCloudSharingControllerDelegate {
+ [Export ("cloudSharingControllerDelegate", ArgumentSemantic.Weak)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ get {
+ NSObject? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend (this.Handle, Selector.GetHandle ("cloudSharingControllerDelegate")))!;
+ } else {
+ ret = Runtime.GetNSObject (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("cloudSharingControllerDelegate")))!;
+ }
+ MarkDirty ();
+ __mt_WeakCloudSharingControllerDelegate_var = ret;
+ return ret!;
+ }
+ [Export ("setCloudSharingControllerDelegate:", ArgumentSemantic.Weak)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ set {
+ var value__handle__ = value.GetHandle ();
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("setCloudSharingControllerDelegate:"), value__handle__);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_NativeHandle (this.SuperHandle, Selector.GetHandle ("setCloudSharingControllerDelegate:"), value__handle__);
+ }
+ MarkDirty ();
+ __mt_WeakCloudSharingControllerDelegate_var = value;
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ object? __mt_WeakCloudSharingDelegate_var;
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ public virtual NSObject? WeakCloudSharingDelegate {
+ [Export ("cloudSharingDelegate", ArgumentSemantic.Weak)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ get {
+ NSObject? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend (this.Handle, Selector.GetHandle ("cloudSharingDelegate")))!;
+ } else {
+ ret = Runtime.GetNSObject (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("cloudSharingDelegate")))!;
+ }
+ MarkDirty ();
+ __mt_WeakCloudSharingDelegate_var = ret;
+ return ret!;
+ }
+ [Export ("setCloudSharingDelegate:", ArgumentSemantic.Weak)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ set {
+ var value__handle__ = value.GetHandle ();
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("setCloudSharingDelegate:"), value__handle__);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_NativeHandle (this.SuperHandle, Selector.GetHandle ("setCloudSharingDelegate:"), value__handle__);
+ }
+ MarkDirty ();
+ __mt_WeakCloudSharingDelegate_var = value;
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ object? __mt_WeakDelegate_var;
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ public virtual NSObject? WeakDelegate {
+ [Export ("delegate", ArgumentSemantic.Weak)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ get {
+ NSObject? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend (this.Handle, Selector.GetHandle ("delegate")))!;
+ } else {
+ ret = Runtime.GetNSObject (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("delegate")))!;
+ }
+ MarkDirty ();
+ __mt_WeakDelegate_var = ret;
+ return ret!;
+ }
+ [Export ("setDelegate:", ArgumentSemantic.Weak)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ set {
+ var value__handle__ = value.GetHandle ();
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("setDelegate:"), value__handle__);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_NativeHandle (this.SuperHandle, Selector.GetHandle ("setDelegate:"), value__handle__);
+ }
+ MarkDirty ();
+ __mt_WeakDelegate_var = value;
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ protected override void Dispose (bool disposing)
+ {
+ base.Dispose (disposing);
+ if (Handle == IntPtr.Zero) {
+ __mt_WeakCloudSharingControllerDelegate_var = null;
+ __mt_WeakCloudSharingDelegate_var = null;
+ __mt_WeakDelegate_var = null;
+ }
+ }
+ public partial class SWCollaborationViewAppearance : global::UIKit.UIView.UIViewAppearance {
+ protected internal SWCollaborationViewAppearance (IntPtr handle) : base (handle) {}
+ }
+ public static new SWCollaborationViewAppearance Appearance {
+ get { return new SWCollaborationViewAppearance (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend (class_ptr, ObjCRuntime.Selector.GetHandle ("appearance"))); }
+ }
+ public static new SWCollaborationViewAppearance GetAppearance<T> () where T: SWCollaborationView {
+ return new SWCollaborationViewAppearance (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend (Class.GetHandle (typeof (T)), ObjCRuntime.Selector.GetHandle ("appearance")));
+ }
+ public static new SWCollaborationViewAppearance AppearanceWhenContainedIn (params Type [] containers)
+ {
+ return new SWCollaborationViewAppearance (UIAppearance.GetAppearance (class_ptr, containers));
+ }
+ public static new SWCollaborationViewAppearance GetAppearance (UITraitCollection traits) {
+ return new SWCollaborationViewAppearance (UIAppearance.GetAppearance (class_ptr, traits));
+ }
+ public static new SWCollaborationViewAppearance GetAppearance (UITraitCollection traits, params Type [] containers) {
+ return new SWCollaborationViewAppearance (UIAppearance.GetAppearance (class_ptr, traits, containers));
+ }
+ public static new SWCollaborationViewAppearance GetAppearance<T> (UITraitCollection traits) where T: SWCollaborationView {
+ return new SWCollaborationViewAppearance (UIAppearance.GetAppearance (Class.GetHandle (typeof (T)), traits));
+ }
+ public static new SWCollaborationViewAppearance GetAppearance<T> (UITraitCollection traits, params Type [] containers) where T: SWCollaborationView{
+ return new SWCollaborationViewAppearance (UIAppearance.GetAppearance (Class.GetHandle (typeof (T)), containers));
+ }
+ } /* class SWCollaborationView */
+}
diff --git a/new/dotnet/maccatalyst/generated-sources/SharedWithYou/SWCollaborationViewDelegate.g.cs b/new/dotnet/maccatalyst/generated-sources/SharedWithYou/SWCollaborationViewDelegate.g.cs
new file mode 100644
index 0000000..57a70ad
--- /dev/null
+++ b/new/dotnet/maccatalyst/generated-sources/SharedWithYou/SWCollaborationViewDelegate.g.cs
@@ -0,0 +1,166 @@
+//
+// 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 Metal;
+using CoreML;
+using AppKit;
+using MapKit;
+using Photos;
+using ModelIO;
+using Network;
+using SceneKit;
+using Contacts;
+using Security;
+using CloudKit;
+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 FileProvider;
+using CoreAnimation;
+using CoreFoundation;
+using NetworkExtension;
+using MetalPerformanceShadersGraph;
+#nullable enable
+#if !NET
+using NativeHandle = System.IntPtr;
+#endif
+namespace SharedWithYou {
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [Protocol (Name = "SWCollaborationViewDelegate", WrapperType = typeof (SWCollaborationViewDelegateWrapper))]
+ [ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "ShouldPresentPopover", Selector = "collaborationViewShouldPresentPopover:", ReturnType = typeof (bool), ParameterType = new Type [] { typeof (SharedWithYou.SWCollaborationView) }, ParameterByRef = new bool [] { false })]
+ [ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "WillPresentPopover", Selector = "collaborationViewWillPresentPopover:", ParameterType = new Type [] { typeof (SharedWithYou.SWCollaborationView) }, ParameterByRef = new bool [] { false })]
+ [ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "DidDismissPopover", Selector = "collaborationViewDidDismissPopover:", ParameterType = new Type [] { typeof (SharedWithYou.SWCollaborationView) }, ParameterByRef = new bool [] { false })]
+ public partial interface ISWCollaborationViewDelegate : INativeObject, IDisposable
+ {
+ }
+ public static partial class SWCollaborationViewDelegate_Extensions {
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public static bool ShouldPresentPopover (this ISWCollaborationViewDelegate This, SWCollaborationView collaborationView)
+ {
+ var collaborationView__handle__ = collaborationView!.GetNonNullHandle (nameof (collaborationView));
+ return global::ObjCRuntime.Messaging.bool_objc_msgSend_NativeHandle (This.Handle, Selector.GetHandle ("collaborationViewShouldPresentPopover:"), collaborationView__handle__);
+ }
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public static void WillPresentPopover (this ISWCollaborationViewDelegate This, SWCollaborationView collaborationView)
+ {
+ var collaborationView__handle__ = collaborationView!.GetNonNullHandle (nameof (collaborationView));
+ global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (This.Handle, Selector.GetHandle ("collaborationViewWillPresentPopover:"), collaborationView__handle__);
+ }
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public static void DidDismissPopover (this ISWCollaborationViewDelegate This, SWCollaborationView collaborationView)
+ {
+ var collaborationView__handle__ = collaborationView!.GetNonNullHandle (nameof (collaborationView));
+ global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (This.Handle, Selector.GetHandle ("collaborationViewDidDismissPopover:"), collaborationView__handle__);
+ }
+ }
+ internal sealed class SWCollaborationViewDelegateWrapper : BaseWrapper, ISWCollaborationViewDelegate {
+ [Preserve (Conditional = true)]
+ public SWCollaborationViewDelegateWrapper (NativeHandle handle, bool owns)
+ : base (handle, owns)
+ {
+ }
+ }
+}
+namespace SharedWithYou {
+ [Protocol()]
+ [Register("Microsoft_MacCatalyst__SharedWithYou_SWCollaborationViewDelegate", false)]
+ [Model]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ public unsafe partial class SWCollaborationViewDelegate : NSObject, ISWCollaborationViewDelegate {
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ [Export ("init")]
+ public SWCollaborationViewDelegate () : base (NSObjectFlag.Empty)
+ {
+ IsDirectBinding = false;
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper (this.SuperHandle, global::ObjCRuntime.Selector.GetHandle ("init")), "init");
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ protected SWCollaborationViewDelegate (NSObjectFlag t) : base (t)
+ {
+ IsDirectBinding = false;
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ protected internal SWCollaborationViewDelegate (NativeHandle handle) : base (handle)
+ {
+ IsDirectBinding = false;
+ }
+
+ [Export ("collaborationViewDidDismissPopover:")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual void DidDismissPopover (SWCollaborationView collaborationView)
+ {
+ throw new You_Should_Not_Call_base_In_This_Method ();
+ }
+ [Export ("collaborationViewShouldPresentPopover:")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual bool ShouldPresentPopover (SWCollaborationView collaborationView)
+ {
+ throw new You_Should_Not_Call_base_In_This_Method ();
+ }
+ [Export ("collaborationViewWillPresentPopover:")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual void WillPresentPopover (SWCollaborationView collaborationView)
+ {
+ throw new You_Should_Not_Call_base_In_This_Method ();
+ }
+ } /* class SWCollaborationViewDelegate */
+}
diff --git a/new/dotnet/maccatalyst/generated-sources/SharedWithYou/SWHighlight.g.cs b/new/dotnet/maccatalyst/generated-sources/SharedWithYou/SWHighlight.g.cs
new file mode 100644
index 0000000..b198ea5
--- /dev/null
+++ b/new/dotnet/maccatalyst/generated-sources/SharedWithYou/SWHighlight.g.cs
@@ -0,0 +1,182 @@
+//
+// 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 Metal;
+using CoreML;
+using AppKit;
+using MapKit;
+using Photos;
+using ModelIO;
+using Network;
+using SceneKit;
+using Contacts;
+using Security;
+using CloudKit;
+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 FileProvider;
+using CoreAnimation;
+using CoreFoundation;
+using NetworkExtension;
+using MetalPerformanceShadersGraph;
+#nullable enable
+#if !NET
+using NativeHandle = System.IntPtr;
+#endif
+namespace SharedWithYou {
+ [Register("SWHighlight", true)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ public unsafe partial class SWHighlight : NSObject, INSCoding, INSCopying, INSSecureCoding {
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ static readonly NativeHandle class_ptr = Class.GetHandle ("SWHighlight");
+ public override NativeHandle ClassHandle { get { return class_ptr; } }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [DesignatedInitializer]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ [Export ("initWithCoder:")]
+ public SWHighlight (NSCoder coder) : base (NSObjectFlag.Empty)
+ {
+ if (IsDirectBinding) {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("initWithCoder:"), coder.Handle), "initWithCoder:");
+ } else {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("initWithCoder:"), coder.Handle), "initWithCoder:");
+ }
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ protected SWHighlight (NSObjectFlag t) : base (t)
+ {
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ protected internal SWHighlight (NativeHandle handle) : base (handle)
+ {
+ }
+
+ [Export ("copyWithZone:")]
+ [return: ReleaseAttribute ()]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual NSObject Copy (NSZone? zone)
+ {
+ var zone__handle__ = zone.GetHandle ();
+ NSObject? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("copyWithZone:"), zone__handle__))!;
+ } else {
+ ret = Runtime.GetNSObject (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper_NativeHandle (this.SuperHandle, Selector.GetHandle ("copyWithZone:"), zone__handle__))!;
+ }
+ if (ret != null)
+ global::ObjCRuntime.Messaging.void_objc_msgSend (ret.Handle, Selector.GetHandle ("release"));
+ return ret!;
+ }
+ [Export ("encodeWithCoder:")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual void EncodeTo (NSCoder encoder)
+ {
+ var encoder__handle__ = encoder!.GetNonNullHandle (nameof (encoder));
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("encodeWithCoder:"), encoder__handle__);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_NativeHandle (this.SuperHandle, Selector.GetHandle ("encodeWithCoder:"), encoder__handle__);
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ public virtual NSObject Identifier {
+ [Export ("identifier", ArgumentSemantic.Copy)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ get {
+ NSObject? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend (this.Handle, Selector.GetHandle ("identifier")))!;
+ } else {
+ ret = Runtime.GetNSObject (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("identifier")))!;
+ }
+ return ret!;
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ public virtual NSUrl Url {
+ [Export ("URL", ArgumentSemantic.Copy)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ get {
+ NSUrl? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject<NSUrl> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend (this.Handle, Selector.GetHandle ("URL")))!;
+ } else {
+ ret = Runtime.GetNSObject<NSUrl> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("URL")))!;
+ }
+ return ret!;
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ static NSString? _MetadataTypeIdentifier;
+ [Field ("SWCollaborationMetadataTypeIdentifier", "SharedWithYou")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ public static NSString MetadataTypeIdentifier {
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ get {
+ if (_MetadataTypeIdentifier is null)
+ _MetadataTypeIdentifier = Dlfcn.GetStringConstant (Libraries.SharedWithYou.Handle, "SWCollaborationMetadataTypeIdentifier")!;
+ return _MetadataTypeIdentifier;
+ }
+ }
+ } /* class SWHighlight */
+}
diff --git a/new/dotnet/maccatalyst/generated-sources/SharedWithYou/SWHighlightCenter.g.cs b/new/dotnet/maccatalyst/generated-sources/SharedWithYou/SWHighlightCenter.g.cs
new file mode 100644
index 0000000..f2c901c
--- /dev/null
+++ b/new/dotnet/maccatalyst/generated-sources/SharedWithYou/SWHighlightCenter.g.cs
@@ -0,0 +1,364 @@
+//
+// 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 Metal;
+using CoreML;
+using AppKit;
+using MapKit;
+using Photos;
+using ModelIO;
+using Network;
+using SceneKit;
+using Contacts;
+using Security;
+using CloudKit;
+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 FileProvider;
+using CoreAnimation;
+using CoreFoundation;
+using NetworkExtension;
+using MetalPerformanceShadersGraph;
+#nullable enable
+#if !NET
+using NativeHandle = System.IntPtr;
+#endif
+namespace SharedWithYou {
+ [Register("SWHighlightCenter", true)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ public unsafe partial class SWHighlightCenter : NSObject {
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ static readonly NativeHandle class_ptr = Class.GetHandle ("SWHighlightCenter");
+ public override NativeHandle ClassHandle { get { return class_ptr; } }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ [Export ("init")]
+ public SWHighlightCenter () : base (NSObjectFlag.Empty)
+ {
+ 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");
+ }
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ protected SWHighlightCenter (NSObjectFlag t) : base (t)
+ {
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ protected internal SWHighlightCenter (NativeHandle handle) : base (handle)
+ {
+ }
+
+ [Export ("collaborationHighlightForIdentifier:error:")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual SWCollaborationHighlight? GetCollaborationHighlight (string collaborationIdentifier, out NSError? error)
+ {
+ if (collaborationIdentifier is null)
+ ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (collaborationIdentifier));
+ NativeHandle errorValue = IntPtr.Zero;
+ var nscollaborationIdentifier = CFString.CreateNative (collaborationIdentifier);
+ SWCollaborationHighlight? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject<SWCollaborationHighlight> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend_NativeHandle_ref_NativeHandle (this.Handle, Selector.GetHandle ("collaborationHighlightForIdentifier:error:"), nscollaborationIdentifier, ref errorValue))!;
+ } else {
+ ret = Runtime.GetNSObject<SWCollaborationHighlight> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper_NativeHandle_ref_NativeHandle (this.SuperHandle, Selector.GetHandle ("collaborationHighlightForIdentifier:error:"), nscollaborationIdentifier, ref errorValue))!;
+ }
+ CFString.ReleaseNative (nscollaborationIdentifier);
+ error = Runtime.GetNSObject<NSError> (errorValue)!;
+ return ret!;
+ }
+ [Export ("getCollaborationHighlightForURL:completionHandler:")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public unsafe virtual void GetCollaborationHighlight (NSUrl url, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V129))]global::System.Action<SWCollaborationHighlight, NSError> completionHandler)
+ {
+ var url__handle__ = url!.GetNonNullHandle (nameof (url));
+ 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.SDActionArity2V129.Handler, completionHandler);
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("getCollaborationHighlightForURL:completionHandler:"), url__handle__, (IntPtr) block_ptr_completionHandler);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_NativeHandle_NativeHandle (this.SuperHandle, Selector.GetHandle ("getCollaborationHighlightForURL:completionHandler:"), url__handle__, (IntPtr) block_ptr_completionHandler);
+ }
+ block_ptr_completionHandler->CleanupBlock ();
+ }
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public unsafe virtual Task<SWCollaborationHighlight> GetCollaborationHighlightAsync (NSUrl url)
+ {
+ var tcs = new TaskCompletionSource<SWCollaborationHighlight> ();
+ GetCollaborationHighlight(url, (arg1_, arg2_) => {
+ if (arg2_ != null)
+ tcs.SetException (new NSErrorException(arg2_));
+ else
+ tcs.SetResult (arg1_!);
+ });
+ return tcs.Task;
+ }
+ [Export ("getHighlightForURL:completionHandler:")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public unsafe virtual void GetHighlight (NSUrl urL, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V130))]global::System.Action<SWHighlight, NSError> completionHandler)
+ {
+ var urL__handle__ = urL!.GetNonNullHandle (nameof (urL));
+ 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.SDActionArity2V130.Handler, completionHandler);
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("getHighlightForURL:completionHandler:"), urL__handle__, (IntPtr) block_ptr_completionHandler);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_NativeHandle_NativeHandle (this.SuperHandle, Selector.GetHandle ("getHighlightForURL:completionHandler:"), urL__handle__, (IntPtr) block_ptr_completionHandler);
+ }
+ block_ptr_completionHandler->CleanupBlock ();
+ }
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public unsafe virtual Task<SWHighlight> GetHighlightAsync (NSUrl urL)
+ {
+ var tcs = new TaskCompletionSource<SWHighlight> ();
+ GetHighlight(urL, (arg1_, arg2_) => {
+ if (arg2_ != null)
+ tcs.SetException (new NSErrorException(arg2_));
+ else
+ tcs.SetResult (arg1_!);
+ });
+ return tcs.Task;
+ }
+ [Export ("getSignedIdentityProofForCollaborationHighlight:usingData:completionHandler:")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public unsafe virtual void GetSignedIdentityProof (SWCollaborationHighlight collaborationHighlight, NSData data, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V131))]global::System.Action<global::SharedWithYouCore.SWSignedPersonIdentityProof, NSError> completionHandler)
+ {
+ var collaborationHighlight__handle__ = collaborationHighlight!.GetNonNullHandle (nameof (collaborationHighlight));
+ var data__handle__ = data!.GetNonNullHandle (nameof (data));
+ 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.SDActionArity2V131.Handler, completionHandler);
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("getSignedIdentityProofForCollaborationHighlight:usingData:completionHandler:"), collaborationHighlight__handle__, data__handle__, (IntPtr) block_ptr_completionHandler);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_NativeHandle_NativeHandle_NativeHandle (this.SuperHandle, Selector.GetHandle ("getSignedIdentityProofForCollaborationHighlight:usingData:completionHandler:"), collaborationHighlight__handle__, data__handle__, (IntPtr) block_ptr_completionHandler);
+ }
+ block_ptr_completionHandler->CleanupBlock ();
+ }
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public unsafe virtual Task<global::SharedWithYouCore.SWSignedPersonIdentityProof> GetSignedIdentityProofAsync (SWCollaborationHighlight collaborationHighlight, NSData data)
+ {
+ var tcs = new TaskCompletionSource<global::SharedWithYouCore.SWSignedPersonIdentityProof> ();
+ GetSignedIdentityProof(collaborationHighlight, data, (arg1_, arg2_) => {
+ if (arg2_ != null)
+ tcs.SetException (new NSErrorException(arg2_));
+ else
+ tcs.SetResult (arg1_!);
+ });
+ return tcs.Task;
+ }
+ [Export ("postNoticeForHighlightEvent:")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual void PostNotice (ISWHighlightEvent @event)
+ {
+ var @event__handle__ = @event!.GetNonNullHandle (nameof (@event));
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("postNoticeForHighlightEvent:"), @event__handle__);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_NativeHandle (this.SuperHandle, Selector.GetHandle ("postNoticeForHighlightEvent:"), @event__handle__);
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ public ISWHighlightCenterDelegate? Delegate {
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ get {
+ return (WeakDelegate as ISWHighlightCenterDelegate)!;
+ }
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ set {
+ var rvalue = value as NSObject;
+ if (!(value is null) && rvalue is null)
+ throw new ArgumentException ("The object passed of type " + value.GetType () + " does not derive from NSObject");
+ WeakDelegate = rvalue;
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ public static string HighlightCollectionTitle {
+ [Export ("highlightCollectionTitle")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ get {
+ return CFString.FromHandle (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend (class_ptr, Selector.GetHandle ("highlightCollectionTitle")))!;
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ public virtual SWHighlight[] Highlights {
+ [Export ("highlights", ArgumentSemantic.Copy)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ get {
+ SWHighlight[]? ret;
+ if (IsDirectBinding) {
+ ret = CFArray.ArrayFromHandle<SWHighlight>(global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend (this.Handle, Selector.GetHandle ("highlights")))!;
+ } else {
+ ret = CFArray.ArrayFromHandle<SWHighlight>(global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("highlights")))!;
+ }
+ return ret!;
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ public static bool SystemCollaborationSupportAvailable {
+ [Export ("isSystemCollaborationSupportAvailable")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ get {
+ return global::ObjCRuntime.Messaging.bool_objc_msgSend (class_ptr, Selector.GetHandle ("isSystemCollaborationSupportAvailable"));
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ object? __mt_WeakDelegate_var;
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ public virtual NSObject? WeakDelegate {
+ [Export ("delegate", ArgumentSemantic.Weak)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ get {
+ NSObject? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend (this.Handle, Selector.GetHandle ("delegate")))!;
+ } else {
+ ret = Runtime.GetNSObject (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("delegate")))!;
+ }
+ MarkDirty ();
+ __mt_WeakDelegate_var = ret;
+ return ret!;
+ }
+ [Export ("setDelegate:", ArgumentSemantic.Weak)]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ set {
+ var value__handle__ = value.GetHandle ();
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("setDelegate:"), value__handle__);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_NativeHandle (this.SuperHandle, Selector.GetHandle ("setDelegate:"), value__handle__);
+ }
+ MarkDirty ();
+ __mt_WeakDelegate_var = value;
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ protected override void Dispose (bool disposing)
+ {
+ base.Dispose (disposing);
+ if (Handle == IntPtr.Zero) {
+ __mt_WeakDelegate_var = null;
+ }
+ }
+ } /* class SWHighlightCenter */
+}
diff --git a/new/dotnet/maccatalyst/generated-sources/SharedWithYou/SWHighlightCenterDelegate.g.cs b/new/dotnet/maccatalyst/generated-sources/SharedWithYou/SWHighlightCenterDelegate.g.cs
new file mode 100644
index 0000000..0e953db
--- /dev/null
+++ b/new/dotnet/maccatalyst/generated-sources/SharedWithYou/SWHighlightCenterDelegate.g.cs
@@ -0,0 +1,127 @@
+//
+// 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 Metal;
+using CoreML;
+using AppKit;
+using MapKit;
+using Photos;
+using ModelIO;
+using Network;
+using SceneKit;
+using Contacts;
+using Security;
+using CloudKit;
+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 FileProvider;
+using CoreAnimation;
+using CoreFoundation;
+using NetworkExtension;
+using MetalPerformanceShadersGraph;
+#nullable enable
+#if !NET
+using NativeHandle = System.IntPtr;
+#endif
+namespace SharedWithYou {
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ [Protocol (Name = "SWHighlightCenterDelegate", WrapperType = typeof (SWHighlightCenterDelegateWrapper))]
+ [ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "HighlightsDidChange", Selector = "highlightCenterHighlightsDidChange:", ParameterType = new Type [] { typeof (SharedWithYou.SWHighlightCenter) }, ParameterByRef = new bool [] { false })]
+ public partial interface ISWHighlightCenterDelegate : INativeObject, IDisposable
+ {
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [Export ("highlightCenterHighlightsDidChange:")]
+ [Preserve (Conditional = true)]
+ void HighlightsDidChange (SWHighlightCenter highlightCenter);
+ }
+ internal sealed class SWHighlightCenterDelegateWrapper : BaseWrapper, ISWHighlightCenterDelegate {
+ [Preserve (Conditional = true)]
+ public SWHighlightCenterDelegateWrapper (NativeHandle handle, bool owns)
+ : base (handle, owns)
+ {
+ }
+ [Export ("highlightCenterHighlightsDidChange:")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public void HighlightsDidChange (SWHighlightCenter highlightCenter)
+ {
+ var highlightCenter__handle__ = highlightCenter!.GetNonNullHandle (nameof (highlightCenter));
+ global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("highlightCenterHighlightsDidChange:"), highlightCenter__handle__);
+ }
+ }
+}
+namespace SharedWithYou {
+ [Protocol()]
+ [Register("Microsoft_MacCatalyst__SharedWithYou_SWHighlightCenterDelegate", false)]
+ [Model]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ public unsafe abstract partial class SWHighlightCenterDelegate : NSObject, ISWHighlightCenterDelegate {
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ [Export ("init")]
+ protected SWHighlightCenterDelegate () : base (NSObjectFlag.Empty)
+ {
+ IsDirectBinding = false;
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper (this.SuperHandle, global::ObjCRuntime.Selector.GetHandle ("init")), "init");
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ protected SWHighlightCenterDelegate (NSObjectFlag t) : base (t)
+ {
+ IsDirectBinding = false;
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ protected internal SWHighlightCenterDelegate (NativeHandle handle) : base (handle)
+ {
+ IsDirectBinding = false;
+ }
+
+ [Export ("highlightCenterHighlightsDidChange:")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual void HighlightsDidChange (SWHighlightCenter highlightCenter)
+ {
+ throw new You_Should_Not_Call_base_In_This_Method ();
+ }
+ } /* class SWHighlightCenterDelegate */
+}
diff --git a/new/dotnet/maccatalyst/generated-sources/SharedWithYou/SWHighlightCenterErrorCode.g.cs b/new/dotnet/maccatalyst/generated-sources/SharedWithYou/SWHighlightCenterErrorCode.g.cs
new file mode 100644
index 0000000..ea63414
--- /dev/null
+++ b/new/dotnet/maccatalyst/generated-sources/SharedWithYou/SWHighlightCenterErrorCode.g.cs
@@ -0,0 +1,63 @@
+//
+// 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 Metal;
+using CoreML;
+using AppKit;
+using MapKit;
+using Photos;
+using ModelIO;
+using Network;
+using SceneKit;
+using Contacts;
+using Security;
+using CloudKit;
+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 FileProvider;
+using CoreAnimation;
+using CoreFoundation;
+using NetworkExtension;
+using MetalPerformanceShadersGraph;
+#nullable enable
+#if !NET
+using NativeHandle = System.IntPtr;
+#endif
+namespace SharedWithYou {
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [UnsupportedOSPlatform ("tvos")]
+ [Native]
+ public enum SWHighlightCenterErrorCode : long {
+ NoError = 0,
+ InternalError = 1,
+ InvalidURL = 2,
+ AccessDenied = 3,
+ }
+}
diff --git a/new/dotnet/maccatalyst/generated-sources/SharedWithYou/SWHighlightChangeEvent.g.cs b/new/dotnet/maccatalyst/generated-sources/SharedWithYou/SWHighlightChangeEvent.g.cs
new file mode 100644
index 0000000..b9f412d
--- /dev/null
+++ b/new/dotnet/maccatalyst/generated-sources/SharedWithYou/SWHighlightChangeEvent.g.cs
@@ -0,0 +1,180 @@
+//
+// 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 Metal;
+using CoreML;
+using AppKit;
+using MapKit;
+using Photos;
+using ModelIO;
+using Network;
+using SceneKit;
+using Contacts;
+using Security;
+using CloudKit;
+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 FileProvider;
+using CoreAnimation;
+using CoreFoundation;
+using NetworkExtension;
+using MetalPerformanceShadersGraph;
+#nullable enable
+#if !NET
+using NativeHandle = System.IntPtr;
+#endif
+namespace SharedWithYou {
+ [Register("SWHighlightChangeEvent", true)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ public unsafe partial class SWHighlightChangeEvent : NSObject, INSCoding, INSCopying, INSSecureCoding, ISWHighlightEvent {
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ static readonly NativeHandle class_ptr = Class.GetHandle ("SWHighlightChangeEvent");
+ public override NativeHandle ClassHandle { get { return class_ptr; } }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [DesignatedInitializer]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ [Export ("initWithCoder:")]
+ public SWHighlightChangeEvent (NSCoder coder) : base (NSObjectFlag.Empty)
+ {
+ if (IsDirectBinding) {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("initWithCoder:"), coder.Handle), "initWithCoder:");
+ } else {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("initWithCoder:"), coder.Handle), "initWithCoder:");
+ }
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ protected SWHighlightChangeEvent (NSObjectFlag t) : base (t)
+ {
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ protected internal SWHighlightChangeEvent (NativeHandle handle) : base (handle)
+ {
+ }
+
+ [Export ("initWithHighlight:trigger:")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public SWHighlightChangeEvent (SWHighlight highlight, SWHighlightChangeEventTrigger trigger)
+ : base (NSObjectFlag.Empty)
+ {
+ var highlight__handle__ = highlight!.GetNonNullHandle (nameof (highlight));
+ if (IsDirectBinding) {
+ InitializeHandle (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend_NativeHandle_IntPtr (this.Handle, Selector.GetHandle ("initWithHighlight:trigger:"), highlight__handle__, (IntPtr) (long) trigger), "initWithHighlight:trigger:");
+ } else {
+ InitializeHandle (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper_NativeHandle_IntPtr (this.SuperHandle, Selector.GetHandle ("initWithHighlight:trigger:"), highlight__handle__, (IntPtr) (long) trigger), "initWithHighlight:trigger:");
+ }
+ }
+ [Export ("copyWithZone:")]
+ [return: ReleaseAttribute ()]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual NSObject Copy (NSZone? zone)
+ {
+ var zone__handle__ = zone.GetHandle ();
+ NSObject? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("copyWithZone:"), zone__handle__))!;
+ } else {
+ ret = Runtime.GetNSObject (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper_NativeHandle (this.SuperHandle, Selector.GetHandle ("copyWithZone:"), zone__handle__))!;
+ }
+ if (ret != null)
+ global::ObjCRuntime.Messaging.void_objc_msgSend (ret.Handle, Selector.GetHandle ("release"));
+ return ret!;
+ }
+ [Export ("encodeWithCoder:")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual void EncodeTo (NSCoder encoder)
+ {
+ var encoder__handle__ = encoder!.GetNonNullHandle (nameof (encoder));
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("encodeWithCoder:"), encoder__handle__);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_NativeHandle (this.SuperHandle, Selector.GetHandle ("encodeWithCoder:"), encoder__handle__);
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ public virtual SWHighlightChangeEventTrigger ChangeEventTrigger {
+ [Export ("changeEventTrigger", ArgumentSemantic.UnsafeUnretained)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ get {
+ SWHighlightChangeEventTrigger ret;
+ if (IsDirectBinding) {
+ ret = (SharedWithYou.SWHighlightChangeEventTrigger) (long) global::ObjCRuntime.Messaging.IntPtr_objc_msgSend (this.Handle, Selector.GetHandle ("changeEventTrigger"));
+ } else {
+ ret = (SharedWithYou.SWHighlightChangeEventTrigger) (long) global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("changeEventTrigger"));
+ }
+ return ret!;
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ public virtual NSUrl HighlightUrl {
+ [Export ("highlightURL", ArgumentSemantic.Copy)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ get {
+ NSUrl? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject<NSUrl> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend (this.Handle, Selector.GetHandle ("highlightURL")))!;
+ } else {
+ ret = Runtime.GetNSObject<NSUrl> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("highlightURL")))!;
+ }
+ return ret!;
+ }
+ }
+ } /* class SWHighlightChangeEvent */
+}
diff --git a/new/dotnet/maccatalyst/generated-sources/SharedWithYou/SWHighlightChangeEventTrigger.g.cs b/new/dotnet/maccatalyst/generated-sources/SharedWithYou/SWHighlightChangeEventTrigger.g.cs
new file mode 100644
index 0000000..b24a249
--- /dev/null
+++ b/new/dotnet/maccatalyst/generated-sources/SharedWithYou/SWHighlightChangeEventTrigger.g.cs
@@ -0,0 +1,61 @@
+//
+// 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 Metal;
+using CoreML;
+using AppKit;
+using MapKit;
+using Photos;
+using ModelIO;
+using Network;
+using SceneKit;
+using Contacts;
+using Security;
+using CloudKit;
+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 FileProvider;
+using CoreAnimation;
+using CoreFoundation;
+using NetworkExtension;
+using MetalPerformanceShadersGraph;
+#nullable enable
+#if !NET
+using NativeHandle = System.IntPtr;
+#endif
+namespace SharedWithYou {
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [Native]
+ public enum SWHighlightChangeEventTrigger : long {
+ Edit = 1,
+ Comment = 2,
+ }
+}
diff --git a/new/dotnet/maccatalyst/generated-sources/SharedWithYou/SWHighlightEvent.g.cs b/new/dotnet/maccatalyst/generated-sources/SharedWithYou/SWHighlightEvent.g.cs
new file mode 100644
index 0000000..2fde29b
--- /dev/null
+++ b/new/dotnet/maccatalyst/generated-sources/SharedWithYou/SWHighlightEvent.g.cs
@@ -0,0 +1,110 @@
+//
+// 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 Metal;
+using CoreML;
+using AppKit;
+using MapKit;
+using Photos;
+using ModelIO;
+using Network;
+using SceneKit;
+using Contacts;
+using Security;
+using CloudKit;
+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 FileProvider;
+using CoreAnimation;
+using CoreFoundation;
+using NetworkExtension;
+using MetalPerformanceShadersGraph;
+#nullable enable
+#if !NET
+using NativeHandle = System.IntPtr;
+#endif
+namespace SharedWithYou {
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [Protocol (Name = "SWHighlightEvent", WrapperType = typeof (SWHighlightEventWrapper))]
+ [ProtocolMember (IsRequired = true, IsProperty = true, IsStatic = false, Name = "HighlightUrl", Selector = "highlightURL", PropertyType = typeof (NSUrl), GetterSelector = "highlightURL", ArgumentSemantic = ArgumentSemantic.Copy)]
+ public partial interface ISWHighlightEvent : INativeObject, IDisposable,
+ Foundation.INSCoding
+ , Foundation.INSCopying
+ , Foundation.INSSecureCoding
+ {
+ [Preserve (Conditional = true)]
+ NSUrl HighlightUrl {
+ [Export ("highlightURL", ArgumentSemantic.Copy)]
+ get;
+ }
+ }
+ internal sealed class SWHighlightEventWrapper : BaseWrapper, ISWHighlightEvent {
+ [Preserve (Conditional = true)]
+ public SWHighlightEventWrapper (NativeHandle handle, bool owns)
+ : base (handle, owns)
+ {
+ }
+ [Export ("encodeWithCoder:")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public void EncodeTo (NSCoder encoder)
+ {
+ var encoder__handle__ = encoder!.GetNonNullHandle (nameof (encoder));
+ global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("encodeWithCoder:"), encoder__handle__);
+ }
+ [Export ("copyWithZone:")]
+ [return: ReleaseAttribute ()]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public NSObject Copy (NSZone? zone)
+ {
+ var zone__handle__ = zone.GetHandle ();
+ NSObject? ret;
+ ret = Runtime.GetNSObject (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("copyWithZone:"), zone__handle__))!;
+ if (ret != null)
+ global::ObjCRuntime.Messaging.void_objc_msgSend (ret.Handle, Selector.GetHandle ("release"));
+ return ret!;
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ public NSUrl HighlightUrl {
+ [Export ("highlightURL", ArgumentSemantic.Copy)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ get {
+ return Runtime.GetNSObject<NSUrl> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend (this.Handle, Selector.GetHandle ("highlightURL")))!;
+ }
+ }
+ }
+}
diff --git a/new/dotnet/maccatalyst/generated-sources/SharedWithYou/SWHighlightMembershipEvent.g.cs b/new/dotnet/maccatalyst/generated-sources/SharedWithYou/SWHighlightMembershipEvent.g.cs
new file mode 100644
index 0000000..9f36c1a
--- /dev/null
+++ b/new/dotnet/maccatalyst/generated-sources/SharedWithYou/SWHighlightMembershipEvent.g.cs
@@ -0,0 +1,180 @@
+//
+// 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 Metal;
+using CoreML;
+using AppKit;
+using MapKit;
+using Photos;
+using ModelIO;
+using Network;
+using SceneKit;
+using Contacts;
+using Security;
+using CloudKit;
+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 FileProvider;
+using CoreAnimation;
+using CoreFoundation;
+using NetworkExtension;
+using MetalPerformanceShadersGraph;
+#nullable enable
+#if !NET
+using NativeHandle = System.IntPtr;
+#endif
+namespace SharedWithYou {
+ [Register("SWHighlightMembershipEvent", true)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ public unsafe partial class SWHighlightMembershipEvent : NSObject, INSCoding, INSCopying, INSSecureCoding, ISWHighlightEvent {
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ static readonly NativeHandle class_ptr = Class.GetHandle ("SWHighlightMembershipEvent");
+ public override NativeHandle ClassHandle { get { return class_ptr; } }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [DesignatedInitializer]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ [Export ("initWithCoder:")]
+ public SWHighlightMembershipEvent (NSCoder coder) : base (NSObjectFlag.Empty)
+ {
+ if (IsDirectBinding) {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("initWithCoder:"), coder.Handle), "initWithCoder:");
+ } else {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("initWithCoder:"), coder.Handle), "initWithCoder:");
+ }
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ protected SWHighlightMembershipEvent (NSObjectFlag t) : base (t)
+ {
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ protected internal SWHighlightMembershipEvent (NativeHandle handle) : base (handle)
+ {
+ }
+
+ [Export ("initWithHighlight:trigger:")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public SWHighlightMembershipEvent (SWHighlight highlight, SWHighlightMembershipEventTrigger trigger)
+ : base (NSObjectFlag.Empty)
+ {
+ var highlight__handle__ = highlight!.GetNonNullHandle (nameof (highlight));
+ if (IsDirectBinding) {
+ InitializeHandle (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend_NativeHandle_IntPtr (this.Handle, Selector.GetHandle ("initWithHighlight:trigger:"), highlight__handle__, (IntPtr) (long) trigger), "initWithHighlight:trigger:");
+ } else {
+ InitializeHandle (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper_NativeHandle_IntPtr (this.SuperHandle, Selector.GetHandle ("initWithHighlight:trigger:"), highlight__handle__, (IntPtr) (long) trigger), "initWithHighlight:trigger:");
+ }
+ }
+ [Export ("copyWithZone:")]
+ [return: ReleaseAttribute ()]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual NSObject Copy (NSZone? zone)
+ {
+ var zone__handle__ = zone.GetHandle ();
+ NSObject? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("copyWithZone:"), zone__handle__))!;
+ } else {
+ ret = Runtime.GetNSObject (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper_NativeHandle (this.SuperHandle, Selector.GetHandle ("copyWithZone:"), zone__handle__))!;
+ }
+ if (ret != null)
+ global::ObjCRuntime.Messaging.void_objc_msgSend (ret.Handle, Selector.GetHandle ("release"));
+ return ret!;
+ }
+ [Export ("encodeWithCoder:")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual void EncodeTo (NSCoder encoder)
+ {
+ var encoder__handle__ = encoder!.GetNonNullHandle (nameof (encoder));
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("encodeWithCoder:"), encoder__handle__);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_NativeHandle (this.SuperHandle, Selector.GetHandle ("encodeWithCoder:"), encoder__handle__);
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ public virtual NSUrl HighlightUrl {
+ [Export ("highlightURL", ArgumentSemantic.Copy)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ get {
+ NSUrl? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject<NSUrl> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend (this.Handle, Selector.GetHandle ("highlightURL")))!;
+ } else {
+ ret = Runtime.GetNSObject<NSUrl> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("highlightURL")))!;
+ }
+ return ret!;
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ public virtual SWHighlightMembershipEventTrigger MembershipEventTrigger {
+ [Export ("membershipEventTrigger", ArgumentSemantic.UnsafeUnretained)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ get {
+ SWHighlightMembershipEventTrigger ret;
+ if (IsDirectBinding) {
+ ret = (SharedWithYou.SWHighlightMembershipEventTrigger) (long) global::ObjCRuntime.Messaging.IntPtr_objc_msgSend (this.Handle, Selector.GetHandle ("membershipEventTrigger"));
+ } else {
+ ret = (SharedWithYou.SWHighlightMembershipEventTrigger) (long) global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("membershipEventTrigger"));
+ }
+ return ret!;
+ }
+ }
+ } /* class SWHighlightMembershipEvent */
+}
diff --git a/new/dotnet/maccatalyst/generated-sources/SharedWithYou/SWHighlightMembershipEventTrigger.g.cs b/new/dotnet/maccatalyst/generated-sources/SharedWithYou/SWHighlightMembershipEventTrigger.g.cs
new file mode 100644
index 0000000..316a960
--- /dev/null
+++ b/new/dotnet/maccatalyst/generated-sources/SharedWithYou/SWHighlightMembershipEventTrigger.g.cs
@@ -0,0 +1,61 @@
+//
+// 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 Metal;
+using CoreML;
+using AppKit;
+using MapKit;
+using Photos;
+using ModelIO;
+using Network;
+using SceneKit;
+using Contacts;
+using Security;
+using CloudKit;
+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 FileProvider;
+using CoreAnimation;
+using CoreFoundation;
+using NetworkExtension;
+using MetalPerformanceShadersGraph;
+#nullable enable
+#if !NET
+using NativeHandle = System.IntPtr;
+#endif
+namespace SharedWithYou {
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [Native]
+ public enum SWHighlightMembershipEventTrigger : long {
+ AddedCollaborator = 1,
+ RemovedCollaborator = 2,
+ }
+}
diff --git a/new/dotnet/maccatalyst/generated-sources/SharedWithYou/SWHighlightMentionEvent.g.cs b/new/dotnet/maccatalyst/generated-sources/SharedWithYou/SWHighlightMentionEvent.g.cs
new file mode 100644
index 0000000..837f0a9
--- /dev/null
+++ b/new/dotnet/maccatalyst/generated-sources/SharedWithYou/SWHighlightMentionEvent.g.cs
@@ -0,0 +1,199 @@
+//
+// 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 Metal;
+using CoreML;
+using AppKit;
+using MapKit;
+using Photos;
+using ModelIO;
+using Network;
+using SceneKit;
+using Contacts;
+using Security;
+using CloudKit;
+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 FileProvider;
+using CoreAnimation;
+using CoreFoundation;
+using NetworkExtension;
+using MetalPerformanceShadersGraph;
+#nullable enable
+#if !NET
+using NativeHandle = System.IntPtr;
+#endif
+namespace SharedWithYou {
+ [Register("SWHighlightMentionEvent", true)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ public unsafe partial class SWHighlightMentionEvent : NSObject, INSCoding, INSCopying, INSSecureCoding, ISWHighlightEvent {
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ static readonly NativeHandle class_ptr = Class.GetHandle ("SWHighlightMentionEvent");
+ public override NativeHandle ClassHandle { get { return class_ptr; } }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [DesignatedInitializer]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ [Export ("initWithCoder:")]
+ public SWHighlightMentionEvent (NSCoder coder) : base (NSObjectFlag.Empty)
+ {
+ if (IsDirectBinding) {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("initWithCoder:"), coder.Handle), "initWithCoder:");
+ } else {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("initWithCoder:"), coder.Handle), "initWithCoder:");
+ }
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ protected SWHighlightMentionEvent (NSObjectFlag t) : base (t)
+ {
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ protected internal SWHighlightMentionEvent (NativeHandle handle) : base (handle)
+ {
+ }
+
+ [Export ("initWithHighlight:mentionedPersonCloudKitShareHandle:")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public SWHighlightMentionEvent (SWHighlight highlight, string handle)
+ : base (NSObjectFlag.Empty)
+ {
+ var highlight__handle__ = highlight!.GetNonNullHandle (nameof (highlight));
+ if (handle is null)
+ ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (handle));
+ var nshandle = CFString.CreateNative (handle);
+ if (IsDirectBinding) {
+ InitializeHandle (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("initWithHighlight:mentionedPersonCloudKitShareHandle:"), highlight__handle__, nshandle), "initWithHighlight:mentionedPersonCloudKitShareHandle:");
+ } else {
+ InitializeHandle (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper_NativeHandle_NativeHandle (this.SuperHandle, Selector.GetHandle ("initWithHighlight:mentionedPersonCloudKitShareHandle:"), highlight__handle__, nshandle), "initWithHighlight:mentionedPersonCloudKitShareHandle:");
+ }
+ CFString.ReleaseNative (nshandle);
+ }
+ [Export ("initWithHighlight:mentionedPersonIdentity:")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public SWHighlightMentionEvent (SWHighlight highlight, global::SharedWithYouCore.SWPersonIdentity identity)
+ : base (NSObjectFlag.Empty)
+ {
+ var highlight__handle__ = highlight!.GetNonNullHandle (nameof (highlight));
+ var identity__handle__ = identity!.GetNonNullHandle (nameof (identity));
+ if (IsDirectBinding) {
+ InitializeHandle (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend_NativeHandle_NativeHandle (this.Handle, Selector.GetHandle ("initWithHighlight:mentionedPersonIdentity:"), highlight__handle__, identity__handle__), "initWithHighlight:mentionedPersonIdentity:");
+ } else {
+ InitializeHandle (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper_NativeHandle_NativeHandle (this.SuperHandle, Selector.GetHandle ("initWithHighlight:mentionedPersonIdentity:"), highlight__handle__, identity__handle__), "initWithHighlight:mentionedPersonIdentity:");
+ }
+ }
+ [Export ("copyWithZone:")]
+ [return: ReleaseAttribute ()]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual NSObject Copy (NSZone? zone)
+ {
+ var zone__handle__ = zone.GetHandle ();
+ NSObject? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("copyWithZone:"), zone__handle__))!;
+ } else {
+ ret = Runtime.GetNSObject (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper_NativeHandle (this.SuperHandle, Selector.GetHandle ("copyWithZone:"), zone__handle__))!;
+ }
+ if (ret != null)
+ global::ObjCRuntime.Messaging.void_objc_msgSend (ret.Handle, Selector.GetHandle ("release"));
+ return ret!;
+ }
+ [Export ("encodeWithCoder:")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual void EncodeTo (NSCoder encoder)
+ {
+ var encoder__handle__ = encoder!.GetNonNullHandle (nameof (encoder));
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("encodeWithCoder:"), encoder__handle__);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_NativeHandle (this.SuperHandle, Selector.GetHandle ("encodeWithCoder:"), encoder__handle__);
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ public virtual NSUrl HighlightUrl {
+ [Export ("highlightURL", ArgumentSemantic.Copy)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ get {
+ NSUrl? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject<NSUrl> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend (this.Handle, Selector.GetHandle ("highlightURL")))!;
+ } else {
+ ret = Runtime.GetNSObject<NSUrl> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("highlightURL")))!;
+ }
+ return ret!;
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ public virtual string MentionedPersonHandle {
+ [Export ("mentionedPersonHandle", ArgumentSemantic.Retain)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ get {
+ if (IsDirectBinding) {
+ return CFString.FromHandle (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend (this.Handle, Selector.GetHandle ("mentionedPersonHandle")))!;
+ } else {
+ return CFString.FromHandle (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("mentionedPersonHandle")))!;
+ }
+ }
+ }
+ } /* class SWHighlightMentionEvent */
+}
diff --git a/new/dotnet/maccatalyst/generated-sources/SharedWithYou/SWHighlightPersistenceEvent.g.cs b/new/dotnet/maccatalyst/generated-sources/SharedWithYou/SWHighlightPersistenceEvent.g.cs
new file mode 100644
index 0000000..95ffcd6
--- /dev/null
+++ b/new/dotnet/maccatalyst/generated-sources/SharedWithYou/SWHighlightPersistenceEvent.g.cs
@@ -0,0 +1,180 @@
+//
+// 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 Metal;
+using CoreML;
+using AppKit;
+using MapKit;
+using Photos;
+using ModelIO;
+using Network;
+using SceneKit;
+using Contacts;
+using Security;
+using CloudKit;
+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 FileProvider;
+using CoreAnimation;
+using CoreFoundation;
+using NetworkExtension;
+using MetalPerformanceShadersGraph;
+#nullable enable
+#if !NET
+using NativeHandle = System.IntPtr;
+#endif
+namespace SharedWithYou {
+ [Register("SWHighlightPersistenceEvent", true)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ public unsafe partial class SWHighlightPersistenceEvent : NSObject, INSCoding, INSCopying, INSSecureCoding, ISWHighlightEvent {
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ static readonly NativeHandle class_ptr = Class.GetHandle ("SWHighlightPersistenceEvent");
+ public override NativeHandle ClassHandle { get { return class_ptr; } }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [DesignatedInitializer]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ [Export ("initWithCoder:")]
+ public SWHighlightPersistenceEvent (NSCoder coder) : base (NSObjectFlag.Empty)
+ {
+ if (IsDirectBinding) {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("initWithCoder:"), coder.Handle), "initWithCoder:");
+ } else {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("initWithCoder:"), coder.Handle), "initWithCoder:");
+ }
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ protected SWHighlightPersistenceEvent (NSObjectFlag t) : base (t)
+ {
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ protected internal SWHighlightPersistenceEvent (NativeHandle handle) : base (handle)
+ {
+ }
+
+ [Export ("initWithHighlight:trigger:")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public SWHighlightPersistenceEvent (SWHighlight highlight, SWHighlightPersistenceEventTrigger trigger)
+ : base (NSObjectFlag.Empty)
+ {
+ var highlight__handle__ = highlight!.GetNonNullHandle (nameof (highlight));
+ if (IsDirectBinding) {
+ InitializeHandle (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend_NativeHandle_IntPtr (this.Handle, Selector.GetHandle ("initWithHighlight:trigger:"), highlight__handle__, (IntPtr) (long) trigger), "initWithHighlight:trigger:");
+ } else {
+ InitializeHandle (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper_NativeHandle_IntPtr (this.SuperHandle, Selector.GetHandle ("initWithHighlight:trigger:"), highlight__handle__, (IntPtr) (long) trigger), "initWithHighlight:trigger:");
+ }
+ }
+ [Export ("copyWithZone:")]
+ [return: ReleaseAttribute ()]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual NSObject Copy (NSZone? zone)
+ {
+ var zone__handle__ = zone.GetHandle ();
+ NSObject? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("copyWithZone:"), zone__handle__))!;
+ } else {
+ ret = Runtime.GetNSObject (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper_NativeHandle (this.SuperHandle, Selector.GetHandle ("copyWithZone:"), zone__handle__))!;
+ }
+ if (ret != null)
+ global::ObjCRuntime.Messaging.void_objc_msgSend (ret.Handle, Selector.GetHandle ("release"));
+ return ret!;
+ }
+ [Export ("encodeWithCoder:")]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual void EncodeTo (NSCoder encoder)
+ {
+ var encoder__handle__ = encoder!.GetNonNullHandle (nameof (encoder));
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("encodeWithCoder:"), encoder__handle__);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_NativeHandle (this.SuperHandle, Selector.GetHandle ("encodeWithCoder:"), encoder__handle__);
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ public virtual NSUrl HighlightUrl {
+ [Export ("highlightURL", ArgumentSemantic.Copy)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ get {
+ NSUrl? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject<NSUrl> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend (this.Handle, Selector.GetHandle ("highlightURL")))!;
+ } else {
+ ret = Runtime.GetNSObject<NSUrl> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("highlightURL")))!;
+ }
+ return ret!;
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ public virtual SWHighlightPersistenceEventTrigger PersistenceEventTrigger {
+ [Export ("persistenceEventTrigger", ArgumentSemantic.UnsafeUnretained)]
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ get {
+ SWHighlightPersistenceEventTrigger ret;
+ if (IsDirectBinding) {
+ ret = (SharedWithYou.SWHighlightPersistenceEventTrigger) (long) global::ObjCRuntime.Messaging.IntPtr_objc_msgSend (this.Handle, Selector.GetHandle ("persistenceEventTrigger"));
+ } else {
+ ret = (SharedWithYou.SWHighlightPersistenceEventTrigger) (long) global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("persistenceEventTrigger"));
+ }
+ return ret!;
+ }
+ }
+ } /* class SWHighlightPersistenceEvent */
+}
diff --git a/new/dotnet/maccatalyst/generated-sources/SharedWithYou/SWHighlightPersistenceEventTrigger.g.cs b/new/dotnet/maccatalyst/generated-sources/SharedWithYou/SWHighlightPersistenceEventTrigger.g.cs
new file mode 100644
index 0000000..a3a6d96
--- /dev/null
+++ b/new/dotnet/maccatalyst/generated-sources/SharedWithYou/SWHighlightPersistenceEventTrigger.g.cs
@@ -0,0 +1,63 @@
+//
+// 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 Metal;
+using CoreML;
+using AppKit;
+using MapKit;
+using Photos;
+using ModelIO;
+using Network;
+using SceneKit;
+using Contacts;
+using Security;
+using CloudKit;
+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 FileProvider;
+using CoreAnimation;
+using CoreFoundation;
+using NetworkExtension;
+using MetalPerformanceShadersGraph;
+#nullable enable
+#if !NET
+using NativeHandle = System.IntPtr;
+#endif
+namespace SharedWithYou {
+ [UnsupportedOSPlatform ("tvos")]
+ [UnsupportedOSPlatform ("macos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [Native]
+ public enum SWHighlightPersistenceEventTrigger : long {
+ Created = 1,
+ Deleted = 2,
+ Renamed = 3,
+ Moved = 4,
+ }
+}
diff --git a/new/dotnet/maccatalyst/generated-sources/SharedWithYou/SWRemoveParticipantAlertController.g.cs b/new/dotnet/maccatalyst/generated-sources/SharedWithYou/SWRemoveParticipantAlertController.g.cs
new file mode 100644
index 0000000..f0c1e36
--- /dev/null
+++ b/new/dotnet/maccatalyst/generated-sources/SharedWithYou/SWRemoveParticipantAlertController.g.cs
@@ -0,0 +1,99 @@
+//
+// 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 Metal;
+using CoreML;
+using AppKit;
+using MapKit;
+using Photos;
+using ModelIO;
+using Network;
+using SceneKit;
+using Contacts;
+using Security;
+using CloudKit;
+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 FileProvider;
+using CoreAnimation;
+using CoreFoundation;
+using NetworkExtension;
+using MetalPerformanceShadersGraph;
+#nullable enable
+#if !NET
+using NativeHandle = System.IntPtr;
+#endif
+namespace SharedWithYou {
+ [Register("SWRemoveParticipantAlertController", true)]
+ [UnsupportedOSPlatform ("macos")]
+ [UnsupportedOSPlatform ("tvos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ public unsafe partial class SWRemoveParticipantAlertController : global::UIKit.UIViewController {
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ static readonly NativeHandle class_ptr = Class.GetHandle ("SWRemoveParticipantAlertController");
+ public override NativeHandle ClassHandle { get { return class_ptr; } }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [DesignatedInitializer]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ [Export ("initWithCoder:")]
+ public SWRemoveParticipantAlertController (NSCoder coder) : base (NSObjectFlag.Empty)
+ {
+ if (IsDirectBinding) {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("initWithCoder:"), coder.Handle), "initWithCoder:");
+ } else {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("initWithCoder:"), coder.Handle), "initWithCoder:");
+ }
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ protected SWRemoveParticipantAlertController (NSObjectFlag t) : base (t)
+ {
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ protected internal SWRemoveParticipantAlertController (NativeHandle handle) : base (handle)
+ {
+ }
+
+ [Export ("alertControllerWithParticipant:highlight:")]
+ [UnsupportedOSPlatform ("macos")]
+ [UnsupportedOSPlatform ("tvos")]
+ [SupportedOSPlatform ("ios16.0")]
+ [SupportedOSPlatform ("maccatalyst16.0")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public static SWRemoveParticipantAlertController Create (global::SharedWithYouCore.SWPerson participant, SWCollaborationHighlight highlight)
+ {
+ var participant__handle__ = participant!.GetNonNullHandle (nameof (participant));
+ var highlight__handle__ = highlight!.GetNonNullHandle (nameof (highlight));
+ return Runtime.GetNSObject<SWRemoveParticipantAlertController> (global::ObjCRuntime.Messaging.NativeHandle_objc_msgSend_NativeHandle_NativeHandle (class_ptr, Selector.GetHandle ("alertControllerWithParticipant:highlight:"), participant__handle__, highlight__handle__))!;
+ }
+ } /* class SWRemoveParticipantAlertController */
+}
diff --git a/old/dotnet/maccatalyst/generated-sources/ShazamKit/SHMediaItem.g.cs b/new/dotnet/maccatalyst/generated-sources/ShazamKit/SHMediaItem.g.cs
index 08caa2b..e008a6d 100644
--- a/old/dotnet/maccatalyst/generated-sources/ShazamKit/SHMediaItem.g.cs
+++ b/new/dotnet/maccatalyst/generated-sources/ShazamKit/SHMediaItem.g.cs
@@ -135,7 +135,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.NIDActionArity2V129))]global::System.Action<SHMediaItem, NSError> completionHandler)
+ public unsafe static void FetchMediaItem (string shazamId, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V132))]global::System.Action<SHMediaItem, NSError> completionHandler)
{
if (shazamId is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (shazamId));
@@ -146,7 +146,7 @@ namespace ShazamKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V129.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V132.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (class_ptr, Selector.GetHandle ("fetchMediaItemWithShazamID:completionHandler:"), nsshazamId, (IntPtr) block_ptr_completionHandler);
CFString.ReleaseNative (nsshazamId);
block_ptr_completionHandler->CleanupBlock ();
diff --git a/old/dotnet/maccatalyst/generated-sources/ShazamKit/SHSignatureGenerator.g.cs b/new/dotnet/maccatalyst/generated-sources/ShazamKit/SHSignatureGenerator.g.cs
index 6b6d6c4..91373fc 100644
--- a/old/dotnet/maccatalyst/generated-sources/ShazamKit/SHSignatureGenerator.g.cs
+++ b/new/dotnet/maccatalyst/generated-sources/ShazamKit/SHSignatureGenerator.g.cs
@@ -108,7 +108,7 @@ namespace ShazamKit {
[SupportedOSPlatform ("ios16.0")]
[SupportedOSPlatform ("maccatalyst16.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static void GenerateSignature (global::AVFoundation.AVAsset asset, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V130))]global::System.Action<SHSignature, NSError> completionHandler)
+ public unsafe static void GenerateSignature (global::AVFoundation.AVAsset asset, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V133))]global::System.Action<SHSignature, NSError> completionHandler)
{
var asset__handle__ = asset!.GetNonNullHandle (nameof (asset));
if (completionHandler is null)
@@ -117,7 +117,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.SDActionArity2V133.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle (class_ptr, Selector.GetHandle ("generateSignatureFromAsset:completionHandler:"), asset__handle__, (IntPtr) block_ptr_completionHandler);
block_ptr_completionHandler->CleanupBlock ();
}
diff --git a/old/dotnet/maccatalyst/generated-sources/Speech/SFSpeechRecognizer.g.cs b/new/dotnet/maccatalyst/generated-sources/Speech/SFSpeechRecognizer.g.cs
index 690e809..c429bba 100644
--- a/old/dotnet/maccatalyst/generated-sources/Speech/SFSpeechRecognizer.g.cs
+++ b/new/dotnet/maccatalyst/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.NIDActionArity2V131))]global::System.Action<SFSpeechRecognitionResult, NSError> resultHandler)
+ public unsafe virtual SFSpeechRecognitionTask GetRecognitionTask (SFSpeechRecognitionRequest request, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V134))]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.SDActionArity2V131.Handler, resultHandler);
+ block_resultHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V134.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/maccatalyst/generated-sources/StoreKit/SKCloudServiceController.g.cs b/new/dotnet/maccatalyst/generated-sources/StoreKit/SKCloudServiceController.g.cs
index a47e574..19ff1a4 100644
--- a/old/dotnet/maccatalyst/generated-sources/StoreKit/SKCloudServiceController.g.cs
+++ b/new/dotnet/maccatalyst/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.NIDActionArity2V132))]global::System.Action<SKCloudServiceCapability, NSError> completionHandler)
+ public unsafe virtual void RequestCapabilities ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V135))]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.SDActionArity2V132.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V135.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.NIDActionArity2V133))]global::System.Action<NSString, NSError> completionHandler)
+ public unsafe virtual void RequestPersonalizationToken (string clientToken, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V136))]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.SDActionArity2V133.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V136.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.NIDActionArity2V133))]global::System.Action<NSString, NSError> completionHandler)
+ public unsafe virtual void RequestStorefrontCountryCode ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V136))]global::System.Action<NSString, NSError> completionHandler)
{
if (completionHandler is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (completionHandler));
@@ -219,7 +219,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.SDActionArity2V136.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("requestStorefrontCountryCodeWithCompletionHandler:"), (IntPtr) block_ptr_completionHandler);
} else {
@@ -249,7 +249,7 @@ namespace StoreKit {
[SupportedOSPlatform ("tvos9.2")]
[SupportedOSPlatform ("maccatalyst9.3")]
[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.NIDActionArity2V136))]global::System.Action<NSString, NSError> completionHandler)
{
if (completionHandler is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (completionHandler));
@@ -257,7 +257,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.SDActionArity2V136.Handler, completionHandler);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("requestStorefrontIdentifierWithCompletionHandler:"), (IntPtr) block_ptr_completionHandler);
} else {
@@ -287,7 +287,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.NIDActionArity2V133))]global::System.Action<NSString, NSError> completionHandler)
+ public unsafe virtual void RequestUserToken (string developerToken, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V136))]global::System.Action<NSString, NSError> completionHandler)
{
if (developerToken is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (developerToken));
@@ -298,7 +298,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.SDActionArity2V136.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/maccatalyst/generated-sources/StoreKit/SKProductStorePromotionController.g.cs b/new/dotnet/maccatalyst/generated-sources/StoreKit/SKProductStorePromotionController.g.cs
index 558a1bc..27ec75c 100644
--- a/old/dotnet/maccatalyst/generated-sources/StoreKit/SKProductStorePromotionController.g.cs
+++ b/new/dotnet/maccatalyst/generated-sources/StoreKit/SKProductStorePromotionController.g.cs
@@ -76,7 +76,7 @@ namespace StoreKit {
[SupportedOSPlatform ("tvos11.0")]
[SupportedOSPlatform ("macos11.0")]
[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.NIDActionArity2V137))]global::System.Action<SKProduct[], NSError>? completionHandler)
{
BlockLiteral *block_ptr_completionHandler;
BlockLiteral block_completionHandler;
@@ -85,7 +85,7 @@ namespace StoreKit {
} else {
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V134.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V137.Handler, completionHandler);
}
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle (this.Handle, Selector.GetHandle ("fetchStorePromotionOrderWithCompletionHandler:"), (IntPtr) block_ptr_completionHandler);
@@ -117,7 +117,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.NIDActionArity2V135))]global::System.Action<SKProductStorePromotionVisibility, NSError>? completionHandler)
+ public unsafe virtual void FetchStorePromotionVisibility (SKProduct product, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V138))]global::System.Action<SKProductStorePromotionVisibility, NSError>? completionHandler)
{
var product__handle__ = product!.GetNonNullHandle (nameof (product));
BlockLiteral *block_ptr_completionHandler;
@@ -127,7 +127,7 @@ namespace StoreKit {
} else {
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V135.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V138.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/maccatalyst/generated-sources/UIKit/NSTextLayoutManager.g.cs b/new/dotnet/maccatalyst/generated-sources/UIKit/NSTextLayoutManager.g.cs
index d895b46..dc30b1d 100644
--- a/old/dotnet/maccatalyst/generated-sources/UIKit/NSTextLayoutManager.g.cs
+++ b/new/dotnet/maccatalyst/generated-sources/UIKit/NSTextLayoutManager.g.cs
@@ -722,7 +722,7 @@ namespace UIKit {
[SupportedOSPlatform ("maccatalyst15.0")]
[UnsupportedOSPlatform ("macos")]
public unsafe virtual global::System.Action<NSTextLayoutManager, NSTextLayoutFragment>? RenderingAttributesValidator {
- [return: DelegateProxy (typeof (ObjCRuntime.Trampolines.SDActionArity2V136))]
+ [return: DelegateProxy (typeof (ObjCRuntime.Trampolines.SDActionArity2V139))]
[Export ("renderingAttributesValidator", ArgumentSemantic.Copy)]
[SupportedOSPlatform ("tvos15.0")]
[SupportedOSPlatform ("ios15.0")]
@@ -736,9 +736,9 @@ namespace UIKit {
} else {
ret = global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("renderingAttributesValidator"));
}
- return global::ObjCRuntime.Trampolines.NIDActionArity2V136.Create (ret)!;
+ return global::ObjCRuntime.Trampolines.NIDActionArity2V139.Create (ret)!;
}
- [param: BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V136))]
+ [param: BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V139))]
[Export ("setRenderingAttributesValidator:", ArgumentSemantic.Copy)]
[SupportedOSPlatform ("tvos15.0")]
[SupportedOSPlatform ("ios15.0")]
@@ -750,7 +750,7 @@ namespace UIKit {
BlockLiteral block_value;
block_value = new BlockLiteral ();
block_ptr_value = &block_value;
- block_value.SetupBlockUnsafe (Trampolines.SDActionArity2V136.Handler, value);
+ block_value.SetupBlockUnsafe (Trampolines.SDActionArity2V139.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/maccatalyst/generated-sources/UIKit/UIActivityViewController.g.cs b/new/dotnet/maccatalyst/generated-sources/UIKit/UIActivityViewController.g.cs
index 282e7cc..0bb7cb1 100644
--- a/old/dotnet/maccatalyst/generated-sources/UIKit/UIActivityViewController.g.cs
+++ b/new/dotnet/maccatalyst/generated-sources/UIKit/UIActivityViewController.g.cs
@@ -165,7 +165,7 @@ namespace UIKit {
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
public unsafe virtual global::System.Action<NSString, bool>? CompletionHandler {
- [return: DelegateProxy (typeof (ObjCRuntime.Trampolines.SDActionArity2V137))]
+ [return: DelegateProxy (typeof (ObjCRuntime.Trampolines.SDActionArity2V140))]
[Export ("completionHandler", ArgumentSemantic.Copy)]
[UnsupportedOSPlatform ("tvos")]
#if __IOS__
@@ -186,9 +186,9 @@ namespace UIKit {
} else {
ret = global::ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("completionHandler"));
}
- return global::ObjCRuntime.Trampolines.NIDActionArity2V137.Create (ret)!;
+ return global::ObjCRuntime.Trampolines.NIDActionArity2V140.Create (ret)!;
}
- [param: BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V137))]
+ [param: BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V140))]
[Export ("setCompletionHandler:", ArgumentSemantic.Copy)]
[UnsupportedOSPlatform ("tvos")]
#if __IOS__
@@ -207,7 +207,7 @@ namespace UIKit {
BlockLiteral block_value;
block_value = new BlockLiteral ();
block_ptr_value = &block_value;
- block_value.SetupBlockUnsafe (Trampolines.SDActionArity2V137.Handler, value);
+ block_value.SetupBlockUnsafe (Trampolines.SDActionArity2V140.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/maccatalyst/generated-sources/UIKit/UIDocumentBrowserViewControllerDelegate.g.cs b/new/dotnet/maccatalyst/generated-sources/UIKit/UIDocumentBrowserViewControllerDelegate.g.cs
index 62fcfd0..aa6ee24 100644
--- a/old/dotnet/maccatalyst/generated-sources/UIKit/UIDocumentBrowserViewControllerDelegate.g.cs
+++ b/new/dotnet/maccatalyst/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.NIDActionArity2V138) })]
+ [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 = "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 })]
@@ -90,7 +90,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.NIDActionArity2V138))]global::System.Action<NSUrl, UIDocumentBrowserImportMode> importHandler)
+ public unsafe static void DidRequestDocumentCreation (this IUIDocumentBrowserViewControllerDelegate This, UIDocumentBrowserViewController controller, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V141))]global::System.Action<NSUrl, UIDocumentBrowserImportMode> importHandler)
{
global::UIKit.UIApplication.EnsureUIThread ();
var controller__handle__ = controller!.GetNonNullHandle (nameof (controller));
@@ -100,7 +100,7 @@ namespace UIKit {
BlockLiteral block_importHandler;
block_importHandler = new BlockLiteral ();
block_ptr_importHandler = &block_importHandler;
- block_importHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V138.Handler, importHandler);
+ block_importHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V141.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 ();
}
@@ -250,7 +250,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.NIDActionArity2V138))]global::System.Action<NSUrl, UIDocumentBrowserImportMode> importHandler)
+ public unsafe virtual void DidRequestDocumentCreation (UIDocumentBrowserViewController controller, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V141))]global::System.Action<NSUrl, UIDocumentBrowserImportMode> importHandler)
{
throw new You_Should_Not_Call_base_In_This_Method ();
}
diff --git a/old/dotnet/maccatalyst/generated-sources/UIKit/UIPasteboard.g.cs b/new/dotnet/maccatalyst/generated-sources/UIKit/UIPasteboard.g.cs
index 59ecfa5..6e0077b 100644
--- a/old/dotnet/maccatalyst/generated-sources/UIKit/UIPasteboard.g.cs
+++ b/new/dotnet/maccatalyst/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.NIDActionArity2V139))]global::System.Action<NSSet<NSString>, NSError> completionHandler)
+ public unsafe virtual void DetectPatterns (NSSet<NSString> patterns, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V142))]global::System.Action<NSSet<NSString>, NSError> completionHandler)
{
global::UIKit.UIApplication.EnsureUIThread ();
var patterns__handle__ = patterns!.GetNonNullHandle (nameof (patterns));
@@ -164,7 +164,7 @@ namespace UIKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V139.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V142.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 {
@@ -194,7 +194,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.NIDActionArity2V140))]global::System.Action<NSSet<NSString>[], NSError> completionHandler)
+ public unsafe virtual void DetectPatterns (NSSet<NSString> patterns, NSIndexSet? itemSet, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V143))]global::System.Action<NSSet<NSString>[], NSError> completionHandler)
{
global::UIKit.UIApplication.EnsureUIThread ();
var patterns__handle__ = patterns!.GetNonNullHandle (nameof (patterns));
@@ -205,7 +205,7 @@ namespace UIKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V140.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V143.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 {
@@ -235,7 +235,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.NIDActionArity2V141))]global::System.Action<NSDictionary<NSString, NSObject>, NSError> completionHandler)
+ public unsafe virtual void DetectValues (NSSet<NSString> patterns, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V144))]global::System.Action<NSDictionary<NSString, NSObject>, NSError> completionHandler)
{
global::UIKit.UIApplication.EnsureUIThread ();
var patterns__handle__ = patterns!.GetNonNullHandle (nameof (patterns));
@@ -245,7 +245,7 @@ namespace UIKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V141.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V144.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 {
@@ -275,7 +275,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.NIDActionArity2V142))]global::System.Action<NSDictionary<NSString, NSObject>[], NSError> completionHandler)
+ public unsafe virtual void DetectValues (NSSet<NSString> patterns, NSIndexSet? itemSet, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V145))]global::System.Action<NSDictionary<NSString, NSObject>[], NSError> completionHandler)
{
global::UIKit.UIApplication.EnsureUIThread ();
var patterns__handle__ = patterns!.GetNonNullHandle (nameof (patterns));
@@ -286,7 +286,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.SDActionArity2V145.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/maccatalyst/generated-sources/UIKit/UISpringLoadedInteraction.g.cs b/new/dotnet/maccatalyst/generated-sources/UIKit/UISpringLoadedInteraction.g.cs
index 149f24c..bb8cb31 100644
--- a/old/dotnet/maccatalyst/generated-sources/UIKit/UISpringLoadedInteraction.g.cs
+++ b/new/dotnet/maccatalyst/generated-sources/UIKit/UISpringLoadedInteraction.g.cs
@@ -75,7 +75,7 @@ namespace UIKit {
[SupportedOSPlatform ("maccatalyst11.0")]
[DesignatedInitializer]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe UISpringLoadedInteraction (IUISpringLoadedInteractionBehavior? interactionBehavior, IUISpringLoadedInteractionEffect? interactionEffect, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V143))]global::System.Action<UISpringLoadedInteraction, IUISpringLoadedInteractionContext> handler)
+ public unsafe UISpringLoadedInteraction (IUISpringLoadedInteractionBehavior? interactionBehavior, IUISpringLoadedInteractionEffect? interactionEffect, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V146))]global::System.Action<UISpringLoadedInteraction, IUISpringLoadedInteractionContext> handler)
: base (NSObjectFlag.Empty)
{
global::UIKit.UIApplication.EnsureUIThread ();
@@ -87,7 +87,7 @@ namespace UIKit {
BlockLiteral block_handler;
block_handler = new BlockLiteral ();
block_ptr_handler = &block_handler;
- block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V143.Handler, handler);
+ block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V146.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 {
@@ -100,7 +100,7 @@ namespace UIKit {
[SupportedOSPlatform ("ios11.0")]
[SupportedOSPlatform ("maccatalyst11.0")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe UISpringLoadedInteraction ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V143))]global::System.Action<UISpringLoadedInteraction, IUISpringLoadedInteractionContext> handler)
+ public unsafe UISpringLoadedInteraction ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V146))]global::System.Action<UISpringLoadedInteraction, IUISpringLoadedInteractionContext> handler)
: base (NSObjectFlag.Empty)
{
global::UIKit.UIApplication.EnsureUIThread ();
@@ -110,7 +110,7 @@ namespace UIKit {
BlockLiteral block_handler;
block_handler = new BlockLiteral ();
block_ptr_handler = &block_handler;
- block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V143.Handler, handler);
+ block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V146.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/maccatalyst/generated-sources/UIKit/UITableViewRowAction.g.cs b/new/dotnet/maccatalyst/generated-sources/UIKit/UITableViewRowAction.g.cs
index 65a87d8..2638b9d 100644
--- a/old/dotnet/maccatalyst/generated-sources/UIKit/UITableViewRowAction.g.cs
+++ b/new/dotnet/maccatalyst/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.NIDActionArity2V144))]global::System.Action<UITableViewRowAction, NSIndexPath> handler)
+ public unsafe static UITableViewRowAction Create (UITableViewRowActionStyle style, string? title, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V147))]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.SDActionArity2V144.Handler, handler);
+ block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V147.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/maccatalyst/generated-sources/WebKit/WKContentRuleListStore.g.cs b/new/dotnet/maccatalyst/generated-sources/WebKit/WKContentRuleListStore.g.cs
index 5795c8d..598a1e2 100644
--- a/old/dotnet/maccatalyst/generated-sources/WebKit/WKContentRuleListStore.g.cs
+++ b/new/dotnet/maccatalyst/generated-sources/WebKit/WKContentRuleListStore.g.cs
@@ -86,7 +86,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.NIDActionArity2V145))]global::System.Action<WKContentRuleList, NSError> completionHandler)
+ public unsafe virtual void CompileContentRuleList (string identifier, string encodedContentRuleList, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V148))]global::System.Action<WKContentRuleList, NSError> completionHandler)
{
if (identifier is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (identifier));
@@ -100,7 +100,7 @@ namespace WebKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V145.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V148.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 {
@@ -173,7 +173,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.NIDActionArity2V145))]global::System.Action<WKContentRuleList, NSError> completionHandler)
+ public unsafe virtual void LookUpContentRuleList (string identifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V148))]global::System.Action<WKContentRuleList, NSError> completionHandler)
{
if (identifier is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (identifier));
@@ -184,7 +184,7 @@ namespace WebKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V145.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V148.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/maccatalyst/generated-sources/WebKit/WKNavigationDelegate.g.cs b/new/dotnet/maccatalyst/generated-sources/WebKit/WKNavigationDelegate.g.cs
index 5a68167..69dfc4d 100644
--- a/old/dotnet/maccatalyst/generated-sources/WebKit/WKNavigationDelegate.g.cs
+++ b/new/dotnet/maccatalyst/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.NIDActionArity1V249) })]
[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.NIDActionArity1V250) })]
- [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.NIDActionArity2V146) })]
+ [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.NIDActionArity2V149) })]
[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.NIDActionArity2V146))]global::System.Action<WKNavigationActionPolicy, WKWebpagePreferences> decisionHandler)
+ public unsafe static void DecidePolicy (this IWKNavigationDelegate This, WKWebView webView, WKNavigationAction navigationAction, WKWebpagePreferences preferences, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V149))]global::System.Action<WKNavigationActionPolicy, WKWebpagePreferences> decisionHandler)
{
var webView__handle__ = webView!.GetNonNullHandle (nameof (webView));
var navigationAction__handle__ = navigationAction!.GetNonNullHandle (nameof (navigationAction));
@@ -122,7 +122,7 @@ namespace WebKit {
BlockLiteral block_decisionHandler;
block_decisionHandler = new BlockLiteral ();
block_ptr_decisionHandler = &block_decisionHandler;
- block_decisionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V146.Handler, decisionHandler);
+ block_decisionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V149.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 ();
}
@@ -327,7 +327,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.NIDActionArity2V146))]global::System.Action<WKNavigationActionPolicy, WKWebpagePreferences> decisionHandler)
+ public unsafe virtual void DecidePolicy (WKWebView webView, WKNavigationAction navigationAction, WKWebpagePreferences preferences, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V149))]global::System.Action<WKNavigationActionPolicy, WKWebpagePreferences> decisionHandler)
{
throw new You_Should_Not_Call_base_In_This_Method ();
}
diff --git a/old/dotnet/maccatalyst/generated-sources/WebKit/WKScriptMessageHandlerWithReply.g.cs b/new/dotnet/maccatalyst/generated-sources/WebKit/WKScriptMessageHandlerWithReply.g.cs
index ec41e93..ac8451c 100644
--- a/old/dotnet/maccatalyst/generated-sources/WebKit/WKScriptMessageHandlerWithReply.g.cs
+++ b/new/dotnet/maccatalyst/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.NIDActionArity2V147) })]
+ [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.NIDActionArity2V150) })]
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.NIDActionArity2V147))]global::System.Action<NSObject, NSString> replyHandler);
+ unsafe void DidReceiveScriptMessage (WKUserContentController userContentController, WKScriptMessage message, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V150))]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.NIDActionArity2V147))]global::System.Action<NSObject, NSString> replyHandler)
+ public unsafe void DidReceiveScriptMessage (WKUserContentController userContentController, WKScriptMessage message, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V150))]global::System.Action<NSObject, NSString> replyHandler)
{
var userContentController__handle__ = userContentController!.GetNonNullHandle (nameof (userContentController));
var message__handle__ = message!.GetNonNullHandle (nameof (message));
@@ -82,7 +82,7 @@ namespace WebKit {
BlockLiteral block_replyHandler;
block_replyHandler = new BlockLiteral ();
block_ptr_replyHandler = &block_replyHandler;
- block_replyHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V147.Handler, replyHandler);
+ block_replyHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V150.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 ();
}
diff --git a/old/dotnet/maccatalyst/generated-sources/WebKit/WKWebView.g.cs b/new/dotnet/maccatalyst/generated-sources/WebKit/WKWebView.g.cs
index 2130c72..ebde0f1 100644
--- a/old/dotnet/maccatalyst/generated-sources/WebKit/WKWebView.g.cs
+++ b/new/dotnet/maccatalyst/generated-sources/WebKit/WKWebView.g.cs
@@ -862,7 +862,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.NIDActionArity2V148))]global::System.Action<global::UIKit.UIImage, NSError> completionHandler)
+ public unsafe virtual void TakeSnapshot (WKSnapshotConfiguration? snapshotConfiguration, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V151))]global::System.Action<global::UIKit.UIImage, NSError> completionHandler)
{
var snapshotConfiguration__handle__ = snapshotConfiguration.GetHandle ();
if (completionHandler is null)
@@ -871,7 +871,7 @@ namespace WebKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V148.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V151.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/dotnet/projects/MacCatalyst/MacCatalyst.csproj b/new/dotnet/projects/MacCatalyst/MacCatalyst.csproj
index 689103d..2b0fb0e 100644
--- a/old/dotnet/projects/MacCatalyst/MacCatalyst.csproj
+++ b/new/dotnet/projects/MacCatalyst/MacCatalyst.csproj
@@ -1218,6 +1218,7 @@
<None Include="../../../../screentime.cs" Link="apis/screentime.cs"/>
<None Include="../../../../security.cs" Link="apis/security.cs"/>
<None Include="../../../../sensorkit.cs" Link="apis/sensorkit.cs"/>
+ <None Include="../../../../sharedwithyou.cs" Link="apis/sharedwithyou.cs"/>
<None Include="../../../../sharedwithyoucore.cs" Link="apis/sharedwithyoucore.cs"/>
<None Include="../../../../shazamkit.cs" Link="apis/shazamkit.cs"/>
<None Include="../../../../social.cs" Link="apis/social.cs"/>
diff --git a/old/dotnet/projects/iOS/iOS.csproj b/new/dotnet/projects/iOS/iOS.csproj
index 76f7712..a6417fd 100644
--- a/old/dotnet/projects/iOS/iOS.csproj
+++ b/new/dotnet/projects/iOS/iOS.csproj
@@ -1212,6 +1212,7 @@
<None Include="../../../../screentime.cs" Link="apis/screentime.cs"/>
<None Include="../../../../security.cs" Link="apis/security.cs"/>
<None Include="../../../../sensorkit.cs" Link="apis/sensorkit.cs"/>
+ <None Include="../../../../sharedwithyou.cs" Link="apis/sharedwithyou.cs"/>
<None Include="../../../../sharedwithyoucore.cs" Link="apis/sharedwithyoucore.cs"/>
<None Include="../../../../shazamkit.cs" Link="apis/shazamkit.cs"/>
<None Include="../../../../social.cs" Link="apis/social.cs"/>
diff --git a/old/generator-frameworks.g.cs b/new/generator-frameworks.g.cs
index b01328f..e1aa2b6 100644
--- a/old/generator-frameworks.g.cs
+++ b/new/generator-frameworks.g.cs
@@ -1,11 +1,11 @@
using System.Collections.Generic;
partial class Frameworks {
- internal readonly HashSet<string> iosframeworks = new HashSet<string> {"Accessibility", "Accelerate", "AuthenticationServices", "AVFoundation", "CoreBluetooth", "CoreData", "CoreFoundation", "CoreMedia", "CoreML", "CoreVideo", "Compression", "DeviceCheck", "Foundation", "GameKit", "NaturalLanguage", "Network", "OSLog", "SceneKit", "ShazamKit", "SoundAnalysis", "SpriteKit", "StoreKit", "UniformTypeIdentifiers", "AVKit", "Accounts", "AdServices", "AdSupport", "AddressBook", "AddressBookUI", "AppClip", "AppTrackingTransparency", "ARKit", "AssetsLibrary", "AudioToolbox", "AudioUnit", "AutomaticAssessmentConfiguration", "BackgroundAssets", "BackgroundTasks", "BusinessChat", "CallKit", "CarPlay", "CFNetwork", "Chip", "ClassKit", "CloudKit", "Contacts", "ContactsUI", "CoreAnimation", "CoreAudioKit", "CoreGraphics", "CoreHaptics", "CoreImage", "CoreLocation", "CoreLocationUI", "CoreMIDI", "CoreMotion", "CoreNFC", "CoreSpotlight", "CoreTelephony", "CoreText", "EventKit", "EventKitUI", "ExternalAccessory", "FileProvider", "FileProviderUI", "GLKit", "GameController", "GameplayKit", "HealthKit", "HealthKitUI", "HomeKit", "IdentityLookup", "IdentityLookupUI", "ImageIO", "Intents", "IntentsUI", "IOSurface", "JavaScriptCore", "LinkPresentation", "LocalAuthentication", "MapKit", "MediaAccessibility", "MediaPlayer", "MediaSetup", "MediaToolbox", "Messages", "MessageUI", "Metal", "MetalKit", "MetalPerformanceShaders", "MetalPerformanceShadersGraph", "MetricKit", "MLCompute", "MobileCoreServices", "ModelIO", "MultipeerConnectivity", "NearbyInteraction", "NetworkExtension", "NewsstandKit", "NotificationCenter", "OpenGLES", "PassKit", "PdfKit", "PencilKit", "Phase", "Photos", "PhotosUI", "PushKit", "PushToTalk", "QuickLook", "QuickLookThumbnailing", "ReplayKit", "SafariServices", "ScreenTime", "Security", "SensorKit", "SharedWithYouCore", "Social", "Speech", "SystemConfiguration", "ThreadNetwork", "Twitter", "UIKit", "XKit", "UserNotifications", "UserNotificationsUI", "VideoToolbox", "VideoSubscriberAccount", "Vision", "VisionKit", "WatchConnectivity", "WatchKit", "WKWebKit", "iAd"};
+ internal readonly HashSet<string> iosframeworks = new HashSet<string> {"Accessibility", "Accelerate", "AuthenticationServices", "AVFoundation", "CoreBluetooth", "CoreData", "CoreFoundation", "CoreMedia", "CoreML", "CoreVideo", "Compression", "DeviceCheck", "Foundation", "GameKit", "NaturalLanguage", "Network", "OSLog", "SceneKit", "ShazamKit", "SoundAnalysis", "SpriteKit", "StoreKit", "UniformTypeIdentifiers", "AVKit", "Accounts", "AdServices", "AdSupport", "AddressBook", "AddressBookUI", "AppClip", "AppTrackingTransparency", "ARKit", "AssetsLibrary", "AudioToolbox", "AudioUnit", "AutomaticAssessmentConfiguration", "BackgroundAssets", "BackgroundTasks", "BusinessChat", "CallKit", "CarPlay", "CFNetwork", "Chip", "ClassKit", "CloudKit", "Contacts", "ContactsUI", "CoreAnimation", "CoreAudioKit", "CoreGraphics", "CoreHaptics", "CoreImage", "CoreLocation", "CoreLocationUI", "CoreMIDI", "CoreMotion", "CoreNFC", "CoreSpotlight", "CoreTelephony", "CoreText", "EventKit", "EventKitUI", "ExternalAccessory", "FileProvider", "FileProviderUI", "GLKit", "GameController", "GameplayKit", "HealthKit", "HealthKitUI", "HomeKit", "IdentityLookup", "IdentityLookupUI", "ImageIO", "Intents", "IntentsUI", "IOSurface", "JavaScriptCore", "LinkPresentation", "LocalAuthentication", "MapKit", "MediaAccessibility", "MediaPlayer", "MediaSetup", "MediaToolbox", "Messages", "MessageUI", "Metal", "MetalKit", "MetalPerformanceShaders", "MetalPerformanceShadersGraph", "MetricKit", "MLCompute", "MobileCoreServices", "ModelIO", "MultipeerConnectivity", "NearbyInteraction", "NetworkExtension", "NewsstandKit", "NotificationCenter", "OpenGLES", "PassKit", "PdfKit", "PencilKit", "Phase", "Photos", "PhotosUI", "PushKit", "PushToTalk", "QuickLook", "QuickLookThumbnailing", "ReplayKit", "SafariServices", "ScreenTime", "Security", "SensorKit", "SharedWithYou", "SharedWithYouCore", "Social", "Speech", "SystemConfiguration", "ThreadNetwork", "Twitter", "UIKit", "XKit", "UserNotifications", "UserNotificationsUI", "VideoToolbox", "VideoSubscriberAccount", "Vision", "VisionKit", "WatchConnectivity", "WatchKit", "WKWebKit", "iAd"};
internal readonly HashSet<string> macosframeworks = new HashSet<string> {"Accessibility", "Accelerate", "AuthenticationServices", "AVFoundation", "CoreBluetooth", "CoreData", "CoreFoundation", "CoreMedia", "CoreML", "CoreVideo", "Compression", "DeviceCheck", "Foundation", "GameKit", "NaturalLanguage", "Network", "OSLog", "SceneKit", "ShazamKit", "SoundAnalysis", "SpriteKit", "StoreKit", "UniformTypeIdentifiers", "Accounts", "AdServices", "AdSupport", "AppKit", "XKit", "AppTrackingTransparency", "AudioToolbox", "AudioUnit", "AutomaticAssessmentConfiguration", "AVKit", "BusinessChat", "BackgroundAssets", "CallKit", "CFNetwork", "Chip", "ClassKit", "CloudKit", "Contacts", "ContactsUI", "CoreAnimation", "CoreAudioKit", "CoreGraphics", "CoreImage", "CoreLocation", "CoreMidi", "CoreMotion", "CoreServices", "CoreSpotlight", "CoreText", "CoreWlan", "EventKit", "ExecutionPolicy", "ExternalAccessory", "FileProvider", "FileProviderUI", "FinderSync", "GameController", "GameplayKit", "GLKit", "ImageIO", "ImageCaptureCore", "ImageKit", "Intents", "IntentsUI", "IOSurface", "iTunesLibrary", "JavaScriptCore", "LinkPresentation", "LocalAuthentication", "LocalAuthenticationEmbeddedUI", "MailKit", "MapKit", "MediaAccessibility", "MediaLibrary", "MediaPlayer", "MediaToolbox", "Metal", "MetalKit", "MetalPerformanceShaders", "MetalPerformanceShadersGraph", "MetricKit", "MLCompute", "MobileCoreServices", "ModelIO", "MultipeerConnectivity", "NearbyInteraction", "NetworkExtension", "NotificationCenter", "OpenGL", "PassKit", "PdfKit", "PencilKit", "Phase", "Photos", "PhotosUI", "PrintCore", "PushKit", "QTKit", "QuartzComposer", "QuickLook", "QuickLookThumbnailing", "QuickLookUI", "ReplayKit", "SafariServices", "ScreenCaptureKit", "ScreenTime", "ScriptingBridge", "SearchKit", "Security", "SharedWithYouCore", "Social", "Speech", "SystemConfiguration", "UserNotifications", "UserNotificationsUI", "VideoSubscriberAccount", "VideoToolbox", "Vision", "WebKit", "WKWebKit"};
internal readonly HashSet<string> watchosframeworks = new HashSet<string> {"Accessibility", "Accelerate", "AuthenticationServices", "AVFoundation", "CoreBluetooth", "CoreData", "CoreFoundation", "CoreMedia", "CoreML", "CoreVideo", "Compression", "DeviceCheck", "Foundation", "GameKit", "NaturalLanguage", "Network", "OSLog", "SceneKit", "ShazamKit", "SoundAnalysis", "SpriteKit", "StoreKit", "UniformTypeIdentifiers", "CallKit", "Chip", "ClockKit", "CloudKit", "Contacts", "CoreGraphics", "CoreLocation", "CoreMotion", "CoreText", "EventKit", "HealthKit", "HomeKit", "ImageIO", "Intents", "MapKit", "MediaPlayer", "MobileCoreServices", "NearbyInteraction", "PassKit", "PushKit", "Security", "UIKit", "XKit", "UserNotifications", "WatchConnectivity", "WatchKit"};
internal readonly HashSet<string> tvosframeworks = new HashSet<string> {"Accessibility", "Accelerate", "AuthenticationServices", "AVFoundation", "CoreBluetooth", "CoreData", "CoreFoundation", "CoreMedia", "CoreML", "CoreVideo", "Compression", "DeviceCheck", "Foundation", "GameKit", "NaturalLanguage", "Network", "OSLog", "SceneKit", "ShazamKit", "SoundAnalysis", "SpriteKit", "StoreKit", "UniformTypeIdentifiers", "AVKit", "AdSupport", "AppTrackingTransparency", "AudioToolbox", "AudioUnit", "BackgroundTasks", "CFNetwork", "Chip", "CloudKit", "CoreAnimation", "CoreGraphics", "CoreHaptics", "CoreImage", "CoreLocation", "CoreSpotlight", "CoreText", "ExternalAccessory", "GLKit", "GameController", "GameplayKit", "HomeKit", "ImageIO", "Intents", "IOSurface", "JavaScriptCore", "LinkPresentation", "MapKit", "MediaAccessibility", "MediaPlayer", "MediaToolbox", "Metal", "MetalKit", "MetalPerformanceShaders", "MetalPerformanceShadersGraph", "MLCompute", "MobileCoreServices", "ModelIO", "MultipeerConnectivity", "OpenGLES", "Photos", "PhotosUI", "ReplayKit", "Security", "SystemConfiguration", "TVMLKit", "TVUIKit", "TVServices", "UIKit", "XKit", "UserNotifications", "VideoSubscriberAccount", "VideoToolbox", "Vision"};
- internal readonly HashSet<string> maccatalystframeworks = new HashSet<string> {"Accessibility", "Accelerate", "AuthenticationServices", "AVFoundation", "CoreBluetooth", "CoreData", "CoreFoundation", "CoreMedia", "CoreML", "CoreVideo", "Compression", "DeviceCheck", "Foundation", "GameKit", "NaturalLanguage", "Network", "OSLog", "SceneKit", "ShazamKit", "SoundAnalysis", "SpriteKit", "StoreKit", "UniformTypeIdentifiers", "AppClip", "AppKit", "AVKit", "Accounts", "AdServices", "AdSupport", "AddressBook", "AppTrackingTransparency", "AudioToolbox", "AudioUnit", "AutomaticAssessmentConfiguration", "BackgroundAssets", "BackgroundTasks", "BusinessChat", "CallKit", "CFNetwork", "ClassKit", "CloudKit", "Contacts", "ContactsUI", "CoreAnimation", "CoreAudioKit", "CoreGraphics", "CoreHaptics", "CoreImage", "CoreLocation", "CoreLocationUI", "CoreMIDI", "CoreMotion", "CoreNFC", "CoreSpotlight", "CoreTelephony", "CoreText", "CoreWlan", "EventKit", "EventKitUI", "ExecutionPolicy", "ExternalAccessory", "FileProvider", "GameController", "GameplayKit", "HealthKit", "HealthKitUI", "HomeKit", "IdentityLookup", "IdentityLookupUI", "ImageIO", "Intents", "IntentsUI", "IOSurface", "JavaScriptCore", "LinkPresentation", "LocalAuthentication", "MapKit", "MediaAccessibility", "MediaPlayer", "MediaToolbox", "Messages", "MessageUI", "Metal", "MetalKit", "MetalPerformanceShaders", "MetalPerformanceShadersGraph", "MetricKit", "MLCompute", "MobileCoreServices", "ModelIO", "MultipeerConnectivity", "NearbyInteraction", "NetworkExtension", "PassKit", "PdfKit", "PencilKit", "Phase", "Photos", "PhotosUI", "PushKit", "QuickLook", "QuickLookThumbnailing", "ReplayKit", "SafariServices", "ScreenTime", "Security", "SensorKit", "SharedWithYouCore", "Social", "Speech", "SystemConfiguration", "UIKit", "XKit", "UserNotifications", "UserNotificationsUI", "VideoToolbox", "Vision", "VisionKit", "WKWebKit"};
+ internal readonly HashSet<string> maccatalystframeworks = new HashSet<string> {"Accessibility", "Accelerate", "AuthenticationServices", "AVFoundation", "CoreBluetooth", "CoreData", "CoreFoundation", "CoreMedia", "CoreML", "CoreVideo", "Compression", "DeviceCheck", "Foundation", "GameKit", "NaturalLanguage", "Network", "OSLog", "SceneKit", "ShazamKit", "SoundAnalysis", "SpriteKit", "StoreKit", "UniformTypeIdentifiers", "AppClip", "AppKit", "AVKit", "Accounts", "AdServices", "AdSupport", "AddressBook", "AppTrackingTransparency", "AudioToolbox", "AudioUnit", "AutomaticAssessmentConfiguration", "BackgroundAssets", "BackgroundTasks", "BusinessChat", "CallKit", "CFNetwork", "ClassKit", "CloudKit", "Contacts", "ContactsUI", "CoreAnimation", "CoreAudioKit", "CoreGraphics", "CoreHaptics", "CoreImage", "CoreLocation", "CoreLocationUI", "CoreMIDI", "CoreMotion", "CoreNFC", "CoreSpotlight", "CoreTelephony", "CoreText", "CoreWlan", "EventKit", "EventKitUI", "ExecutionPolicy", "ExternalAccessory", "FileProvider", "GameController", "GameplayKit", "HealthKit", "HealthKitUI", "HomeKit", "IdentityLookup", "IdentityLookupUI", "ImageIO", "Intents", "IntentsUI", "IOSurface", "JavaScriptCore", "LinkPresentation", "LocalAuthentication", "MapKit", "MediaAccessibility", "MediaPlayer", "MediaToolbox", "Messages", "MessageUI", "Metal", "MetalKit", "MetalPerformanceShaders", "MetalPerformanceShadersGraph", "MetricKit", "MLCompute", "MobileCoreServices", "ModelIO", "MultipeerConnectivity", "NearbyInteraction", "NetworkExtension", "PassKit", "PdfKit", "PencilKit", "Phase", "Photos", "PhotosUI", "PushKit", "QuickLook", "QuickLookThumbnailing", "ReplayKit", "SafariServices", "ScreenTime", "Security", "SensorKit", "SharedWithYou", "SharedWithYouCore", "Social", "Speech", "SystemConfiguration", "UIKit", "XKit", "UserNotifications", "UserNotificationsUI", "VideoToolbox", "Vision", "VisionKit", "WKWebKit"};
bool? _Accelerate;
bool? _Accessibility;
bool? _Accounts;
@@ -139,6 +139,7 @@ partial class Frameworks {
bool? _SearchKit;
bool? _Security;
bool? _SensorKit;
+ bool? _SharedWithYou;
bool? _SharedWithYouCore;
bool? _ShazamKit;
bool? _Social;
@@ -298,6 +299,7 @@ partial class Frameworks {
public bool HaveSearchKit { get { if (!_SearchKit.HasValue) _SearchKit = GetValue ("SearchKit"); return _SearchKit.Value; } }
public bool HaveSecurity { get { if (!_Security.HasValue) _Security = GetValue ("Security"); return _Security.Value; } }
public bool HaveSensorKit { get { if (!_SensorKit.HasValue) _SensorKit = GetValue ("SensorKit"); return _SensorKit.Value; } }
+ public bool HaveSharedWithYou { get { if (!_SharedWithYou.HasValue) _SharedWithYou = GetValue ("SharedWithYou"); return _SharedWithYou.Value; } }
public bool HaveSharedWithYouCore { get { if (!_SharedWithYouCore.HasValue) _SharedWithYouCore = GetValue ("SharedWithYouCore"); return _SharedWithYouCore.Value; } }
public bool HaveShazamKit { get { if (!_ShazamKit.HasValue) _ShazamKit = GetValue ("ShazamKit"); return _ShazamKit.Value; } }
public bool HaveSocial { get { if (!_Social.HasValue) _Social = GetValue ("Social"); return _Social.Value; } }
diff --git a/old/ios/native/ObjCRuntime/Libraries.g.cs b/new/ios/native/ObjCRuntime/Libraries.g.cs
index 5e7fd08..dc2623e 100644
--- a/old/ios/native/ObjCRuntime/Libraries.g.cs
+++ b/new/ios/native/ObjCRuntime/Libraries.g.cs
@@ -314,6 +314,9 @@ namespace ObjCRuntime {
static public class SensorKit {
static public readonly IntPtr Handle = Dlfcn._dlopen (Constants.SensorKitLibrary, 0);
}
+ static public class SharedWithYou {
+ static public readonly IntPtr Handle = Dlfcn._dlopen (Constants.SharedWithYouLibrary, 0);
+ }
static public class SharedWithYouCore {
static public readonly IntPtr Handle = Dlfcn._dlopen (Constants.SharedWithYouCoreLibrary, 0);
}
diff --git a/old/ios/native/ObjCRuntime/Trampolines.g.cs b/new/ios/native/ObjCRuntime/Trampolines.g.cs
index ee777e5..a2da36b 100644
--- a/old/ios/native/ObjCRuntime/Trampolines.g.cs
+++ b/new/ios/native/ObjCRuntime/Trampolines.g.cs
@@ -25980,26 +25980,26 @@ namespace ObjCRuntime {
} /* class NIDActionArity2V31 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSArray<global::VideoSubscriberAccount.VSUserAccount>, NSError>))]
- internal delegate void DActionArity2V159 (IntPtr block, IntPtr arg1, IntPtr arg2);
+ internal delegate void DActionArity2V162 (IntPtr block, IntPtr arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V159 {
- static internal readonly DActionArity2V159 Handler = Invoke;
- [MonoPInvokeCallback (typeof (DActionArity2V159))]
+ static internal class SDActionArity2V162 {
+ static internal readonly DActionArity2V162 Handler = Invoke;
+ [MonoPInvokeCallback (typeof (DActionArity2V162))]
static unsafe void Invoke (IntPtr block, IntPtr arg1, IntPtr arg2) {
var descriptor = (BlockLiteral *) block;
var del = (global::System.Action<NSArray<global::VideoSubscriberAccount.VSUserAccount>, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<global::Foundation.NSArray<global::VideoSubscriberAccount.VSUserAccount>> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V159 */
- internal sealed class NIDActionArity2V159 : TrampolineBlockBase {
- DActionArity2V159 invoker;
+ } /* class SDActionArity2V162 */
+ internal sealed class NIDActionArity2V162 : TrampolineBlockBase {
+ DActionArity2V162 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V159 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V162 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V159> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V162> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -26008,7 +26008,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<NSArray<global::VideoSubscriberAccount.VSUserAccount>, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V159 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V162 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSArray<global::VideoSubscriberAccount.VSUserAccount> arg1, NSError arg2)
@@ -26017,7 +26017,7 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V159 */
+ } /* class NIDActionArity2V162 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSData, NSError>))]
internal delegate void DActionArity2V19 (IntPtr block, IntPtr arg1, IntPtr arg2);
@@ -26232,26 +26232,26 @@ namespace ObjCRuntime {
} /* class NIDActionArity2V75 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSDictionary<NSString, NSObject>, NSError>))]
- internal delegate void DActionArity2V153 (IntPtr block, IntPtr arg1, IntPtr arg2);
+ internal delegate void DActionArity2V156 (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 SDActionArity2V156 {
+ static internal readonly DActionArity2V156 Handler = Invoke;
+ [MonoPInvokeCallback (typeof (DActionArity2V156))]
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 SDActionArity2V153 */
- internal sealed class NIDActionArity2V153 : TrampolineBlockBase {
- DActionArity2V153 invoker;
+ } /* class SDActionArity2V156 */
+ internal sealed class NIDActionArity2V156 : TrampolineBlockBase {
+ DActionArity2V156 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V153 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V156 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V153> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V156> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -26260,7 +26260,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<NSDictionary<NSString, NSObject>, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V153 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V156 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSDictionary<NSString, NSObject> arg1, NSError arg2)
@@ -26269,29 +26269,29 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V153 */
+ } /* class NIDActionArity2V156 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSDictionary<NSString, NSObject>[], NSError>))]
- internal delegate void DActionArity2V154 (IntPtr block, IntPtr arg1, IntPtr arg2);
+ internal delegate void DActionArity2V157 (IntPtr block, IntPtr arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V154 {
- static internal readonly DActionArity2V154 Handler = Invoke;
- [MonoPInvokeCallback (typeof (DActionArity2V154))]
+ static internal class SDActionArity2V157 {
+ static internal readonly DActionArity2V157 Handler = Invoke;
+ [MonoPInvokeCallback (typeof (DActionArity2V157))]
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 SDActionArity2V154 */
- internal sealed class NIDActionArity2V154 : TrampolineBlockBase {
- DActionArity2V154 invoker;
+ } /* class SDActionArity2V157 */
+ internal sealed class NIDActionArity2V157 : TrampolineBlockBase {
+ DActionArity2V157 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V154 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V157 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V154> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V157> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -26300,7 +26300,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<NSDictionary<NSString, NSObject>[], NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V154 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V157 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSDictionary<NSString, NSObject>[] arg1, NSError arg2)
@@ -26313,7 +26313,7 @@ namespace ObjCRuntime {
if (nsa_arg1 != null)
nsa_arg1.Dispose ();
}
- } /* class NIDActionArity2V154 */
+ } /* class NIDActionArity2V157 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSDictionary<NSString, NSOperation>, NSError>))]
internal delegate void DActionArity2V39 (IntPtr block, IntPtr arg1, IntPtr arg2);
@@ -26480,26 +26480,26 @@ namespace ObjCRuntime {
} /* class NIDActionArity2V76 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSObject, NSString>))]
- internal delegate void DActionArity2V162 (IntPtr block, IntPtr arg1, IntPtr arg2);
+ internal delegate void DActionArity2V165 (IntPtr block, IntPtr arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V162 {
- static internal readonly DActionArity2V162 Handler = Invoke;
- [MonoPInvokeCallback (typeof (DActionArity2V162))]
+ static internal class SDActionArity2V165 {
+ static internal readonly DActionArity2V165 Handler = Invoke;
+ [MonoPInvokeCallback (typeof (DActionArity2V165))]
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 SDActionArity2V162 */
- internal sealed class NIDActionArity2V162 : TrampolineBlockBase {
- DActionArity2V162 invoker;
+ } /* class SDActionArity2V165 */
+ internal sealed class NIDActionArity2V165 : TrampolineBlockBase {
+ DActionArity2V165 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V162 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V165 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V162> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V165> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -26508,7 +26508,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<NSObject, NSString>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V162 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V165 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSObject arg1, NSString arg2)
@@ -26517,29 +26517,29 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V162 */
+ } /* class NIDActionArity2V165 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSSet<NSString>, NSError>))]
- internal delegate void DActionArity2V151 (IntPtr block, IntPtr arg1, IntPtr arg2);
+ internal delegate void DActionArity2V154 (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 SDActionArity2V154 {
+ static internal readonly DActionArity2V154 Handler = Invoke;
+ [MonoPInvokeCallback (typeof (DActionArity2V154))]
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 SDActionArity2V151 */
- internal sealed class NIDActionArity2V151 : TrampolineBlockBase {
- DActionArity2V151 invoker;
+ } /* class SDActionArity2V154 */
+ internal sealed class NIDActionArity2V154 : TrampolineBlockBase {
+ DActionArity2V154 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V151 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V154 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V151> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V154> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -26548,7 +26548,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<NSSet<NSString>, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V151 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V154 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSSet<NSString> arg1, NSError arg2)
@@ -26557,29 +26557,29 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V151 */
+ } /* class NIDActionArity2V154 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSSet<NSString>[], NSError>))]
- internal delegate void DActionArity2V152 (IntPtr block, IntPtr arg1, IntPtr arg2);
+ internal delegate void DActionArity2V155 (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 SDActionArity2V155 {
+ static internal readonly DActionArity2V155 Handler = Invoke;
+ [MonoPInvokeCallback (typeof (DActionArity2V155))]
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 SDActionArity2V152 */
- internal sealed class NIDActionArity2V152 : TrampolineBlockBase {
- DActionArity2V152 invoker;
+ } /* class SDActionArity2V155 */
+ internal sealed class NIDActionArity2V155 : TrampolineBlockBase {
+ DActionArity2V155 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V152 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V155 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V152> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V155> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -26588,7 +26588,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<NSSet<NSString>[], NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V152 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V155 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSSet<NSString>[] arg1, NSError arg2)
@@ -26601,29 +26601,29 @@ namespace ObjCRuntime {
if (nsa_arg1 != null)
nsa_arg1.Dispose ();
}
- } /* class NIDActionArity2V152 */
+ } /* class NIDActionArity2V155 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSSet<global::ThreadNetwork.THCredentials>, NSError>))]
- internal delegate void DActionArity2V146 (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 SDActionArity2V146 {
- static internal readonly DActionArity2V146 Handler = Invoke;
- [MonoPInvokeCallback (typeof (DActionArity2V146))]
+ 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<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 SDActionArity2V146 */
- internal sealed class NIDActionArity2V146 : TrampolineBlockBase {
- DActionArity2V146 invoker;
+ } /* class SDActionArity2V149 */
+ internal sealed class NIDActionArity2V149 : TrampolineBlockBase {
+ DActionArity2V149 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V146 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V149 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V146> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V149> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -26632,7 +26632,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<NSSet<global::ThreadNetwork.THCredentials>, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V146 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V149 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSSet<global::ThreadNetwork.THCredentials> arg1, NSError arg2)
@@ -26641,29 +26641,29 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V146 */
+ } /* class NIDActionArity2V149 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSString, NSError>))]
- internal delegate void DActionArity2V143 (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 SDActionArity2V143 {
- static internal readonly DActionArity2V143 Handler = Invoke;
- [MonoPInvokeCallback (typeof (DActionArity2V143))]
+ 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<NSString, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<NSString> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V143 */
- internal sealed class NIDActionArity2V143 : TrampolineBlockBase {
- DActionArity2V143 invoker;
+ } /* class SDActionArity2V146 */
+ internal sealed class NIDActionArity2V146 : TrampolineBlockBase {
+ DActionArity2V146 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V143 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V146 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V143> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V146> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -26672,7 +26672,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<NSString, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V143 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V146 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSString arg1, NSError arg2)
@@ -26681,29 +26681,29 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V143 */
+ } /* class NIDActionArity2V146 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSString, bool>))]
- internal delegate void DActionArity2V149 (IntPtr block, IntPtr arg1, bool arg2);
+ internal delegate void DActionArity2V152 (IntPtr block, IntPtr arg1, bool 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 SDActionArity2V152 {
+ static internal readonly DActionArity2V152 Handler = Invoke;
+ [MonoPInvokeCallback (typeof (DActionArity2V152))]
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 SDActionArity2V149 */
- internal sealed class NIDActionArity2V149 : TrampolineBlockBase {
- DActionArity2V149 invoker;
+ } /* class SDActionArity2V152 */
+ internal sealed class NIDActionArity2V152 : TrampolineBlockBase {
+ DActionArity2V152 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V149 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V152 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V149> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V152> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -26712,7 +26712,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<NSString, bool>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V149 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V152 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSString arg1, bool arg2)
@@ -26720,7 +26720,7 @@ namespace ObjCRuntime {
var arg1__handle__ = arg1.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2);
}
- } /* class NIDActionArity2V149 */
+ } /* class NIDActionArity2V152 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSUrl, NSError>))]
internal delegate void DActionArity2V27 (IntPtr block, IntPtr arg1, IntPtr arg2);
@@ -26763,26 +26763,26 @@ namespace ObjCRuntime {
} /* class NIDActionArity2V27 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSUrl, global::UIKit.UIDocumentBrowserImportMode>))]
- internal delegate void DActionArity2V150 (IntPtr block, IntPtr arg1, UIntPtr arg2);
+ internal delegate void DActionArity2V153 (IntPtr block, IntPtr arg1, UIntPtr 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 SDActionArity2V153 {
+ static internal readonly DActionArity2V153 Handler = Invoke;
+ [MonoPInvokeCallback (typeof (DActionArity2V153))]
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 SDActionArity2V150 */
- internal sealed class NIDActionArity2V150 : TrampolineBlockBase {
- DActionArity2V150 invoker;
+ } /* class SDActionArity2V153 */
+ internal sealed class NIDActionArity2V153 : TrampolineBlockBase {
+ DActionArity2V153 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V150 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V153 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V150> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V153> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -26791,7 +26791,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<NSUrl, global::UIKit.UIDocumentBrowserImportMode>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V150 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V153 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (NSUrl arg1, global::UIKit.UIDocumentBrowserImportMode arg2)
@@ -26799,7 +26799,7 @@ namespace ObjCRuntime {
var arg1__handle__ = arg1.GetHandle ();
invoker (BlockPointer, arg1__handle__, (UIntPtr) (ulong) arg2);
}
- } /* class NIDActionArity2V150 */
+ } /* class NIDActionArity2V153 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<NSUrlSessionAuthChallengeDisposition, NSUrlCredential>))]
internal delegate void DActionArity2V11 (IntPtr block, IntPtr arg1, IntPtr arg2);
@@ -29069,7 +29069,7 @@ namespace ObjCRuntime {
}
} /* class NIDActionArity2V125 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
- [UserDelegateType (typeof (global::System.Action<global::ShazamKit.SHMediaItem, NSError>))]
+ [UserDelegateType (typeof (global::System.Action<global::SharedWithYou.SWCollaborationHighlight, NSError>))]
internal delegate void DActionArity2V139 (IntPtr block, IntPtr arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
@@ -29079,9 +29079,9 @@ namespace ObjCRuntime {
[MonoPInvokeCallback (typeof (DActionArity2V139))]
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);
+ var del = (global::System.Action<global::SharedWithYou.SWCollaborationHighlight, NSError>) (descriptor->Target);
if (del != null)
- del ( Runtime.GetNSObject<ShazamKit.SHMediaItem> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
+ del ( Runtime.GetNSObject<SharedWithYou.SWCollaborationHighlight> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
} /* class SDActionArity2V139 */
internal sealed class NIDActionArity2V139 : TrampolineBlockBase {
@@ -29093,15 +29093,15 @@ namespace ObjCRuntime {
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static global::System.Action<global::ShazamKit.SHMediaItem, NSError>? Create (IntPtr block)
+ public unsafe static global::System.Action<global::SharedWithYou.SWCollaborationHighlight, NSError>? Create (IntPtr block)
{
if (block == IntPtr.Zero)
return null;
- var del = (global::System.Action<global::ShazamKit.SHMediaItem, NSError>) GetExistingManagedDelegate (block);
+ var del = (global::System.Action<global::SharedWithYou.SWCollaborationHighlight, NSError>) GetExistingManagedDelegate (block);
return del ?? new NIDActionArity2V139 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- unsafe void Invoke (global::ShazamKit.SHMediaItem arg1, NSError arg2)
+ unsafe void Invoke (global::SharedWithYou.SWCollaborationHighlight arg1, NSError arg2)
{
var arg1__handle__ = arg1.GetHandle ();
var arg2__handle__ = arg2.GetHandle ();
@@ -29109,7 +29109,7 @@ namespace ObjCRuntime {
}
} /* class NIDActionArity2V139 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
- [UserDelegateType (typeof (global::System.Action<global::ShazamKit.SHSignature, NSError>))]
+ [UserDelegateType (typeof (global::System.Action<global::SharedWithYou.SWHighlight, NSError>))]
internal delegate void DActionArity2V140 (IntPtr block, IntPtr arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
@@ -29119,9 +29119,9 @@ namespace ObjCRuntime {
[MonoPInvokeCallback (typeof (DActionArity2V140))]
static unsafe void Invoke (IntPtr block, IntPtr arg1, IntPtr arg2) {
var descriptor = (BlockLiteral *) block;
- var del = (global::System.Action<global::ShazamKit.SHSignature, NSError>) (descriptor->Target);
+ var del = (global::System.Action<global::SharedWithYou.SWHighlight, NSError>) (descriptor->Target);
if (del != null)
- del ( Runtime.GetNSObject<ShazamKit.SHSignature> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
+ del ( Runtime.GetNSObject<SharedWithYou.SWHighlight> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
} /* class SDActionArity2V140 */
internal sealed class NIDActionArity2V140 : TrampolineBlockBase {
@@ -29133,15 +29133,15 @@ namespace ObjCRuntime {
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static global::System.Action<global::ShazamKit.SHSignature, NSError>? Create (IntPtr block)
+ public unsafe static global::System.Action<global::SharedWithYou.SWHighlight, NSError>? Create (IntPtr block)
{
if (block == IntPtr.Zero)
return null;
- var del = (global::System.Action<global::ShazamKit.SHSignature, NSError>) GetExistingManagedDelegate (block);
+ var del = (global::System.Action<global::SharedWithYou.SWHighlight, NSError>) GetExistingManagedDelegate (block);
return del ?? new NIDActionArity2V140 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- unsafe void Invoke (global::ShazamKit.SHSignature arg1, NSError arg2)
+ unsafe void Invoke (global::SharedWithYou.SWHighlight arg1, NSError arg2)
{
var arg1__handle__ = arg1.GetHandle ();
var arg2__handle__ = arg2.GetHandle ();
@@ -29149,7 +29149,7 @@ namespace ObjCRuntime {
}
} /* class NIDActionArity2V140 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
- [UserDelegateType (typeof (global::System.Action<global::Speech.SFSpeechRecognitionResult, NSError>))]
+ [UserDelegateType (typeof (global::System.Action<global::SharedWithYouCore.SWSignedPersonIdentityProof, NSError>))]
internal delegate void DActionArity2V141 (IntPtr block, IntPtr arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
@@ -29159,9 +29159,9 @@ namespace ObjCRuntime {
[MonoPInvokeCallback (typeof (DActionArity2V141))]
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);
+ var del = (global::System.Action<global::SharedWithYouCore.SWSignedPersonIdentityProof, NSError>) (descriptor->Target);
if (del != null)
- del ( Runtime.GetNSObject<Speech.SFSpeechRecognitionResult> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
+ del ( Runtime.GetNSObject<SharedWithYouCore.SWSignedPersonIdentityProof> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
} /* class SDActionArity2V141 */
internal sealed class NIDActionArity2V141 : TrampolineBlockBase {
@@ -29173,15 +29173,15 @@ namespace ObjCRuntime {
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static global::System.Action<global::Speech.SFSpeechRecognitionResult, NSError>? Create (IntPtr block)
+ public unsafe static global::System.Action<global::SharedWithYouCore.SWSignedPersonIdentityProof, NSError>? Create (IntPtr block)
{
if (block == IntPtr.Zero)
return null;
- var del = (global::System.Action<global::Speech.SFSpeechRecognitionResult, NSError>) GetExistingManagedDelegate (block);
+ var del = (global::System.Action<global::SharedWithYouCore.SWSignedPersonIdentityProof, NSError>) GetExistingManagedDelegate (block);
return del ?? new NIDActionArity2V141 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- unsafe void Invoke (global::Speech.SFSpeechRecognitionResult arg1, NSError arg2)
+ unsafe void Invoke (global::SharedWithYouCore.SWSignedPersonIdentityProof arg1, NSError arg2)
{
var arg1__handle__ = arg1.GetHandle ();
var arg2__handle__ = arg2.GetHandle ();
@@ -29189,19 +29189,19 @@ namespace ObjCRuntime {
}
} /* class NIDActionArity2V141 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
- [UserDelegateType (typeof (global::System.Action<global::StoreKit.SKCloudServiceCapability, NSError>))]
- internal delegate void DActionArity2V142 (IntPtr block, UIntPtr arg1, IntPtr arg2);
+ [UserDelegateType (typeof (global::System.Action<global::ShazamKit.SHMediaItem, NSError>))]
+ internal delegate void DActionArity2V142 (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 unsafe void Invoke (IntPtr block, UIntPtr arg1, IntPtr arg2) {
+ static unsafe void Invoke (IntPtr block, IntPtr arg1, IntPtr arg2) {
var descriptor = (BlockLiteral *) block;
- var del = (global::System.Action<global::StoreKit.SKCloudServiceCapability, NSError>) (descriptor->Target);
+ var del = (global::System.Action<global::ShazamKit.SHMediaItem, NSError>) (descriptor->Target);
if (del != null)
- del ((StoreKit.SKCloudServiceCapability) (ulong) arg1, Runtime.GetNSObject<NSError> (arg2)!);
+ del ( Runtime.GetNSObject<ShazamKit.SHMediaItem> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
} /* class SDActionArity2V142 */
internal sealed class NIDActionArity2V142 : TrampolineBlockBase {
@@ -29213,61 +29213,63 @@ namespace ObjCRuntime {
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static global::System.Action<global::StoreKit.SKCloudServiceCapability, NSError>? Create (IntPtr block)
+ public unsafe static global::System.Action<global::ShazamKit.SHMediaItem, NSError>? Create (IntPtr block)
{
if (block == IntPtr.Zero)
return null;
- var del = (global::System.Action<global::StoreKit.SKCloudServiceCapability, NSError>) GetExistingManagedDelegate (block);
+ var del = (global::System.Action<global::ShazamKit.SHMediaItem, NSError>) GetExistingManagedDelegate (block);
return del ?? new NIDActionArity2V142 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- unsafe void Invoke (global::StoreKit.SKCloudServiceCapability arg1, NSError arg2)
+ unsafe void Invoke (global::ShazamKit.SHMediaItem arg1, NSError arg2)
{
+ var arg1__handle__ = arg1.GetHandle ();
var arg2__handle__ = arg2.GetHandle ();
- invoker (BlockPointer, (UIntPtr) (ulong) arg1, arg2__handle__);
+ invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
} /* class NIDActionArity2V142 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
- [UserDelegateType (typeof (global::System.Action<global::StoreKit.SKProductStorePromotionVisibility, NSError>))]
- internal delegate void DActionArity2V145 (IntPtr block, IntPtr arg1, IntPtr arg2);
+ [UserDelegateType (typeof (global::System.Action<global::ShazamKit.SHSignature, NSError>))]
+ internal delegate void DActionArity2V143 (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 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<global::StoreKit.SKProductStorePromotionVisibility, NSError>) (descriptor->Target);
+ var del = (global::System.Action<global::ShazamKit.SHSignature, NSError>) (descriptor->Target);
if (del != null)
- del ((StoreKit.SKProductStorePromotionVisibility) (long) arg1, Runtime.GetNSObject<NSError> (arg2)!);
+ del ( Runtime.GetNSObject<ShazamKit.SHSignature> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V145 */
- internal sealed class NIDActionArity2V145 : TrampolineBlockBase {
- DActionArity2V145 invoker;
+ } /* class SDActionArity2V143 */
+ internal sealed class NIDActionArity2V143 : TrampolineBlockBase {
+ DActionArity2V143 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V145 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V143 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V145> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V143> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static global::System.Action<global::StoreKit.SKProductStorePromotionVisibility, NSError>? Create (IntPtr block)
+ public unsafe static global::System.Action<global::ShazamKit.SHSignature, NSError>? Create (IntPtr block)
{
if (block == IntPtr.Zero)
return null;
- var del = (global::System.Action<global::StoreKit.SKProductStorePromotionVisibility, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V145 ((BlockLiteral *) block).Invoke;
+ var del = (global::System.Action<global::ShazamKit.SHSignature, NSError>) GetExistingManagedDelegate (block);
+ return del ?? new NIDActionArity2V143 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- unsafe void Invoke (global::StoreKit.SKProductStorePromotionVisibility arg1, NSError arg2)
+ unsafe void Invoke (global::ShazamKit.SHSignature arg1, NSError arg2)
{
+ var arg1__handle__ = arg1.GetHandle ();
var arg2__handle__ = arg2.GetHandle ();
- invoker (BlockPointer, (IntPtr) (long) arg1, arg2__handle__);
+ invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V145 */
+ } /* class NIDActionArity2V143 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
- [UserDelegateType (typeof (global::System.Action<global::StoreKit.SKProduct[], NSError>))]
+ [UserDelegateType (typeof (global::System.Action<global::Speech.SFSpeechRecognitionResult, NSError>))]
internal delegate void DActionArity2V144 (IntPtr block, IntPtr arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
@@ -29277,9 +29279,9 @@ namespace ObjCRuntime {
[MonoPInvokeCallback (typeof (DActionArity2V144))]
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);
+ var del = (global::System.Action<global::Speech.SFSpeechRecognitionResult, NSError>) (descriptor->Target);
if (del != null)
- del (CFArray.ArrayFromHandle<global::StoreKit.SKProduct> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
+ del ( Runtime.GetNSObject<Speech.SFSpeechRecognitionResult> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
} /* class SDActionArity2V144 */
internal sealed class NIDActionArity2V144 : TrampolineBlockBase {
@@ -29291,12 +29293,130 @@ namespace ObjCRuntime {
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public unsafe static global::System.Action<global::Speech.SFSpeechRecognitionResult, NSError>? Create (IntPtr block)
+ {
+ if (block == IntPtr.Zero)
+ return null;
+ var del = (global::System.Action<global::Speech.SFSpeechRecognitionResult, NSError>) GetExistingManagedDelegate (block);
+ return del ?? new NIDActionArity2V144 ((BlockLiteral *) block).Invoke;
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ unsafe void Invoke (global::Speech.SFSpeechRecognitionResult arg1, NSError arg2)
+ {
+ var arg1__handle__ = arg1.GetHandle ();
+ var arg2__handle__ = arg2.GetHandle ();
+ invoker (BlockPointer, arg1__handle__, arg2__handle__);
+ }
+ } /* class NIDActionArity2V144 */
+ [UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
+ [UserDelegateType (typeof (global::System.Action<global::StoreKit.SKCloudServiceCapability, NSError>))]
+ internal delegate void DActionArity2V145 (IntPtr block, UIntPtr 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 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 SDActionArity2V145 */
+ internal sealed class NIDActionArity2V145 : TrampolineBlockBase {
+ DActionArity2V145 invoker;
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public unsafe NIDActionArity2V145 (BlockLiteral *block) : base (block)
+ {
+ invoker = block->GetDelegateForBlock<DActionArity2V145> ();
+ }
+ [Preserve (Conditional=true)]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public unsafe static global::System.Action<global::StoreKit.SKCloudServiceCapability, NSError>? Create (IntPtr block)
+ {
+ if (block == IntPtr.Zero)
+ return null;
+ var del = (global::System.Action<global::StoreKit.SKCloudServiceCapability, NSError>) GetExistingManagedDelegate (block);
+ return del ?? new NIDActionArity2V145 ((BlockLiteral *) block).Invoke;
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ unsafe void Invoke (global::StoreKit.SKCloudServiceCapability arg1, NSError arg2)
+ {
+ var arg2__handle__ = arg2.GetHandle ();
+ invoker (BlockPointer, (UIntPtr) (ulong) arg1, arg2__handle__);
+ }
+ } /* class NIDActionArity2V145 */
+ [UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
+ [UserDelegateType (typeof (global::System.Action<global::StoreKit.SKProductStorePromotionVisibility, NSError>))]
+ internal delegate void DActionArity2V148 (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 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 SDActionArity2V148 */
+ internal sealed class NIDActionArity2V148 : TrampolineBlockBase {
+ DActionArity2V148 invoker;
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public unsafe NIDActionArity2V148 (BlockLiteral *block) : base (block)
+ {
+ invoker = block->GetDelegateForBlock<DActionArity2V148> ();
+ }
+ [Preserve (Conditional=true)]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public unsafe static global::System.Action<global::StoreKit.SKProductStorePromotionVisibility, NSError>? Create (IntPtr block)
+ {
+ if (block == IntPtr.Zero)
+ return null;
+ var del = (global::System.Action<global::StoreKit.SKProductStorePromotionVisibility, NSError>) GetExistingManagedDelegate (block);
+ return del ?? new NIDActionArity2V148 ((BlockLiteral *) block).Invoke;
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ unsafe void Invoke (global::StoreKit.SKProductStorePromotionVisibility arg1, NSError arg2)
+ {
+ var arg2__handle__ = arg2.GetHandle ();
+ invoker (BlockPointer, (IntPtr) (long) arg1, arg2__handle__);
+ }
+ } /* class NIDActionArity2V148 */
+ [UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
+ [UserDelegateType (typeof (global::System.Action<global::StoreKit.SKProduct[], NSError>))]
+ internal delegate void DActionArity2V147 (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 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 SDActionArity2V147 */
+ internal sealed class NIDActionArity2V147 : TrampolineBlockBase {
+ DActionArity2V147 invoker;
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public unsafe NIDActionArity2V147 (BlockLiteral *block) : base (block)
+ {
+ invoker = block->GetDelegateForBlock<DActionArity2V147> ();
+ }
+ [Preserve (Conditional=true)]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
public unsafe static global::System.Action<global::StoreKit.SKProduct[], NSError>? Create (IntPtr block)
{
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::StoreKit.SKProduct[], NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V144 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V147 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::StoreKit.SKProduct[] arg1, NSError arg2)
@@ -29309,7 +29429,7 @@ namespace ObjCRuntime {
if (nsa_arg1 != null)
nsa_arg1.Dispose ();
}
- } /* class NIDActionArity2V144 */
+ } /* class NIDActionArity2V147 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<bool, global::AVKit.AVAudioSessionRouteSelection>))]
internal delegate void DActionArity2V25 (IntPtr block, bool arg1, IntPtr arg2);
@@ -29753,26 +29873,26 @@ namespace ObjCRuntime {
} /* class NIDActionArity2V66 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::ThreadNetwork.THCredentials, NSError>))]
- internal delegate void DActionArity2V147 (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 SDActionArity2V147 {
- static internal readonly DActionArity2V147 Handler = Invoke;
- [MonoPInvokeCallback (typeof (DActionArity2V147))]
+ 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::ThreadNetwork.THCredentials, NSError>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<ThreadNetwork.THCredentials> (arg1)!, Runtime.GetNSObject<NSError> (arg2)!);
}
- } /* class SDActionArity2V147 */
- internal sealed class NIDActionArity2V147 : TrampolineBlockBase {
- DActionArity2V147 invoker;
+ } /* class SDActionArity2V150 */
+ internal sealed class NIDActionArity2V150 : TrampolineBlockBase {
+ DActionArity2V150 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V147 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V150 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V147> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V150> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -29781,7 +29901,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::ThreadNetwork.THCredentials, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V147 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V150 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::ThreadNetwork.THCredentials arg1, NSError arg2)
@@ -29790,29 +29910,29 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V147 */
+ } /* class NIDActionArity2V150 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::UIKit.NSTextLayoutManager, global::UIKit.NSTextLayoutFragment>))]
- internal delegate void DActionArity2V148 (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 SDActionArity2V148 {
- static internal readonly DActionArity2V148 Handler = Invoke;
- [MonoPInvokeCallback (typeof (DActionArity2V148))]
+ 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<global::UIKit.NSTextLayoutManager, global::UIKit.NSTextLayoutFragment>) (descriptor->Target);
if (del != null)
del ( Runtime.GetNSObject<NSTextLayoutManager> (arg1)!, Runtime.GetNSObject<NSTextLayoutFragment> (arg2)!);
}
- } /* class SDActionArity2V148 */
- internal sealed class NIDActionArity2V148 : TrampolineBlockBase {
- DActionArity2V148 invoker;
+ } /* class SDActionArity2V151 */
+ internal sealed class NIDActionArity2V151 : TrampolineBlockBase {
+ DActionArity2V151 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V148 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V151 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V148> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V151> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -29821,7 +29941,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 NIDActionArity2V148 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V151 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::UIKit.NSTextLayoutManager arg1, global::UIKit.NSTextLayoutFragment arg2)
@@ -29830,29 +29950,29 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V148 */
+ } /* class NIDActionArity2V151 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::UIKit.UIImage, NSError>))]
- internal delegate void DActionArity2V163 (IntPtr block, IntPtr arg1, IntPtr arg2);
+ internal delegate void DActionArity2V166 (IntPtr block, IntPtr arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V163 {
- static internal readonly DActionArity2V163 Handler = Invoke;
- [MonoPInvokeCallback (typeof (DActionArity2V163))]
+ static internal class SDActionArity2V166 {
+ static internal readonly DActionArity2V166 Handler = Invoke;
+ [MonoPInvokeCallback (typeof (DActionArity2V166))]
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 SDActionArity2V163 */
- internal sealed class NIDActionArity2V163 : TrampolineBlockBase {
- DActionArity2V163 invoker;
+ } /* class SDActionArity2V166 */
+ internal sealed class NIDActionArity2V166 : TrampolineBlockBase {
+ DActionArity2V166 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V163 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V166 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V163> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V166> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -29861,7 +29981,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::UIKit.UIImage, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V163 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V166 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::UIKit.UIImage arg1, NSError arg2)
@@ -29870,29 +29990,29 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V163 */
+ } /* class NIDActionArity2V166 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::UIKit.UISpringLoadedInteraction, global::UIKit.IUISpringLoadedInteractionContext>))]
- internal delegate void DActionArity2V155 (IntPtr block, IntPtr arg1, IntPtr arg2);
+ internal delegate void DActionArity2V158 (IntPtr block, IntPtr arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V155 {
- static internal readonly DActionArity2V155 Handler = Invoke;
- [MonoPInvokeCallback (typeof (DActionArity2V155))]
+ static internal class SDActionArity2V158 {
+ static internal readonly DActionArity2V158 Handler = Invoke;
+ [MonoPInvokeCallback (typeof (DActionArity2V158))]
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 SDActionArity2V155 */
- internal sealed class NIDActionArity2V155 : TrampolineBlockBase {
- DActionArity2V155 invoker;
+ } /* class SDActionArity2V158 */
+ internal sealed class NIDActionArity2V158 : TrampolineBlockBase {
+ DActionArity2V158 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V155 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V158 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V155> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V158> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -29901,7 +30021,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 NIDActionArity2V155 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V158 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::UIKit.UISpringLoadedInteraction arg1, global::UIKit.IUISpringLoadedInteractionContext arg2)
@@ -29910,29 +30030,29 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V155 */
+ } /* class NIDActionArity2V158 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::UIKit.UITableViewRowAction, NSIndexPath>))]
- internal delegate void DActionArity2V156 (IntPtr block, IntPtr arg1, IntPtr arg2);
+ internal delegate void DActionArity2V159 (IntPtr block, IntPtr arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V156 {
- static internal readonly DActionArity2V156 Handler = Invoke;
- [MonoPInvokeCallback (typeof (DActionArity2V156))]
+ static internal class SDActionArity2V159 {
+ static internal readonly DActionArity2V159 Handler = Invoke;
+ [MonoPInvokeCallback (typeof (DActionArity2V159))]
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 SDActionArity2V156 */
- internal sealed class NIDActionArity2V156 : TrampolineBlockBase {
- DActionArity2V156 invoker;
+ } /* class SDActionArity2V159 */
+ internal sealed class NIDActionArity2V159 : TrampolineBlockBase {
+ DActionArity2V159 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V156 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V159 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V156> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V159> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -29941,7 +30061,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::UIKit.UITableViewRowAction, NSIndexPath>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V156 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V159 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::UIKit.UITableViewRowAction arg1, NSIndexPath arg2)
@@ -29950,7 +30070,7 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V156 */
+ } /* class NIDActionArity2V159 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::UIKit.UIViewController, NSError>))]
internal delegate void DActionArity2V89 (IntPtr block, IntPtr arg1, IntPtr arg2);
@@ -29993,26 +30113,26 @@ namespace ObjCRuntime {
} /* class NIDActionArity2V89 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::VideoSubscriberAccount.VSAccountAccessStatus, NSError>))]
- internal delegate void DActionArity2V157 (IntPtr block, IntPtr arg1, IntPtr arg2);
+ internal delegate void DActionArity2V160 (IntPtr block, IntPtr arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V157 {
- static internal readonly DActionArity2V157 Handler = Invoke;
- [MonoPInvokeCallback (typeof (DActionArity2V157))]
+ static internal class SDActionArity2V160 {
+ static internal readonly DActionArity2V160 Handler = Invoke;
+ [MonoPInvokeCallback (typeof (DActionArity2V160))]
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 SDActionArity2V157 */
- internal sealed class NIDActionArity2V157 : TrampolineBlockBase {
- DActionArity2V157 invoker;
+ } /* class SDActionArity2V160 */
+ internal sealed class NIDActionArity2V160 : TrampolineBlockBase {
+ DActionArity2V160 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V157 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V160 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V157> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V160> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -30021,7 +30141,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::VideoSubscriberAccount.VSAccountAccessStatus, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V157 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V160 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::VideoSubscriberAccount.VSAccountAccessStatus arg1, NSError arg2)
@@ -30029,29 +30149,29 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, (IntPtr) (long) arg1, arg2__handle__);
}
- } /* class NIDActionArity2V157 */
+ } /* class NIDActionArity2V160 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::VideoSubscriberAccount.VSAccountMetadata, NSError>))]
- internal delegate void DActionArity2V158 (IntPtr block, IntPtr arg1, IntPtr arg2);
+ internal delegate void DActionArity2V161 (IntPtr block, IntPtr arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V158 {
- static internal readonly DActionArity2V158 Handler = Invoke;
- [MonoPInvokeCallback (typeof (DActionArity2V158))]
+ static internal class SDActionArity2V161 {
+ static internal readonly DActionArity2V161 Handler = Invoke;
+ [MonoPInvokeCallback (typeof (DActionArity2V161))]
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 SDActionArity2V158 */
- internal sealed class NIDActionArity2V158 : TrampolineBlockBase {
- DActionArity2V158 invoker;
+ } /* class SDActionArity2V161 */
+ internal sealed class NIDActionArity2V161 : TrampolineBlockBase {
+ DActionArity2V161 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V158 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V161 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V158> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V161> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -30060,7 +30180,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::VideoSubscriberAccount.VSAccountMetadata, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V158 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V161 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::VideoSubscriberAccount.VSAccountMetadata arg1, NSError arg2)
@@ -30069,29 +30189,29 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V158 */
+ } /* class NIDActionArity2V161 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::WebKit.WKContentRuleList, NSError>))]
- internal delegate void DActionArity2V160 (IntPtr block, IntPtr arg1, IntPtr arg2);
+ internal delegate void DActionArity2V163 (IntPtr block, IntPtr arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V160 {
- static internal readonly DActionArity2V160 Handler = Invoke;
- [MonoPInvokeCallback (typeof (DActionArity2V160))]
+ static internal class SDActionArity2V163 {
+ static internal readonly DActionArity2V163 Handler = Invoke;
+ [MonoPInvokeCallback (typeof (DActionArity2V163))]
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 SDActionArity2V160 */
- internal sealed class NIDActionArity2V160 : TrampolineBlockBase {
- DActionArity2V160 invoker;
+ } /* class SDActionArity2V163 */
+ internal sealed class NIDActionArity2V163 : TrampolineBlockBase {
+ DActionArity2V163 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V160 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V163 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V160> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V163> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -30100,7 +30220,7 @@ namespace ObjCRuntime {
if (block == IntPtr.Zero)
return null;
var del = (global::System.Action<global::WebKit.WKContentRuleList, NSError>) GetExistingManagedDelegate (block);
- return del ?? new NIDActionArity2V160 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V163 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::WebKit.WKContentRuleList arg1, NSError arg2)
@@ -30109,29 +30229,29 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, arg1__handle__, arg2__handle__);
}
- } /* class NIDActionArity2V160 */
+ } /* class NIDActionArity2V163 */
[UnmanagedFunctionPointerAttribute (CallingConvention.Cdecl)]
[UserDelegateType (typeof (global::System.Action<global::WebKit.WKNavigationActionPolicy, global::WebKit.WKWebpagePreferences>))]
- internal delegate void DActionArity2V161 (IntPtr block, IntPtr arg1, IntPtr arg2);
+ internal delegate void DActionArity2V164 (IntPtr block, IntPtr arg1, IntPtr arg2);
//
// This class bridges native block invocations that call into C#
//
- static internal class SDActionArity2V161 {
- static internal readonly DActionArity2V161 Handler = Invoke;
- [MonoPInvokeCallback (typeof (DActionArity2V161))]
+ static internal class SDActionArity2V164 {
+ static internal readonly DActionArity2V164 Handler = Invoke;
+ [MonoPInvokeCallback (typeof (DActionArity2V164))]
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 SDActionArity2V161 */
- internal sealed class NIDActionArity2V161 : TrampolineBlockBase {
- DActionArity2V161 invoker;
+ } /* class SDActionArity2V164 */
+ internal sealed class NIDActionArity2V164 : TrampolineBlockBase {
+ DActionArity2V164 invoker;
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe NIDActionArity2V161 (BlockLiteral *block) : base (block)
+ public unsafe NIDActionArity2V164 (BlockLiteral *block) : base (block)
{
- invoker = block->GetDelegateForBlock<DActionArity2V161> ();
+ invoker = block->GetDelegateForBlock<DActionArity2V164> ();
}
[Preserve (Conditional=true)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
@@ -30140,7 +30260,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 NIDActionArity2V161 ((BlockLiteral *) block).Invoke;
+ return del ?? new NIDActionArity2V164 ((BlockLiteral *) block).Invoke;
}
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
unsafe void Invoke (global::WebKit.WKNavigationActionPolicy arg1, global::WebKit.WKWebpagePreferences arg2)
@@ -30148,7 +30268,7 @@ namespace ObjCRuntime {
var arg2__handle__ = arg2.GetHandle ();
invoker (BlockPointer, (IntPtr) (long) arg1, arg2__handle__);
}
- } /* class NIDActionArity2V161 */
+ } /* class NIDActionArity2V164 */
[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/new/ios/native/SharedWithYou/SWAttributionView.g.cs b/new/ios/native/SharedWithYou/SWAttributionView.g.cs
new file mode 100644
index 0000000..077b6df
--- /dev/null
+++ b/new/ios/native/SharedWithYou/SWAttributionView.g.cs
@@ -0,0 +1,374 @@
+//
+// 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 SharedWithYou {
+ [Register("SWAttributionView", true)]
+ [Unavailable (PlatformName.WatchOS, ObjCRuntime.PlatformArchitecture.All)]
+ [Unavailable (PlatformName.MacOSX, ObjCRuntime.PlatformArchitecture.All)]
+ [Introduced (PlatformName.TvOS, 16,0, ObjCRuntime.PlatformArchitecture.All)]
+ [Introduced (PlatformName.iOS, 16,0, ObjCRuntime.PlatformArchitecture.All)]
+ [Introduced (PlatformName.MacCatalyst, 16,0, ObjCRuntime.PlatformArchitecture.All)]
+ public unsafe partial class SWAttributionView : global::UIKit.UIView {
+ [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 ("SWAttributionView");
+ #endif
+ public override IntPtr ClassHandle { get { return class_ptr; } }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ [Export ("init")]
+ public SWAttributionView () : base (NSObjectFlag.Empty)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ if (IsDirectBinding) {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend (this.Handle, global::ObjCRuntime.Selector.GetHandle ("init")), "init");
+ } else {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper (this.SuperHandle, global::ObjCRuntime.Selector.GetHandle ("init")), "init");
+ }
+ #endif
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [DesignatedInitializer]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ [Export ("initWithCoder:")]
+ public SWAttributionView (NSCoder coder) : base (NSObjectFlag.Empty)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ if (IsDirectBinding) {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("initWithCoder:"), coder.Handle), "initWithCoder:");
+ } else {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("initWithCoder:"), coder.Handle), "initWithCoder:");
+ }
+ #endif
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ protected SWAttributionView (NSObjectFlag t) : base (t)
+ {
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ protected internal SWAttributionView (IntPtr handle) : base (handle)
+ {
+ }
+
+ [Export ("initWithFrame:")]
+ [DesignatedInitializer]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public SWAttributionView (CGRect frame)
+ : 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_CGRect (this.Handle, Selector.GetHandle ("initWithFrame:"), frame), "initWithFrame:");
+ } else {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper_CGRect (this.SuperHandle, Selector.GetHandle ("initWithFrame:"), frame), "initWithFrame:");
+ }
+ #endif
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual SWAttributionViewBackgroundStyle BackgroundStyle {
+ [Export ("backgroundStyle", ArgumentSemantic.UnsafeUnretained)]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ SWAttributionViewBackgroundStyle ret;
+ if (IsDirectBinding) {
+ ret = (SharedWithYou.SWAttributionViewBackgroundStyle) (long) global::ObjCRuntime.Messaging.IntPtr_objc_msgSend (this.Handle, Selector.GetHandle ("backgroundStyle"));
+ } else {
+ ret = (SharedWithYou.SWAttributionViewBackgroundStyle) (long) global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("backgroundStyle"));
+ }
+ return ret!;
+ #endif
+ }
+ [Export ("setBackgroundStyle:", ArgumentSemantic.UnsafeUnretained)]
+ set {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("setBackgroundStyle:"), (IntPtr) (long) value);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("setBackgroundStyle:"), (IntPtr) (long) value);
+ }
+ #endif
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual SWAttributionViewDisplayContext DisplayContext {
+ [Export ("displayContext", ArgumentSemantic.UnsafeUnretained)]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ SWAttributionViewDisplayContext ret;
+ if (IsDirectBinding) {
+ ret = (SharedWithYou.SWAttributionViewDisplayContext) (long) global::ObjCRuntime.Messaging.IntPtr_objc_msgSend (this.Handle, Selector.GetHandle ("displayContext"));
+ } else {
+ ret = (SharedWithYou.SWAttributionViewDisplayContext) (long) global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("displayContext"));
+ }
+ return ret!;
+ #endif
+ }
+ [Export ("setDisplayContext:", ArgumentSemantic.UnsafeUnretained)]
+ set {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("setDisplayContext:"), (IntPtr) (long) value);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("setDisplayContext:"), (IntPtr) (long) value);
+ }
+ #endif
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual SWHighlight? Highlight {
+ [Export ("highlight", ArgumentSemantic.Retain)]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ SWHighlight? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject<SWHighlight> (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend (this.Handle, Selector.GetHandle ("highlight")))!;
+ } else {
+ ret = Runtime.GetNSObject<SWHighlight> (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("highlight")))!;
+ }
+ return ret!;
+ #endif
+ }
+ [Export ("setHighlight:", ArgumentSemantic.Retain)]
+ set {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ var value__handle__ = value.GetHandle ();
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("setHighlight:"), value__handle__);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("setHighlight:"), value__handle__);
+ }
+ #endif
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual global::UIKit.UIMenu HighlightMenu {
+ [Export ("highlightMenu", ArgumentSemantic.Retain)]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ global::UIKit.UIMenu? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject<global::UIKit.UIMenu> (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend (this.Handle, Selector.GetHandle ("highlightMenu")))!;
+ } else {
+ ret = Runtime.GetNSObject<global::UIKit.UIMenu> (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("highlightMenu")))!;
+ }
+ return ret!;
+ #endif
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual SWAttributionViewHorizontalAlignment HorizontalAlignment {
+ [Export ("horizontalAlignment", ArgumentSemantic.UnsafeUnretained)]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ SWAttributionViewHorizontalAlignment ret;
+ if (IsDirectBinding) {
+ ret = (SharedWithYou.SWAttributionViewHorizontalAlignment) (long) global::ObjCRuntime.Messaging.IntPtr_objc_msgSend (this.Handle, Selector.GetHandle ("horizontalAlignment"));
+ } else {
+ ret = (SharedWithYou.SWAttributionViewHorizontalAlignment) (long) global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("horizontalAlignment"));
+ }
+ return ret!;
+ #endif
+ }
+ [Export ("setHorizontalAlignment:", ArgumentSemantic.UnsafeUnretained)]
+ set {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("setHorizontalAlignment:"), (IntPtr) (long) value);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("setHorizontalAlignment:"), (IntPtr) (long) value);
+ }
+ #endif
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual string? MenuTitleForHideAction {
+ [Export ("menuTitleForHideAction", ArgumentSemantic.Retain)]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ if (IsDirectBinding) {
+ return CFString.FromHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend (this.Handle, Selector.GetHandle ("menuTitleForHideAction")))!;
+ } else {
+ return CFString.FromHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("menuTitleForHideAction")))!;
+ }
+ #endif
+ }
+ [Export ("setMenuTitleForHideAction:", ArgumentSemantic.Retain)]
+ set {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ var nsvalue = CFString.CreateNative (value);
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("setMenuTitleForHideAction:"), nsvalue);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("setMenuTitleForHideAction:"), nsvalue);
+ }
+ CFString.ReleaseNative (nsvalue);
+ #endif
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual nfloat PreferredMaxLayoutWidth {
+ [Export ("preferredMaxLayoutWidth")]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ if (IsDirectBinding) {
+ return global::ObjCRuntime.Messaging.nfloat_objc_msgSend (this.Handle, Selector.GetHandle ("preferredMaxLayoutWidth"));
+ } else {
+ return global::ObjCRuntime.Messaging.nfloat_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("preferredMaxLayoutWidth"));
+ }
+ #endif
+ }
+ [Export ("setPreferredMaxLayoutWidth:")]
+ set {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_nfloat (this.Handle, Selector.GetHandle ("setPreferredMaxLayoutWidth:"), value);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_nfloat (this.SuperHandle, Selector.GetHandle ("setPreferredMaxLayoutWidth:"), value);
+ }
+ #endif
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual global::UIKit.UIMenu? SupplementalMenu {
+ [Export ("supplementalMenu", ArgumentSemantic.Retain)]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ global::UIKit.UIMenu? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject<global::UIKit.UIMenu> (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend (this.Handle, Selector.GetHandle ("supplementalMenu")))!;
+ } else {
+ ret = Runtime.GetNSObject<global::UIKit.UIMenu> (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("supplementalMenu")))!;
+ }
+ return ret!;
+ #endif
+ }
+ [Export ("setSupplementalMenu:", ArgumentSemantic.Retain)]
+ set {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ var value__handle__ = value.GetHandle ();
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("setSupplementalMenu:"), value__handle__);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("setSupplementalMenu:"), value__handle__);
+ }
+ #endif
+ }
+ }
+ public partial class SWAttributionViewAppearance : global::UIKit.UIView.UIViewAppearance {
+ protected internal SWAttributionViewAppearance (IntPtr handle) : base (handle) {}
+ }
+ public static new SWAttributionViewAppearance Appearance {
+ get { return new SWAttributionViewAppearance (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend (class_ptr, ObjCRuntime.Selector.GetHandle ("appearance"))); }
+ }
+ public static new SWAttributionViewAppearance GetAppearance<T> () where T: SWAttributionView {
+ return new SWAttributionViewAppearance (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend (Class.GetHandle (typeof (T)), ObjCRuntime.Selector.GetHandle ("appearance")));
+ }
+ public static new SWAttributionViewAppearance AppearanceWhenContainedIn (params Type [] containers)
+ {
+ return new SWAttributionViewAppearance (UIAppearance.GetAppearance (class_ptr, containers));
+ }
+ public static new SWAttributionViewAppearance GetAppearance (UITraitCollection traits) {
+ return new SWAttributionViewAppearance (UIAppearance.GetAppearance (class_ptr, traits));
+ }
+ public static new SWAttributionViewAppearance GetAppearance (UITraitCollection traits, params Type [] containers) {
+ return new SWAttributionViewAppearance (UIAppearance.GetAppearance (class_ptr, traits, containers));
+ }
+ public static new SWAttributionViewAppearance GetAppearance<T> (UITraitCollection traits) where T: SWAttributionView {
+ return new SWAttributionViewAppearance (UIAppearance.GetAppearance (Class.GetHandle (typeof (T)), traits));
+ }
+ public static new SWAttributionViewAppearance GetAppearance<T> (UITraitCollection traits, params Type [] containers) where T: SWAttributionView{
+ return new SWAttributionViewAppearance (UIAppearance.GetAppearance (Class.GetHandle (typeof (T)), containers));
+ }
+ } /* class SWAttributionView */
+}
diff --git a/new/ios/native/SharedWithYou/SWAttributionViewBackgroundStyle.g.cs b/new/ios/native/SharedWithYou/SWAttributionViewBackgroundStyle.g.cs
new file mode 100644
index 0000000..07c5ead
--- /dev/null
+++ b/new/ios/native/SharedWithYou/SWAttributionViewBackgroundStyle.g.cs
@@ -0,0 +1,62 @@
+//
+// 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 SharedWithYou {
+ [Unavailable (PlatformName.WatchOS, ObjCRuntime.PlatformArchitecture.All)]
+ [Introduced (PlatformName.TvOS, 16,0, ObjCRuntime.PlatformArchitecture.All)]
+ [Unavailable (PlatformName.MacOSX, ObjCRuntime.PlatformArchitecture.All)]
+ [Introduced (PlatformName.iOS, 16,0, ObjCRuntime.PlatformArchitecture.All)]
+ [Introduced (PlatformName.MacCatalyst, 16,0, ObjCRuntime.PlatformArchitecture.All)]
+ [Native]
+ public enum SWAttributionViewBackgroundStyle : long {
+ Default = 0,
+ Color = 1,
+ Material = 2,
+ }
+}
diff --git a/new/ios/native/SharedWithYou/SWAttributionViewDisplayContext.g.cs b/new/ios/native/SharedWithYou/SWAttributionViewDisplayContext.g.cs
new file mode 100644
index 0000000..79be967
--- /dev/null
+++ b/new/ios/native/SharedWithYou/SWAttributionViewDisplayContext.g.cs
@@ -0,0 +1,61 @@
+//
+// 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 SharedWithYou {
+ [Unavailable (PlatformName.WatchOS, ObjCRuntime.PlatformArchitecture.All)]
+ [Introduced (PlatformName.TvOS, 16,0, ObjCRuntime.PlatformArchitecture.All)]
+ [Unavailable (PlatformName.MacOSX, ObjCRuntime.PlatformArchitecture.All)]
+ [Introduced (PlatformName.iOS, 16,0, ObjCRuntime.PlatformArchitecture.All)]
+ [Introduced (PlatformName.MacCatalyst, 16,0, ObjCRuntime.PlatformArchitecture.All)]
+ [Native]
+ public enum SWAttributionViewDisplayContext : long {
+ Summary = 0,
+ Detail = 1,
+ }
+}
diff --git a/new/ios/native/SharedWithYou/SWAttributionViewHorizontalAlignment.g.cs b/new/ios/native/SharedWithYou/SWAttributionViewHorizontalAlignment.g.cs
new file mode 100644
index 0000000..7867bf3
--- /dev/null
+++ b/new/ios/native/SharedWithYou/SWAttributionViewHorizontalAlignment.g.cs
@@ -0,0 +1,63 @@
+//
+// 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 SharedWithYou {
+ [Unavailable (PlatformName.WatchOS, ObjCRuntime.PlatformArchitecture.All)]
+ [Introduced (PlatformName.TvOS, 16,0, ObjCRuntime.PlatformArchitecture.All)]
+ [Unavailable (PlatformName.MacOSX, ObjCRuntime.PlatformArchitecture.All)]
+ [Introduced (PlatformName.iOS, 16,0, ObjCRuntime.PlatformArchitecture.All)]
+ [Introduced (PlatformName.MacCatalyst, 16,0, ObjCRuntime.PlatformArchitecture.All)]
+ [Native]
+ public enum SWAttributionViewHorizontalAlignment : long {
+ Default = 0,
+ Leading = 1,
+ Center = 2,
+ Trailing = 3,
+ }
+}
diff --git a/new/ios/native/SharedWithYou/SWCollaborationHighlight.g.cs b/new/ios/native/SharedWithYou/SWCollaborationHighlight.g.cs
new file mode 100644
index 0000000..8a24c89
--- /dev/null
+++ b/new/ios/native/SharedWithYou/SWCollaborationHighlight.g.cs
@@ -0,0 +1,204 @@
+//
+// 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 SharedWithYou {
+ [Register("SWCollaborationHighlight", true)]
+ [Unavailable (PlatformName.WatchOS, ObjCRuntime.PlatformArchitecture.All)]
+ [Unavailable (PlatformName.TvOS, ObjCRuntime.PlatformArchitecture.All)]
+ [Unavailable (PlatformName.MacOSX, ObjCRuntime.PlatformArchitecture.All)]
+ [Introduced (PlatformName.iOS, 16,0, ObjCRuntime.PlatformArchitecture.All)]
+ [Introduced (PlatformName.MacCatalyst, 16,0, ObjCRuntime.PlatformArchitecture.All)]
+ public unsafe partial class SWCollaborationHighlight : SWHighlight, INSCoding, INSCopying, INSSecureCoding {
+ [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 ("SWCollaborationHighlight");
+ #endif
+ public override IntPtr ClassHandle { get { return class_ptr; } }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ [Export ("init")]
+ public SWCollaborationHighlight () : base (NSObjectFlag.Empty)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ if (IsDirectBinding) {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend (this.Handle, global::ObjCRuntime.Selector.GetHandle ("init")), "init");
+ } else {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper (this.SuperHandle, global::ObjCRuntime.Selector.GetHandle ("init")), "init");
+ }
+ #endif
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [DesignatedInitializer]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ [Export ("initWithCoder:")]
+ public SWCollaborationHighlight (NSCoder coder) : base (NSObjectFlag.Empty)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ if (IsDirectBinding) {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("initWithCoder:"), coder.Handle), "initWithCoder:");
+ } else {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("initWithCoder:"), coder.Handle), "initWithCoder:");
+ }
+ #endif
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ protected SWCollaborationHighlight (NSObjectFlag t) : base (t)
+ {
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ protected internal SWCollaborationHighlight (IntPtr handle) : base (handle)
+ {
+ }
+
+ [Export ("copyWithZone:")]
+ [return: ReleaseAttribute ()]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public new virtual NSObject Copy (NSZone? zone)
+ {
+ var zone__handle__ = zone.GetHandle ();
+ NSObject? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("copyWithZone:"), zone__handle__))!;
+ } else {
+ ret = Runtime.GetNSObject (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("copyWithZone:"), zone__handle__))!;
+ }
+ if (ret != null)
+ global::ObjCRuntime.Messaging.void_objc_msgSend (ret.Handle, Selector.GetHandle ("release"));
+ return ret!;
+ }
+ [Export ("encodeWithCoder:")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public new virtual void EncodeTo (NSCoder encoder)
+ {
+ var encoder__handle__ = encoder!.GetNonNullHandle (nameof (encoder));
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("encodeWithCoder:"), encoder__handle__);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("encodeWithCoder:"), encoder__handle__);
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual string CollaborationIdentifier {
+ [Export ("collaborationIdentifier")]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ if (IsDirectBinding) {
+ return CFString.FromHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend (this.Handle, Selector.GetHandle ("collaborationIdentifier")))!;
+ } else {
+ return CFString.FromHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("collaborationIdentifier")))!;
+ }
+ #endif
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual global::UniformTypeIdentifiers.UTType ContentType {
+ [Export ("contentType", ArgumentSemantic.Copy)]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ global::UniformTypeIdentifiers.UTType? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject<global::UniformTypeIdentifiers.UTType> (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend (this.Handle, Selector.GetHandle ("contentType")))!;
+ } else {
+ ret = Runtime.GetNSObject<global::UniformTypeIdentifiers.UTType> (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("contentType")))!;
+ }
+ return ret!;
+ #endif
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual NSDate CreationDate {
+ [Export ("creationDate", ArgumentSemantic.Copy)]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ NSDate? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject<NSDate> (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend (this.Handle, Selector.GetHandle ("creationDate")))!;
+ } else {
+ ret = Runtime.GetNSObject<NSDate> (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("creationDate")))!;
+ }
+ return ret!;
+ #endif
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual string? Title {
+ [Export ("title")]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ if (IsDirectBinding) {
+ return CFString.FromHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend (this.Handle, Selector.GetHandle ("title")))!;
+ } else {
+ return CFString.FromHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("title")))!;
+ }
+ #endif
+ }
+ }
+ } /* class SWCollaborationHighlight */
+}
diff --git a/new/ios/native/SharedWithYou/SWCollaborationView.g.cs b/new/ios/native/SharedWithYou/SWCollaborationView.g.cs
new file mode 100644
index 0000000..f87921e
--- /dev/null
+++ b/new/ios/native/SharedWithYou/SWCollaborationView.g.cs
@@ -0,0 +1,528 @@
+//
+// 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 SharedWithYou {
+ [Register("SWCollaborationView", true)]
+ [Unavailable (PlatformName.WatchOS, ObjCRuntime.PlatformArchitecture.All)]
+ [Unavailable (PlatformName.TvOS, ObjCRuntime.PlatformArchitecture.All)]
+ [Unavailable (PlatformName.MacOSX, ObjCRuntime.PlatformArchitecture.All)]
+ [Introduced (PlatformName.iOS, 16,0, ObjCRuntime.PlatformArchitecture.All)]
+ [Introduced (PlatformName.MacCatalyst, 16,0, ObjCRuntime.PlatformArchitecture.All)]
+ public unsafe partial class SWCollaborationView : global::UIKit.UIView {
+ [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 ("SWCollaborationView");
+ #endif
+ public override IntPtr ClassHandle { get { return class_ptr; } }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ [Export ("init")]
+ public SWCollaborationView () : base (NSObjectFlag.Empty)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ if (IsDirectBinding) {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend (this.Handle, global::ObjCRuntime.Selector.GetHandle ("init")), "init");
+ } else {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper (this.SuperHandle, global::ObjCRuntime.Selector.GetHandle ("init")), "init");
+ }
+ #endif
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [DesignatedInitializer]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ [Export ("initWithCoder:")]
+ public SWCollaborationView (NSCoder coder) : base (NSObjectFlag.Empty)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ if (IsDirectBinding) {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("initWithCoder:"), coder.Handle), "initWithCoder:");
+ } else {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("initWithCoder:"), coder.Handle), "initWithCoder:");
+ }
+ #endif
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ protected SWCollaborationView (NSObjectFlag t) : base (t)
+ {
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ protected internal SWCollaborationView (IntPtr handle) : base (handle)
+ {
+ }
+
+ [Export ("initWithFrame:")]
+ [DesignatedInitializer]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public SWCollaborationView (CGRect frame)
+ : 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_CGRect (this.Handle, Selector.GetHandle ("initWithFrame:"), frame), "initWithFrame:");
+ } else {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper_CGRect (this.SuperHandle, Selector.GetHandle ("initWithFrame:"), frame), "initWithFrame:");
+ }
+ #endif
+ }
+ [Export ("initWithItemProvider:")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public SWCollaborationView (NSItemProvider itemProvider)
+ : base (NSObjectFlag.Empty)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ var itemProvider__handle__ = itemProvider!.GetNonNullHandle (nameof (itemProvider));
+ if (IsDirectBinding) {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("initWithItemProvider:"), itemProvider__handle__), "initWithItemProvider:");
+ } else {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("initWithItemProvider:"), itemProvider__handle__), "initWithItemProvider:");
+ }
+ #endif
+ }
+ [Export ("dismissPopover:")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public unsafe virtual void DismissPopover ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDAction))]global::System.Action? callback)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ BlockLiteral *block_ptr_callback;
+ BlockLiteral block_callback;
+ if (callback is null){
+ block_ptr_callback = null;
+ } else {
+ block_callback = new BlockLiteral ();
+ block_ptr_callback = &block_callback;
+ block_callback.SetupBlockUnsafe (Trampolines.SDAction.Handler, callback);
+ }
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("dismissPopover:"), (IntPtr) block_ptr_callback);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("dismissPopover:"), (IntPtr) block_ptr_callback);
+ }
+ if (block_ptr_callback != null)
+ block_ptr_callback->CleanupBlock ();
+ #endif
+ }
+ [Export ("setContentView:")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual void SetContentView (global::UIKit.UIView detailViewListContentView)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ var detailViewListContentView__handle__ = detailViewListContentView!.GetNonNullHandle (nameof (detailViewListContentView));
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("setContentView:"), detailViewListContentView__handle__);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("setContentView:"), detailViewListContentView__handle__);
+ }
+ #endif
+ }
+ [Export ("setShowManageButton:")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual void SetShowManageButton (bool showManageButton)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_bool (this.Handle, Selector.GetHandle ("setShowManageButton:"), showManageButton);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_bool (this.SuperHandle, Selector.GetHandle ("setShowManageButton:"), showManageButton);
+ }
+ #endif
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual nuint ActiveParticipantCount {
+ [Export ("activeParticipantCount")]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ if (IsDirectBinding) {
+ return (nuint) global::ObjCRuntime.Messaging.UIntPtr_objc_msgSend (this.Handle, Selector.GetHandle ("activeParticipantCount"));
+ } else {
+ return (nuint) global::ObjCRuntime.Messaging.UIntPtr_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("activeParticipantCount"));
+ }
+ #endif
+ }
+ [Export ("setActiveParticipantCount:")]
+ set {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_UIntPtr (this.Handle, Selector.GetHandle ("setActiveParticipantCount:"), (UIntPtr) value);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_UIntPtr (this.SuperHandle, Selector.GetHandle ("setActiveParticipantCount:"), (UIntPtr) value);
+ }
+ #endif
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public global::UIKit.IUICloudSharingControllerDelegate? CloudSharingControllerDelegate {
+ get {
+ return (WeakCloudSharingControllerDelegate as global::UIKit.IUICloudSharingControllerDelegate)!;
+ }
+ set {
+ var rvalue = value as NSObject;
+ if (!(value is null) && rvalue is null)
+ throw new ArgumentException ("The object passed of type " + value.GetType () + " does not derive from NSObject");
+ WeakCloudSharingControllerDelegate = rvalue;
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public global::UIKit.IUICloudSharingControllerDelegate? CloudSharingDelegate {
+ get {
+ return (WeakCloudSharingDelegate as global::UIKit.IUICloudSharingControllerDelegate)!;
+ }
+ set {
+ var rvalue = value as NSObject;
+ if (!(value is null) && rvalue is null)
+ throw new ArgumentException ("The object passed of type " + value.GetType () + " does not derive from NSObject");
+ WeakCloudSharingDelegate = rvalue;
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public ISWCollaborationViewDelegate? Delegate {
+ get {
+ return (WeakDelegate as ISWCollaborationViewDelegate)!;
+ }
+ set {
+ var rvalue = value as NSObject;
+ if (!(value is null) && rvalue is null)
+ throw new ArgumentException ("The object passed of type " + value.GetType () + " does not derive from NSObject");
+ WeakDelegate = rvalue;
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual global::UIKit.UIImage HeaderImage {
+ [Export ("headerImage", ArgumentSemantic.Retain)]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ global::UIKit.UIImage? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject<global::UIKit.UIImage> (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend (this.Handle, Selector.GetHandle ("headerImage")))!;
+ } else {
+ ret = Runtime.GetNSObject<global::UIKit.UIImage> (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("headerImage")))!;
+ }
+ return ret!;
+ #endif
+ }
+ [Export ("setHeaderImage:", ArgumentSemantic.Retain)]
+ set {
+ #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 (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("setHeaderImage:"), value__handle__);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("setHeaderImage:"), value__handle__);
+ }
+ #endif
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual string HeaderSubtitle {
+ [Export ("headerSubtitle")]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ if (IsDirectBinding) {
+ return CFString.FromHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend (this.Handle, Selector.GetHandle ("headerSubtitle")))!;
+ } else {
+ return CFString.FromHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("headerSubtitle")))!;
+ }
+ #endif
+ }
+ [Export ("setHeaderSubtitle:")]
+ set {
+ #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));
+ var nsvalue = CFString.CreateNative (value);
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("setHeaderSubtitle:"), nsvalue);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("setHeaderSubtitle:"), nsvalue);
+ }
+ CFString.ReleaseNative (nsvalue);
+ #endif
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual string HeaderTitle {
+ [Export ("headerTitle")]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ if (IsDirectBinding) {
+ return CFString.FromHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend (this.Handle, Selector.GetHandle ("headerTitle")))!;
+ } else {
+ return CFString.FromHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("headerTitle")))!;
+ }
+ #endif
+ }
+ [Export ("setHeaderTitle:")]
+ set {
+ #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));
+ var nsvalue = CFString.CreateNative (value);
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("setHeaderTitle:"), nsvalue);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("setHeaderTitle:"), nsvalue);
+ }
+ CFString.ReleaseNative (nsvalue);
+ #endif
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual string ManageButtonTitle {
+ [Export ("manageButtonTitle")]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ if (IsDirectBinding) {
+ return CFString.FromHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend (this.Handle, Selector.GetHandle ("manageButtonTitle")))!;
+ } else {
+ return CFString.FromHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("manageButtonTitle")))!;
+ }
+ #endif
+ }
+ [Export ("setManageButtonTitle:")]
+ set {
+ #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));
+ var nsvalue = CFString.CreateNative (value);
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("setManageButtonTitle:"), nsvalue);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("setManageButtonTitle:"), nsvalue);
+ }
+ CFString.ReleaseNative (nsvalue);
+ #endif
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ object? __mt_WeakCloudSharingControllerDelegate_var;
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual NSObject? WeakCloudSharingControllerDelegate {
+ [Export ("cloudSharingControllerDelegate", ArgumentSemantic.Weak)]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ NSObject? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend (this.Handle, Selector.GetHandle ("cloudSharingControllerDelegate")))!;
+ } else {
+ ret = Runtime.GetNSObject (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("cloudSharingControllerDelegate")))!;
+ }
+ MarkDirty ();
+ __mt_WeakCloudSharingControllerDelegate_var = ret;
+ return ret!;
+ #endif
+ }
+ [Export ("setCloudSharingControllerDelegate:", ArgumentSemantic.Weak)]
+ set {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ var value__handle__ = value.GetHandle ();
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("setCloudSharingControllerDelegate:"), value__handle__);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("setCloudSharingControllerDelegate:"), value__handle__);
+ }
+ MarkDirty ();
+ __mt_WeakCloudSharingControllerDelegate_var = value;
+ #endif
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ object? __mt_WeakCloudSharingDelegate_var;
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual NSObject? WeakCloudSharingDelegate {
+ [Export ("cloudSharingDelegate", ArgumentSemantic.Weak)]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ NSObject? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend (this.Handle, Selector.GetHandle ("cloudSharingDelegate")))!;
+ } else {
+ ret = Runtime.GetNSObject (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("cloudSharingDelegate")))!;
+ }
+ MarkDirty ();
+ __mt_WeakCloudSharingDelegate_var = ret;
+ return ret!;
+ #endif
+ }
+ [Export ("setCloudSharingDelegate:", ArgumentSemantic.Weak)]
+ set {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ var value__handle__ = value.GetHandle ();
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("setCloudSharingDelegate:"), value__handle__);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("setCloudSharingDelegate:"), value__handle__);
+ }
+ MarkDirty ();
+ __mt_WeakCloudSharingDelegate_var = value;
+ #endif
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ object? __mt_WeakDelegate_var;
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual NSObject? WeakDelegate {
+ [Export ("delegate", ArgumentSemantic.Weak)]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ NSObject? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend (this.Handle, Selector.GetHandle ("delegate")))!;
+ } else {
+ ret = Runtime.GetNSObject (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("delegate")))!;
+ }
+ MarkDirty ();
+ __mt_WeakDelegate_var = ret;
+ return ret!;
+ #endif
+ }
+ [Export ("setDelegate:", ArgumentSemantic.Weak)]
+ set {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ var value__handle__ = value.GetHandle ();
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("setDelegate:"), value__handle__);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("setDelegate:"), value__handle__);
+ }
+ MarkDirty ();
+ __mt_WeakDelegate_var = value;
+ #endif
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ protected override void Dispose (bool disposing)
+ {
+ base.Dispose (disposing);
+ if (Handle == IntPtr.Zero) {
+ __mt_WeakCloudSharingControllerDelegate_var = null;
+ __mt_WeakCloudSharingDelegate_var = null;
+ __mt_WeakDelegate_var = null;
+ }
+ }
+ public partial class SWCollaborationViewAppearance : global::UIKit.UIView.UIViewAppearance {
+ protected internal SWCollaborationViewAppearance (IntPtr handle) : base (handle) {}
+ }
+ public static new SWCollaborationViewAppearance Appearance {
+ get { return new SWCollaborationViewAppearance (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend (class_ptr, ObjCRuntime.Selector.GetHandle ("appearance"))); }
+ }
+ public static new SWCollaborationViewAppearance GetAppearance<T> () where T: SWCollaborationView {
+ return new SWCollaborationViewAppearance (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend (Class.GetHandle (typeof (T)), ObjCRuntime.Selector.GetHandle ("appearance")));
+ }
+ public static new SWCollaborationViewAppearance AppearanceWhenContainedIn (params Type [] containers)
+ {
+ return new SWCollaborationViewAppearance (UIAppearance.GetAppearance (class_ptr, containers));
+ }
+ public static new SWCollaborationViewAppearance GetAppearance (UITraitCollection traits) {
+ return new SWCollaborationViewAppearance (UIAppearance.GetAppearance (class_ptr, traits));
+ }
+ public static new SWCollaborationViewAppearance GetAppearance (UITraitCollection traits, params Type [] containers) {
+ return new SWCollaborationViewAppearance (UIAppearance.GetAppearance (class_ptr, traits, containers));
+ }
+ public static new SWCollaborationViewAppearance GetAppearance<T> (UITraitCollection traits) where T: SWCollaborationView {
+ return new SWCollaborationViewAppearance (UIAppearance.GetAppearance (Class.GetHandle (typeof (T)), traits));
+ }
+ public static new SWCollaborationViewAppearance GetAppearance<T> (UITraitCollection traits, params Type [] containers) where T: SWCollaborationView{
+ return new SWCollaborationViewAppearance (UIAppearance.GetAppearance (Class.GetHandle (typeof (T)), containers));
+ }
+ } /* class SWCollaborationView */
+}
diff --git a/new/ios/native/SharedWithYou/SWCollaborationViewDelegate.g.cs b/new/ios/native/SharedWithYou/SWCollaborationViewDelegate.g.cs
new file mode 100644
index 0000000..b64008e
--- /dev/null
+++ b/new/ios/native/SharedWithYou/SWCollaborationViewDelegate.g.cs
@@ -0,0 +1,171 @@
+//
+// 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 SharedWithYou {
+ [Unavailable (PlatformName.WatchOS, ObjCRuntime.PlatformArchitecture.All)]
+ [Unavailable (PlatformName.TvOS, ObjCRuntime.PlatformArchitecture.All)]
+ [Unavailable (PlatformName.MacOSX, ObjCRuntime.PlatformArchitecture.All)]
+ [Introduced (PlatformName.iOS, 16,0, ObjCRuntime.PlatformArchitecture.All)]
+ [Introduced (PlatformName.MacCatalyst, 16,0, ObjCRuntime.PlatformArchitecture.All)]
+ [Protocol (Name = "SWCollaborationViewDelegate", WrapperType = typeof (SWCollaborationViewDelegateWrapper))]
+ [ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "ShouldPresentPopover", Selector = "collaborationViewShouldPresentPopover:", ReturnType = typeof (bool), ParameterType = new Type [] { typeof (SharedWithYou.SWCollaborationView) }, ParameterByRef = new bool [] { false })]
+ [ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "WillPresentPopover", Selector = "collaborationViewWillPresentPopover:", ParameterType = new Type [] { typeof (SharedWithYou.SWCollaborationView) }, ParameterByRef = new bool [] { false })]
+ [ProtocolMember (IsRequired = false, IsProperty = false, IsStatic = false, Name = "DidDismissPopover", Selector = "collaborationViewDidDismissPopover:", ParameterType = new Type [] { typeof (SharedWithYou.SWCollaborationView) }, ParameterByRef = new bool [] { false })]
+ public partial interface ISWCollaborationViewDelegate : INativeObject, IDisposable
+ {
+ }
+ public static partial class SWCollaborationViewDelegate_Extensions {
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public static bool ShouldPresentPopover (this ISWCollaborationViewDelegate This, SWCollaborationView collaborationView)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ var collaborationView__handle__ = collaborationView!.GetNonNullHandle (nameof (collaborationView));
+ return global::ObjCRuntime.Messaging.bool_objc_msgSend_IntPtr (This.Handle, Selector.GetHandle ("collaborationViewShouldPresentPopover:"), collaborationView__handle__);
+ #endif
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public static void WillPresentPopover (this ISWCollaborationViewDelegate This, SWCollaborationView collaborationView)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ var collaborationView__handle__ = collaborationView!.GetNonNullHandle (nameof (collaborationView));
+ global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (This.Handle, Selector.GetHandle ("collaborationViewWillPresentPopover:"), collaborationView__handle__);
+ #endif
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public static void DidDismissPopover (this ISWCollaborationViewDelegate This, SWCollaborationView collaborationView)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ var collaborationView__handle__ = collaborationView!.GetNonNullHandle (nameof (collaborationView));
+ global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (This.Handle, Selector.GetHandle ("collaborationViewDidDismissPopover:"), collaborationView__handle__);
+ #endif
+ }
+ }
+ internal sealed class SWCollaborationViewDelegateWrapper : BaseWrapper, ISWCollaborationViewDelegate {
+ [Preserve (Conditional = true)]
+ public SWCollaborationViewDelegateWrapper (IntPtr handle, bool owns)
+ : base (handle, owns)
+ {
+ }
+ }
+}
+namespace SharedWithYou {
+ [Protocol()]
+ [Register("Xamarin_iOS__SharedWithYou_SWCollaborationViewDelegate", false)]
+ [Model]
+ [Unavailable (PlatformName.WatchOS, ObjCRuntime.PlatformArchitecture.All)]
+ [Unavailable (PlatformName.TvOS, ObjCRuntime.PlatformArchitecture.All)]
+ [Unavailable (PlatformName.MacOSX, ObjCRuntime.PlatformArchitecture.All)]
+ [Introduced (PlatformName.iOS, 16,0, ObjCRuntime.PlatformArchitecture.All)]
+ [Introduced (PlatformName.MacCatalyst, 16,0, ObjCRuntime.PlatformArchitecture.All)]
+ public unsafe partial class SWCollaborationViewDelegate : NSObject, ISWCollaborationViewDelegate {
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ [Export ("init")]
+ public SWCollaborationViewDelegate () : base (NSObjectFlag.Empty)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ IsDirectBinding = false;
+ 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 SWCollaborationViewDelegate (NSObjectFlag t) : base (t)
+ {
+ IsDirectBinding = false;
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ protected internal SWCollaborationViewDelegate (IntPtr handle) : base (handle)
+ {
+ IsDirectBinding = false;
+ }
+
+ [Export ("collaborationViewDidDismissPopover:")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual void DidDismissPopover (SWCollaborationView collaborationView)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ throw new You_Should_Not_Call_base_In_This_Method ();
+ #endif
+ }
+ [Export ("collaborationViewShouldPresentPopover:")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual bool ShouldPresentPopover (SWCollaborationView collaborationView)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ throw new You_Should_Not_Call_base_In_This_Method ();
+ #endif
+ }
+ [Export ("collaborationViewWillPresentPopover:")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual void WillPresentPopover (SWCollaborationView collaborationView)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ throw new You_Should_Not_Call_base_In_This_Method ();
+ #endif
+ }
+ } /* class SWCollaborationViewDelegate */
+}
diff --git a/new/ios/native/SharedWithYou/SWHighlight.g.cs b/new/ios/native/SharedWithYou/SWHighlight.g.cs
new file mode 100644
index 0000000..6457fa3
--- /dev/null
+++ b/new/ios/native/SharedWithYou/SWHighlight.g.cs
@@ -0,0 +1,170 @@
+//
+// 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 SharedWithYou {
+ [Register("SWHighlight", true)]
+ [Unavailable (PlatformName.WatchOS, ObjCRuntime.PlatformArchitecture.All)]
+ [Introduced (PlatformName.TvOS, 16,0, ObjCRuntime.PlatformArchitecture.All)]
+ [Unavailable (PlatformName.MacOSX, ObjCRuntime.PlatformArchitecture.All)]
+ [Introduced (PlatformName.iOS, 16,0, ObjCRuntime.PlatformArchitecture.All)]
+ [Introduced (PlatformName.MacCatalyst, 16,0, ObjCRuntime.PlatformArchitecture.All)]
+ public unsafe partial class SWHighlight : NSObject, INSCoding, INSCopying, INSSecureCoding {
+ [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 ("SWHighlight");
+ #endif
+ public override IntPtr ClassHandle { get { return class_ptr; } }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [DesignatedInitializer]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ [Export ("initWithCoder:")]
+ public SWHighlight (NSCoder coder) : base (NSObjectFlag.Empty)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ if (IsDirectBinding) {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("initWithCoder:"), coder.Handle), "initWithCoder:");
+ } else {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("initWithCoder:"), coder.Handle), "initWithCoder:");
+ }
+ #endif
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ protected SWHighlight (NSObjectFlag t) : base (t)
+ {
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ protected internal SWHighlight (IntPtr handle) : base (handle)
+ {
+ }
+
+ [Export ("copyWithZone:")]
+ [return: ReleaseAttribute ()]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual NSObject Copy (NSZone? zone)
+ {
+ var zone__handle__ = zone.GetHandle ();
+ NSObject? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("copyWithZone:"), zone__handle__))!;
+ } else {
+ ret = Runtime.GetNSObject (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("copyWithZone:"), zone__handle__))!;
+ }
+ if (ret != null)
+ global::ObjCRuntime.Messaging.void_objc_msgSend (ret.Handle, Selector.GetHandle ("release"));
+ return ret!;
+ }
+ [Export ("encodeWithCoder:")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual void EncodeTo (NSCoder encoder)
+ {
+ var encoder__handle__ = encoder!.GetNonNullHandle (nameof (encoder));
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("encodeWithCoder:"), encoder__handle__);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("encodeWithCoder:"), encoder__handle__);
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual NSObject Identifier {
+ [Export ("identifier", ArgumentSemantic.Copy)]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ NSObject? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend (this.Handle, Selector.GetHandle ("identifier")))!;
+ } else {
+ ret = Runtime.GetNSObject (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("identifier")))!;
+ }
+ return ret!;
+ #endif
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual NSUrl Url {
+ [Export ("URL", ArgumentSemantic.Copy)]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ NSUrl? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject<NSUrl> (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend (this.Handle, Selector.GetHandle ("URL")))!;
+ } else {
+ ret = Runtime.GetNSObject<NSUrl> (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("URL")))!;
+ }
+ return ret!;
+ #endif
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ static NSString? _MetadataTypeIdentifier;
+ [Field ("SWCollaborationMetadataTypeIdentifier", "SharedWithYou")]
+ [Unavailable (PlatformName.TvOS, ObjCRuntime.PlatformArchitecture.All)]
+ public static NSString MetadataTypeIdentifier {
+ [Unavailable (PlatformName.TvOS, ObjCRuntime.PlatformArchitecture.All)]
+ get {
+ if (_MetadataTypeIdentifier is null)
+ _MetadataTypeIdentifier = Dlfcn.GetStringConstant (Libraries.SharedWithYou.Handle, "SWCollaborationMetadataTypeIdentifier")!;
+ return _MetadataTypeIdentifier;
+ }
+ }
+ } /* class SWHighlight */
+}
diff --git a/new/ios/native/SharedWithYou/SWHighlightCenter.g.cs b/new/ios/native/SharedWithYou/SWHighlightCenter.g.cs
new file mode 100644
index 0000000..cfdf7e5
--- /dev/null
+++ b/new/ios/native/SharedWithYou/SWHighlightCenter.g.cs
@@ -0,0 +1,334 @@
+//
+// 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 SharedWithYou {
+ [Register("SWHighlightCenter", true)]
+ [Unavailable (PlatformName.WatchOS, ObjCRuntime.PlatformArchitecture.All)]
+ [Introduced (PlatformName.TvOS, 16,0, ObjCRuntime.PlatformArchitecture.All)]
+ [Unavailable (PlatformName.MacOSX, ObjCRuntime.PlatformArchitecture.All)]
+ [Introduced (PlatformName.iOS, 16,0, ObjCRuntime.PlatformArchitecture.All)]
+ [Introduced (PlatformName.MacCatalyst, 16,0, ObjCRuntime.PlatformArchitecture.All)]
+ public unsafe partial class SWHighlightCenter : 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 ("SWHighlightCenter");
+ #endif
+ public override IntPtr ClassHandle { get { return class_ptr; } }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ [Export ("init")]
+ public SWHighlightCenter () : 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 SWHighlightCenter (NSObjectFlag t) : base (t)
+ {
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ protected internal SWHighlightCenter (IntPtr handle) : base (handle)
+ {
+ }
+
+ [Export ("collaborationHighlightForIdentifier:error:")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual SWCollaborationHighlight? GetCollaborationHighlight (string collaborationIdentifier, out NSError? error)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ if (collaborationIdentifier is null)
+ ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (collaborationIdentifier));
+ IntPtr errorValue = IntPtr.Zero;
+ var nscollaborationIdentifier = CFString.CreateNative (collaborationIdentifier);
+ SWCollaborationHighlight? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject<SWCollaborationHighlight> (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend_IntPtr_ref_IntPtr (this.Handle, Selector.GetHandle ("collaborationHighlightForIdentifier:error:"), nscollaborationIdentifier, ref errorValue))!;
+ } else {
+ ret = Runtime.GetNSObject<SWCollaborationHighlight> (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper_IntPtr_ref_IntPtr (this.SuperHandle, Selector.GetHandle ("collaborationHighlightForIdentifier:error:"), nscollaborationIdentifier, ref errorValue))!;
+ }
+ CFString.ReleaseNative (nscollaborationIdentifier);
+ error = Runtime.GetNSObject<NSError> (errorValue)!;
+ return ret!;
+ #endif
+ }
+ [Export ("getCollaborationHighlightForURL:completionHandler:")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public unsafe virtual void GetCollaborationHighlight (NSUrl url, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V139))]global::System.Action<SWCollaborationHighlight, NSError> completionHandler)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ var url__handle__ = url!.GetNonNullHandle (nameof (url));
+ 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.SDActionArity2V139.Handler, completionHandler);
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr (this.Handle, Selector.GetHandle ("getCollaborationHighlightForURL:completionHandler:"), url__handle__, (IntPtr) block_ptr_completionHandler);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr_IntPtr (this.SuperHandle, Selector.GetHandle ("getCollaborationHighlightForURL:completionHandler:"), url__handle__, (IntPtr) block_ptr_completionHandler);
+ }
+ block_ptr_completionHandler->CleanupBlock ();
+ #endif
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public unsafe virtual Task<SWCollaborationHighlight> GetCollaborationHighlightAsync (NSUrl url)
+ {
+ var tcs = new TaskCompletionSource<SWCollaborationHighlight> ();
+ GetCollaborationHighlight(url, (arg1_, arg2_) => {
+ if (arg2_ != null)
+ tcs.SetException (new NSErrorException(arg2_));
+ else
+ tcs.SetResult (arg1_!);
+ });
+ return tcs.Task;
+ }
+ [Export ("getHighlightForURL:completionHandler:")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public unsafe virtual void GetHighlight (NSUrl urL, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V140))]global::System.Action<SWHighlight, NSError> completionHandler)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ var urL__handle__ = urL!.GetNonNullHandle (nameof (urL));
+ 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.SDActionArity2V140.Handler, completionHandler);
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr (this.Handle, Selector.GetHandle ("getHighlightForURL:completionHandler:"), urL__handle__, (IntPtr) block_ptr_completionHandler);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr_IntPtr (this.SuperHandle, Selector.GetHandle ("getHighlightForURL:completionHandler:"), urL__handle__, (IntPtr) block_ptr_completionHandler);
+ }
+ block_ptr_completionHandler->CleanupBlock ();
+ #endif
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public unsafe virtual Task<SWHighlight> GetHighlightAsync (NSUrl urL)
+ {
+ var tcs = new TaskCompletionSource<SWHighlight> ();
+ GetHighlight(urL, (arg1_, arg2_) => {
+ if (arg2_ != null)
+ tcs.SetException (new NSErrorException(arg2_));
+ else
+ tcs.SetResult (arg1_!);
+ });
+ return tcs.Task;
+ }
+ [Export ("getSignedIdentityProofForCollaborationHighlight:usingData:completionHandler:")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public unsafe virtual void GetSignedIdentityProof (SWCollaborationHighlight collaborationHighlight, NSData data, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V141))]global::System.Action<global::SharedWithYouCore.SWSignedPersonIdentityProof, NSError> completionHandler)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ var collaborationHighlight__handle__ = collaborationHighlight!.GetNonNullHandle (nameof (collaborationHighlight));
+ var data__handle__ = data!.GetNonNullHandle (nameof (data));
+ 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.SDActionArity2V141.Handler, completionHandler);
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr_IntPtr (this.Handle, Selector.GetHandle ("getSignedIdentityProofForCollaborationHighlight:usingData:completionHandler:"), collaborationHighlight__handle__, data__handle__, (IntPtr) block_ptr_completionHandler);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr_IntPtr_IntPtr (this.SuperHandle, Selector.GetHandle ("getSignedIdentityProofForCollaborationHighlight:usingData:completionHandler:"), collaborationHighlight__handle__, data__handle__, (IntPtr) block_ptr_completionHandler);
+ }
+ block_ptr_completionHandler->CleanupBlock ();
+ #endif
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public unsafe virtual Task<global::SharedWithYouCore.SWSignedPersonIdentityProof> GetSignedIdentityProofAsync (SWCollaborationHighlight collaborationHighlight, NSData data)
+ {
+ var tcs = new TaskCompletionSource<global::SharedWithYouCore.SWSignedPersonIdentityProof> ();
+ GetSignedIdentityProof(collaborationHighlight, data, (arg1_, arg2_) => {
+ if (arg2_ != null)
+ tcs.SetException (new NSErrorException(arg2_));
+ else
+ tcs.SetResult (arg1_!);
+ });
+ return tcs.Task;
+ }
+ [Export ("postNoticeForHighlightEvent:")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual void PostNotice (ISWHighlightEvent @event)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ var @event__handle__ = @event!.GetNonNullHandle (nameof (@event));
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("postNoticeForHighlightEvent:"), @event__handle__);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("postNoticeForHighlightEvent:"), @event__handle__);
+ }
+ #endif
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public ISWHighlightCenterDelegate? Delegate {
+ get {
+ return (WeakDelegate as ISWHighlightCenterDelegate)!;
+ }
+ set {
+ var rvalue = value as NSObject;
+ if (!(value is null) && rvalue is null)
+ throw new ArgumentException ("The object passed of type " + value.GetType () + " does not derive from NSObject");
+ WeakDelegate = rvalue;
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public static string HighlightCollectionTitle {
+ [Export ("highlightCollectionTitle")]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ return CFString.FromHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend (class_ptr, Selector.GetHandle ("highlightCollectionTitle")))!;
+ #endif
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual SWHighlight[] Highlights {
+ [Export ("highlights", ArgumentSemantic.Copy)]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ SWHighlight[]? ret;
+ if (IsDirectBinding) {
+ ret = CFArray.ArrayFromHandle<SWHighlight>(global::ObjCRuntime.Messaging.IntPtr_objc_msgSend (this.Handle, Selector.GetHandle ("highlights")))!;
+ } else {
+ ret = CFArray.ArrayFromHandle<SWHighlight>(global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("highlights")))!;
+ }
+ return ret!;
+ #endif
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public static bool SystemCollaborationSupportAvailable {
+ [Export ("isSystemCollaborationSupportAvailable")]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ return global::ObjCRuntime.Messaging.bool_objc_msgSend (class_ptr, Selector.GetHandle ("isSystemCollaborationSupportAvailable"));
+ #endif
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ object? __mt_WeakDelegate_var;
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual NSObject? WeakDelegate {
+ [Export ("delegate", ArgumentSemantic.Weak)]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ NSObject? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend (this.Handle, Selector.GetHandle ("delegate")))!;
+ } else {
+ ret = Runtime.GetNSObject (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("delegate")))!;
+ }
+ MarkDirty ();
+ __mt_WeakDelegate_var = ret;
+ return ret!;
+ #endif
+ }
+ [Export ("setDelegate:", ArgumentSemantic.Weak)]
+ set {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ var value__handle__ = value.GetHandle ();
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("setDelegate:"), value__handle__);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("setDelegate:"), value__handle__);
+ }
+ MarkDirty ();
+ __mt_WeakDelegate_var = value;
+ #endif
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ protected override void Dispose (bool disposing)
+ {
+ base.Dispose (disposing);
+ if (Handle == IntPtr.Zero) {
+ __mt_WeakDelegate_var = null;
+ }
+ }
+ } /* class SWHighlightCenter */
+}
diff --git a/new/ios/native/SharedWithYou/SWHighlightCenterDelegate.g.cs b/new/ios/native/SharedWithYou/SWHighlightCenterDelegate.g.cs
new file mode 100644
index 0000000..4f63af9
--- /dev/null
+++ b/new/ios/native/SharedWithYou/SWHighlightCenterDelegate.g.cs
@@ -0,0 +1,125 @@
+//
+// 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 SharedWithYou {
+ [Unavailable (PlatformName.WatchOS, ObjCRuntime.PlatformArchitecture.All)]
+ [Introduced (PlatformName.TvOS, 16,0, ObjCRuntime.PlatformArchitecture.All)]
+ [Unavailable (PlatformName.MacOSX, ObjCRuntime.PlatformArchitecture.All)]
+ [Introduced (PlatformName.iOS, 16,0, ObjCRuntime.PlatformArchitecture.All)]
+ [Introduced (PlatformName.MacCatalyst, 16,0, ObjCRuntime.PlatformArchitecture.All)]
+ [Protocol (Name = "SWHighlightCenterDelegate", WrapperType = typeof (SWHighlightCenterDelegateWrapper))]
+ [ProtocolMember (IsRequired = true, IsProperty = false, IsStatic = false, Name = "HighlightsDidChange", Selector = "highlightCenterHighlightsDidChange:", ParameterType = new Type [] { typeof (SharedWithYou.SWHighlightCenter) }, ParameterByRef = new bool [] { false })]
+ public partial interface ISWHighlightCenterDelegate : INativeObject, IDisposable
+ {
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [Export ("highlightCenterHighlightsDidChange:")]
+ [Preserve (Conditional = true)]
+ void HighlightsDidChange (SWHighlightCenter highlightCenter);
+ }
+ internal sealed class SWHighlightCenterDelegateWrapper : BaseWrapper, ISWHighlightCenterDelegate {
+ [Preserve (Conditional = true)]
+ public SWHighlightCenterDelegateWrapper (IntPtr handle, bool owns)
+ : base (handle, owns)
+ {
+ }
+ [Export ("highlightCenterHighlightsDidChange:")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public void HighlightsDidChange (SWHighlightCenter highlightCenter)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ var highlightCenter__handle__ = highlightCenter!.GetNonNullHandle (nameof (highlightCenter));
+ global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("highlightCenterHighlightsDidChange:"), highlightCenter__handle__);
+ #endif
+ }
+ }
+}
+namespace SharedWithYou {
+ [Protocol()]
+ [Register("Xamarin_iOS__SharedWithYou_SWHighlightCenterDelegate", false)]
+ [Model]
+ [Unavailable (PlatformName.WatchOS, ObjCRuntime.PlatformArchitecture.All)]
+ [Introduced (PlatformName.TvOS, 16,0, ObjCRuntime.PlatformArchitecture.All)]
+ [Unavailable (PlatformName.MacOSX, ObjCRuntime.PlatformArchitecture.All)]
+ [Introduced (PlatformName.iOS, 16,0, ObjCRuntime.PlatformArchitecture.All)]
+ [Introduced (PlatformName.MacCatalyst, 16,0, ObjCRuntime.PlatformArchitecture.All)]
+ public unsafe abstract partial class SWHighlightCenterDelegate : NSObject, ISWHighlightCenterDelegate {
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ [Export ("init")]
+ protected SWHighlightCenterDelegate () : base (NSObjectFlag.Empty)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ IsDirectBinding = false;
+ 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 SWHighlightCenterDelegate (NSObjectFlag t) : base (t)
+ {
+ IsDirectBinding = false;
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ protected internal SWHighlightCenterDelegate (IntPtr handle) : base (handle)
+ {
+ IsDirectBinding = false;
+ }
+
+ [Export ("highlightCenterHighlightsDidChange:")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public abstract void HighlightsDidChange (SWHighlightCenter highlightCenter);
+ } /* class SWHighlightCenterDelegate */
+}
diff --git a/new/ios/native/SharedWithYou/SWHighlightCenterErrorCode.g.cs b/new/ios/native/SharedWithYou/SWHighlightCenterErrorCode.g.cs
new file mode 100644
index 0000000..99ada49
--- /dev/null
+++ b/new/ios/native/SharedWithYou/SWHighlightCenterErrorCode.g.cs
@@ -0,0 +1,61 @@
+//
+// 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 SharedWithYou {
+ [Introduced (PlatformName.TvOS, 16,0, ObjCRuntime.PlatformArchitecture.All)]
+ [Unavailable (PlatformName.MacOSX, ObjCRuntime.PlatformArchitecture.All)]
+ [Introduced (PlatformName.iOS, 16,0, ObjCRuntime.PlatformArchitecture.All)]
+ [Native]
+ public enum SWHighlightCenterErrorCode : long {
+ NoError = 0,
+ InternalError = 1,
+ InvalidURL = 2,
+ AccessDenied = 3,
+ }
+}
diff --git a/new/ios/native/SharedWithYou/SWHighlightChangeEvent.g.cs b/new/ios/native/SharedWithYou/SWHighlightChangeEvent.g.cs
new file mode 100644
index 0000000..5792f95
--- /dev/null
+++ b/new/ios/native/SharedWithYou/SWHighlightChangeEvent.g.cs
@@ -0,0 +1,174 @@
+//
+// 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 SharedWithYou {
+ [Register("SWHighlightChangeEvent", true)]
+ [Unavailable (PlatformName.WatchOS, ObjCRuntime.PlatformArchitecture.All)]
+ [Unavailable (PlatformName.TvOS, ObjCRuntime.PlatformArchitecture.All)]
+ [Unavailable (PlatformName.MacOSX, ObjCRuntime.PlatformArchitecture.All)]
+ [Introduced (PlatformName.iOS, 16,0, ObjCRuntime.PlatformArchitecture.All)]
+ [Introduced (PlatformName.MacCatalyst, 16,0, ObjCRuntime.PlatformArchitecture.All)]
+ public unsafe partial class SWHighlightChangeEvent : NSObject, INSCoding, INSCopying, INSSecureCoding, ISWHighlightEvent {
+ [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 ("SWHighlightChangeEvent");
+ #endif
+ public override IntPtr ClassHandle { get { return class_ptr; } }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [DesignatedInitializer]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ [Export ("initWithCoder:")]
+ public SWHighlightChangeEvent (NSCoder coder) : base (NSObjectFlag.Empty)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ if (IsDirectBinding) {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("initWithCoder:"), coder.Handle), "initWithCoder:");
+ } else {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("initWithCoder:"), coder.Handle), "initWithCoder:");
+ }
+ #endif
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ protected SWHighlightChangeEvent (NSObjectFlag t) : base (t)
+ {
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ protected internal SWHighlightChangeEvent (IntPtr handle) : base (handle)
+ {
+ }
+
+ [Export ("initWithHighlight:trigger:")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public SWHighlightChangeEvent (SWHighlight highlight, SWHighlightChangeEventTrigger trigger)
+ : base (NSObjectFlag.Empty)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ var highlight__handle__ = highlight!.GetNonNullHandle (nameof (highlight));
+ if (IsDirectBinding) {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend_IntPtr_IntPtr (this.Handle, Selector.GetHandle ("initWithHighlight:trigger:"), highlight__handle__, (IntPtr) (long) trigger), "initWithHighlight:trigger:");
+ } else {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper_IntPtr_IntPtr (this.SuperHandle, Selector.GetHandle ("initWithHighlight:trigger:"), highlight__handle__, (IntPtr) (long) trigger), "initWithHighlight:trigger:");
+ }
+ #endif
+ }
+ [Export ("copyWithZone:")]
+ [return: ReleaseAttribute ()]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual NSObject Copy (NSZone? zone)
+ {
+ var zone__handle__ = zone.GetHandle ();
+ NSObject? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("copyWithZone:"), zone__handle__))!;
+ } else {
+ ret = Runtime.GetNSObject (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("copyWithZone:"), zone__handle__))!;
+ }
+ if (ret != null)
+ global::ObjCRuntime.Messaging.void_objc_msgSend (ret.Handle, Selector.GetHandle ("release"));
+ return ret!;
+ }
+ [Export ("encodeWithCoder:")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual void EncodeTo (NSCoder encoder)
+ {
+ var encoder__handle__ = encoder!.GetNonNullHandle (nameof (encoder));
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("encodeWithCoder:"), encoder__handle__);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("encodeWithCoder:"), encoder__handle__);
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual SWHighlightChangeEventTrigger ChangeEventTrigger {
+ [Export ("changeEventTrigger", ArgumentSemantic.UnsafeUnretained)]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ SWHighlightChangeEventTrigger ret;
+ if (IsDirectBinding) {
+ ret = (SharedWithYou.SWHighlightChangeEventTrigger) (long) global::ObjCRuntime.Messaging.IntPtr_objc_msgSend (this.Handle, Selector.GetHandle ("changeEventTrigger"));
+ } else {
+ ret = (SharedWithYou.SWHighlightChangeEventTrigger) (long) global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("changeEventTrigger"));
+ }
+ return ret!;
+ #endif
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual NSUrl HighlightUrl {
+ [Export ("highlightURL", ArgumentSemantic.Copy)]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ NSUrl? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject<NSUrl> (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend (this.Handle, Selector.GetHandle ("highlightURL")))!;
+ } else {
+ ret = Runtime.GetNSObject<NSUrl> (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("highlightURL")))!;
+ }
+ return ret!;
+ #endif
+ }
+ }
+ } /* class SWHighlightChangeEvent */
+}
diff --git a/new/ios/native/SharedWithYou/SWHighlightChangeEventTrigger.g.cs b/new/ios/native/SharedWithYou/SWHighlightChangeEventTrigger.g.cs
new file mode 100644
index 0000000..d3471cc
--- /dev/null
+++ b/new/ios/native/SharedWithYou/SWHighlightChangeEventTrigger.g.cs
@@ -0,0 +1,61 @@
+//
+// 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 SharedWithYou {
+ [Unavailable (PlatformName.TvOS, ObjCRuntime.PlatformArchitecture.All)]
+ [Unavailable (PlatformName.WatchOS, ObjCRuntime.PlatformArchitecture.All)]
+ [Unavailable (PlatformName.MacOSX, ObjCRuntime.PlatformArchitecture.All)]
+ [Introduced (PlatformName.iOS, 16,0, ObjCRuntime.PlatformArchitecture.All)]
+ [Introduced (PlatformName.MacCatalyst, 16,0, ObjCRuntime.PlatformArchitecture.All)]
+ [Native]
+ public enum SWHighlightChangeEventTrigger : long {
+ Edit = 1,
+ Comment = 2,
+ }
+}
diff --git a/new/ios/native/SharedWithYou/SWHighlightEvent.g.cs b/new/ios/native/SharedWithYou/SWHighlightEvent.g.cs
new file mode 100644
index 0000000..4938422
--- /dev/null
+++ b/new/ios/native/SharedWithYou/SWHighlightEvent.g.cs
@@ -0,0 +1,106 @@
+//
+// 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 SharedWithYou {
+ [Unavailable (PlatformName.WatchOS, ObjCRuntime.PlatformArchitecture.All)]
+ [Unavailable (PlatformName.TvOS, ObjCRuntime.PlatformArchitecture.All)]
+ [Unavailable (PlatformName.MacOSX, ObjCRuntime.PlatformArchitecture.All)]
+ [Introduced (PlatformName.iOS, 16,0, ObjCRuntime.PlatformArchitecture.All)]
+ [Introduced (PlatformName.MacCatalyst, 16,0, ObjCRuntime.PlatformArchitecture.All)]
+ [Protocol (Name = "SWHighlightEvent", WrapperType = typeof (SWHighlightEventWrapper))]
+ [ProtocolMember (IsRequired = true, IsProperty = true, IsStatic = false, Name = "HighlightUrl", Selector = "highlightURL", PropertyType = typeof (NSUrl), GetterSelector = "highlightURL", ArgumentSemantic = ArgumentSemantic.Copy)]
+ public partial interface ISWHighlightEvent : INativeObject, IDisposable,
+ Foundation.INSCoding
+ , Foundation.INSCopying
+ , Foundation.INSSecureCoding
+ {
+ [Preserve (Conditional = true)]
+ NSUrl HighlightUrl {
+ [Export ("highlightURL", ArgumentSemantic.Copy)]
+ get;
+ }
+ }
+ internal sealed class SWHighlightEventWrapper : BaseWrapper, ISWHighlightEvent {
+ [Preserve (Conditional = true)]
+ public SWHighlightEventWrapper (IntPtr handle, bool owns)
+ : base (handle, owns)
+ {
+ }
+ [Export ("encodeWithCoder:")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public void EncodeTo (NSCoder encoder)
+ {
+ var encoder__handle__ = encoder!.GetNonNullHandle (nameof (encoder));
+ global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("encodeWithCoder:"), encoder__handle__);
+ }
+ [Export ("copyWithZone:")]
+ [return: ReleaseAttribute ()]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public NSObject Copy (NSZone? zone)
+ {
+ var zone__handle__ = zone.GetHandle ();
+ NSObject? ret;
+ ret = Runtime.GetNSObject (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("copyWithZone:"), zone__handle__))!;
+ if (ret != null)
+ global::ObjCRuntime.Messaging.void_objc_msgSend (ret.Handle, Selector.GetHandle ("release"));
+ return ret!;
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public NSUrl HighlightUrl {
+ [Export ("highlightURL", ArgumentSemantic.Copy)]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ return Runtime.GetNSObject<NSUrl> (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend (this.Handle, Selector.GetHandle ("highlightURL")))!;
+ #endif
+ }
+ }
+ }
+}
diff --git a/new/ios/native/SharedWithYou/SWHighlightMembershipEvent.g.cs b/new/ios/native/SharedWithYou/SWHighlightMembershipEvent.g.cs
new file mode 100644
index 0000000..10b4da1
--- /dev/null
+++ b/new/ios/native/SharedWithYou/SWHighlightMembershipEvent.g.cs
@@ -0,0 +1,174 @@
+//
+// 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 SharedWithYou {
+ [Register("SWHighlightMembershipEvent", true)]
+ [Unavailable (PlatformName.WatchOS, ObjCRuntime.PlatformArchitecture.All)]
+ [Unavailable (PlatformName.TvOS, ObjCRuntime.PlatformArchitecture.All)]
+ [Unavailable (PlatformName.MacOSX, ObjCRuntime.PlatformArchitecture.All)]
+ [Introduced (PlatformName.iOS, 16,0, ObjCRuntime.PlatformArchitecture.All)]
+ [Introduced (PlatformName.MacCatalyst, 16,0, ObjCRuntime.PlatformArchitecture.All)]
+ public unsafe partial class SWHighlightMembershipEvent : NSObject, INSCoding, INSCopying, INSSecureCoding, ISWHighlightEvent {
+ [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 ("SWHighlightMembershipEvent");
+ #endif
+ public override IntPtr ClassHandle { get { return class_ptr; } }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [DesignatedInitializer]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ [Export ("initWithCoder:")]
+ public SWHighlightMembershipEvent (NSCoder coder) : base (NSObjectFlag.Empty)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ if (IsDirectBinding) {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("initWithCoder:"), coder.Handle), "initWithCoder:");
+ } else {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("initWithCoder:"), coder.Handle), "initWithCoder:");
+ }
+ #endif
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ protected SWHighlightMembershipEvent (NSObjectFlag t) : base (t)
+ {
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ protected internal SWHighlightMembershipEvent (IntPtr handle) : base (handle)
+ {
+ }
+
+ [Export ("initWithHighlight:trigger:")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public SWHighlightMembershipEvent (SWHighlight highlight, SWHighlightMembershipEventTrigger trigger)
+ : base (NSObjectFlag.Empty)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ var highlight__handle__ = highlight!.GetNonNullHandle (nameof (highlight));
+ if (IsDirectBinding) {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend_IntPtr_IntPtr (this.Handle, Selector.GetHandle ("initWithHighlight:trigger:"), highlight__handle__, (IntPtr) (long) trigger), "initWithHighlight:trigger:");
+ } else {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper_IntPtr_IntPtr (this.SuperHandle, Selector.GetHandle ("initWithHighlight:trigger:"), highlight__handle__, (IntPtr) (long) trigger), "initWithHighlight:trigger:");
+ }
+ #endif
+ }
+ [Export ("copyWithZone:")]
+ [return: ReleaseAttribute ()]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual NSObject Copy (NSZone? zone)
+ {
+ var zone__handle__ = zone.GetHandle ();
+ NSObject? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("copyWithZone:"), zone__handle__))!;
+ } else {
+ ret = Runtime.GetNSObject (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("copyWithZone:"), zone__handle__))!;
+ }
+ if (ret != null)
+ global::ObjCRuntime.Messaging.void_objc_msgSend (ret.Handle, Selector.GetHandle ("release"));
+ return ret!;
+ }
+ [Export ("encodeWithCoder:")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual void EncodeTo (NSCoder encoder)
+ {
+ var encoder__handle__ = encoder!.GetNonNullHandle (nameof (encoder));
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("encodeWithCoder:"), encoder__handle__);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("encodeWithCoder:"), encoder__handle__);
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual NSUrl HighlightUrl {
+ [Export ("highlightURL", ArgumentSemantic.Copy)]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ NSUrl? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject<NSUrl> (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend (this.Handle, Selector.GetHandle ("highlightURL")))!;
+ } else {
+ ret = Runtime.GetNSObject<NSUrl> (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("highlightURL")))!;
+ }
+ return ret!;
+ #endif
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual SWHighlightMembershipEventTrigger MembershipEventTrigger {
+ [Export ("membershipEventTrigger", ArgumentSemantic.UnsafeUnretained)]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ SWHighlightMembershipEventTrigger ret;
+ if (IsDirectBinding) {
+ ret = (SharedWithYou.SWHighlightMembershipEventTrigger) (long) global::ObjCRuntime.Messaging.IntPtr_objc_msgSend (this.Handle, Selector.GetHandle ("membershipEventTrigger"));
+ } else {
+ ret = (SharedWithYou.SWHighlightMembershipEventTrigger) (long) global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("membershipEventTrigger"));
+ }
+ return ret!;
+ #endif
+ }
+ }
+ } /* class SWHighlightMembershipEvent */
+}
diff --git a/new/ios/native/SharedWithYou/SWHighlightMembershipEventTrigger.g.cs b/new/ios/native/SharedWithYou/SWHighlightMembershipEventTrigger.g.cs
new file mode 100644
index 0000000..9b8dd99
--- /dev/null
+++ b/new/ios/native/SharedWithYou/SWHighlightMembershipEventTrigger.g.cs
@@ -0,0 +1,61 @@
+//
+// 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 SharedWithYou {
+ [Unavailable (PlatformName.TvOS, ObjCRuntime.PlatformArchitecture.All)]
+ [Unavailable (PlatformName.WatchOS, ObjCRuntime.PlatformArchitecture.All)]
+ [Unavailable (PlatformName.MacOSX, ObjCRuntime.PlatformArchitecture.All)]
+ [Introduced (PlatformName.iOS, 16,0, ObjCRuntime.PlatformArchitecture.All)]
+ [Introduced (PlatformName.MacCatalyst, 16,0, ObjCRuntime.PlatformArchitecture.All)]
+ [Native]
+ public enum SWHighlightMembershipEventTrigger : long {
+ AddedCollaborator = 1,
+ RemovedCollaborator = 2,
+ }
+}
diff --git a/new/ios/native/SharedWithYou/SWHighlightMentionEvent.g.cs b/new/ios/native/SharedWithYou/SWHighlightMentionEvent.g.cs
new file mode 100644
index 0000000..3327484
--- /dev/null
+++ b/new/ios/native/SharedWithYou/SWHighlightMentionEvent.g.cs
@@ -0,0 +1,193 @@
+//
+// 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 SharedWithYou {
+ [Register("SWHighlightMentionEvent", true)]
+ [Unavailable (PlatformName.WatchOS, ObjCRuntime.PlatformArchitecture.All)]
+ [Unavailable (PlatformName.TvOS, ObjCRuntime.PlatformArchitecture.All)]
+ [Unavailable (PlatformName.MacOSX, ObjCRuntime.PlatformArchitecture.All)]
+ [Introduced (PlatformName.iOS, 16,0, ObjCRuntime.PlatformArchitecture.All)]
+ [Introduced (PlatformName.MacCatalyst, 16,0, ObjCRuntime.PlatformArchitecture.All)]
+ public unsafe partial class SWHighlightMentionEvent : NSObject, INSCoding, INSCopying, INSSecureCoding, ISWHighlightEvent {
+ [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 ("SWHighlightMentionEvent");
+ #endif
+ public override IntPtr ClassHandle { get { return class_ptr; } }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [DesignatedInitializer]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ [Export ("initWithCoder:")]
+ public SWHighlightMentionEvent (NSCoder coder) : base (NSObjectFlag.Empty)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ if (IsDirectBinding) {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("initWithCoder:"), coder.Handle), "initWithCoder:");
+ } else {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("initWithCoder:"), coder.Handle), "initWithCoder:");
+ }
+ #endif
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ protected SWHighlightMentionEvent (NSObjectFlag t) : base (t)
+ {
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ protected internal SWHighlightMentionEvent (IntPtr handle) : base (handle)
+ {
+ }
+
+ [Export ("initWithHighlight:mentionedPersonCloudKitShareHandle:")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public SWHighlightMentionEvent (SWHighlight highlight, string handle)
+ : base (NSObjectFlag.Empty)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ var highlight__handle__ = highlight!.GetNonNullHandle (nameof (highlight));
+ if (handle is null)
+ ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (handle));
+ var nshandle = CFString.CreateNative (handle);
+ if (IsDirectBinding) {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend_IntPtr_IntPtr (this.Handle, Selector.GetHandle ("initWithHighlight:mentionedPersonCloudKitShareHandle:"), highlight__handle__, nshandle), "initWithHighlight:mentionedPersonCloudKitShareHandle:");
+ } else {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper_IntPtr_IntPtr (this.SuperHandle, Selector.GetHandle ("initWithHighlight:mentionedPersonCloudKitShareHandle:"), highlight__handle__, nshandle), "initWithHighlight:mentionedPersonCloudKitShareHandle:");
+ }
+ CFString.ReleaseNative (nshandle);
+ #endif
+ }
+ [Export ("initWithHighlight:mentionedPersonIdentity:")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public SWHighlightMentionEvent (SWHighlight highlight, global::SharedWithYouCore.SWPersonIdentity identity)
+ : base (NSObjectFlag.Empty)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ var highlight__handle__ = highlight!.GetNonNullHandle (nameof (highlight));
+ var identity__handle__ = identity!.GetNonNullHandle (nameof (identity));
+ if (IsDirectBinding) {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend_IntPtr_IntPtr (this.Handle, Selector.GetHandle ("initWithHighlight:mentionedPersonIdentity:"), highlight__handle__, identity__handle__), "initWithHighlight:mentionedPersonIdentity:");
+ } else {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper_IntPtr_IntPtr (this.SuperHandle, Selector.GetHandle ("initWithHighlight:mentionedPersonIdentity:"), highlight__handle__, identity__handle__), "initWithHighlight:mentionedPersonIdentity:");
+ }
+ #endif
+ }
+ [Export ("copyWithZone:")]
+ [return: ReleaseAttribute ()]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual NSObject Copy (NSZone? zone)
+ {
+ var zone__handle__ = zone.GetHandle ();
+ NSObject? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("copyWithZone:"), zone__handle__))!;
+ } else {
+ ret = Runtime.GetNSObject (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("copyWithZone:"), zone__handle__))!;
+ }
+ if (ret != null)
+ global::ObjCRuntime.Messaging.void_objc_msgSend (ret.Handle, Selector.GetHandle ("release"));
+ return ret!;
+ }
+ [Export ("encodeWithCoder:")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual void EncodeTo (NSCoder encoder)
+ {
+ var encoder__handle__ = encoder!.GetNonNullHandle (nameof (encoder));
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("encodeWithCoder:"), encoder__handle__);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("encodeWithCoder:"), encoder__handle__);
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual NSUrl HighlightUrl {
+ [Export ("highlightURL", ArgumentSemantic.Copy)]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ NSUrl? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject<NSUrl> (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend (this.Handle, Selector.GetHandle ("highlightURL")))!;
+ } else {
+ ret = Runtime.GetNSObject<NSUrl> (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("highlightURL")))!;
+ }
+ return ret!;
+ #endif
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual string MentionedPersonHandle {
+ [Export ("mentionedPersonHandle", ArgumentSemantic.Retain)]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ if (IsDirectBinding) {
+ return CFString.FromHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend (this.Handle, Selector.GetHandle ("mentionedPersonHandle")))!;
+ } else {
+ return CFString.FromHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("mentionedPersonHandle")))!;
+ }
+ #endif
+ }
+ }
+ } /* class SWHighlightMentionEvent */
+}
diff --git a/new/ios/native/SharedWithYou/SWHighlightPersistenceEvent.g.cs b/new/ios/native/SharedWithYou/SWHighlightPersistenceEvent.g.cs
new file mode 100644
index 0000000..8d3c21c
--- /dev/null
+++ b/new/ios/native/SharedWithYou/SWHighlightPersistenceEvent.g.cs
@@ -0,0 +1,174 @@
+//
+// 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 SharedWithYou {
+ [Register("SWHighlightPersistenceEvent", true)]
+ [Unavailable (PlatformName.WatchOS, ObjCRuntime.PlatformArchitecture.All)]
+ [Unavailable (PlatformName.TvOS, ObjCRuntime.PlatformArchitecture.All)]
+ [Unavailable (PlatformName.MacOSX, ObjCRuntime.PlatformArchitecture.All)]
+ [Introduced (PlatformName.iOS, 16,0, ObjCRuntime.PlatformArchitecture.All)]
+ [Introduced (PlatformName.MacCatalyst, 16,0, ObjCRuntime.PlatformArchitecture.All)]
+ public unsafe partial class SWHighlightPersistenceEvent : NSObject, INSCoding, INSCopying, INSSecureCoding, ISWHighlightEvent {
+ [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 ("SWHighlightPersistenceEvent");
+ #endif
+ public override IntPtr ClassHandle { get { return class_ptr; } }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [DesignatedInitializer]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ [Export ("initWithCoder:")]
+ public SWHighlightPersistenceEvent (NSCoder coder) : base (NSObjectFlag.Empty)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ if (IsDirectBinding) {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("initWithCoder:"), coder.Handle), "initWithCoder:");
+ } else {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("initWithCoder:"), coder.Handle), "initWithCoder:");
+ }
+ #endif
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ protected SWHighlightPersistenceEvent (NSObjectFlag t) : base (t)
+ {
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ protected internal SWHighlightPersistenceEvent (IntPtr handle) : base (handle)
+ {
+ }
+
+ [Export ("initWithHighlight:trigger:")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public SWHighlightPersistenceEvent (SWHighlight highlight, SWHighlightPersistenceEventTrigger trigger)
+ : base (NSObjectFlag.Empty)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ var highlight__handle__ = highlight!.GetNonNullHandle (nameof (highlight));
+ if (IsDirectBinding) {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend_IntPtr_IntPtr (this.Handle, Selector.GetHandle ("initWithHighlight:trigger:"), highlight__handle__, (IntPtr) (long) trigger), "initWithHighlight:trigger:");
+ } else {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper_IntPtr_IntPtr (this.SuperHandle, Selector.GetHandle ("initWithHighlight:trigger:"), highlight__handle__, (IntPtr) (long) trigger), "initWithHighlight:trigger:");
+ }
+ #endif
+ }
+ [Export ("copyWithZone:")]
+ [return: ReleaseAttribute ()]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual NSObject Copy (NSZone? zone)
+ {
+ var zone__handle__ = zone.GetHandle ();
+ NSObject? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("copyWithZone:"), zone__handle__))!;
+ } else {
+ ret = Runtime.GetNSObject (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("copyWithZone:"), zone__handle__))!;
+ }
+ if (ret != null)
+ global::ObjCRuntime.Messaging.void_objc_msgSend (ret.Handle, Selector.GetHandle ("release"));
+ return ret!;
+ }
+ [Export ("encodeWithCoder:")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual void EncodeTo (NSCoder encoder)
+ {
+ var encoder__handle__ = encoder!.GetNonNullHandle (nameof (encoder));
+ if (IsDirectBinding) {
+ global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("encodeWithCoder:"), encoder__handle__);
+ } else {
+ global::ObjCRuntime.Messaging.void_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("encodeWithCoder:"), encoder__handle__);
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual NSUrl HighlightUrl {
+ [Export ("highlightURL", ArgumentSemantic.Copy)]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ NSUrl? ret;
+ if (IsDirectBinding) {
+ ret = Runtime.GetNSObject<NSUrl> (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend (this.Handle, Selector.GetHandle ("highlightURL")))!;
+ } else {
+ ret = Runtime.GetNSObject<NSUrl> (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("highlightURL")))!;
+ }
+ return ret!;
+ #endif
+ }
+ }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public virtual SWHighlightPersistenceEventTrigger PersistenceEventTrigger {
+ [Export ("persistenceEventTrigger", ArgumentSemantic.UnsafeUnretained)]
+ get {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ SWHighlightPersistenceEventTrigger ret;
+ if (IsDirectBinding) {
+ ret = (SharedWithYou.SWHighlightPersistenceEventTrigger) (long) global::ObjCRuntime.Messaging.IntPtr_objc_msgSend (this.Handle, Selector.GetHandle ("persistenceEventTrigger"));
+ } else {
+ ret = (SharedWithYou.SWHighlightPersistenceEventTrigger) (long) global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper (this.SuperHandle, Selector.GetHandle ("persistenceEventTrigger"));
+ }
+ return ret!;
+ #endif
+ }
+ }
+ } /* class SWHighlightPersistenceEvent */
+}
diff --git a/new/ios/native/SharedWithYou/SWHighlightPersistenceEventTrigger.g.cs b/new/ios/native/SharedWithYou/SWHighlightPersistenceEventTrigger.g.cs
new file mode 100644
index 0000000..0f0eb16
--- /dev/null
+++ b/new/ios/native/SharedWithYou/SWHighlightPersistenceEventTrigger.g.cs
@@ -0,0 +1,63 @@
+//
+// 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 SharedWithYou {
+ [Unavailable (PlatformName.TvOS, ObjCRuntime.PlatformArchitecture.All)]
+ [Unavailable (PlatformName.WatchOS, ObjCRuntime.PlatformArchitecture.All)]
+ [Unavailable (PlatformName.MacOSX, ObjCRuntime.PlatformArchitecture.All)]
+ [Introduced (PlatformName.iOS, 16,0, ObjCRuntime.PlatformArchitecture.All)]
+ [Introduced (PlatformName.MacCatalyst, 16,0, ObjCRuntime.PlatformArchitecture.All)]
+ [Native]
+ public enum SWHighlightPersistenceEventTrigger : long {
+ Created = 1,
+ Deleted = 2,
+ Renamed = 3,
+ Moved = 4,
+ }
+}
diff --git a/new/ios/native/SharedWithYou/SWRemoveParticipantAlertController.g.cs b/new/ios/native/SharedWithYou/SWRemoveParticipantAlertController.g.cs
new file mode 100644
index 0000000..6a5a365
--- /dev/null
+++ b/new/ios/native/SharedWithYou/SWRemoveParticipantAlertController.g.cs
@@ -0,0 +1,109 @@
+//
+// 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 SharedWithYou {
+ [Register("SWRemoveParticipantAlertController", true)]
+ [Unavailable (PlatformName.WatchOS, ObjCRuntime.PlatformArchitecture.All)]
+ [Unavailable (PlatformName.MacOSX, ObjCRuntime.PlatformArchitecture.All)]
+ [Unavailable (PlatformName.TvOS, ObjCRuntime.PlatformArchitecture.All)]
+ [Introduced (PlatformName.iOS, 16,0, ObjCRuntime.PlatformArchitecture.All)]
+ [Introduced (PlatformName.MacCatalyst, 16,0, ObjCRuntime.PlatformArchitecture.All)]
+ public unsafe partial class SWRemoveParticipantAlertController : global::UIKit.UIViewController {
+ [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 ("SWRemoveParticipantAlertController");
+ #endif
+ public override IntPtr ClassHandle { get { return class_ptr; } }
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [DesignatedInitializer]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ [Export ("initWithCoder:")]
+ public SWRemoveParticipantAlertController (NSCoder coder) : base (NSObjectFlag.Empty)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ if (IsDirectBinding) {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("initWithCoder:"), coder.Handle), "initWithCoder:");
+ } else {
+ InitializeHandle (global::ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper_IntPtr (this.SuperHandle, Selector.GetHandle ("initWithCoder:"), coder.Handle), "initWithCoder:");
+ }
+ #endif
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ protected SWRemoveParticipantAlertController (NSObjectFlag t) : base (t)
+ {
+ }
+
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ [EditorBrowsable (EditorBrowsableState.Advanced)]
+ protected internal SWRemoveParticipantAlertController (IntPtr handle) : base (handle)
+ {
+ }
+
+ [Export ("alertControllerWithParticipant:highlight:")]
+ [BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
+ public static SWRemoveParticipantAlertController Create (global::SharedWithYouCore.SWPerson participant, SWCollaborationHighlight highlight)
+ {
+ #if ARCH_32
+ throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
+ #else
+ var participant__handle__ = participant!.GetNonNullHandle (nameof (participant));
+ var highlight__handle__ = highlight!.GetNonNullHandle (nameof (highlight));
+ return Runtime.GetNSObject<SWRemoveParticipantAlertController> (global::ObjCRuntime.Messaging.IntPtr_objc_msgSend_IntPtr_IntPtr (class_ptr, Selector.GetHandle ("alertControllerWithParticipant:highlight:"), participant__handle__, highlight__handle__))!;
+ #endif
+ }
+ } /* class SWRemoveParticipantAlertController */
+}
diff --git a/old/ios/native/ShazamKit/SHMediaItem.g.cs b/new/ios/native/ShazamKit/SHMediaItem.g.cs
index 4dd2a23..8fe57b2 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.NIDActionArity2V139))]global::System.Action<SHMediaItem, NSError> completionHandler)
+ public unsafe static void FetchMediaItem (string shazamId, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V142))]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.SDActionArity2V139.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V142.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/ShazamKit/SHSignatureGenerator.g.cs b/new/ios/native/ShazamKit/SHSignatureGenerator.g.cs
index e493474..f8ec982 100644
--- a/old/ios/native/ShazamKit/SHSignatureGenerator.g.cs
+++ b/new/ios/native/ShazamKit/SHSignatureGenerator.g.cs
@@ -119,7 +119,7 @@ namespace ShazamKit {
[Introduced (PlatformName.iOS, 16,0, ObjCRuntime.PlatformArchitecture.All)]
[Introduced (PlatformName.MacCatalyst, 16,0, ObjCRuntime.PlatformArchitecture.All)]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe static void GenerateSignature (global::AVFoundation.AVAsset asset, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V140))]global::System.Action<SHSignature, NSError> completionHandler)
+ public unsafe static void GenerateSignature (global::AVFoundation.AVAsset asset, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V143))]global::System.Action<SHSignature, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -131,7 +131,7 @@ namespace ShazamKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V140.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V143.Handler, completionHandler);
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr (class_ptr, Selector.GetHandle ("generateSignatureFromAsset:completionHandler:"), asset__handle__, (IntPtr) block_ptr_completionHandler);
block_ptr_completionHandler->CleanupBlock ();
#endif
diff --git a/old/ios/native/Speech/SFSpeechRecognizer.g.cs b/new/ios/native/Speech/SFSpeechRecognizer.g.cs
index f5e7def..9303475 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.NIDActionArity2V141))]global::System.Action<SFSpeechRecognitionResult, NSError> resultHandler)
+ public unsafe virtual SFSpeechRecognitionTask GetRecognitionTask (SFSpeechRecognitionRequest request, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V144))]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.SDActionArity2V141.Handler, resultHandler);
+ block_resultHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V144.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 01d96ac..9598f8c 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.NIDActionArity2V142))]global::System.Action<SKCloudServiceCapability, NSError> completionHandler)
+ public unsafe virtual void RequestCapabilities ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V145))]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.SDActionArity2V142.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V145.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.NIDActionArity2V143))]global::System.Action<NSString, NSError> completionHandler)
+ public unsafe virtual void RequestPersonalizationToken (string clientToken, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V146))]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.SDActionArity2V143.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V146.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.NIDActionArity2V143))]global::System.Action<NSString, NSError> completionHandler)
+ public unsafe virtual void RequestStorefrontCountryCode ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V146))]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.SDActionArity2V143.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V146.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.NIDActionArity2V143))]global::System.Action<NSString, NSError> completionHandler)
+ public unsafe virtual void RequestStorefrontIdentifier ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V146))]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.SDActionArity2V143.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V146.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.NIDActionArity2V143))]global::System.Action<NSString, NSError> completionHandler)
+ public unsafe virtual void RequestUserToken (string developerToken, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V146))]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.SDActionArity2V143.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V146.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 94ed6a2..9c335ee 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.NIDActionArity2V144))]global::System.Action<SKProduct[], NSError>? completionHandler)
+ public unsafe virtual void FetchStorePromotionOrder ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V147))]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.SDActionArity2V144.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V147.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.NIDActionArity2V145))]global::System.Action<SKProductStorePromotionVisibility, NSError>? completionHandler)
+ public unsafe virtual void FetchStorePromotionVisibility (SKProduct product, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V148))]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.SDActionArity2V145.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V148.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/ThreadNetwork/THClient.g.cs b/new/ios/native/ThreadNetwork/THClient.g.cs
index 8a285c3..1a96b9f 100644
--- a/old/ios/native/ThreadNetwork/THClient.g.cs
+++ b/new/ios/native/ThreadNetwork/THClient.g.cs
@@ -161,7 +161,7 @@ namespace ThreadNetwork {
}
[Export ("retrieveAllCredentials:")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void RetrieveAllCredentials ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V146))]global::System.Action<NSSet<THCredentials>, NSError> completion)
+ public unsafe virtual void RetrieveAllCredentials ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V149))]global::System.Action<NSSet<THCredentials>, NSError> completion)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -172,7 +172,7 @@ namespace ThreadNetwork {
BlockLiteral block_completion;
block_completion = new BlockLiteral ();
block_ptr_completion = &block_completion;
- block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V146.Handler, completion);
+ block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V149.Handler, completion);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("retrieveAllCredentials:"), (IntPtr) block_ptr_completion);
} else {
@@ -195,7 +195,7 @@ namespace ThreadNetwork {
}
[Export ("retrieveCredentialsForBorderAgent:completion:")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void RetrieveCredentialsForBorderAgent (NSData borderAgentId, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V147))]global::System.Action<THCredentials, NSError> completion)
+ public unsafe virtual void RetrieveCredentialsForBorderAgent (NSData borderAgentId, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V150))]global::System.Action<THCredentials, NSError> completion)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -207,7 +207,7 @@ namespace ThreadNetwork {
BlockLiteral block_completion;
block_completion = new BlockLiteral ();
block_ptr_completion = &block_completion;
- block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V147.Handler, completion);
+ block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V150.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 {
@@ -230,7 +230,7 @@ namespace ThreadNetwork {
}
[Export ("retrieveCredentialsForExtendedPANID:completion:")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void RetrieveCredentialsForExtendedPanId (NSData extendedPanId, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V147))]global::System.Action<THCredentials, NSError> completion)
+ public unsafe virtual void RetrieveCredentialsForExtendedPanId (NSData extendedPanId, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V150))]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.SDActionArity2V147.Handler, completion);
+ block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V150.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 {
@@ -265,7 +265,7 @@ namespace ThreadNetwork {
}
[Export ("retrievePreferredCredentials:")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void RetrievePreferredCredentials ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V147))]global::System.Action<THCredentials, NSError> completion)
+ public unsafe virtual void RetrievePreferredCredentials ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V150))]global::System.Action<THCredentials, NSError> completion)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -276,7 +276,7 @@ namespace ThreadNetwork {
BlockLiteral block_completion;
block_completion = new BlockLiteral ();
block_ptr_completion = &block_completion;
- block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V147.Handler, completion);
+ block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V150.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/NSTextLayoutManager.g.cs b/new/ios/native/UIKit/NSTextLayoutManager.g.cs
index fe372bd..53355d7 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.SDActionArity2V148))]
+ [return: DelegateProxy (typeof (ObjCRuntime.Trampolines.SDActionArity2V151))]
[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.NIDActionArity2V148.Create (ret)!;
+ return global::ObjCRuntime.Trampolines.NIDActionArity2V151.Create (ret)!;
#endif
}
- [param: BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V148))]
+ [param: BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V151))]
[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.SDActionArity2V148.Handler, value);
+ block_value.SetupBlockUnsafe (Trampolines.SDActionArity2V151.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 b12ecb3..55f2b19 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.SDActionArity2V149))]
+ [return: DelegateProxy (typeof (ObjCRuntime.Trampolines.SDActionArity2V152))]
[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.NIDActionArity2V149.Create (ret)!;
+ return global::ObjCRuntime.Trampolines.NIDActionArity2V152.Create (ret)!;
}
- [param: BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V149))]
+ [param: BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V152))]
[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.SDActionArity2V149.Handler, value);
+ block_value.SetupBlockUnsafe (Trampolines.SDActionArity2V152.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 e5ddb79..2159a55 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.NIDActionArity2V150) })]
+ [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.NIDActionArity2V153) })]
[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.NIDActionArity2V150))]global::System.Action<NSUrl, UIDocumentBrowserImportMode> importHandler)
+ public unsafe static void DidRequestDocumentCreation (this IUIDocumentBrowserViewControllerDelegate This, UIDocumentBrowserViewController controller, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V153))]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.SDActionArity2V150.Handler, importHandler);
+ block_importHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V153.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.NIDActionArity2V150))]global::System.Action<NSUrl, UIDocumentBrowserImportMode> importHandler)
+ public unsafe virtual void DidRequestDocumentCreation (UIDocumentBrowserViewController controller, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V153))]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 d9fab42..5f6358a 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.NIDActionArity2V151))]global::System.Action<NSSet<NSString>, NSError> completionHandler)
+ public unsafe virtual void DetectPatterns (NSSet<NSString> patterns, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V154))]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.SDActionArity2V151.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V154.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.NIDActionArity2V152))]global::System.Action<NSSet<NSString>[], NSError> completionHandler)
+ public unsafe virtual void DetectPatterns (NSSet<NSString> patterns, NSIndexSet? itemSet, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V155))]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.SDActionArity2V152.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V155.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.NIDActionArity2V153))]global::System.Action<NSDictionary<NSString, NSObject>, NSError> completionHandler)
+ public unsafe virtual void DetectValues (NSSet<NSString> patterns, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V156))]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.SDActionArity2V153.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V156.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.NIDActionArity2V154))]global::System.Action<NSDictionary<NSString, NSObject>[], NSError> completionHandler)
+ public unsafe virtual void DetectValues (NSSet<NSString> patterns, NSIndexSet? itemSet, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V157))]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.SDActionArity2V154.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V157.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 2656bbe..7e2ad90 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.NIDActionArity2V155))]global::System.Action<UISpringLoadedInteraction, IUISpringLoadedInteractionContext> handler)
+ public unsafe UISpringLoadedInteraction (IUISpringLoadedInteractionBehavior? interactionBehavior, IUISpringLoadedInteractionEffect? interactionEffect, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V158))]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.SDActionArity2V155.Handler, handler);
+ block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V158.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.NIDActionArity2V155))]global::System.Action<UISpringLoadedInteraction, IUISpringLoadedInteractionContext> handler)
+ public unsafe UISpringLoadedInteraction ([BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V158))]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.SDActionArity2V155.Handler, handler);
+ block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V158.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 6ced5e7..271404b 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.NIDActionArity2V156))]global::System.Action<UITableViewRowAction, NSIndexPath> handler)
+ public unsafe static UITableViewRowAction Create (UITableViewRowActionStyle style, string? title, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V159))]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.SDActionArity2V156.Handler, handler);
+ block_handler.SetupBlockUnsafe (Trampolines.SDActionArity2V159.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 efdf791..5d46cb0 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.NIDActionArity2V157))]global::System.Action<VSAccountAccessStatus, NSError> completionHandler)
+ public unsafe virtual void CheckAccessStatus (NSDictionary options, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V160))]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.SDActionArity2V157.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V160.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.NIDActionArity2V158))]global::System.Action<VSAccountMetadata, NSError> completionHandler)
+ public unsafe virtual VSAccountManagerResult Enqueue (VSAccountMetadataRequest accountMetadataRequest, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V161))]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.SDActionArity2V158.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V161.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/VideoSubscriberAccount/VSUserAccountManager.g.cs b/new/ios/native/VideoSubscriberAccount/VSUserAccountManager.g.cs
index 76b2b75..1313334 100644
--- a/old/ios/native/VideoSubscriberAccount/VSUserAccountManager.g.cs
+++ b/new/ios/native/VideoSubscriberAccount/VSUserAccountManager.g.cs
@@ -77,7 +77,7 @@ namespace VideoSubscriberAccount {
[Export ("queryUserAccountsWithOptions:completion:")]
[BindingImpl (BindingImplOptions.GeneratedCode | BindingImplOptions.Optimizable)]
- public unsafe virtual void QueryUserAccounts (VSUserAccountQueryOptions options, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V159))]global::System.Action<NSArray<VSUserAccount>, NSError> completion)
+ public unsafe virtual void QueryUserAccounts (VSUserAccountQueryOptions options, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V162))]global::System.Action<NSArray<VSUserAccount>, NSError> completion)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -88,7 +88,7 @@ namespace VideoSubscriberAccount {
BlockLiteral block_completion;
block_completion = new BlockLiteral ();
block_ptr_completion = &block_completion;
- block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V159.Handler, completion);
+ block_completion.SetupBlockUnsafe (Trampolines.SDActionArity2V162.Handler, completion);
if (IsDirectBinding) {
global::ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr (this.Handle, Selector.GetHandle ("queryUserAccountsWithOptions:completion:"), (IntPtr) (long) options, (IntPtr) block_ptr_completion);
} else {
diff --git a/old/ios/native/WebKit/WKContentRuleListStore.g.cs b/new/ios/native/WebKit/WKContentRuleListStore.g.cs
index fc067d9..3a6d7fb 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.NIDActionArity2V160))]global::System.Action<WKContentRuleList, NSError> completionHandler)
+ public unsafe virtual void CompileContentRuleList (string identifier, string encodedContentRuleList, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V163))]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.SDActionArity2V160.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V163.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.NIDActionArity2V160))]global::System.Action<WKContentRuleList, NSError> completionHandler)
+ public unsafe virtual void LookUpContentRuleList (string identifier, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V163))]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.SDActionArity2V160.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V163.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 2563618..86589eb 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.NIDActionArity1V265) })]
[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.NIDActionArity1V266) })]
- [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.NIDActionArity2V161) })]
+ [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.NIDActionArity2V164) })]
[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.NIDActionArity2V161))]global::System.Action<WKNavigationActionPolicy, WKWebpagePreferences> decisionHandler)
+ public unsafe static void DecidePolicy (this IWKNavigationDelegate This, WKWebView webView, WKNavigationAction navigationAction, WKWebpagePreferences preferences, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V164))]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.SDActionArity2V161.Handler, decisionHandler);
+ block_decisionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V164.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.NIDActionArity2V161))]global::System.Action<WKNavigationActionPolicy, WKWebpagePreferences> decisionHandler)
+ public unsafe virtual void DecidePolicy (WKWebView webView, WKNavigationAction navigationAction, WKWebpagePreferences preferences, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V164))]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 9e46d84..8f53abe 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.NIDActionArity2V162) })]
+ [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.NIDActionArity2V165) })]
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.NIDActionArity2V162))]global::System.Action<NSObject, NSString> replyHandler);
+ unsafe void DidReceiveScriptMessage (WKUserContentController userContentController, WKScriptMessage message, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V165))]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.NIDActionArity2V162))]global::System.Action<NSObject, NSString> replyHandler)
+ public unsafe void DidReceiveScriptMessage (WKUserContentController userContentController, WKScriptMessage message, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V165))]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.SDActionArity2V162.Handler, replyHandler);
+ block_replyHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V165.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 32f9bc5..54bccd1 100644
--- a/old/ios/native/WebKit/WKWebView.g.cs
+++ b/new/ios/native/WebKit/WKWebView.g.cs
@@ -883,7 +883,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.NIDActionArity2V163))]global::System.Action<global::UIKit.UIImage, NSError> completionHandler)
+ public unsafe virtual void TakeSnapshot (WKSnapshotConfiguration? snapshotConfiguration, [BlockProxy (typeof (ObjCRuntime.Trampolines.NIDActionArity2V166))]global::System.Action<global::UIKit.UIImage, NSError> completionHandler)
{
#if ARCH_32
throw new PlatformNotSupportedException ("This API is not supported on this version of iOS");
@@ -895,7 +895,7 @@ namespace WebKit {
BlockLiteral block_completionHandler;
block_completionHandler = new BlockLiteral ();
block_ptr_completionHandler = &block_completionHandler;
- block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V163.Handler, completionHandler);
+ block_completionHandler.SetupBlockUnsafe (Trampolines.SDActionArity2V166.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 {
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment