From 28db77937d98a74071b426c571c41a141fce1ede Mon Sep 17 00:00:00 2001 From: Alex Soto Date: Mon, 12 Feb 2024 13:48:33 -0500 Subject: [PATCH 01/73] [xcode15.3] Initial bump to Xcode 15.3 bindings --- Make.config | 6 ++--- Make.versions | 14 ++++++------ Versions-ios.plist.in | 6 +++++ Versions-mac.plist.in | 1 + builds/Versions-MacCatalyst.plist.in | 8 +++++++ builds/Versions-iOS.plist.in | 2 ++ builds/Versions-macOS.plist.in | 2 ++ builds/Versions-tvOS.plist.in | 2 ++ tools/common/SdkVersions.cs | 34 ++++++++++++++-------------- tools/common/StaticRegistrar.cs | 8 +++++++ tools/common/Target.cs | 6 +++++ 11 files changed, 62 insertions(+), 27 deletions(-) diff --git a/Make.config b/Make.config index 3195503f6d24..281e9534c098 100644 --- a/Make.config +++ b/Make.config @@ -212,9 +212,9 @@ MACCATALYST_NUGET_VERSION_NO_METADATA=$(MACCATALYST_NUGET_VERSION)$(NUGET_PREREL MACCATALYST_NUGET_VERSION_FULL=$(MACCATALYST_NUGET_VERSION_NO_METADATA)+$(NUGET_BUILD_METADATA) # Xcode version should have both a major and a minor version (even if the minor version is 0) -XCODE_VERSION=15.2 -XCODE_URL=https://dl.internalx.com/internal-files/xcodes/Xcode_15.2.xip -XCODE_DEVELOPER_ROOT=/Applications/Xcode_15.2.0.app/Contents/Developer +XCODE_VERSION=15.3 +XCODE_URL=https://dl.internalx.com/internal-files/xcodes/Xcode_15.3_beta_2.xip +XCODE_DEVELOPER_ROOT=/Applications/Xcode_15.3.0-beta2.app/Contents/Developer XCODE_PRODUCT_BUILD_VERSION:=$(shell /usr/libexec/PlistBuddy -c 'Print :ProductBuildVersion' $(XCODE_DEVELOPER_ROOT)/../version.plist 2>/dev/null || echo " $(shell tput setaf 1 2>/dev/null)The required Xcode ($(XCODE_VERSION)) is not installed in $(basename $(basename $(XCODE_DEVELOPER_ROOT)))$(shell tput sgr0 2>/dev/null)" >&2) # We define stable Xcode as the Xcode app being named like "Xcode_#.#[.#].app" diff --git a/Make.versions b/Make.versions index 94658084879f..f03863991d53 100644 --- a/Make.versions +++ b/Make.versions @@ -48,8 +48,8 @@ # line changed in git). # -IOS_PACKAGE_VERSION=17.3.0.$(IOS_COMMIT_DISTANCE) -MAC_PACKAGE_VERSION=9.3.0.$(MAC_COMMIT_DISTANCE) +IOS_PACKAGE_VERSION=17.4.0.$(IOS_COMMIT_DISTANCE) +MAC_PACKAGE_VERSION=9.4.0.$(MAC_COMMIT_DISTANCE) # # ** NuGet package version numbers ** @@ -65,11 +65,11 @@ MAC_PACKAGE_VERSION=9.3.0.$(MAC_COMMIT_DISTANCE) # WARNING: Do **not** use versions higher than the available Xcode SDK or else we will have issues with mtouch (See https://github.com/xamarin/xamarin-macios/issues/7705) -IOS_NUGET_OS_VERSION=17.2 -TVOS_NUGET_OS_VERSION=17.2 -WATCHOS_NUGET_OS_VERSION=10.2 -MACOS_NUGET_OS_VERSION=14.2 -MACCATALYST_NUGET_OS_VERSION=17.2 +IOS_NUGET_OS_VERSION=17.4 +TVOS_NUGET_OS_VERSION=17.4 +WATCHOS_NUGET_OS_VERSION=10.4 +MACOS_NUGET_OS_VERSION=14.4 +MACCATALYST_NUGET_OS_VERSION=17.4 # In theory we should define the default platform version if it's not specified in the TFM. The default should not change for a given .NET version: diff --git a/Versions-ios.plist.in b/Versions-ios.plist.in index d246d5b947a1..8d1cbde05905 100644 --- a/Versions-ios.plist.in +++ b/Versions-ios.plist.in @@ -40,6 +40,7 @@ 16.4 17.0 17.2 + 17.4 tvOS @@ -70,6 +71,7 @@ 16.4 17.0 17.2 + 17.4 watchOS @@ -96,6 +98,7 @@ 9.4 10.0 10.2 + 10.4 MacCatalyst @@ -116,6 +119,7 @@ 16.4 17.0 17.2 + 17.4 MacCatalystVersionMap @@ -154,6 +158,8 @@ 14.0 17.2 14.2 + 17.4 + 14.4 RecommendedXcodeVersion @XCODE_VERSION@ diff --git a/Versions-mac.plist.in b/Versions-mac.plist.in index a611d04d704d..81a8cf78e5d7 100644 --- a/Versions-mac.plist.in +++ b/Versions-mac.plist.in @@ -24,6 +24,7 @@ 13.3 14.0 14.2 + 14.4 RecommendedXcodeVersion diff --git a/builds/Versions-MacCatalyst.plist.in b/builds/Versions-MacCatalyst.plist.in index dea4c6ade302..0370c254563d 100644 --- a/builds/Versions-MacCatalyst.plist.in +++ b/builds/Versions-MacCatalyst.plist.in @@ -25,6 +25,7 @@ 16.4 17.0 17.2 + 17.4 SupportedTargetPlatformVersions @@ -51,6 +52,7 @@ 16.4 17.0 17.2 + 17.4 MacCatalystVersionMap @@ -85,6 +87,12 @@ 13.1 16.4 13.3 + 17.0 + 14.0 + 17.2 + 14.2 + 17.4 + 14.4 RecommendedXcodeVersion @XCODE_VERSION@ diff --git a/builds/Versions-iOS.plist.in b/builds/Versions-iOS.plist.in index 8b0d43261612..a76b548eaf8f 100644 --- a/builds/Versions-iOS.plist.in +++ b/builds/Versions-iOS.plist.in @@ -40,6 +40,7 @@ 16.4 17.0 17.2 + 17.4 SupportedTargetPlatformVersions @@ -85,6 +86,7 @@ 16.4 17.0 17.2 + 17.4 RecommendedXcodeVersion diff --git a/builds/Versions-macOS.plist.in b/builds/Versions-macOS.plist.in index 02a7939c5cab..d2e38e207146 100644 --- a/builds/Versions-macOS.plist.in +++ b/builds/Versions-macOS.plist.in @@ -24,6 +24,7 @@ 13.3 14.0 14.2 + 14.4 SupportedTargetPlatformVersions @@ -48,6 +49,7 @@ 13.3 14.0 14.2 + 14.4 RecommendedXcodeVersion diff --git a/builds/Versions-tvOS.plist.in b/builds/Versions-tvOS.plist.in index 4c6af96265c6..7dddc20f107b 100644 --- a/builds/Versions-tvOS.plist.in +++ b/builds/Versions-tvOS.plist.in @@ -35,6 +35,7 @@ 16.4 17.0 17.2 + 17.4 SupportedTargetPlatformVersions @@ -75,6 +76,7 @@ 16.4 17.0 17.2 + 17.4 RecommendedXcodeVersion diff --git a/tools/common/SdkVersions.cs b/tools/common/SdkVersions.cs index 27461b303a36..7d7c9062ec95 100644 --- a/tools/common/SdkVersions.cs +++ b/tools/common/SdkVersions.cs @@ -14,12 +14,12 @@ namespace Xamarin { static class SdkVersions { - public const string Xcode = "15.2"; - public const string OSX = "14.2"; - public const string iOS = "17.2"; - public const string WatchOS = "10.2"; - public const string TVOS = "17.2"; - public const string MacCatalyst = "17.2"; + public const string Xcode = "15.3"; + public const string OSX = "14.4"; + public const string iOS = "17.4"; + public const string WatchOS = "10.4"; + public const string TVOS = "17.4"; + public const string MacCatalyst = "17.4"; #if NET public const string MinOSX = "10.15"; @@ -48,19 +48,19 @@ static class SdkVersions { public const string MinWatchOSCompanionSimulator = "14.5"; public const string MinTVOSSimulator = "14.0"; - public const string MaxiOSSimulator = "17.2"; - public const string MaxWatchOSSimulator = "10.2"; - public const string MaxWatchOSCompanionSimulator = "17.2"; - public const string MaxTVOSSimulator = "17.2"; + public const string MaxiOSSimulator = "17.4"; + public const string MaxWatchOSSimulator = "10.4"; + public const string MaxWatchOSCompanionSimulator = "17.4"; + public const string MaxTVOSSimulator = "17.4"; - public const string MaxiOSDeploymentTarget = "17.2"; - public const string MaxWatchDeploymentTarget = "10.2"; - public const string MaxTVOSDeploymentTarget = "17.2"; + public const string MaxiOSDeploymentTarget = "17.4"; + public const string MaxWatchDeploymentTarget = "10.4"; + public const string MaxTVOSDeploymentTarget = "17.4"; - public const string TargetPlatformVersioniOS = "17.2"; - public const string TargetPlatformVersiontvOS = "17.2"; - public const string TargetPlatformVersionmacOS = "14.2"; - public const string TargetPlatformVersionMacCatalyst = "17.2"; + public const string TargetPlatformVersioniOS = "17.4"; + public const string TargetPlatformVersiontvOS = "17.4"; + public const string TargetPlatformVersionmacOS = "14.4"; + public const string TargetPlatformVersionMacCatalyst = "17.4"; public static Version OSXVersion { get { return new Version (OSX); } } public static Version iOSVersion { get { return new Version (iOS); } } diff --git a/tools/common/StaticRegistrar.cs b/tools/common/StaticRegistrar.cs index 3984795ba49c..c6c61a9bd357 100644 --- a/tools/common/StaticRegistrar.cs +++ b/tools/common/StaticRegistrar.cs @@ -2896,6 +2896,14 @@ List GetAllTypes (List exceptions) exceptions.Add (ErrorHelper.CreateWarning (4189, $"The class '{@class.Type.FullName}' will not be registered it has been removed from the {App.Platform} SDK.")); continue; } + + if (Driver.XcodeVersion.Minor >= 3 || Driver.XcodeVersion.Major >= 16) { + // Xcode 15.3+ will remove AssetsLibrary + if (IsTypeCore (@class, "AssetsLibrary")) { + exceptions.Add (ErrorHelper.CreateWarning (4178, $"The class '{@class.Type.FullName}' will not be registered because the AssetsLibrary framework has been removed from the {App.Platform} SDK.")); + continue; + } + } } if (@class.IsFakeProtocol) diff --git a/tools/common/Target.cs b/tools/common/Target.cs index 3afd261f0a76..83473af0420f 100644 --- a/tools/common/Target.cs +++ b/tools/common/Target.cs @@ -286,6 +286,12 @@ public void GatherFrameworks () continue; } break; + case "AssetsLibrary": + if (Driver.XcodeVersion.Major >= 16 || (Driver.XcodeVersion.Major == 15 && Driver.XcodeVersion.Minor >= 3)) { + Driver.Log (3, "Not linking with the framework {0} because it's not available when using Xcode 15.3+.", framework.Name); + continue; + } + break; default: if (App.IsSimulatorBuild && !App.IsFrameworkAvailableInSimulator (framework.Name)) { if (App.AreAnyAssembliesTrimmed) { From ea1f5564c8cb20760c84537cd8d0d944d097c65f Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Tue, 13 Feb 2024 10:28:11 +0100 Subject: [PATCH 02/73] Bump min simulators. --- Make.config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Make.config b/Make.config index 281e9534c098..15aafc10d24c 100644 --- a/Make.config +++ b/Make.config @@ -307,7 +307,7 @@ MIN_WATCHOS_SIMULATOR_VERSION=7.1 MIN_WATCHOS_COMPANION_SIMULATOR_VERSION=14.5 MIN_TVOS_SIMULATOR_VERSION=14.0 # These are the simulator package ids for the versions above -EXTRA_SIMULATORS=com.apple.pkg.iPhoneSimulatorSDK14_3 com.apple.pkg.AppleTVSimulatorSDK14_0 com.apple.pkg.iPhoneSimulatorSDK14_5 com.apple.pkg.WatchSimulatorSDK7_1 +EXTRA_SIMULATORS=com.apple.pkg.iPhoneSimulatorSDK15_0 com.apple.pkg.AppleTVSimulatorSDK15_0 com.apple.pkg.WatchSimulatorSDK8_0 INCLUDE_IOS=1 INCLUDE_MAC=1 From 16a18fd9f05fc3cd886316fa37cc6b8fa0b1871f Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Tue, 13 Feb 2024 10:42:11 +0100 Subject: [PATCH 03/73] [siminstaller] Don't try old-style dvtdownloadableindex anymore. It doesn't work because Xcode doesn't contain the information required to compute the old-style url. --- tools/siminstaller/Program.cs | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/tools/siminstaller/Program.cs b/tools/siminstaller/Program.cs index 1c7acb09c43b..d4e4b8c85aea 100644 --- a/tools/siminstaller/Program.cs +++ b/tools/siminstaller/Program.cs @@ -126,19 +126,13 @@ public static int Main (string [] args) return 1; xcodeVersion = xcodeVersion.Trim (); - if (!TryExecuteAndCapture ("/usr/libexec/PlistBuddy", $"-c 'Print :DVTPlugInCompatibilityUUID' '{plist}'", out var xcodeUuid)) - return 1; - xcodeUuid = xcodeUuid.Trim (); - xcodeVersion = xcodeVersion.Insert (xcodeVersion.Length - 2, "."); xcodeVersion = xcodeVersion.Insert (xcodeVersion.Length - 1, "."); - var indexName = $"index-{xcodeVersion}-{xcodeUuid}.dvtdownloadableindex"; + var indexName = $"index2-{xcodeVersion}.dvtdownloadableindex"; var tmpfile = Path.Combine (TempDirectory, indexName); if (!File.Exists (tmpfile)) { - // Try multiple urls var urls = new string [] { - $"https://devimages-cdn.apple.com/downloads/xcode/simulators/{indexName}", /* * The following url was found while debugging Xcode, the "index2" part is actually hardcoded: * From 6a4568c581148b0f02c9ee6f761677ff29aa9aba Mon Sep 17 00:00:00 2001 From: Alex Soto Date: Tue, 13 Feb 2024 21:04:27 -0500 Subject: [PATCH 04/73] [src] Remove AssetsLibrary not breaking API Apple removed the AssetsLibrary framework from iOS in Xcode 15.3. --- src/AssetsLibrary/ALAsset.cs | 88 --- src/AssetsLibrary/ALAssetsGroup.cs | 51 -- src/AssetsLibrary/Compat.cs | 741 ++++++++++++++++++ src/AssetsLibrary/Enums.cs | 69 -- src/Constants.iOS.cs.in | 3 + src/ObjCRuntime/ObsoleteConstants.cs | 2 + src/assetslibrary.cs | 264 ------- src/frameworks.sources | 6 +- .../monotouch-test/Photos/FetchResultTest.cs | 13 +- tools/common/Frameworks.cs | 1 - tools/mtouch/Makefile | 1 - 11 files changed, 748 insertions(+), 491 deletions(-) delete mode 100644 src/AssetsLibrary/ALAsset.cs delete mode 100644 src/AssetsLibrary/ALAssetsGroup.cs create mode 100644 src/AssetsLibrary/Compat.cs delete mode 100644 src/AssetsLibrary/Enums.cs diff --git a/src/AssetsLibrary/ALAsset.cs b/src/AssetsLibrary/ALAsset.cs deleted file mode 100644 index 302d2783be3c..000000000000 --- a/src/AssetsLibrary/ALAsset.cs +++ /dev/null @@ -1,88 +0,0 @@ -// -// Extensions to the ALAsset class -// -// Authors: -// Miguel de Icaza -// -// Copyright 2009, Novell, Inc. -// Copyright 2011-2014, Xamarin Inc. -// -using ObjCRuntime; -using Foundation; -using CoreGraphics; -using CoreFoundation; -using CoreLocation; -using UIKit; -using MediaPlayer; - -#nullable enable - -namespace AssetsLibrary { - -#if !NET - [Deprecated (PlatformName.iOS, 9, 0, message: "Use the 'Photos' API instead.")] - // dotnet deprecation is handled by partial class in assetslibrary.cs -#endif - public partial class ALAsset { - public ALAssetType AssetType { - get { - var a = ValueForProperty (_PropertyType); - if (a.Handle == _TypePhoto.Handle) - return ALAssetType.Photo; - else if (a.Handle == _TypeVideo.Handle) - return ALAssetType.Video; - return ALAssetType.Unknown; - } - } - - public CLLocation Location { - get { - return (CLLocation) ValueForProperty (_PropertyLocation); - } - } - - public double Duration { - get { - // note: this can return an NSString like: ALErrorInvalidProperty - // which causes an InvalidCastException with a normal cast - var n = ValueForProperty (_PropertyDuration) as NSNumber; - return n?.DoubleValue ?? double.NaN; - } - } - - public ALAssetOrientation Orientation { - get { - NSNumber n = (NSNumber) ValueForProperty (_PropertyOrientation); - return (ALAssetOrientation) (int) n.NIntValue; - } - } - - public NSDate Date { - get { - return (NSDate) ValueForProperty (_PropertyDate); - } - } - - public string [] Representations { - get { - var k = ValueForProperty (_PropertyRepresentations); - return CFArray.StringArrayFromHandle (k.Handle)!; - } - } - - public NSDictionary UtiToUrlDictionary { - get { - return (NSDictionary) ValueForProperty (_PropertyURLs); - } - } - - public NSUrl? AssetUrl { - get { - // do not show an ArgumentNullException inside the - // debugger for releases before 6.0 - return _PropertyAssetURL is not null ? (NSUrl) ValueForProperty (_PropertyAssetURL) : null; - } - } - } - -} diff --git a/src/AssetsLibrary/ALAssetsGroup.cs b/src/AssetsLibrary/ALAssetsGroup.cs deleted file mode 100644 index 58d9c1e2f964..000000000000 --- a/src/AssetsLibrary/ALAssetsGroup.cs +++ /dev/null @@ -1,51 +0,0 @@ -// -// This file describes extensions to the ALAssetsGroup class -// -// Authors: -// Miguel de Icaza -// -// Copyright 2009, Novell, Inc. -// Copyright 2011, Xamarin, Inc. -// -using ObjCRuntime; -using Foundation; -using CoreGraphics; -using CoreLocation; -using UIKit; -using MediaPlayer; - -#nullable enable - -namespace AssetsLibrary { - -#if !NET - [Deprecated (PlatformName.iOS, 9, 0, message: "Use the 'Photos' API instead.")] - // dotnet deprecation is handled by partial class in assetslibrary.cs -#endif - public partial class ALAssetsGroup { - public NSString Name { - get { - return (NSString) ValueForProperty (_Name); - } - } - - public ALAssetsGroupType Type { - get { - return (ALAssetsGroupType) (int) ((NSNumber) ValueForProperty (_Type)).NIntValue; - } - } - - public string PersistentID { - get { - return (NSString) ValueForProperty (_PersistentID); - } - } - - public NSUrl PropertyUrl { - get { - return (NSUrl) ValueForProperty (_PropertyUrl); - } - } - } - -} diff --git a/src/AssetsLibrary/Compat.cs b/src/AssetsLibrary/Compat.cs new file mode 100644 index 000000000000..4760ab102bd2 --- /dev/null +++ b/src/AssetsLibrary/Compat.cs @@ -0,0 +1,741 @@ +#if !XAMCORE_5_0 + +#nullable enable + +using System; +using System.ComponentModel; +using System.Threading.Tasks; + +using ObjCRuntime; +using Foundation; +using CoreGraphics; +using CoreFoundation; +using CoreLocation; +using UIKit; +using MediaPlayer; + +#if !NET +using NativeHandle = System.IntPtr; +#endif + +namespace AssetsLibrary { + + public delegate void ALAssetsEnumerator (ALAsset result, IntPtr index, ref bool stop); + public delegate void ALAssetsLibraryGroupsEnumerationResultsDelegate (ALAssetsGroup group, ref bool stop); + + [EditorBrowsable (EditorBrowsableState.Never)] + [Obsolete (Constants.AssetsLibraryRemoved)] + public enum ALAssetsError : int { + UnknownError = -1, + WriteFailedError = -3300, + WriteBusyError = -3301, + WriteInvalidDataError = -3302, + WriteIncompatibleDataError = -3303, + WriteDataEncodingError = -3304, + WriteDiskSpaceError = -3305, + DataUnavailableError = -3310, + AccessUserDeniedError = -3311, + AccessGloballyDeniedError = -3312, + } + + [EditorBrowsable (EditorBrowsableState.Never)] + [Obsolete (Constants.AssetsLibraryRemoved)] + static public partial class ALAssetsErrorExtensions { + public static NSString? GetDomain (this ALAssetsError self) + { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + } + + [EditorBrowsable (EditorBrowsableState.Never)] + [Obsolete (Constants.AssetsLibraryRemoved)] + [Native] + public enum ALAssetOrientation : long { + Up = 0, + Down = 1, + Left = 2, + Right = 3, + UpMirrored = 4, + DownMirrored = 5, + LeftMirrored = 6, + RightMirrored = 7, + } + + [EditorBrowsable (EditorBrowsableState.Never)] + [Obsolete (Constants.AssetsLibraryRemoved)] + [Flags] + [Native] + public enum ALAssetsGroupType : ulong { + Library = 1, + Album = 2, + Event = 4, + Faces = 8, + SavedPhotos = 16, + GroupPhotoStream = 32, + All = 4294967295, + } + + [EditorBrowsable (EditorBrowsableState.Never)] + [Obsolete (Constants.AssetsLibraryRemoved)] + public enum ALAssetType : int { + Video = 0, + Photo = 1, + Unknown = 2, + } + + [EditorBrowsable (EditorBrowsableState.Never)] + [Obsolete (Constants.AssetsLibraryRemoved)] + [Native] + public enum ALAuthorizationStatus : long { + NotDetermined = 0, + Restricted = 1, + Denied = 2, + Authorized = 3, + } + + [EditorBrowsable (EditorBrowsableState.Never)] + [Obsolete (Constants.AssetsLibraryRemoved)] + public unsafe partial class ALAsset : NSObject { + public override NativeHandle ClassHandle { get { throw new InvalidOperationException (Constants.AssetsLibraryRemoved); } } + + public ALAsset () : base (NSObjectFlag.Empty) + { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + + protected ALAsset (NSObjectFlag t) : base (t) + { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + + protected internal ALAsset (NativeHandle handle) : base (handle) + { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + + public virtual CGImage AspectRatioThumbnail () + { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + + public virtual ALAssetRepresentation RepresentationForUti (string uti) + { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + + public unsafe virtual void SetImageData (NSData imageData, NSDictionary metadata, global::System.Action? completionBlock) + { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + + public unsafe virtual Task SetImageDataAsync (NSData imageData, NSDictionary metadata) + { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + + public unsafe virtual void SetVideoAtPath (NSUrl videoPathURL, global::System.Action? completionBlock) + { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + + public unsafe virtual Task SetVideoAtPathAsync (NSUrl videoPathURL) + { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + + public virtual NSObject ValueForProperty (NSString property) + { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + + public unsafe virtual void WriteModifiedImageToSavedToPhotosAlbum (NSData imageData, NSDictionary metadata, global::System.Action? completionBlock) + { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + + public unsafe virtual Task WriteModifiedImageToSavedToPhotosAlbumAsync (NSData imageData, NSDictionary metadata) + { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + + public unsafe virtual void WriteModifiedVideoToSavedPhotosAlbum (NSUrl videoPathURL, global::System.Action? completionBlock) + { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + + public unsafe virtual Task WriteModifiedVideoToSavedPhotosAlbumAsync (NSUrl videoPathURL) + { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + + public virtual ALAssetRepresentation DefaultRepresentation { + get { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + } + + public virtual bool Editable { + get { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + } + + public virtual ALAsset OriginalAsset { + get { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + } + + public virtual CGImage Thumbnail { + get { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + } + + internal static NSString _PropertyAssetURL { + get { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + } + + internal static NSString _PropertyDate { + get { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + } + + internal static NSString _PropertyDuration { + get { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + } + + internal static NSString _PropertyLocation { + get { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + } + + internal static NSString _PropertyOrientation { + get { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + } + + internal static NSString _PropertyRepresentations { + get { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + } + + internal static NSString _PropertyType { + get { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + } + + internal static NSString _PropertyURLs { + get { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + } + + internal static NSString _TypePhoto { + get { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + } + + internal static NSString _TypeUnknown { + get { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + } + + internal static NSString _TypeVideo { + get { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + } + + public ALAssetType AssetType { + get { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + } + + public CLLocation Location { + get { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + } + + public double Duration { + get { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + } + + public ALAssetOrientation Orientation { + get { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + } + + public NSDate Date { + get { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + } + + public string [] Representations { + get { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + } + + public NSDictionary UtiToUrlDictionary { + get { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + } + + public NSUrl? AssetUrl { + get { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + } + } /* class ALAsset */ + + [EditorBrowsable (EditorBrowsableState.Never)] + [Obsolete (Constants.AssetsLibraryRemoved)] + public unsafe partial class ALAssetRepresentation : NSObject { + public override NativeHandle ClassHandle { get { throw new InvalidOperationException (Constants.AssetsLibraryRemoved); } } + + public ALAssetRepresentation () : base (NSObjectFlag.Empty) + { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + + protected ALAssetRepresentation (NSObjectFlag t) : base (t) + { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + + protected internal ALAssetRepresentation (NativeHandle handle) : base (handle) + { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + + public virtual nuint GetBytes (global::System.IntPtr buffer, long offset, nuint length, out NSError error) + { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + + public virtual CGImage GetFullScreenImage () + { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + + public virtual CGImage GetImage () + { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + + public virtual CGImage GetImage (NSDictionary options) + { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + + public virtual CGSize Dimensions { + get { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + } + + public virtual string Filename { + get { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + } + + public virtual NSDictionary Metadata { + get { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + } + + public virtual ALAssetOrientation Orientation { + get { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + } + + public virtual float Scale { + get { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + } + + public virtual long Size { + get { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + } + + public virtual NSUrl Url { + get { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + } + + public virtual string Uti { + get { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + } + } /* class ALAssetRepresentation */ + + [EditorBrowsable (EditorBrowsableState.Never)] + [Obsolete (Constants.AssetsLibraryRemoved)] + public unsafe partial class ALAssetsFilter : NSObject { + public override NativeHandle ClassHandle { get { throw new InvalidOperationException (Constants.AssetsLibraryRemoved); } } + + public ALAssetsFilter () : base (NSObjectFlag.Empty) + { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + + protected ALAssetsFilter (NSObjectFlag t) : base (t) + { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + + protected internal ALAssetsFilter (NativeHandle handle) : base (handle) + { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + + public static ALAssetsFilter AllAssets { + get { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + } + + public static ALAssetsFilter AllPhotos { + get { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + } + + public static ALAssetsFilter AllVideos { + get { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + } + } /* class ALAssetsFilter */ + + [EditorBrowsable (EditorBrowsableState.Never)] + [Obsolete (Constants.AssetsLibraryRemoved)] + public unsafe partial class ALAssetsGroup : NSObject { + public override NativeHandle ClassHandle { get { throw new InvalidOperationException (Constants.AssetsLibraryRemoved); } } + + public ALAssetsGroup () : base (NSObjectFlag.Empty) + { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + + protected ALAssetsGroup (NSObjectFlag t) : base (t) + { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + + protected internal ALAssetsGroup (NativeHandle handle) : base (handle) + { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + + public virtual bool AddAsset (ALAsset asset) + { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + + public unsafe virtual void Enumerate (ALAssetsEnumerator result) + { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + + public unsafe virtual void Enumerate (NSEnumerationOptions options, ALAssetsEnumerator result) + { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + + public unsafe virtual void Enumerate (NSIndexSet indexSet, NSEnumerationOptions options, ALAssetsEnumerator result) + { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + + public virtual void SetAssetsFilter (ALAssetsFilter filter) + { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + + internal virtual NSObject ValueForProperty (NSString property) + { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + + public virtual nint Count { + get { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + } + + public virtual bool Editable { + get { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + } + + public virtual CGImage PosterImage { + get { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + } + + internal static NSString _Name { + get { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + } + + internal static NSString _PersistentID { + get { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + } + + internal static NSString _PropertyUrl { + get { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + } + + internal static NSString _Type { + get { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + } + + public NSString Name { + get { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + } + + public ALAssetsGroupType Type { + get { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + } + + public string PersistentID { + get { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + } + + public NSUrl PropertyUrl { + get { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + } + } /* class ALAssetsGroup */ + + [EditorBrowsable (EditorBrowsableState.Never)] + [Obsolete (Constants.AssetsLibraryRemoved)] + public unsafe partial class ALAssetsLibrary : NSObject { + public override NativeHandle ClassHandle { get { throw new InvalidOperationException (Constants.AssetsLibraryRemoved); } } + + public ALAssetsLibrary () : base (NSObjectFlag.Empty) + { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + + protected ALAssetsLibrary (NSObjectFlag t) : base (t) + { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + + protected internal ALAssetsLibrary (NativeHandle handle) : base (handle) + { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + + public unsafe virtual void AddAssetsGroupAlbum (string name, global::System.Action resultBlock, global::System.Action failureBlock) + { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + + public unsafe virtual void AssetForUrl (NSUrl assetURL, global::System.Action resultBlock, global::System.Action failureBlock) + { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + + public static void DisableSharedPhotoStreamsSupport () + { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + + public unsafe virtual void Enumerate (ALAssetsGroupType types, ALAssetsLibraryGroupsEnumerationResultsDelegate enumerationBlock, global::System.Action failureBlock) + { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + + public unsafe virtual void GroupForUrl (NSUrl groupURL, global::System.Action resultBlock, global::System.Action failureBlock) + { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + + public virtual bool VideoAtPathIsIsCompatibleWithSavedPhotosAlbum (NSUrl videoPathURL) + { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + + public unsafe virtual void WriteImageToSavedPhotosAlbum (NSData imageData, NSDictionary metadata, global::System.Action? completionBlock) + { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + + public unsafe virtual Task WriteImageToSavedPhotosAlbumAsync (NSData imageData, NSDictionary metadata) + { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + + public unsafe virtual void WriteImageToSavedPhotosAlbum (CGImage imageData, NSDictionary metadata, global::System.Action? completionBlock) + { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + + public unsafe virtual Task WriteImageToSavedPhotosAlbumAsync (CGImage imageData, NSDictionary metadata) + { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + + public unsafe virtual void WriteImageToSavedPhotosAlbum (CGImage imageData, ALAssetOrientation orientation, global::System.Action? completionBlock) + { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + + public unsafe virtual Task WriteImageToSavedPhotosAlbumAsync (CGImage imageData, ALAssetOrientation orientation) + { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + + public unsafe virtual void WriteVideoToSavedPhotosAlbum (NSUrl videoPathURL, global::System.Action? completionBlock) + { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + + public unsafe virtual Task WriteVideoToSavedPhotosAlbumAsync (NSUrl videoPathURL) + { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + + public static ALAuthorizationStatus AuthorizationStatus { + get { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + } + + [Advice ("Use ALAssetsLibrary.Notifications.ObserveChanged helper method instead.")] + public static NSString ChangedNotification { + get { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + } + + public static NSString DeletedAssetGroupsKey { + get { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + } + + public static NSString InsertedAssetGroupsKey { + get { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + } + + public static NSString UpdatedAssetGroupsKey { + get { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + } + + public static NSString UpdatedAssetsKey { + get { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + } + + // + // Notifications + // + [EditorBrowsable (EditorBrowsableState.Never)] + [Obsolete (Constants.AssetsLibraryRemoved)] + public static partial class Notifications { + public static NSObject ObserveChanged (EventHandler handler) + { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + public static NSObject ObserveChanged (NSObject objectToObserve, EventHandler handler) + { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + public static NSObject ObserveChanged (EventHandler handler) + { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + public static NSObject ObserveChanged (NSObject objectToObserve, EventHandler handler) + { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + } + } /* class ALAssetsLibrary */ + + [EditorBrowsable (EditorBrowsableState.Never)] + [Obsolete (Constants.AssetsLibraryRemoved)] + public partial class ALAssetLibraryChangedEventArgs : NSNotificationEventArgs { + public ALAssetLibraryChangedEventArgs (NSNotification notification) : base (notification) + { + } + + public Foundation.NSSet UpdatedAssets { + get { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + } + + public Foundation.NSSet InsertedAssetGroups { + get { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + } + + public Foundation.NSSet UpdatedAssetGroups { + get { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + } + + public Foundation.NSSet DeletedAssetGroupsKey { + get { + throw new InvalidOperationException (Constants.AssetsLibraryRemoved); + } + } + } + +} + +#endif // !XAMCORE_5_0 diff --git a/src/AssetsLibrary/Enums.cs b/src/AssetsLibrary/Enums.cs deleted file mode 100644 index e7ea26e477f1..000000000000 --- a/src/AssetsLibrary/Enums.cs +++ /dev/null @@ -1,69 +0,0 @@ -using System; -using ObjCRuntime; - -#nullable enable - -namespace AssetsLibrary { - - // NSInteger -> ALAssetsLibrary.h - [Deprecated (PlatformName.iOS, 9, 0, message: "Use the 'Photos' API instead.")] - [Native] - public enum ALAssetOrientation : long { - Up, - Down, - Left, - Right, - UpMirrored, - DownMirrored, - LeftMirrored, - RightMirrored, - } - - // NSUInteger -> ALAssetsLibrary.h - [Deprecated (PlatformName.iOS, 9, 0, message: "Use the 'Photos' API instead.")] - [Native] - [Flags] - public enum ALAssetsGroupType : ulong { - Library = (1 << 0), - Album = (1 << 1), - Event = (1 << 2), - Faces = (1 << 3), - SavedPhotos = (1 << 4), - GroupPhotoStream = (1 << 5), - All = 0xFFFFFFFF, - } - - // untyped enum -> ALAssetsLibrary.h - [Deprecated (PlatformName.iOS, 9, 0, message: "Use the 'Photos' API instead.")] - [ErrorDomain ("ALAssetsLibraryErrorDomain")] - public enum ALAssetsError { - UnknownError = -1, - WriteFailedError = -3300, - WriteBusyError = -3301, - WriteInvalidDataError = -3302, - WriteIncompatibleDataError = -3303, - WriteDataEncodingError = -3304, - WriteDiskSpaceError = -3305, - DataUnavailableError = -3310, - AccessUserDeniedError = -3311, - AccessGloballyDeniedError = -3312, - } - - // NSInteger -> ALAssetsLibrary.h - [Deprecated (PlatformName.iOS, 9, 0, message: "Use the 'Photos' API instead.")] - [Native] - public enum ALAuthorizationStatus : long { - NotDetermined, - Restricted, - Denied, - Authorized - } - - // internally used (not exposed by ObjC) - [Deprecated (PlatformName.iOS, 9, 0, message: "Use the 'Photos' API instead.")] - public enum ALAssetType { - Video, - Photo, - Unknown, - } -} diff --git a/src/Constants.iOS.cs.in b/src/Constants.iOS.cs.in index 79163515ef26..ad220f0ba13a 100644 --- a/src/Constants.iOS.cs.in +++ b/src/Constants.iOS.cs.in @@ -23,6 +23,9 @@ namespace ObjCRuntime { #if !XAMCORE_5_0 // Apple removed the NewsstandKit framework from iOS in Xcode 15. public const string NewsstandKitLibrary = "/System/Library/Frameworks/NewsstandKit.framework/NewsstandKit"; + + // Apple removed the AssetsLibrary framework from iOS in Xcode 15.3. + public const string AssetsLibraryLibrary = "/System/Library/Frameworks/AssetsLibrary.framework/AssetsLibrary"; #endif } } diff --git a/src/ObjCRuntime/ObsoleteConstants.cs b/src/ObjCRuntime/ObsoleteConstants.cs index de5bd61a5a35..270d3579dcd9 100644 --- a/src/ObjCRuntime/ObsoleteConstants.cs +++ b/src/ObjCRuntime/ObsoleteConstants.cs @@ -40,5 +40,7 @@ partial class Constants { internal const string RemovedFromPassKit = "This API has been removed from the 'PassKit' framework."; internal const string NewsstandKitRemoved = "The NewsstandKit framework has been removed from iOS."; + + internal const string AssetsLibraryRemoved = "The AssetsLibrary framework has been removed from iOS, use the 'Photos' API instead."; } } diff --git a/src/assetslibrary.cs b/src/assetslibrary.cs index 9029a07acf97..da85a29e1bc6 100644 --- a/src/assetslibrary.cs +++ b/src/assetslibrary.cs @@ -8,267 +8,3 @@ // Copyright 2009, Novell, Inc. // Copyright 2011-2014, Xamarin Inc. // -using ObjCRuntime; -using Foundation; -using CoreGraphics; -using CoreLocation; -using UIKit; -using MediaPlayer; -using System; - -namespace AssetsLibrary { - - [Deprecated (PlatformName.iOS, 9, 0, message: "Use the 'Photos' API instead.")] - interface ALAssetLibraryChangedEventArgs { - [Export ("ALAssetLibraryUpdatedAssetsKey")] - NSSet UpdatedAssets { get; } - - [Export ("ALAssetLibraryInsertedAssetGroupsKey")] - NSSet InsertedAssetGroups { get; } - - [Export ("ALAssetLibraryUpdatedAssetGroupsKey")] - NSSet UpdatedAssetGroups { get; } - - [Export ("ALAssetLibraryDeletedAssetGroupsKey")] - NSSet DeletedAssetGroupsKey { get; } - } - - [Deprecated (PlatformName.iOS, 9, 0, message: "Use the 'Photos' API instead.")] - [BaseType (typeof (NSObject))] - interface ALAssetsLibrary { - [Export ("assetForURL:resultBlock:failureBlock:")] - void AssetForUrl (NSUrl assetURL, Action resultBlock, Action failureBlock); - - [Export ("enumerateGroupsWithTypes:usingBlock:failureBlock:")] - void Enumerate (ALAssetsGroupType types, ALAssetsLibraryGroupsEnumerationResultsDelegate enumerationBlock, Action failureBlock); - - [Export ("videoAtPathIsCompatibleWithSavedPhotosAlbum:")] - bool VideoAtPathIsIsCompatibleWithSavedPhotosAlbum (NSUrl videoPathURL); - - [Export ("writeImageDataToSavedPhotosAlbum:metadata:completionBlock:")] - [Async] - void WriteImageToSavedPhotosAlbum (NSData imageData, NSDictionary metadata, [NullAllowed] Action completionBlock); - - [Export ("writeImageToSavedPhotosAlbum:metadata:completionBlock:")] - [Async] - void WriteImageToSavedPhotosAlbum (CGImage imageData, NSDictionary metadata, [NullAllowed] Action completionBlock); - - [Export ("writeImageToSavedPhotosAlbum:orientation:completionBlock:")] - [Async] - void WriteImageToSavedPhotosAlbum (CGImage imageData, ALAssetOrientation orientation, [NullAllowed] Action completionBlock); - - [Export ("writeVideoAtPathToSavedPhotosAlbum:completionBlock:")] - [Async] - void WriteVideoToSavedPhotosAlbum (NSUrl videoPathURL, [NullAllowed] Action completionBlock); - - [Field ("ALAssetsLibraryChangedNotification")] - [Notification] - [Notification (typeof (ALAssetLibraryChangedEventArgs))] - NSString ChangedNotification { get; } - - [Export ("groupForURL:resultBlock:failureBlock:")] - void GroupForUrl (NSUrl groupURL, Action resultBlock, Action failureBlock); - - [Export ("addAssetsGroupAlbumWithName:resultBlock:failureBlock:")] - void AddAssetsGroupAlbum (string name, Action resultBlock, Action failureBlock); - - [Static] - [Export ("authorizationStatus")] - ALAuthorizationStatus AuthorizationStatus { get; } - - [Static] - [Export ("disableSharedPhotoStreamsSupport")] - void DisableSharedPhotoStreamsSupport (); - - [Field ("ALAssetLibraryUpdatedAssetsKey")] - NSString UpdatedAssetsKey { get; } - - [Field ("ALAssetLibraryInsertedAssetGroupsKey")] - NSString InsertedAssetGroupsKey { get; } - - [Field ("ALAssetLibraryUpdatedAssetGroupsKey")] - NSString UpdatedAssetGroupsKey { get; } - - [Field ("ALAssetLibraryDeletedAssetGroupsKey")] - NSString DeletedAssetGroupsKey { get; } - } - - [Deprecated (PlatformName.iOS, 9, 0, message: "Use the 'Photos' API instead.")] - delegate void ALAssetsLibraryGroupsEnumerationResultsDelegate (ALAssetsGroup group, ref bool stop); - - [Deprecated (PlatformName.iOS, 9, 0, message: "Use the 'Photos' API instead.")] - [BaseType (typeof (NSObject))] - interface ALAsset { - [Export ("valueForProperty:")] - NSObject ValueForProperty (NSString property); - - [Export ("defaultRepresentation")] - ALAssetRepresentation DefaultRepresentation { get; } - - [Export ("representationForUTI:")] - ALAssetRepresentation RepresentationForUti (string uti); - - [Export ("thumbnail")] - CGImage Thumbnail { get; } - - [Field ("ALAssetPropertyType"), Internal] - NSString _PropertyType { get; } - - [Field ("ALAssetPropertyLocation"), Internal] - NSString _PropertyLocation { get; } - - [Field ("ALAssetPropertyDuration"), Internal] - NSString _PropertyDuration { get; } - - [Field ("ALAssetPropertyOrientation"), Internal] - NSString _PropertyOrientation { get; } - - [Field ("ALAssetPropertyDate"), Internal] - NSString _PropertyDate { get; } - - [Field ("ALAssetPropertyRepresentations"), Internal] - NSString _PropertyRepresentations { get; } - - [Field ("ALAssetPropertyURLs"), Internal] - NSString _PropertyURLs { get; } - - [Field ("ALAssetPropertyAssetURL"), Internal] - NSString _PropertyAssetURL { get; } - - [Field ("ALAssetTypePhoto"), Internal] - NSString _TypePhoto { get; } - - [Field ("ALAssetTypeVideo"), Internal] - NSString _TypeVideo { get; } - - [Field ("ALAssetTypeUnknown"), Internal] - NSString _TypeUnknown { get; } - - [Export ("originalAsset")] - ALAsset OriginalAsset { get; } - - [Export ("editable")] - bool Editable { [Bind ("isEditable")] get; } - - [Export ("aspectRatioThumbnail")] - CGImage AspectRatioThumbnail (); - - [Export ("writeModifiedImageDataToSavedPhotosAlbum:metadata:completionBlock:")] - [Async] - void WriteModifiedImageToSavedToPhotosAlbum (NSData imageData, NSDictionary metadata, [NullAllowed] Action completionBlock); - - [Export ("writeModifiedVideoAtPathToSavedPhotosAlbum:completionBlock:")] - [Async] - void WriteModifiedVideoToSavedPhotosAlbum (NSUrl videoPathURL, [NullAllowed] Action completionBlock); - - [Export ("setImageData:metadata:completionBlock:")] - [Async] - void SetImageData (NSData imageData, NSDictionary metadata, [NullAllowed] Action completionBlock); - - [Export ("setVideoAtPath:completionBlock:")] - [Async] - void SetVideoAtPath (NSUrl videoPathURL, [NullAllowed] Action completionBlock); - } - - [BaseType (typeof (NSObject))] - [Deprecated (PlatformName.iOS, 9, 0, message: "Use the 'Photos' API instead.")] - interface ALAssetRepresentation { - [Export ("UTI")] - string Uti { get; } - - [Export ("size")] - long Size { get; } - - [Export ("getBytes:fromOffset:length:error:")] - nuint GetBytes (IntPtr buffer, long offset, nuint length, out NSError error); - - [Export ("fullResolutionImage")] - [Autorelease] - CGImage GetImage (); - - [Export ("CGImageWithOptions:")] - [Autorelease] - CGImage GetImage (NSDictionary options); - - [Export ("fullScreenImage")] - [Autorelease] - CGImage GetFullScreenImage (); - - [Export ("url")] - NSUrl Url { get; } - - [Export ("metadata")] - NSDictionary Metadata { get; } - - [Export ("orientation")] - ALAssetOrientation Orientation { get; } - - [Export ("scale")] - float Scale { get; } /* float, not CGFloat */ - - [Export ("filename")] - string Filename { get; } - - [Export ("dimensions")] - CGSize Dimensions { get; } - } - - [Deprecated (PlatformName.iOS, 9, 0, message: "Use the 'Photos' API instead.")] - [BaseType (typeof (NSObject))] - interface ALAssetsFilter { - [Static, Export ("allPhotos")] - ALAssetsFilter AllPhotos { get; } - - [Static, Export ("allVideos")] - ALAssetsFilter AllVideos { get; } - - [Static, Export ("allAssets")] - ALAssetsFilter AllAssets { get; } - } - - [Deprecated (PlatformName.iOS, 9, 0, message: "Use the 'Photos' API instead.")] - delegate void ALAssetsEnumerator (ALAsset result, nint index, ref bool stop); - - [Deprecated (PlatformName.iOS, 9, 0, message: "Use the 'Photos' API instead.")] - [BaseType (typeof (NSObject))] - interface ALAssetsGroup { - [Export ("valueForProperty:"), Internal] - NSObject ValueForProperty (NSString property); - - [Export ("posterImage")] - CGImage PosterImage { get; } - - [Export ("setAssetsFilter:")] - void SetAssetsFilter (ALAssetsFilter filter); - - [Export ("numberOfAssets")] - nint Count { get; } - - [Export ("enumerateAssetsUsingBlock:")] - void Enumerate (ALAssetsEnumerator result); - - [Export ("enumerateAssetsWithOptions:usingBlock:")] - void Enumerate (NSEnumerationOptions options, ALAssetsEnumerator result); - - [Export ("enumerateAssetsAtIndexes:options:usingBlock:")] - void Enumerate (NSIndexSet indexSet, NSEnumerationOptions options, ALAssetsEnumerator result); - - [Field ("ALAssetsGroupPropertyName"), Internal] - NSString _Name { get; } - - [Field ("ALAssetsGroupPropertyType"), Internal] - NSString _Type { get; } - - [Field ("ALAssetsGroupPropertyPersistentID"), Internal] - NSString _PersistentID { get; } - - [Export ("editable")] - bool Editable { [Bind ("isEditable")] get; } - - [Export ("addAsset:")] - bool AddAsset (ALAsset asset); - - [Field ("ALAssetsGroupPropertyURL"), Internal] - NSString _PropertyUrl { get; } - } -} diff --git a/src/frameworks.sources b/src/frameworks.sources index d1be7d30a263..b098883b9ceb 100644 --- a/src/frameworks.sources +++ b/src/frameworks.sources @@ -177,12 +177,8 @@ ARKIT_SOURCES = \ # AssetsLibrary -ASSETSLIBRARY_API_SOURCES = \ - AssetsLibrary/Enums.cs \ - ASSETSLIBRARY_SOURCES = \ - AssetsLibrary/ALAsset.cs \ - AssetsLibrary/ALAssetsGroup.cs \ + AssetsLibrary/Compat.cs \ # AudioToolbox diff --git a/tests/monotouch-test/Photos/FetchResultTest.cs b/tests/monotouch-test/Photos/FetchResultTest.cs index a52a8ec25569..58c9fe119766 100644 --- a/tests/monotouch-test/Photos/FetchResultTest.cs +++ b/tests/monotouch-test/Photos/FetchResultTest.cs @@ -16,9 +16,6 @@ using ObjCRuntime; using Photos; using CoreGraphics; -#if HAS_ASSETSLIBRARY -using AssetsLibrary; -#endif using NUnit.Framework; using Xamarin.Utils; @@ -31,17 +28,9 @@ public class FetchResultTest { [SetUp] public void Setup () { - TestRuntime.AssertSystemVersion (ApplePlatform.iOS, 8, 0, throwIfOtherPlatform: false); -#if HAS_ASSETSLIBRARY - if (ALAssetsLibrary.AuthorizationStatus != ALAuthorizationStatus.Authorized) - Assert.Inconclusive ("Requires access to the photo library"); -#elif __MACCATALYST__ - TestRuntime.AssertSystemVersion (ApplePlatform.MacCatalyst, 14, 0, throwIfOtherPlatform: false); + TestRuntime.AssertXcodeVersion (12, 0); if (PHPhotoLibrary.GetAuthorizationStatus (PHAccessLevel.ReadWrite) != PHAuthorizationStatus.Authorized) Assert.Inconclusive ("Requires access to the photo library"); -#else -#error Add authorization check for the platform -#endif } [Test] diff --git a/tools/common/Frameworks.cs b/tools/common/Frameworks.cs index 289c2a8b6317..be3b8e536130 100644 --- a/tools/common/Frameworks.cs +++ b/tools/common/Frameworks.cs @@ -343,7 +343,6 @@ public static Frameworks CreateiOSFrameworks (bool is_simulator_build) #endif { "QuickLook", "QuickLook", 4 }, { "ImageIO", "ImageIO", 4 }, - { "AssetsLibrary", "AssetsLibrary", 4 }, { "CoreText", "CoreText", 4 }, { "CoreMidi", "CoreMIDI", 4 }, diff --git a/tools/mtouch/Makefile b/tools/mtouch/Makefile index ae25da0fe00f..d23fee55fa67 100644 --- a/tools/mtouch/Makefile +++ b/tools/mtouch/Makefile @@ -73,7 +73,6 @@ SIMLAUNCHER_FRAMEWORKS = \ -framework SystemConfiguration \ -framework UIKit \ \ - -weak_framework AssetsLibrary \ -weak_framework CoreMedia \ -weak_framework CoreMidi \ -weak_framework CoreMotion \ From 09200833014b66bd1002c9babd601d695cb8983c Mon Sep 17 00:00:00 2001 From: Alex Soto Date: Tue, 13 Feb 2024 21:05:09 -0500 Subject: [PATCH 05/73] [xcode15.3] Bump Xcode to beta 3 --- Make.config | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Make.config b/Make.config index 15aafc10d24c..c8fb0413ffb7 100644 --- a/Make.config +++ b/Make.config @@ -213,8 +213,8 @@ MACCATALYST_NUGET_VERSION_FULL=$(MACCATALYST_NUGET_VERSION_NO_METADATA)+$(NUGET_ # Xcode version should have both a major and a minor version (even if the minor version is 0) XCODE_VERSION=15.3 -XCODE_URL=https://dl.internalx.com/internal-files/xcodes/Xcode_15.3_beta_2.xip -XCODE_DEVELOPER_ROOT=/Applications/Xcode_15.3.0-beta2.app/Contents/Developer +XCODE_URL=https://dl.internalx.com/internal-files/xcodes/Xcode_15.3_beta_3.xip +XCODE_DEVELOPER_ROOT=/Applications/Xcode_15.3.0-beta3.app/Contents/Developer XCODE_PRODUCT_BUILD_VERSION:=$(shell /usr/libexec/PlistBuddy -c 'Print :ProductBuildVersion' $(XCODE_DEVELOPER_ROOT)/../version.plist 2>/dev/null || echo " $(shell tput setaf 1 2>/dev/null)The required Xcode ($(XCODE_VERSION)) is not installed in $(basename $(basename $(XCODE_DEVELOPER_ROOT)))$(shell tput sgr0 2>/dev/null)" >&2) # We define stable Xcode as the Xcode app being named like "Xcode_#.#[.#].app" From f6f3595d85f9a72800a0bea307030ff47aedb99c Mon Sep 17 00:00:00 2001 From: GitHub Actions Autoformatter Date: Wed, 14 Feb 2024 02:08:27 +0000 Subject: [PATCH 06/73] Auto-format source code --- src/AssetsLibrary/Compat.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/AssetsLibrary/Compat.cs b/src/AssetsLibrary/Compat.cs index 4760ab102bd2..cfab9c6d3375 100644 --- a/src/AssetsLibrary/Compat.cs +++ b/src/AssetsLibrary/Compat.cs @@ -22,8 +22,8 @@ namespace AssetsLibrary { public delegate void ALAssetsEnumerator (ALAsset result, IntPtr index, ref bool stop); public delegate void ALAssetsLibraryGroupsEnumerationResultsDelegate (ALAssetsGroup group, ref bool stop); - - [EditorBrowsable (EditorBrowsableState.Never)] + + [EditorBrowsable (EditorBrowsableState.Never)] [Obsolete (Constants.AssetsLibraryRemoved)] public enum ALAssetsError : int { UnknownError = -1, @@ -142,7 +142,7 @@ public unsafe virtual Task SetVideoAtPathAsync (NSUrl videoPathURL) { throw new InvalidOperationException (Constants.AssetsLibraryRemoved); } - + public virtual NSObject ValueForProperty (NSString property) { throw new InvalidOperationException (Constants.AssetsLibraryRemoved); @@ -258,7 +258,7 @@ internal static NSString _TypeVideo { } } - public ALAssetType AssetType { + public ALAssetType AssetType { get { throw new InvalidOperationException (Constants.AssetsLibraryRemoved); } @@ -707,7 +707,7 @@ public static NSObject ObserveChanged (NSObject objectToObserve, EventHandler Date: Wed, 14 Feb 2024 18:17:13 -0500 Subject: [PATCH 07/73] [AssetsLibrary] Fix ALAssetsEnumerator signature --- src/AssetsLibrary/Compat.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/AssetsLibrary/Compat.cs b/src/AssetsLibrary/Compat.cs index cfab9c6d3375..eabf96577021 100644 --- a/src/AssetsLibrary/Compat.cs +++ b/src/AssetsLibrary/Compat.cs @@ -20,7 +20,8 @@ namespace AssetsLibrary { - public delegate void ALAssetsEnumerator (ALAsset result, IntPtr index, ref bool stop); + public delegate void ALAssetsEnumerator (ALAsset result, nint index, ref bool stop); + public delegate void ALAssetsLibraryGroupsEnumerationResultsDelegate (ALAssetsGroup group, ref bool stop); [EditorBrowsable (EditorBrowsableState.Never)] From 924b0beeb3147ae6a3d011296442c6bcf7403047 Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Thu, 15 Feb 2024 13:43:20 +0100 Subject: [PATCH 08/73] [tests] Fix the MlaunchTest.GetMlaunchRunArguments in a more future-proof way. --- tests/dotnet/UnitTests/MlaunchTest.cs | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/tests/dotnet/UnitTests/MlaunchTest.cs b/tests/dotnet/UnitTests/MlaunchTest.cs index 5e22dd7287f2..e7d23883f4a2 100644 --- a/tests/dotnet/UnitTests/MlaunchTest.cs +++ b/tests/dotnet/UnitTests/MlaunchTest.cs @@ -49,10 +49,17 @@ public void GetMlaunchInstallArguments (ApplePlatform platform, string runtimeId Assert.AreEqual (expectedScriptContents, scriptContents, "Script contents"); } + public static object[] GetMlaunchRunArgumentsTestCases () + { + return new object[] { + new object [] {ApplePlatform.iOS, "iossimulator-x64;iossimulator-arm64", $":v2:runtime=com.apple.CoreSimulator.SimRuntime.iOS-{SdkVersions.iOS.Replace('.', '-')},devicetype=com.apple.CoreSimulator.SimDeviceType.iPhone-15-Pro" }, + new object [] {ApplePlatform.iOS, "ios-arm64", "" }, + new object [] {ApplePlatform.TVOS, "tvossimulator-arm64", $":v2:runtime=com.apple.CoreSimulator.SimRuntime.tvOS-{SdkVersions.TVOS.Replace('.', '-')},devicetype=com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-3rd-generation-1080p" }, + }; + } + [Test] - [TestCase (ApplePlatform.iOS, "iossimulator-x64;iossimulator-arm64", ":v2:runtime=com.apple.CoreSimulator.SimRuntime.iOS-17-2,devicetype=com.apple.CoreSimulator.SimDeviceType.iPhone-15-Pro")] - [TestCase (ApplePlatform.iOS, "ios-arm64", "")] - [TestCase (ApplePlatform.TVOS, "tvossimulator-arm64", ":v2:runtime=com.apple.CoreSimulator.SimRuntime.tvOS-17-2,devicetype=com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-3rd-generation-1080p")] + [TestCaseSource (nameof (GetMlaunchRunArgumentsTestCases))] public void GetMlaunchRunArguments (ApplePlatform platform, string runtimeIdentifiers, string device) { var project = "MySimpleApp"; From 5d28f9b2392551e04b8c5f68f5e54bdc4ad45a66 Mon Sep 17 00:00:00 2001 From: GitHub Actions Autoformatter Date: Thu, 15 Feb 2024 20:09:21 +0000 Subject: [PATCH 09/73] Auto-format source code --- tests/dotnet/UnitTests/MlaunchTest.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/dotnet/UnitTests/MlaunchTest.cs b/tests/dotnet/UnitTests/MlaunchTest.cs index e7d23883f4a2..ce3505cdbdbb 100644 --- a/tests/dotnet/UnitTests/MlaunchTest.cs +++ b/tests/dotnet/UnitTests/MlaunchTest.cs @@ -49,9 +49,9 @@ public void GetMlaunchInstallArguments (ApplePlatform platform, string runtimeId Assert.AreEqual (expectedScriptContents, scriptContents, "Script contents"); } - public static object[] GetMlaunchRunArgumentsTestCases () + public static object [] GetMlaunchRunArgumentsTestCases () { - return new object[] { + return new object [] { new object [] {ApplePlatform.iOS, "iossimulator-x64;iossimulator-arm64", $":v2:runtime=com.apple.CoreSimulator.SimRuntime.iOS-{SdkVersions.iOS.Replace('.', '-')},devicetype=com.apple.CoreSimulator.SimDeviceType.iPhone-15-Pro" }, new object [] {ApplePlatform.iOS, "ios-arm64", "" }, new object [] {ApplePlatform.TVOS, "tvossimulator-arm64", $":v2:runtime=com.apple.CoreSimulator.SimRuntime.tvOS-{SdkVersions.TVOS.Replace('.', '-')},devicetype=com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-3rd-generation-1080p" }, From f3044a75b10ac321d5b8d7ce00c3676c2ed7bb81 Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Mon, 19 Feb 2024 11:01:31 +0100 Subject: [PATCH 10/73] [tests] Switch to x86_64 as the default sim arch for watchOS. It doesn't look like i386 works anymore. --- tests/mtouch/MTouchTool.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/mtouch/MTouchTool.cs b/tests/mtouch/MTouchTool.cs index 34d5aa3eef02..e0a91e65b77b 100644 --- a/tests/mtouch/MTouchTool.cs +++ b/tests/mtouch/MTouchTool.cs @@ -245,7 +245,7 @@ protected override string GetDefaultAbi () case Profile.tvOS: return isDevice ? "arm64" : "x86_64"; case Profile.watchOS: - return isDevice ? "armv7k" : "i386"; + return isDevice ? "armv7k" : "x86_64"; default: throw new NotImplementedException (); } From e8c607a9b840eb93279ec4c871ec39ffd21c4a98 Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Mon, 19 Feb 2024 11:01:54 +0100 Subject: [PATCH 11/73] [tests] Update list of ignored warnings. --- tests/common/Tool.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/common/Tool.cs b/tests/common/Tool.cs index c24ead78c0a2..90293760b3cb 100644 --- a/tests/common/Tool.cs +++ b/tests/common/Tool.cs @@ -49,6 +49,11 @@ public static IEnumerable FilterUnrelatedWarnings (this IEnumerable case "The class 'NewsstandKit.NKAssetDownload' will not be registered because the NewsstandKit framework has been removed from the iOS SDK.": case "The class 'NewsstandKit.NKLibrary' will not be registered because the NewsstandKit framework has been removed from the iOS SDK.": case "The class 'NewsstandKit.NKIssue' will not be registered because the NewsstandKit framework has been removed from the iOS SDK.": + case "The class 'AssetsLibrary.ALAssetRepresentation' will not be registered because the AssetsLibrary framework has been removed from the iOS SDK.": + case "The class 'AssetsLibrary.ALAssetsFilter' will not be registered because the AssetsLibrary framework has been removed from the iOS SDK.": + case "The class 'AssetsLibrary.ALAssetsGroup' will not be registered because the AssetsLibrary framework has been removed from the iOS SDK.": + case "The class 'AssetsLibrary.ALAssetsLibrary' will not be registered because the AssetsLibrary framework has been removed from the iOS SDK.": + case "The class 'AssetsLibrary.ALAsset' will not be registered because the AssetsLibrary framework has been removed from the iOS SDK.": return false; } break; From d123a47933d0bdf12c7a79c1fc1a33cb1dff137b Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Mon, 19 Feb 2024 18:26:45 +0100 Subject: [PATCH 12/73] Fix default simulator architecture for watchOS. --- tests/mtouch/MTouch.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/mtouch/MTouch.cs b/tests/mtouch/MTouch.cs index c77afd80c2d7..37f71d5173bd 100644 --- a/tests/mtouch/MTouch.cs +++ b/tests/mtouch/MTouch.cs @@ -2635,7 +2635,7 @@ public void Architectures_TVOS_Invalid () [TestCase (Target.Dev, null, "ARMv7k", MTouchBitcode.Unspecified)] [TestCase (Target.Dev, "arm64_32+llvm", "ARM64_32", MTouchBitcode.Unspecified)] [TestCase (Target.Dev, "armv7k+llvm,arm64_32+llvm", "ARMv7k,ARM64_32", MTouchBitcode.Full)] - [TestCase (Target.Sim, null, "i386", MTouchBitcode.Unspecified)] + [TestCase (Target.Sim, null, "x86_64", MTouchBitcode.Unspecified)] [TestCase (Target.Sim, "x86_64", "x86_64", MTouchBitcode.Unspecified)] public void Architectures_WatchOS (Target target, string abi, string expected_abi, MTouchBitcode bitcode) { From 7ade4c75d5c4bf71496466a70b7727fca52f00e5 Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Tue, 20 Feb 2024 09:00:05 +0100 Subject: [PATCH 13/73] [monotouch-test] Adjust a few tests to cope with changes in Xcode 15.3. --- tests/common/TestRuntime.cs | 25 +++++++++++++++++++ .../HealthKit/CdaDocumentSampleTest.cs | 8 +++--- .../ImageIO/CGImageSourceTest.cs | 22 +++++++++++----- 3 files changed, 46 insertions(+), 9 deletions(-) diff --git a/tests/common/TestRuntime.cs b/tests/common/TestRuntime.cs index ae64edb68acb..e1f3ab281d3e 100644 --- a/tests/common/TestRuntime.cs +++ b/tests/common/TestRuntime.cs @@ -404,6 +404,31 @@ public static bool CheckXcodeVersion (int major, int minor, int build = 0) return CheckMacSystemVersion (14, 0); #else throw new NotImplementedException ($"Missing platform case for Xcode {major}.{minor}"); +#endif + case 1: + case 2: +#if __WATCHOS__ + return CheckWatchOSSystemVersion (10, 2); +#elif __TVOS__ + return ChecktvOSSystemVersion (17, 2); +#elif __IOS__ + return CheckiOSSystemVersion (17, 2); +#elif MONOMAC + return CheckMacSystemVersion (14, 2); +#else + throw new NotImplementedException ($"Missing platform case for Xcode {major}.{minor}"); +#endif + case 3: +#if __WATCHOS__ + return CheckWatchOSSystemVersion (10, 4); +#elif __TVOS__ + return ChecktvOSSystemVersion (17, 4); +#elif __IOS__ + return CheckiOSSystemVersion (17, 4); +#elif MONOMAC + return CheckMacSystemVersion (14, 4); +#else + throw new NotImplementedException ($"Missing platform case for Xcode {major}.{minor}"); #endif default: throw new NotImplementedException ($"Missing version logic for checking for Xcode {major}.{minor}"); diff --git a/tests/monotouch-test/HealthKit/CdaDocumentSampleTest.cs b/tests/monotouch-test/HealthKit/CdaDocumentSampleTest.cs index 24df1463c323..dbec61deff5f 100644 --- a/tests/monotouch-test/HealthKit/CdaDocumentSampleTest.cs +++ b/tests/monotouch-test/HealthKit/CdaDocumentSampleTest.cs @@ -58,15 +58,17 @@ public void Error () var ex = Assert.Throws (action, "Exception"); #endif + #if MONOMAC - Assert.That (ex.Message, Does.Match ("startDate.*and endDate.*exceed the maximum allowed duration for this sample type"), "Exception Message"); + var newStyle = TestRuntime.CheckXcodeVersion (15, 3); #else - if (TestRuntime.CheckXcodeVersion (15, 0)) { + var newStyle = TestRuntime.CheckXcodeVersion (15, 0); +#endif + if (newStyle) { Assert.That (ex.Message, Does.Match ("Objective-C exception thrown. Name: _HKObjectValidationFailureException Reason: Type HKSample can not have endDate of NSDate.distantFuture"), "Exception Message"); } else { Assert.That (ex.Message, Does.Match ("startDate.*and endDate.*exceed the maximum allowed duration for this sample type"), "Exception Message"); } -#endif } else { action (); } diff --git a/tests/monotouch-test/ImageIO/CGImageSourceTest.cs b/tests/monotouch-test/ImageIO/CGImageSourceTest.cs index 0c1f3c3a3f3f..87bff6ad959a 100644 --- a/tests/monotouch-test/ImageIO/CGImageSourceTest.cs +++ b/tests/monotouch-test/ImageIO/CGImageSourceTest.cs @@ -90,20 +90,30 @@ public void CreateThumbnailTest () { using (var imgsrc = CGImageSource.FromUrl (fileUrl)) { using (var img = imgsrc.CreateThumbnail (0, null)) { + if (TestRuntime.CheckXcodeVersion (15, 3)) { + Assert.NotNull (img, "#a1"); + Assert.AreNotEqual (IntPtr.Zero, img.Handle, "#a2"); + } else { #if NET - Assert.Null (img, "#a1"); + Assert.Null (img, "#a1"); #else - Assert.NotNull (img, "#a1"); - Assert.AreEqual (IntPtr.Zero, img.Handle, "#a2"); + Assert.NotNull (img, "#a1"); + Assert.AreEqual (IntPtr.Zero, img.Handle, "#a2"); #endif + } } using (var img = imgsrc.CreateThumbnail (0, new CGImageThumbnailOptions ())) { + if (TestRuntime.CheckXcodeVersion (15, 3)) { + Assert.NotNull (img, "#b1"); + Assert.AreNotEqual (IntPtr.Zero, img.Handle, "#b2"); + } else { #if NET - Assert.Null (img, "#b1"); + Assert.Null (img, "#b1"); #else - Assert.NotNull (img, "#b1"); - Assert.AreEqual (IntPtr.Zero, img.Handle, "#b2"); + Assert.NotNull (img, "#b1"); + Assert.AreEqual (IntPtr.Zero, img.Handle, "#b2"); #endif + } } } } From 64251e8933be4cc4f7f20ff0d8f24ac0de4476fb Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Tue, 20 Feb 2024 13:09:02 +0100 Subject: [PATCH 14/73] [tests] Ignore AssetsLibrary in a few tests. --- tests/introspection/ApiFrameworkTest.cs | 3 +++ tests/introspection/ApiTypoTest.cs | 1 + tests/introspection/iOS/iOSApiFieldTest.cs | 3 +++ tests/mtouch/MTouch.cs | 2 ++ 4 files changed, 9 insertions(+) diff --git a/tests/introspection/ApiFrameworkTest.cs b/tests/introspection/ApiFrameworkTest.cs index 4b6b6f083858..f95e01192736 100644 --- a/tests/introspection/ApiFrameworkTest.cs +++ b/tests/introspection/ApiFrameworkTest.cs @@ -86,6 +86,9 @@ public bool Skip (string @namespace) // Removed in Xcode 15 case "NewsstandKit": return true; + // Removed in Xcode 15.3 + case "AssetsLibrary": + return true; default: return false; } diff --git a/tests/introspection/ApiTypoTest.cs b/tests/introspection/ApiTypoTest.cs index 374b5a5e320f..a01bb4a8f06e 100644 --- a/tests/introspection/ApiTypoTest.cs +++ b/tests/introspection/ApiTypoTest.cs @@ -1065,6 +1065,7 @@ public void ConstantsCheck () Assert.True (Version.TryParse (s, out _), fi.Name); break; #if !XAMCORE_5_0 + case "AssetsLibraryLibrary": case "NewsstandKitLibrary": // Removed from iOS, but we have to keep the constant around for binary compatibility. break; #endif diff --git a/tests/introspection/iOS/iOSApiFieldTest.cs b/tests/introspection/iOS/iOSApiFieldTest.cs index 26025c503e05..6890864add48 100644 --- a/tests/introspection/iOS/iOSApiFieldTest.cs +++ b/tests/introspection/iOS/iOSApiFieldTest.cs @@ -72,6 +72,9 @@ protected override bool Skip (PropertyInfo p) case "NewsstandKit": // largely removed in xcode 15 return true; + case "AssetsLibrary": + // removed in Xcode 15.3 + return true; } switch (p.Name) { diff --git a/tests/mtouch/MTouch.cs b/tests/mtouch/MTouch.cs index 37f71d5173bd..a139c165203f 100644 --- a/tests/mtouch/MTouch.cs +++ b/tests/mtouch/MTouch.cs @@ -2256,6 +2256,7 @@ public void LinkAll_Frameworks () Asserts.DoesNotContain ("SafariServices", load_commands, "SafariServices"); Asserts.DoesNotContain ("GameController", load_commands, "GameController"); Asserts.DoesNotContain ("NewsstandKit", load_commands, "NewsstandKit"); + Asserts.DoesNotContain ("AssetsLibrary", load_commands, "AssetsLibrary"); // Try again with the static registrar mtouch.Registrar = MTouchRegistrar.Static; @@ -2266,6 +2267,7 @@ public void LinkAll_Frameworks () Asserts.DoesNotContain ("GameController", load_commands, "GameController"); Asserts.DoesNotContain ("QuickLook", load_commands, "QuickLook"); Asserts.DoesNotContain ("NewsstandKit", load_commands, "NewsstandKit"); + Asserts.DoesNotContain ("AssetsLibrary", load_commands, "AssetsLibrary"); } } From a9d5e1d27523f83d099c1b601b12ff471c83c55d Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Mon, 26 Feb 2024 11:01:56 +0100 Subject: [PATCH 15/73] [monotouch-test] Be a bit more permissive in the asserts in CdaDocumentSampleTest. --- .../HealthKit/CdaDocumentSampleTest.cs | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/tests/monotouch-test/HealthKit/CdaDocumentSampleTest.cs b/tests/monotouch-test/HealthKit/CdaDocumentSampleTest.cs index dbec61deff5f..ad4474097404 100644 --- a/tests/monotouch-test/HealthKit/CdaDocumentSampleTest.cs +++ b/tests/monotouch-test/HealthKit/CdaDocumentSampleTest.cs @@ -59,16 +59,9 @@ public void Error () #endif -#if MONOMAC - var newStyle = TestRuntime.CheckXcodeVersion (15, 3); -#else - var newStyle = TestRuntime.CheckXcodeVersion (15, 0); -#endif - if (newStyle) { - Assert.That (ex.Message, Does.Match ("Objective-C exception thrown. Name: _HKObjectValidationFailureException Reason: Type HKSample can not have endDate of NSDate.distantFuture"), "Exception Message"); - } else { - Assert.That (ex.Message, Does.Match ("startDate.*and endDate.*exceed the maximum allowed duration for this sample type"), "Exception Message"); - } + var newStyleMessage = "Objective-C exception thrown. Name: _HKObjectValidationFailureException Reason: Type HKSample can not have endDate of NSDate.distantFuture"; + var oldStyleMessage = "startDate.*and endDate.*exceed the maximum allowed duration for this sample type"; + Assert.That (ex.Message, Does.Match (newStyleMessage).Or.Match (oldStyleMessage), "Exception Message"); } else { action (); } From 5cc0bbaeaabf31482bddb64383ee54e9fdf1f9cb Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Mon, 26 Feb 2024 12:02:50 +0100 Subject: [PATCH 16/73] [bindings-test] Adjust test according to new objc property attributes in Xcode 15.3. --- tests/bindings-test/ProtocolTest.cs | 43 +++++++++++++++++++++++------ 1 file changed, 35 insertions(+), 8 deletions(-) diff --git a/tests/bindings-test/ProtocolTest.cs b/tests/bindings-test/ProtocolTest.cs index 891ff7501d1e..4bb8fb26b189 100644 --- a/tests/bindings-test/ProtocolTest.cs +++ b/tests/bindings-test/ProtocolTest.cs @@ -234,41 +234,41 @@ public void ProtocolMembers () }), "Properties: requiredReadonlyProperty"); if (XamarinTests.ObjCRuntime.Registrar.IsStaticRegistrar) { - AssertContains (properties, new objc_property ("optionalInstanceProperty", "T@\"NSString\",N", new objc_property_attribute [] { + AssertContains (properties, new objc_property ("optionalInstanceProperty", "T@\"NSString\",N", true, new objc_property_attribute [] { new objc_property_attribute ("T", "@\"NSString\""), new objc_property_attribute ("N", "") }), "Properties: optionalInstanceProperty"); - AssertContains (properties, new objc_property ("propertyWithCustomAccessors", "T@\"NSString\",N,Gget_propertyWithCustomAccessors,Sset_propertyWithCustomAccessors:", new objc_property_attribute [] { + AssertContains (properties, new objc_property ("propertyWithCustomAccessors", "T@\"NSString\",N,Gget_propertyWithCustomAccessors,Sset_propertyWithCustomAccessors:", true, new objc_property_attribute [] { new objc_property_attribute ("T", "@\"NSString\""), new objc_property_attribute ("N", ""), new objc_property_attribute ("G", "get_propertyWithCustomAccessors"), new objc_property_attribute ("S", "set_propertyWithCustomAccessors:") }), "Properties: propertyWithCustomAccessors"); - AssertContains (properties, new objc_property ("propertyWithArgumentSemanticNone", "T@\"NSString\",N", new objc_property_attribute [] { + AssertContains (properties, new objc_property ("propertyWithArgumentSemanticNone", "T@\"NSString\",N", true, new objc_property_attribute [] { new objc_property_attribute ("T", "@\"NSString\""), new objc_property_attribute ("N", "") }), "Properties: propertyWithArgumentSemanticNone"); - AssertContains (properties, new objc_property ("propertyWithArgumentSemanticCopy", "T@\"NSString\",C,N", new objc_property_attribute [] { + AssertContains (properties, new objc_property ("propertyWithArgumentSemanticCopy", "T@\"NSString\",C,N", true, new objc_property_attribute [] { new objc_property_attribute ("T", "@\"NSString\""), new objc_property_attribute ("N", ""), new objc_property_attribute ("C", "") }), "Properties: propertyWithArgumentSemanticCopy"); - AssertContains (properties, new objc_property ("propertyWithArgumentSemanticAssign", "T@\"NSString\",N", new objc_property_attribute [] { + AssertContains (properties, new objc_property ("propertyWithArgumentSemanticAssign", "T@\"NSString\",N", true, new objc_property_attribute [] { new objc_property_attribute ("T", "@\"NSString\""), new objc_property_attribute ("N", "") }), "Properties: propertyWithArgumentSemanticAssign"); - AssertContains (properties, new objc_property ("propertyWithArgumentSemanticRetain", "T@\"NSString\",&,N", new objc_property_attribute [] { + AssertContains (properties, new objc_property ("propertyWithArgumentSemanticRetain", "T@\"NSString\",&,N", true, new objc_property_attribute [] { new objc_property_attribute ("T", "@\"NSString\""), new objc_property_attribute ("&", ""), new objc_property_attribute ("N", "") }), "Properties: propertyWithArgumentSemanticRetain"); - AssertContains (properties, new objc_property ("readonlyProperty", "T@\"NSString\",R,N", new objc_property_attribute [] { + AssertContains (properties, new objc_property ("readonlyProperty", "T@\"NSString\",R,N", true, new objc_property_attribute [] { new objc_property_attribute ("T", "@\"NSString\""), new objc_property_attribute ("R", ""), new objc_property_attribute ("N", "") @@ -288,7 +288,7 @@ static void AssertContains (T [] array, T item, string message) where T : IEq return; } - throw new Exception ($"Collection {array} does not contain item {item}: {message}"); + Assert.Fail ($"Collection {array} does not contain item {item}: {message}"); } [DllImport ("/usr/lib/libobjc.dylib")] @@ -440,6 +440,33 @@ public objc_property (string name, string attributes, objc_property_attribute [] this.AttributeList = list; } + public objc_property (string name, string attributes, bool addNewXcode15_3Property, params objc_property_attribute [] list) + { + this.Name = name; + this.Attributes = attributes; + this.AttributeList = list; + + // Xcode 15.3 added a new property attribute (aptly named '?'), so inject it + // if we were requested to. + if (addNewXcode15_3Property && TestRuntime.CheckXcodeVersion (15, 3)) { + var t = Array.FindIndex (list, (v) => v.Name == "T"); + if (t >= 0) { + var newList = new List (list); + newList.Insert (t + 1, new objc_property_attribute ("?", "")); + this.AttributeList = newList.ToArray (); + } + + var splitAttributes = attributes.Split (','); + t = Array.FindIndex (splitAttributes, (v) => v [0] == 'T'); + if (t >= 0) { + var newList = splitAttributes.ToList (); + newList.Insert (t + 1, "?"); + + this.Attributes = string.Join (",", newList); + } + } + } + public override string ToString () { return string.Format ("[{0}; {1}; {2}]", Name, Attributes, string.Join (", ", new List (AttributeList).Select ((v) => string.Format ("{0} = {1}", v.Name, v.Value)))); From b7c89376d1e04e279003f397341db6ef6256fd76 Mon Sep 17 00:00:00 2001 From: Alex Soto Date: Mon, 26 Feb 2024 09:48:09 -0500 Subject: [PATCH 17/73] [tests] More monotouch-test fixes --- tests/monotouch-test/Security/KeyTest.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/monotouch-test/Security/KeyTest.cs b/tests/monotouch-test/Security/KeyTest.cs index e147cc4a4817..f463cbf4ac0b 100644 --- a/tests/monotouch-test/Security/KeyTest.cs +++ b/tests/monotouch-test/Security/KeyTest.cs @@ -507,7 +507,7 @@ public void RSA () Assert.That (data.ToArray (), Is.EqualTo (plain.ToArray ()), "roundtrip"); } -#if __MACCATALYST__ +#if __MACCATALYST__ || __IOS__ || __TVOS__ var badDecrypt = !TestRuntime.CheckXcodeVersion (15, 0); #else var badDecrypt = true; From 4700abcd1da1bbc7019c582edc626a7d409a1824 Mon Sep 17 00:00:00 2001 From: Alex Soto Date: Tue, 27 Feb 2024 10:37:03 -0500 Subject: [PATCH 18/73] [tests] Fix xtro tests --- tests/xtro-sharpie/Makefile | 6 +- .../common-SystemConfiguration.ignore | 1 - .../iOS-AVFoundation.todo | 19 +- .../iOS-AssetsLibrary.ignore | 1 - .../iOS-AuthenticationServices.todo | 40 ++ .../iOS-BrowserEngineCore.todo | 5 + .../iOS-BrowserEngineKit.todo | 134 ++++++ .../api-annotations-dotnet/iOS-CarPlay.todo | 58 +++ .../api-annotations-dotnet/iOS-CoreML.todo | 58 +++ .../iOS-FileProvider.todo | 3 + .../iOS-Foundation.todo | 7 + .../iOS-GameController.todo | 10 + .../api-annotations-dotnet/iOS-GameKit.todo | 3 + .../api-annotations-dotnet/iOS-HomeKit.todo | 1 + .../api-annotations-dotnet/iOS-IOSurface.todo | 4 + .../api-annotations-dotnet/iOS-ImageIO.todo | 3 + .../api-annotations-dotnet/iOS-Intents.todo | 2 + .../api-annotations-dotnet/iOS-MLCompute.todo | 1 + .../api-annotations-dotnet/iOS-Matter.todo | 398 +++++++++++++++++- .../api-annotations-dotnet/iOS-Metal.todo | 2 + .../iOS-MetalPerformanceShadersGraph.todo | 2 + .../iOS-NetworkExtension.todo | 2 + .../api-annotations-dotnet/iOS-PassKit.todo | 1 + .../api-annotations-dotnet/iOS-PencilKit.todo | 1 + .../iOS-SafariServices.todo | 1 + .../api-annotations-dotnet/iOS-SensorKit.todo | 52 +++ .../iOS-SystemConfiguration.todo | 8 + .../api-annotations-dotnet/iOS-UIKit.todo | 37 ++ .../iOS-VideoSubscriberAccount.todo | 8 + .../iOS-VideoToolbox.ignore | 1 - .../iOS-VideoToolbox.todo | 8 + .../macOS-AVFoundation.todo | 19 +- .../macOS-AuthenticationServices.todo | 21 + .../macOS-BrowserEngineKit.todo | 32 ++ .../macOS-CoreGraphics.ignore | 2 - .../api-annotations-dotnet/macOS-CoreML.todo | 58 +++ .../macOS-CoreMediaIO.todo | 3 + .../macOS-FileProvider.todo | 3 + .../macOS-Foundation.todo | 5 + .../macOS-GameController.todo | 10 + .../api-annotations-dotnet/macOS-GameKit.todo | 2 + .../macOS-IOSurface.todo | 3 + .../api-annotations-dotnet/macOS-ImageIO.todo | 3 + .../macOS-MLCompute.todo | 54 --- .../api-annotations-dotnet/macOS-MapKit.todo | 2 + .../api-annotations-dotnet/macOS-Matter.todo | 398 +++++++++++++++++- .../api-annotations-dotnet/macOS-Metal.todo | 2 + .../macOS-MetalPerformanceShadersGraph.todo | 2 + .../macOS-NetworkExtension.todo | 2 + .../api-annotations-dotnet/macOS-PassKit.todo | 1 + .../macOS-PencilKit.todo | 1 + .../macOS-ScreenCaptureKit.todo | 2 + .../macOS-VideoSubscriberAccount.todo | 8 + .../macOS-VideoToolbox.todo | 6 + .../tvOS-AVFoundation.todo | 19 +- .../tvOS-AuthenticationServices.todo | 10 + .../tvOS-BrowserEngineKit.todo | 74 ++++ .../api-annotations-dotnet/tvOS-CoreML.todo | 58 +++ .../tvOS-Foundation.todo | 2 + .../tvOS-GameController.todo | 10 + .../api-annotations-dotnet/tvOS-GameKit.todo | 3 + .../api-annotations-dotnet/tvOS-HomeKit.todo | 1 + .../tvOS-IOSurface.todo | 3 + .../api-annotations-dotnet/tvOS-ImageIO.todo | 3 + .../tvOS-MLCompute.todo | 1 + .../api-annotations-dotnet/tvOS-Matter.ignore | 18 - .../api-annotations-dotnet/tvOS-Matter.todo | 380 +++++++++++++++++ .../api-annotations-dotnet/tvOS-Metal.todo | 2 + .../tvOS-MetalPerformanceShadersGraph.todo | 2 + .../tvOS-SystemConfiguration.todo | 8 + .../api-annotations-dotnet/tvOS-UIKit.ignore | 3 - .../api-annotations-dotnet/tvOS-UIKit.todo | 47 +++ .../tvOS-VideoSubscriberAccount.todo | 8 + .../tvOS-VideoToolbox.ignore | 1 - .../tvOS-VideoToolbox.todo | 7 + .../common-SystemConfiguration.ignore | 1 - tests/xtro-sharpie/iOS-AVFoundation.todo | 19 +- tests/xtro-sharpie/iOS-AssetsLibrary.ignore | 1 - .../iOS-AuthenticationServices.todo | 40 ++ tests/xtro-sharpie/iOS-BrowserEngineCore.todo | 5 + tests/xtro-sharpie/iOS-BrowserEngineKit.todo | 134 ++++++ tests/xtro-sharpie/iOS-CarPlay.todo | 58 +++ tests/xtro-sharpie/iOS-CoreML.todo | 58 +++ tests/xtro-sharpie/iOS-FileProvider.todo | 3 + tests/xtro-sharpie/iOS-Foundation.todo | 7 + tests/xtro-sharpie/iOS-GameController.todo | 10 + tests/xtro-sharpie/iOS-GameKit.todo | 3 + tests/xtro-sharpie/iOS-HomeKit.todo | 1 + tests/xtro-sharpie/iOS-IOSurface.todo | 4 + tests/xtro-sharpie/iOS-ImageIO.todo | 3 + tests/xtro-sharpie/iOS-Intents.todo | 2 + tests/xtro-sharpie/iOS-MLCompute.todo | 1 + tests/xtro-sharpie/iOS-Matter.todo | 398 +++++++++++++++++- tests/xtro-sharpie/iOS-Metal.todo | 2 + .../iOS-MetalPerformanceShadersGraph.todo | 2 + tests/xtro-sharpie/iOS-NetworkExtension.todo | 2 + tests/xtro-sharpie/iOS-PassKit.todo | 1 + tests/xtro-sharpie/iOS-PencilKit.todo | 1 + tests/xtro-sharpie/iOS-SafariServices.todo | 1 + tests/xtro-sharpie/iOS-SensorKit.todo | 52 +++ .../xtro-sharpie/iOS-SystemConfiguration.todo | 8 + tests/xtro-sharpie/iOS-UIKit.todo | 37 ++ .../iOS-VideoSubscriberAccount.todo | 8 + tests/xtro-sharpie/iOS-VideoToolbox.ignore | 1 - tests/xtro-sharpie/iOS-VideoToolbox.todo | 8 + tests/xtro-sharpie/macOS-AVFoundation.todo | 19 +- .../macOS-AuthenticationServices.todo | 21 + .../xtro-sharpie/macOS-BrowserEngineKit.todo | 32 ++ tests/xtro-sharpie/macOS-CoreGraphics.ignore | 2 - tests/xtro-sharpie/macOS-CoreML.todo | 58 +++ tests/xtro-sharpie/macOS-CoreMediaIO.todo | 3 + tests/xtro-sharpie/macOS-FileProvider.todo | 3 + tests/xtro-sharpie/macOS-Foundation.todo | 5 + tests/xtro-sharpie/macOS-GameController.todo | 10 + tests/xtro-sharpie/macOS-GameKit.todo | 2 + tests/xtro-sharpie/macOS-IOSurface.todo | 3 + tests/xtro-sharpie/macOS-ImageIO.todo | 3 + tests/xtro-sharpie/macOS-MLCompute.todo | 54 --- tests/xtro-sharpie/macOS-MapKit.todo | 2 + tests/xtro-sharpie/macOS-Matter.todo | 398 +++++++++++++++++- tests/xtro-sharpie/macOS-Metal.todo | 2 + .../macOS-MetalPerformanceShadersGraph.todo | 2 + .../xtro-sharpie/macOS-NetworkExtension.todo | 2 + tests/xtro-sharpie/macOS-PassKit.todo | 1 + tests/xtro-sharpie/macOS-PencilKit.todo | 1 + .../xtro-sharpie/macOS-ScreenCaptureKit.todo | 2 + .../macOS-VideoSubscriberAccount.todo | 8 + tests/xtro-sharpie/macOS-VideoToolbox.todo | 6 + tests/xtro-sharpie/tvOS-AVFoundation.todo | 19 +- .../tvOS-AuthenticationServices.todo | 10 + tests/xtro-sharpie/tvOS-BrowserEngineKit.todo | 74 ++++ tests/xtro-sharpie/tvOS-CoreML.todo | 58 +++ tests/xtro-sharpie/tvOS-Foundation.todo | 2 + tests/xtro-sharpie/tvOS-GameController.todo | 10 + tests/xtro-sharpie/tvOS-GameKit.todo | 3 + tests/xtro-sharpie/tvOS-HomeKit.todo | 1 + tests/xtro-sharpie/tvOS-IOSurface.todo | 3 + tests/xtro-sharpie/tvOS-ImageIO.todo | 3 + tests/xtro-sharpie/tvOS-MLCompute.todo | 1 + tests/xtro-sharpie/tvOS-Matter.ignore | 18 - tests/xtro-sharpie/tvOS-Matter.todo | 380 +++++++++++++++++ tests/xtro-sharpie/tvOS-Metal.todo | 2 + .../tvOS-MetalPerformanceShadersGraph.todo | 2 + .../tvOS-SystemConfiguration.todo | 8 + tests/xtro-sharpie/tvOS-UIKit.ignore | 3 - tests/xtro-sharpie/tvOS-UIKit.todo | 47 +++ .../tvOS-VideoSubscriberAccount.todo | 8 + tests/xtro-sharpie/tvOS-VideoToolbox.ignore | 1 - tests/xtro-sharpie/tvOS-VideoToolbox.todo | 7 + tests/xtro-sharpie/watchOS-AVFoundation.todo | 3 +- .../watchOS-AuthenticationServices.todo | 10 + tests/xtro-sharpie/watchOS-CoreML.todo | 58 +++ tests/xtro-sharpie/watchOS-Foundation.todo | 2 + tests/xtro-sharpie/watchOS-GameKit.todo | 1 + tests/xtro-sharpie/watchOS-HomeKit.todo | 1 + tests/xtro-sharpie/watchOS-ImageIO.todo | 3 + tests/xtro-sharpie/watchOS-Intents.todo | 2 + tests/xtro-sharpie/watchOS-Matter.ignore | 18 - tests/xtro-sharpie/watchOS-Matter.todo | 380 +++++++++++++++++ tests/xtro-sharpie/watchOS-PassKit.todo | 5 +- tests/xtro-sharpie/watchOS-UIKit.todo | 3 + 161 files changed, 4568 insertions(+), 264 deletions(-) create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/iOS-AuthenticationServices.todo create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/iOS-BrowserEngineCore.todo create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/iOS-BrowserEngineKit.todo create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/iOS-CarPlay.todo create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/iOS-CoreML.todo create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/iOS-FileProvider.todo create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/iOS-Foundation.todo create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/iOS-GameKit.todo create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/iOS-HomeKit.todo create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/iOS-IOSurface.todo create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/iOS-ImageIO.todo create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/iOS-Intents.todo create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/iOS-Metal.todo create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/iOS-NetworkExtension.todo create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/iOS-PassKit.todo create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/iOS-PencilKit.todo create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/iOS-SafariServices.todo create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/iOS-SystemConfiguration.todo create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/iOS-UIKit.todo create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/iOS-VideoSubscriberAccount.todo create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/macOS-AuthenticationServices.todo create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/macOS-BrowserEngineKit.todo create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/macOS-CoreML.todo create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/macOS-FileProvider.todo create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/macOS-Foundation.todo create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/macOS-GameKit.todo create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/macOS-IOSurface.todo create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/macOS-ImageIO.todo create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/macOS-MapKit.todo create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/macOS-NetworkExtension.todo create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/macOS-PassKit.todo create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/macOS-PencilKit.todo create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/macOS-ScreenCaptureKit.todo create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/macOS-VideoSubscriberAccount.todo create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/tvOS-AuthenticationServices.todo create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/tvOS-BrowserEngineKit.todo create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/tvOS-CoreML.todo create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/tvOS-Foundation.todo create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/tvOS-GameKit.todo create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/tvOS-HomeKit.todo create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/tvOS-ImageIO.todo create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/tvOS-Metal.todo create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/tvOS-SystemConfiguration.todo create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/tvOS-UIKit.todo create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/tvOS-VideoSubscriberAccount.todo create mode 100644 tests/xtro-sharpie/iOS-AuthenticationServices.todo create mode 100644 tests/xtro-sharpie/iOS-BrowserEngineCore.todo create mode 100644 tests/xtro-sharpie/iOS-BrowserEngineKit.todo create mode 100644 tests/xtro-sharpie/iOS-CarPlay.todo create mode 100644 tests/xtro-sharpie/iOS-CoreML.todo create mode 100644 tests/xtro-sharpie/iOS-FileProvider.todo create mode 100644 tests/xtro-sharpie/iOS-Foundation.todo create mode 100644 tests/xtro-sharpie/iOS-GameKit.todo create mode 100644 tests/xtro-sharpie/iOS-HomeKit.todo create mode 100644 tests/xtro-sharpie/iOS-IOSurface.todo create mode 100644 tests/xtro-sharpie/iOS-ImageIO.todo create mode 100644 tests/xtro-sharpie/iOS-Intents.todo create mode 100644 tests/xtro-sharpie/iOS-Metal.todo create mode 100644 tests/xtro-sharpie/iOS-NetworkExtension.todo create mode 100644 tests/xtro-sharpie/iOS-PassKit.todo create mode 100644 tests/xtro-sharpie/iOS-PencilKit.todo create mode 100644 tests/xtro-sharpie/iOS-SafariServices.todo create mode 100644 tests/xtro-sharpie/iOS-SystemConfiguration.todo create mode 100644 tests/xtro-sharpie/iOS-UIKit.todo create mode 100644 tests/xtro-sharpie/iOS-VideoSubscriberAccount.todo create mode 100644 tests/xtro-sharpie/macOS-AuthenticationServices.todo create mode 100644 tests/xtro-sharpie/macOS-BrowserEngineKit.todo create mode 100644 tests/xtro-sharpie/macOS-CoreML.todo create mode 100644 tests/xtro-sharpie/macOS-FileProvider.todo create mode 100644 tests/xtro-sharpie/macOS-Foundation.todo create mode 100644 tests/xtro-sharpie/macOS-GameKit.todo create mode 100644 tests/xtro-sharpie/macOS-IOSurface.todo create mode 100644 tests/xtro-sharpie/macOS-ImageIO.todo create mode 100644 tests/xtro-sharpie/macOS-MapKit.todo create mode 100644 tests/xtro-sharpie/macOS-NetworkExtension.todo create mode 100644 tests/xtro-sharpie/macOS-PassKit.todo create mode 100644 tests/xtro-sharpie/macOS-PencilKit.todo create mode 100644 tests/xtro-sharpie/macOS-ScreenCaptureKit.todo create mode 100644 tests/xtro-sharpie/macOS-VideoSubscriberAccount.todo create mode 100644 tests/xtro-sharpie/tvOS-AuthenticationServices.todo create mode 100644 tests/xtro-sharpie/tvOS-BrowserEngineKit.todo create mode 100644 tests/xtro-sharpie/tvOS-CoreML.todo create mode 100644 tests/xtro-sharpie/tvOS-Foundation.todo create mode 100644 tests/xtro-sharpie/tvOS-GameKit.todo create mode 100644 tests/xtro-sharpie/tvOS-HomeKit.todo create mode 100644 tests/xtro-sharpie/tvOS-ImageIO.todo create mode 100644 tests/xtro-sharpie/tvOS-Metal.todo create mode 100644 tests/xtro-sharpie/tvOS-SystemConfiguration.todo create mode 100644 tests/xtro-sharpie/tvOS-UIKit.todo create mode 100644 tests/xtro-sharpie/tvOS-VideoSubscriberAccount.todo create mode 100644 tests/xtro-sharpie/watchOS-AuthenticationServices.todo create mode 100644 tests/xtro-sharpie/watchOS-CoreML.todo create mode 100644 tests/xtro-sharpie/watchOS-Foundation.todo create mode 100644 tests/xtro-sharpie/watchOS-HomeKit.todo create mode 100644 tests/xtro-sharpie/watchOS-ImageIO.todo create mode 100644 tests/xtro-sharpie/watchOS-Intents.todo create mode 100644 tests/xtro-sharpie/watchOS-UIKit.todo diff --git a/tests/xtro-sharpie/Makefile b/tests/xtro-sharpie/Makefile index 60e12d3f79f8..7d47afd3e8e8 100644 --- a/tests/xtro-sharpie/Makefile +++ b/tests/xtro-sharpie/Makefile @@ -51,6 +51,8 @@ $(XIOS_PCH): .stamp-check-sharpie -exclude FactoryOTAWifiUtils \ -exclude FactoryOTALogger \ -exclude FactoryOTANetworkUtils \ + -exclude AssetsLibrary \ + -exclude _CoreNFC_UIKit \ -i ThreadNetwork/THClient.h \ $(CORETELEPHONY_HEADERS) \ @@ -62,7 +64,8 @@ XWATCHOS_ARCH = armv7 XWATCHOS_PCH = watchos$(WATCH_SDK_VERSION)-$(XWATCHOS_ARCH).pch $(XWATCHOS_PCH): .stamp-check-sharpie - $(SHARPIE) sdk-db --xcode $(XCODE) -s watchos$(WATCH_SDK_VERSION) -a $(XWATCHOS_ARCH) + $(SHARPIE) sdk-db --xcode $(XCODE) -s watchos$(WATCH_SDK_VERSION) -a $(XWATCHOS_ARCH) \ + -exclude BrowserEngineKit \ XTVOS ?= $(IOS_DESTDIR)/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/64bits/tvOS/Xamarin.TVOS.dll XTVOS_LIBDIR ?= $(IOS_DESTDIR)/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.TVOS/ @@ -94,6 +97,7 @@ $(XMACCATALYST_PCH): .stamp-check-sharpie $(SHARPIE) sdk-db --xcode $(XCODE) -s ios$(MACCATALYST_SDK_VERSION)-macabi -a $(XMACCATALYST_ARCH) \ -exclude AGL \ -exclude AudioVideoBridging \ + -exclude AssetsLibrary \ -exclude CalendarStore \ -exclude Carbon \ -exclude ClockKit \ diff --git a/tests/xtro-sharpie/api-annotations-dotnet/common-SystemConfiguration.ignore b/tests/xtro-sharpie/api-annotations-dotnet/common-SystemConfiguration.ignore index 8400bf2dc9ee..05b1c7b36ed4 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/common-SystemConfiguration.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/common-SystemConfiguration.ignore @@ -7,4 +7,3 @@ !missing-pinvoke! SCCopyLastError is not bound ## *GetTypeID are generally not bound -!missing-pinvoke! SCNetworkReachabilityGetTypeID is not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-AVFoundation.todo b/tests/xtro-sharpie/api-annotations-dotnet/iOS-AVFoundation.todo index dfca775a6d07..faff4729863c 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/iOS-AVFoundation.todo +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-AVFoundation.todo @@ -501,7 +501,6 @@ !missing-selector! AVCaptureDeviceFormat::zoomFactorsOutsideOfVideoZoomRangesForDepthDeliverySupported not bound !missing-selector! AVPlayer::setVideoOutput: not bound !missing-selector! AVPlayer::videoOutput not bound -!missing-selector! AVPlayerItemErrorLogEvent::allHTTPResponseHeaderFields not bound !missing-selector! AVPlayerVideoOutput::copyTaggedBufferGroupForHostTime:presentationTimeStamp:activeConfiguration: not bound !missing-selector! AVPlayerVideoOutput::initWithSpecification: not bound !missing-selector! AVPlayerVideoOutputConfiguration::activationTime not bound @@ -519,3 +518,21 @@ !missing-type! AVPlayerVideoOutputConfiguration not bound !missing-type! AVVideoOutputSpecification not bound !missing-type! AVZoomRange not bound +!missing-enum! AVExternalContentProtectionStatus not bound +!missing-field! AVSampleBufferDisplayLayerReadyForDisplayDidChangeNotification not bound +!missing-protocol-member! AVContentKeySessionDelegate::contentKeySession:didProvideContentKeyRequests:forInitializationData: not found +!missing-protocol-member! AVContentKeySessionDelegate::contentKeySession:externalProtectionStatusDidChangeForContentKey: not found +!missing-selector! AVContentKey::externalContentProtectionStatus not bound +!missing-selector! AVContentKey::revoke not bound +!missing-selector! AVSampleBufferDisplayLayer::isReadyForDisplay not bound +!missing-selector! AVSampleBufferVideoRenderer::copyDisplayedPixelBuffer not bound +!missing-selector! AVSampleBufferVideoRenderer::expectMinimumUpcomingSampleBufferPresentationTime: not bound +!missing-selector! AVSampleBufferVideoRenderer::expectMonotonicallyIncreasingUpcomingSampleBufferPresentationTimes not bound +!missing-selector! AVSampleBufferVideoRenderer::loadVideoPerformanceMetricsWithCompletionHandler: not bound +!missing-selector! AVSampleBufferVideoRenderer::resetUpcomingSampleBufferPresentationTimeExpectations not bound +!missing-selector! AVVideoPerformanceMetrics::numberOfCorruptedFrames not bound +!missing-selector! AVVideoPerformanceMetrics::numberOfDroppedFrames not bound +!missing-selector! AVVideoPerformanceMetrics::numberOfFramesDisplayedUsingOptimizedCompositing not bound +!missing-selector! AVVideoPerformanceMetrics::totalAccumulatedFrameDelay not bound +!missing-selector! AVVideoPerformanceMetrics::totalNumberOfFrames not bound +!missing-type! AVVideoPerformanceMetrics not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-AssetsLibrary.ignore b/tests/xtro-sharpie/api-annotations-dotnet/iOS-AssetsLibrary.ignore index c8da4e49ad63..dff92464fb6a 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/iOS-AssetsLibrary.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-AssetsLibrary.ignore @@ -1,2 +1 @@ ## typedef is used + untyped enum in ALAssetsLibrary.h: typedef NSUInteger ALAssetsGroupType; -!unknown-native-enum! ALAssetsGroupType bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-AuthenticationServices.todo b/tests/xtro-sharpie/api-annotations-dotnet/iOS-AuthenticationServices.todo new file mode 100644 index 000000000000..0a98b7e19b25 --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-AuthenticationServices.todo @@ -0,0 +1,40 @@ +!deprecated-attribute-missing! ASWebAuthenticationSession::initWithURL:callbackURLScheme:completionHandler: missing a [Deprecated] attribute +!missing-enum! ASCredentialIdentityTypes not bound +!missing-enum! ASUserAgeRange not bound +!missing-protocol! ASAuthorizationWebBrowserPlatformPublicKeyCredentialAssertionRequest not bound +!missing-protocol! ASAuthorizationWebBrowserPlatformPublicKeyCredentialProvider not bound +!missing-protocol! ASAuthorizationWebBrowserPlatformPublicKeyCredentialRegistrationRequest not bound +!missing-protocol! ASAuthorizationWebBrowserSecurityKeyPublicKeyCredentialAssertionRequest not bound +!missing-protocol! ASAuthorizationWebBrowserSecurityKeyPublicKeyCredentialProvider not bound +!missing-protocol! ASAuthorizationWebBrowserSecurityKeyPublicKeyCredentialRegistrationRequest not bound +!missing-selector! +ASWebAuthenticationSessionCallback::callbackWithCustomScheme: not bound +!missing-selector! +ASWebAuthenticationSessionCallback::callbackWithHTTPSHost:path: not bound +!missing-selector! ASAuthorizationAppleIDCredential::userAgeRange not bound +!missing-selector! ASAuthorizationWebBrowserPlatformPublicKeyCredential::credentialID not bound +!missing-selector! ASAuthorizationWebBrowserPlatformPublicKeyCredential::customTitle not bound +!missing-selector! ASAuthorizationWebBrowserPlatformPublicKeyCredential::name not bound +!missing-selector! ASAuthorizationWebBrowserPlatformPublicKeyCredential::providerName not bound +!missing-selector! ASAuthorizationWebBrowserPlatformPublicKeyCredential::relyingParty not bound +!missing-selector! ASAuthorizationWebBrowserPlatformPublicKeyCredential::userHandle not bound +!missing-selector! ASAuthorizationWebBrowserPublicKeyCredentialManager::authorizationStateForPlatformCredentials not bound +!missing-selector! ASAuthorizationWebBrowserPublicKeyCredentialManager::init not bound +!missing-selector! ASAuthorizationWebBrowserPublicKeyCredentialManager::platformCredentialsForRelyingParty:completionHandler: not bound +!missing-selector! ASAuthorizationWebBrowserPublicKeyCredentialManager::requestAuthorizationForPublicKeyCredentials: not bound +!missing-selector! ASCredentialIdentityStore::getCredentialIdentitiesForService:credentialIdentityTypes:completionHandler: not bound +!missing-selector! ASPublicKeyCredentialClientData::challenge not bound +!missing-selector! ASPublicKeyCredentialClientData::crossOrigin not bound +!missing-selector! ASPublicKeyCredentialClientData::initWithChallenge:origin: not bound +!missing-selector! ASPublicKeyCredentialClientData::origin not bound +!missing-selector! ASPublicKeyCredentialClientData::setChallenge: not bound +!missing-selector! ASPublicKeyCredentialClientData::setCrossOrigin: not bound +!missing-selector! ASPublicKeyCredentialClientData::setOrigin: not bound +!missing-selector! ASPublicKeyCredentialClientData::setTopOrigin: not bound +!missing-selector! ASPublicKeyCredentialClientData::topOrigin not bound +!missing-selector! ASWebAuthenticationSession::additionalHeaderFields not bound +!missing-selector! ASWebAuthenticationSession::initWithURL:callback:completionHandler: not bound +!missing-selector! ASWebAuthenticationSession::setAdditionalHeaderFields: not bound +!missing-selector! ASWebAuthenticationSessionCallback::matchesURL: not bound +!missing-type! ASAuthorizationWebBrowserPlatformPublicKeyCredential not bound +!missing-type! ASAuthorizationWebBrowserPublicKeyCredentialManager not bound +!missing-type! ASPublicKeyCredentialClientData not bound +!missing-type! ASWebAuthenticationSessionCallback not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-BrowserEngineCore.todo b/tests/xtro-sharpie/api-annotations-dotnet/iOS-BrowserEngineCore.todo new file mode 100644 index 000000000000..c4a95b2bb2d6 --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-BrowserEngineCore.todo @@ -0,0 +1,5 @@ +!missing-pinvoke! be_memory_inline_jit_restrict_rwx_to_rw_with_witness is not bound +!missing-pinvoke! be_memory_inline_jit_restrict_rwx_to_rw_with_witness_impl is not bound +!missing-pinvoke! be_memory_inline_jit_restrict_rwx_to_rx_with_witness is not bound +!missing-pinvoke! be_memory_inline_jit_restrict_rwx_to_rx_with_witness_impl is not bound +!missing-pinvoke! be_memory_inline_jit_restrict_with_witness_supported is not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-BrowserEngineKit.todo b/tests/xtro-sharpie/api-annotations-dotnet/iOS-BrowserEngineKit.todo new file mode 100644 index 000000000000..2347460bde1d --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-BrowserEngineKit.todo @@ -0,0 +1,134 @@ +!missing-enum! BEGestureType not bound +!missing-enum! BEKeyModifierFlags not bound +!missing-enum! BEKeyPressState not bound +!missing-enum! BEScrollViewScrollUpdatePhase not bound +!missing-enum! BESelectionFlags not bound +!missing-enum! BESelectionTouchPhase not bound +!missing-enum! BETextDocumentRequestOptions not bound +!missing-enum! BETextReplacementOptions not bound +!missing-protocol! BEDragInteractionDelegate not bound +!missing-protocol! BEExtendedTextInputTraits not bound +!missing-protocol! BEProcessCapabilityGrant not bound +!missing-protocol! BEResponderEditActions not bound +!missing-protocol! BEScrollViewDelegate not bound +!missing-protocol! BETextInput not bound +!missing-protocol! BETextInputDelegate not bound +!missing-protocol! BETextInteractionDelegate not bound +!missing-protocol! BETextSelectionDirectionNavigation not bound +!missing-selector! +BELayerHierarchy::layerHierarchyWithError: not bound +!missing-selector! +BELayerHierarchyHandle::handleWithXPCRepresentation:error: not bound +!missing-selector! +BELayerHierarchyHostingTransactionCoordinator::coordinatorWithError: not bound +!missing-selector! +BELayerHierarchyHostingTransactionCoordinator::coordinatorWithXPCRepresentation:error: not bound +!missing-selector! +BENetworkingProcess::networkProcessWithInterruptionHandler:completion: not bound +!missing-selector! +BEProcessCapability::background not bound +!missing-selector! +BEProcessCapability::foreground not bound +!missing-selector! +BEProcessCapability::mediaPlaybackAndCaptureWithEnvironment: not bound +!missing-selector! +BEProcessCapability::suspended not bound +!missing-selector! +BERenderingProcess::renderingProcessWithInterruptionHandler:completion: not bound +!missing-selector! +BEWebContentProcess::webContentProcessWithInterruptionHandler:completion: not bound +!missing-selector! BEAutoFillTextSuggestion::contents not bound +!missing-selector! BEContextMenuConfiguration::fulfillUsingConfiguration: not bound +!missing-selector! BEContextMenuConfiguration::init not bound +!missing-selector! BEDragInteraction::delegate not bound +!missing-selector! BEDragInteraction::initWithDelegate: not bound +!missing-selector! BEKeyEntry::isKeyRepeating not bound +!missing-selector! BEKeyEntry::key not bound +!missing-selector! BEKeyEntry::state not bound +!missing-selector! BEKeyEntry::timestamp not bound +!missing-selector! BEKeyEntryContext::initWithKeyEntry: not bound +!missing-selector! BEKeyEntryContext::isDocumentEditable not bound +!missing-selector! BEKeyEntryContext::keyEntry not bound +!missing-selector! BEKeyEntryContext::setDocumentEditable: not bound +!missing-selector! BEKeyEntryContext::setShouldEvaluateForInputSystemHandling: not bound +!missing-selector! BEKeyEntryContext::setShouldInsertCharacter: not bound +!missing-selector! BEKeyEntryContext::shouldEvaluateForInputSystemHandling not bound +!missing-selector! BEKeyEntryContext::shouldInsertCharacter not bound +!missing-selector! BELayerHierarchy::handle not bound +!missing-selector! BELayerHierarchy::invalidate not bound +!missing-selector! BELayerHierarchy::layer not bound +!missing-selector! BELayerHierarchy::setLayer: not bound +!missing-selector! BELayerHierarchyHandle::createXPCRepresentation not bound +!missing-selector! BELayerHierarchyHostingTransactionCoordinator::addLayerHierarchy: not bound +!missing-selector! BELayerHierarchyHostingTransactionCoordinator::addLayerHierarchyHostingView: not bound +!missing-selector! BELayerHierarchyHostingTransactionCoordinator::commit not bound +!missing-selector! BELayerHierarchyHostingTransactionCoordinator::createXPCRepresentation not bound +!missing-selector! BELayerHierarchyHostingView::handle not bound +!missing-selector! BELayerHierarchyHostingView::setHandle: not bound +!missing-selector! BEMediaEnvironment::activateWithError: not bound +!missing-selector! BEMediaEnvironment::createXPCRepresentation not bound +!missing-selector! BEMediaEnvironment::initWithWebPageURL: not bound +!missing-selector! BEMediaEnvironment::initWithXPCRepresentation:error: not bound +!missing-selector! BEMediaEnvironment::makeCaptureSessionWithError: not bound +!missing-selector! BEMediaEnvironment::suspendWithError: not bound +!missing-selector! BENetworkingProcess::grantBENetworkingProcess:error: not bound +!missing-selector! BENetworkingProcess::invalidate not bound +!missing-selector! BENetworkingProcess::makeLibXPCConnectionError: not bound +!missing-selector! BEProcessCapability::requestWithError: not bound +!missing-selector! BERenderingProcess::createVisibilityPropagationInteraction not bound +!missing-selector! BERenderingProcess::grantBERenderingProcess:error: not bound +!missing-selector! BERenderingProcess::invalidate not bound +!missing-selector! BERenderingProcess::makeLibXPCConnectionError: not bound +!missing-selector! BEScrollView::delegate not bound +!missing-selector! BEScrollView::setDelegate: not bound +!missing-selector! BEScrollViewScrollUpdate::locationInView: not bound +!missing-selector! BEScrollViewScrollUpdate::phase not bound +!missing-selector! BEScrollViewScrollUpdate::timestamp not bound +!missing-selector! BEScrollViewScrollUpdate::translationInView: not bound +!missing-selector! BETextAlternatives::alternativeStrings not bound +!missing-selector! BETextAlternatives::primaryString not bound +!missing-selector! BETextDocumentContext::addTextRect:forCharacterRange: not bound +!missing-selector! BETextDocumentContext::autocorrectedRanges not bound +!missing-selector! BETextDocumentContext::initWithAttributedSelectedText:contextBefore:contextAfter:markedText:selectedRangeInMarkedText: not bound +!missing-selector! BETextDocumentContext::initWithSelectedText:contextBefore:contextAfter:markedText:selectedRangeInMarkedText: not bound +!missing-selector! BETextDocumentContext::setAutocorrectedRanges: not bound +!missing-selector! BETextDocumentRequest::granularityCount not bound +!missing-selector! BETextDocumentRequest::options not bound +!missing-selector! BETextDocumentRequest::setGranularityCount: not bound +!missing-selector! BETextDocumentRequest::setOptions: not bound +!missing-selector! BETextDocumentRequest::setSurroundingGranularity: not bound +!missing-selector! BETextDocumentRequest::surroundingGranularity not bound +!missing-selector! BETextInteraction::addShortcutForText:fromRect: not bound +!missing-selector! BETextInteraction::contextMenuInteraction not bound +!missing-selector! BETextInteraction::contextMenuInteractionDelegate not bound +!missing-selector! BETextInteraction::delegate not bound +!missing-selector! BETextInteraction::dismissEditMenuForSelection not bound +!missing-selector! BETextInteraction::editabilityChanged not bound +!missing-selector! BETextInteraction::presentEditMenuForSelection not bound +!missing-selector! BETextInteraction::refreshKeyboardUI not bound +!missing-selector! BETextInteraction::selectionBoundaryAdjustedToPoint:touchPhase:flags: not bound +!missing-selector! BETextInteraction::selectionChangedWithGestureAtPoint:gesture:state:flags: not bound +!missing-selector! BETextInteraction::setContextMenuInteractionDelegate: not bound +!missing-selector! BETextInteraction::setDelegate: not bound +!missing-selector! BETextInteraction::shareText:fromRect: not bound +!missing-selector! BETextInteraction::showDictionaryForTextInContext:definingTextInRange:fromRect: not bound +!missing-selector! BETextInteraction::showReplacementsForText: not bound +!missing-selector! BETextInteraction::textSelectionDisplayInteraction not bound +!missing-selector! BETextInteraction::translateText:fromRect: not bound +!missing-selector! BETextInteraction::transliterateChineseForText: not bound +!missing-selector! BETextSuggestion::initWithInputText: not bound +!missing-selector! BETextSuggestion::inputText not bound +!missing-selector! BEWebContentProcess::createVisibilityPropagationInteraction not bound +!missing-selector! BEWebContentProcess::grantBEWebContentProcess:error: not bound +!missing-selector! BEWebContentProcess::invalidate not bound +!missing-selector! BEWebContentProcess::makeLibXPCConnectionError: not bound +!missing-type! BEAutoFillTextSuggestion not bound +!missing-type! BEContextMenuConfiguration not bound +!missing-type! BEDragInteraction not bound +!missing-type! BEKeyEntry not bound +!missing-type! BEKeyEntryContext not bound +!missing-type! BELayerHierarchy not bound +!missing-type! BELayerHierarchyHandle not bound +!missing-type! BELayerHierarchyHostingTransactionCoordinator not bound +!missing-type! BELayerHierarchyHostingView not bound +!missing-type! BEMediaEnvironment not bound +!missing-type! BENetworkingProcess not bound +!missing-type! BEProcessCapability not bound +!missing-type! BERenderingProcess not bound +!missing-type! BEScrollView not bound +!missing-type! BEScrollViewScrollUpdate not bound +!missing-type! BETextAlternatives not bound +!missing-type! BETextDocumentContext not bound +!missing-type! BETextDocumentRequest not bound +!missing-type! BETextInteraction not bound +!missing-type! BETextSuggestion not bound +!missing-type! BEWebContentProcess not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-CarPlay.todo b/tests/xtro-sharpie/api-annotations-dotnet/iOS-CarPlay.todo new file mode 100644 index 000000000000..149b03cef3e8 --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-CarPlay.todo @@ -0,0 +1,58 @@ +!missing-enum! CPJunctionType not bound +!missing-enum! CPLaneStatus not bound +!missing-enum! CPManeuverState not bound +!missing-enum! CPManeuverType not bound +!missing-enum! CPTrafficSide not bound +!missing-protocol-member! CPMapTemplateDelegate::mapTemplateShouldProvideNavigationMetadata: not found +!missing-selector! CPLane::primaryAngle not bound +!missing-selector! CPLane::secondaryAngles not bound +!missing-selector! CPLane::setPrimaryAngle: not bound +!missing-selector! CPLane::setSecondaryAngles: not bound +!missing-selector! CPLane::setStatus: not bound +!missing-selector! CPLane::status not bound +!missing-selector! CPLaneGuidance::instructionVariants not bound +!missing-selector! CPLaneGuidance::lanes not bound +!missing-selector! CPLaneGuidance::setInstructionVariants: not bound +!missing-selector! CPLaneGuidance::setLanes: not bound +!missing-selector! CPListImageRowItem::imageTitles not bound +!missing-selector! CPListImageRowItem::initWithText:images:imageTitles: not bound +!missing-selector! CPListImageRowItem::setImageTitles: not bound +!missing-selector! CPManeuver::highwayExitLabel not bound +!missing-selector! CPManeuver::junctionElementAngles not bound +!missing-selector! CPManeuver::junctionExitAngle not bound +!missing-selector! CPManeuver::junctionType not bound +!missing-selector! CPManeuver::linkedLaneGuidance not bound +!missing-selector! CPManeuver::maneuverType not bound +!missing-selector! CPManeuver::roadFollowingManeuverVariants not bound +!missing-selector! CPManeuver::setHighwayExitLabel: not bound +!missing-selector! CPManeuver::setJunctionElementAngles: not bound +!missing-selector! CPManeuver::setJunctionExitAngle: not bound +!missing-selector! CPManeuver::setJunctionType: not bound +!missing-selector! CPManeuver::setLinkedLaneGuidance: not bound +!missing-selector! CPManeuver::setManeuverType: not bound +!missing-selector! CPManeuver::setRoadFollowingManeuverVariants: not bound +!missing-selector! CPManeuver::setTrafficSide: not bound +!missing-selector! CPManeuver::trafficSide not bound +!missing-selector! CPNavigationSession::addLaneGuidances: not bound +!missing-selector! CPNavigationSession::addManeuvers: not bound +!missing-selector! CPNavigationSession::currentLaneGuidance not bound +!missing-selector! CPNavigationSession::currentRoadNameVariants not bound +!missing-selector! CPNavigationSession::maneuverState not bound +!missing-selector! CPNavigationSession::resumeTripWithUpdatedRouteInformation: not bound +!missing-selector! CPNavigationSession::setCurrentLaneGuidance: not bound +!missing-selector! CPNavigationSession::setCurrentRoadNameVariants: not bound +!missing-selector! CPNavigationSession::setManeuverState: not bound +!missing-selector! CPRouteInformation::currentLaneGuidance not bound +!missing-selector! CPRouteInformation::currentManeuvers not bound +!missing-selector! CPRouteInformation::initWithManeuvers:laneGuidances:currentManeuvers:currentLaneGuidance:tripTravelEstimates:maneuverTravelEstimates: not bound +!missing-selector! CPRouteInformation::laneGuidances not bound +!missing-selector! CPRouteInformation::maneuvers not bound +!missing-selector! CPRouteInformation::maneuverTravelEstimates not bound +!missing-selector! CPRouteInformation::tripTravelEstimates not bound +!missing-selector! CPTravelEstimates::distanceRemainingToDisplay not bound +!missing-selector! CPTravelEstimates::initWithDistanceRemaining:distanceRemainingToDisplay:timeRemaining: not bound +!missing-selector! CPTrip::destinationNameVariants not bound +!missing-selector! CPTrip::setDestinationNameVariants: not bound +!missing-type! CPLane not bound +!missing-type! CPLaneGuidance not bound +!missing-type! CPRouteInformation not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-CoreML.todo b/tests/xtro-sharpie/api-annotations-dotnet/iOS-CoreML.todo new file mode 100644 index 000000000000..cd65c2081202 --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-CoreML.todo @@ -0,0 +1,58 @@ +!missing-enum! MLReshapeFrequencyHint not bound +!missing-selector! +MLComputePlan::loadContentsOfURL:configuration:completionHandler: not bound +!missing-selector! +MLComputePlan::loadModelAsset:configuration:completionHandler: not bound +!missing-selector! +MLModelStructure::loadContentsOfURL:completionHandler: not bound +!missing-selector! +MLModelStructure::loadModelAsset:completionHandler: not bound +!missing-selector! MLComputePlan::computeDeviceUsageForMLProgramOperation: not bound +!missing-selector! MLComputePlan::computeDeviceUsageForNeuralNetworkLayer: not bound +!missing-selector! MLComputePlan::estimatedCostOfMLProgramOperation: not bound +!missing-selector! MLComputePlan::modelStructure not bound +!missing-selector! MLComputePlanCost::weight not bound +!missing-selector! MLComputePlanDeviceUsage::preferredComputeDevice not bound +!missing-selector! MLComputePlanDeviceUsage::supportedComputeDevices not bound +!missing-selector! MLModelConfiguration::optimizationHints not bound +!missing-selector! MLModelConfiguration::setOptimizationHints: not bound +!missing-selector! MLModelStructure::neuralNetwork not bound +!missing-selector! MLModelStructure::pipeline not bound +!missing-selector! MLModelStructure::program not bound +!missing-selector! MLModelStructureNeuralNetwork::layers not bound +!missing-selector! MLModelStructureNeuralNetworkLayer::inputNames not bound +!missing-selector! MLModelStructureNeuralNetworkLayer::name not bound +!missing-selector! MLModelStructureNeuralNetworkLayer::outputNames not bound +!missing-selector! MLModelStructureNeuralNetworkLayer::type not bound +!missing-selector! MLModelStructurePipeline::subModelNames not bound +!missing-selector! MLModelStructurePipeline::subModels not bound +!missing-selector! MLModelStructureProgram::functions not bound +!missing-selector! MLModelStructureProgramArgument::bindings not bound +!missing-selector! MLModelStructureProgramBinding::name not bound +!missing-selector! MLModelStructureProgramBinding::value not bound +!missing-selector! MLModelStructureProgramBlock::inputs not bound +!missing-selector! MLModelStructureProgramBlock::operations not bound +!missing-selector! MLModelStructureProgramBlock::outputNames not bound +!missing-selector! MLModelStructureProgramFunction::block not bound +!missing-selector! MLModelStructureProgramFunction::inputs not bound +!missing-selector! MLModelStructureProgramNamedValueType::name not bound +!missing-selector! MLModelStructureProgramNamedValueType::type not bound +!missing-selector! MLModelStructureProgramOperation::blocks not bound +!missing-selector! MLModelStructureProgramOperation::inputs not bound +!missing-selector! MLModelStructureProgramOperation::operatorName not bound +!missing-selector! MLModelStructureProgramOperation::outputs not bound +!missing-selector! MLOptimizationHints::reshapeFrequency not bound +!missing-selector! MLOptimizationHints::setReshapeFrequency: not bound +!missing-type! MLComputePlan not bound +!missing-type! MLComputePlanCost not bound +!missing-type! MLComputePlanDeviceUsage not bound +!missing-type! MLModelStructure not bound +!missing-type! MLModelStructureNeuralNetwork not bound +!missing-type! MLModelStructureNeuralNetworkLayer not bound +!missing-type! MLModelStructurePipeline not bound +!missing-type! MLModelStructureProgram not bound +!missing-type! MLModelStructureProgramArgument not bound +!missing-type! MLModelStructureProgramBinding not bound +!missing-type! MLModelStructureProgramBlock not bound +!missing-type! MLModelStructureProgramFunction not bound +!missing-type! MLModelStructureProgramNamedValueType not bound +!missing-type! MLModelStructureProgramOperation not bound +!missing-type! MLModelStructureProgramValue not bound +!missing-type! MLModelStructureProgramValueType not bound +!missing-type! MLOptimizationHints not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-FileProvider.todo b/tests/xtro-sharpie/api-annotations-dotnet/iOS-FileProvider.todo new file mode 100644 index 000000000000..f93b23c66048 --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-FileProvider.todo @@ -0,0 +1,3 @@ +!missing-enum-value! NSFileProviderError native value NSFileProviderErrorApplicationExtensionNotFound = -2014 not bound +!missing-enum-value! NSFileProviderError native value NSFileProviderErrorProviderDomainNotFound = -2013 not bound +!missing-enum-value! NSFileProviderError native value NSFileProviderErrorProviderDomainTemporarilyUnavailable = -2012 not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-Foundation.todo b/tests/xtro-sharpie/api-annotations-dotnet/iOS-Foundation.todo new file mode 100644 index 000000000000..cce243852bab --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-Foundation.todo @@ -0,0 +1,7 @@ +!missing-protocol-member! NSFilePresenter::accommodatePresentedItemEvictionWithCompletionHandler: not found +!missing-selector! NSUndoManager::redoCount not bound +!missing-selector! NSUndoManager::undoCount not bound +!missing-selector! NSXPCCoder::decodeXPCObjectOfType:forKey: not bound +!missing-selector! NSXPCCoder::encodeXPCObject:forKey: not bound +!missing-selector! NSXPCInterface::setXPCType:forSelector:argumentIndex:ofReply: not bound +!missing-selector! NSXPCInterface::XPCTypeForSelector:argumentIndex:ofReply: not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-GameController.todo b/tests/xtro-sharpie/api-annotations-dotnet/iOS-GameController.todo index 3498dd2833b8..f4791bccd7fb 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/iOS-GameController.todo +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-GameController.todo @@ -35,3 +35,13 @@ !missing-type! GCControllerInputState not bound !missing-type! GCControllerLiveInput not bound !missing-type! GCPhysicalInputElementCollection not bound +!missing-field! GCInputLeftBumper not bound +!missing-field! GCInputRightBumper not bound +!missing-field! GCPoint2Zero not bound +!missing-pinvoke! GCInputBackLeftButton is not bound +!missing-pinvoke! GCInputBackRightButton is not bound +!missing-pinvoke! NSStringFromGCPoint2 is not bound +!missing-protocol! GCAxis2DInput not bound +!missing-protocol-member! GCDirectionPadElement::xyAxes not found +!missing-selector! +NSValue::valueWithGCPoint2: not bound +!missing-selector! NSValue::GCPoint2Value not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-GameKit.todo b/tests/xtro-sharpie/api-annotations-dotnet/iOS-GameKit.todo new file mode 100644 index 000000000000..fbc685833dbe --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-GameKit.todo @@ -0,0 +1,3 @@ +!deprecated-attribute-missing! GKScoreChallenge::score missing a [Deprecated] attribute +!missing-enum-value! GKError native value GKErrorAppUnlisted = 37 not bound +!missing-selector! GKScoreChallenge::leaderboardEntry not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-HomeKit.todo b/tests/xtro-sharpie/api-annotations-dotnet/iOS-HomeKit.todo new file mode 100644 index 000000000000..4e339b4433d5 --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-HomeKit.todo @@ -0,0 +1 @@ +!missing-enum-value! HMError native value HMErrorCodePartialCommunicationFailure = 104 not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-IOSurface.todo b/tests/xtro-sharpie/api-annotations-dotnet/iOS-IOSurface.todo new file mode 100644 index 000000000000..c6839a4fd0d7 --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-IOSurface.todo @@ -0,0 +1,4 @@ +!deprecated-attribute-missing! IOSurface missing a [Deprecated] attribute +!missing-enum! IOSurfaceMemoryLedgerFlags not bound +!missing-enum! IOSurfaceMemoryLedgerTags not bound +!missing-pinvoke! IOSurfaceSetOwnershipIdentity is not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-ImageIO.todo b/tests/xtro-sharpie/api-annotations-dotnet/iOS-ImageIO.todo new file mode 100644 index 000000000000..4c217d8b7e78 --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-ImageIO.todo @@ -0,0 +1,3 @@ +!missing-field! kCGImagePropertyTIFFXPosition not bound +!missing-field! kCGImagePropertyTIFFYPosition not bound +!missing-pinvoke! CGImageSourceSetAllowableTypes is not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-Intents.todo b/tests/xtro-sharpie/api-annotations-dotnet/iOS-Intents.todo new file mode 100644 index 000000000000..4b974589bf5e --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-Intents.todo @@ -0,0 +1,2 @@ +!missing-field! INCarChargingConnectorTypeNACSAC not bound +!missing-field! INCarChargingConnectorTypeNACSDC not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-MLCompute.todo b/tests/xtro-sharpie/api-annotations-dotnet/iOS-MLCompute.todo index f7d76f9cbafb..d14eb75bf584 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/iOS-MLCompute.todo +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-MLCompute.todo @@ -52,3 +52,4 @@ !deprecated-attribute-missing! MLCUpsampleLayer missing a [Deprecated] attribute !deprecated-attribute-missing! MLCYOLOLossDescriptor missing a [Deprecated] attribute !deprecated-attribute-missing! MLCYOLOLossLayer missing a [Deprecated] attribute +!deprecated-attribute-missing! MLCTensorOptimizerDeviceData missing a [Deprecated] attribute diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-Matter.todo b/tests/xtro-sharpie/api-annotations-dotnet/iOS-Matter.todo index fe1dbd568000..1d707cc1e85c 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/iOS-Matter.todo +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-Matter.todo @@ -36,11 +36,9 @@ !missing-enum! MTRCommandIDType not bound !missing-enum! MTRCommissioningFlow not bound !missing-enum! MTRCommissioningStatus not bound -!missing-enum! MTRContentLauncherContentLaunchStatus not bound !missing-enum! MTRContentLauncherFeature not bound !missing-enum! MTRContentLauncherMetricType not bound !missing-enum! MTRContentLauncherParameter not bound -!missing-enum! MTRContentLauncherSupportedStreamingProtocol not bound !missing-enum! MTRDeviceState not bound !missing-enum! MTRDiagnosticLogsIntent not bound !missing-enum! MTRDiagnosticLogsStatus not bound @@ -102,12 +100,10 @@ !missing-enum! MTRIdentifyType not bound !missing-enum! MTRIlluminanceMeasurementLightSensorType not bound !missing-enum! MTRInteractionErrorCode not bound -!missing-enum! MTRKeypadInputCecKeyCode not bound !missing-enum! MTRKeypadInputFeature not bound !missing-enum! MTRKeypadInputStatus not bound !missing-enum! MTRLevelControlFeature not bound !missing-enum! MTRLevelControlMoveMode not bound -!missing-enum! MTRLevelControlOptions not bound !missing-enum! MTRLevelControlStepMode not bound !missing-enum! MTRLogType not bound !missing-enum! MTRMediaInputFeature not bound @@ -148,17 +144,12 @@ !missing-enum! MTRPumpConfigurationAndControlFeature not bound !missing-enum! MTRPumpConfigurationAndControlOperationMode not bound !missing-enum! MTRPumpConfigurationAndControlPumpStatusBitmap not bound -!missing-enum! MTRScenesCopyMode not bound !missing-enum! MTRScenesFeature not bound !missing-enum! MTRSoftwareDiagnosticsFeature not bound !missing-enum! MTRSwitchFeature not bound !missing-enum! MTRTargetNavigatorStatus not bound -!missing-enum! MTRThermostatControlSequence not bound -!missing-enum! MTRThermostatDayOfWeek not bound !missing-enum! MTRThermostatFeature not bound -!missing-enum! MTRThermostatModeForSequence not bound !missing-enum! MTRThermostatRunningMode not bound -!missing-enum! MTRThermostatSetpointAdjustMode not bound !missing-enum! MTRThermostatSystemMode not bound !missing-enum! MTRThreadNetworkDiagnosticsConnectionStatus not bound !missing-enum! MTRThreadNetworkDiagnosticsFeature not bound @@ -8432,12 +8423,6 @@ !missing-selector! MTRThermostatClusterSetWeeklyScheduleParams::setTransitions: not bound !missing-selector! MTRThermostatClusterSetWeeklyScheduleParams::timedInvokeTimeoutMs not bound !missing-selector! MTRThermostatClusterSetWeeklyScheduleParams::transitions not bound -!missing-selector! MTRThermostatClusterThermostatScheduleTransition::coolSetpoint not bound -!missing-selector! MTRThermostatClusterThermostatScheduleTransition::heatSetpoint not bound -!missing-selector! MTRThermostatClusterThermostatScheduleTransition::setCoolSetpoint: not bound -!missing-selector! MTRThermostatClusterThermostatScheduleTransition::setHeatSetpoint: not bound -!missing-selector! MTRThermostatClusterThermostatScheduleTransition::setTransitionTime: not bound -!missing-selector! MTRThermostatClusterThermostatScheduleTransition::transitionTime not bound !missing-selector! MTRThreadNetworkDiagnosticsClusterConnectionStatusEvent::connectionStatus not bound !missing-selector! MTRThreadNetworkDiagnosticsClusterConnectionStatusEvent::setConnectionStatus: not bound !missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::age not bound @@ -8925,8 +8910,6 @@ !missing-selector! MTRUserLabelClusterLabelStruct::setLabel: not bound !missing-selector! MTRUserLabelClusterLabelStruct::setValue: not bound !missing-selector! MTRUserLabelClusterLabelStruct::value not bound -!missing-selector! MTRWiFiNetworkDiagnosticsClusterAssociationFailureEvent::associationFailure not bound -!missing-selector! MTRWiFiNetworkDiagnosticsClusterAssociationFailureEvent::setAssociationFailure: not bound !missing-selector! MTRWiFiNetworkDiagnosticsClusterAssociationFailureEvent::setStatus: not bound !missing-selector! MTRWiFiNetworkDiagnosticsClusterAssociationFailureEvent::status not bound !missing-selector! MTRWiFiNetworkDiagnosticsClusterConnectionStatusEvent::connectionStatus not bound @@ -9433,7 +9416,6 @@ !missing-type! MTRThermostatClusterGetWeeklyScheduleResponseParams not bound !missing-type! MTRThermostatClusterSetpointRaiseLowerParams not bound !missing-type! MTRThermostatClusterSetWeeklyScheduleParams not bound -!missing-type! MTRThermostatClusterThermostatScheduleTransition not bound !missing-type! MTRThreadNetworkDiagnosticsClusterConnectionStatusEvent not bound !missing-type! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct not bound !missing-type! MTRThreadNetworkDiagnosticsClusterNetworkFaultChangeEvent not bound @@ -9520,3 +9502,383 @@ !missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::timeSource not bound !missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::utcTime not bound !missing-type! MTRTimeSynchronizationClusterSetUTCTimeParams not bound +!missing-enum! MTRAdministratorCommissioningFeature not bound +!missing-enum! MTRContentLauncherStatus not bound +!missing-enum! MTRContentLauncherSupportedProtocolsBitmap not bound +!missing-enum! MTRKeypadInputCECKeyCode not bound +!missing-enum! MTRLevelControlOptionsBitmap not bound +!missing-enum! MTROperationalState not bound +!missing-enum! MTROperationalStateErrorState not bound +!missing-enum! MTRRVCCleanModeFeature not bound +!missing-enum! MTRRVCCleanModeModeTag not bound +!missing-enum! MTRRVCCleanModeStatusCode not bound +!missing-enum! MTRRVCOperationalStateErrorState not bound +!missing-enum! MTRRVCOperationalStateOperationalState not bound +!missing-enum! MTRRVCRunModeFeature not bound +!missing-enum! MTRRVCRunModeModeTag not bound +!missing-enum! MTRRVCRunModeStatusCode not bound +!missing-enum! MTRScenesCopyModeBitmap not bound +!missing-enum! MTRThermostatControlSequenceOfOperation not bound +!missing-enum! MTRThermostatScheduleDayOfWeekBitmap not bound +!missing-enum! MTRThermostatScheduleModeBitmap not bound +!missing-enum! MTRThermostatSetpointRaiseLowerMode not bound +!missing-enum! MTRThermostatUserInterfaceConfigurationKeypadLockout not bound +!missing-enum! MTRThermostatUserInterfaceConfigurationScheduleProgrammingVisibility not bound +!missing-enum! MTRThermostatUserInterfaceConfigurationTemperatureDisplayMode not bound +!missing-field! MTREventIsHistoricalKey not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeAcceptedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeAttributeListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeClusterRevisionWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeCountdownTimeWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeCurrentPhaseWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeFeatureMapWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeGeneratedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeOperationalErrorWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeOperationalStateListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeOperationalStateWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributePhaseListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterPowerSource::readAttributeEndpointListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeAcceptedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeAttributeListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeClusterRevisionWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeCurrentModeWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeFeatureMapWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeGeneratedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeSupportedModesWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeAcceptedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeAttributeListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeClusterRevisionWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeCountdownTimeWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeCurrentPhaseWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeFeatureMapWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeGeneratedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeOperationalErrorWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeOperationalStateListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeOperationalStateWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributePhaseListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeAcceptedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeAttributeListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeClusterRevisionWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeCurrentModeWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeFeatureMapWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeGeneratedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeSupportedModesWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! MTRBaseClusterApplicationLauncher::hideAppWithCompletion: not bound +!missing-selector! MTRBaseClusterApplicationLauncher::launchAppWithCompletion: not bound +!missing-selector! MTRBaseClusterApplicationLauncher::stopAppWithCompletion: not bound +!missing-selector! MTRBaseClusterDoorLock::lockDoorWithCompletion: not bound +!missing-selector! MTRBaseClusterDoorLock::unlockDoorWithCompletion: not bound +!missing-selector! MTRBaseClusterNetworkCommissioning::scanNetworksWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRBaseClusterOperationalState::pauseWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::pauseWithParams:completion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeAcceptedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeAttributeListWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeClusterRevisionWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeCountdownTimeWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeCurrentPhaseWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeFeatureMapWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeGeneratedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeOperationalErrorWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeOperationalStateListWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeOperationalStateWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributePhaseListWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::resumeWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::resumeWithParams:completion: not bound +!missing-selector! MTRBaseClusterOperationalState::startWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::startWithParams:completion: not bound +!missing-selector! MTRBaseClusterOperationalState::stopWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::stopWithParams:completion: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeAcceptedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeAttributeListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeClusterRevisionWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeCountdownTimeWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeCurrentPhaseWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeFeatureMapWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeGeneratedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeOperationalErrorWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeOperationalStateListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeOperationalStateWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributePhaseListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterPowerSource::readAttributeEndpointListWithCompletion: not bound +!missing-selector! MTRBaseClusterPowerSource::subscribeAttributeEndpointListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::changeToModeWithParams:completion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeAcceptedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeAttributeListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeClusterRevisionWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeCurrentModeWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeFeatureMapWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeGeneratedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeSupportedModesWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeAcceptedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeAttributeListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeClusterRevisionWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeCurrentModeWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeFeatureMapWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeGeneratedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeSupportedModesWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::pauseWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::pauseWithParams:completion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeAcceptedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeAttributeListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeClusterRevisionWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeCountdownTimeWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeCurrentPhaseWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeFeatureMapWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeGeneratedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeOperationalErrorWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeOperationalStateListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeOperationalStateWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributePhaseListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::resumeWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::resumeWithParams:completion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeAcceptedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeAttributeListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeClusterRevisionWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeCountdownTimeWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeCurrentPhaseWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeFeatureMapWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeGeneratedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeOperationalErrorWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeOperationalStateListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeOperationalStateWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributePhaseListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::changeToModeWithParams:completion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeAcceptedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeAttributeListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeClusterRevisionWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeCurrentModeWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeFeatureMapWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeGeneratedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeSupportedModesWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeAcceptedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeAttributeListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeClusterRevisionWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeCurrentModeWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeFeatureMapWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeGeneratedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeSupportedModesWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterUnitTesting::testNullableOptionalRequestWithCompletion: not bound +!missing-selector! MTRBaseClusterUnitTesting::testSimpleOptionalArgumentRequestWithCompletion: not bound +!missing-selector! MTRCluster::endpointID not bound +!missing-selector! MTRClusterApplicationLauncher::hideAppWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterApplicationLauncher::launchAppWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterApplicationLauncher::stopAppWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterDoorLock::lockDoorWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterDoorLock::unlockDoorWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterNetworkCommissioning::scanNetworksWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRClusterOperationalState::pauseWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::pauseWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::readAttributeAcceptedCommandListWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeAttributeListWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeClusterRevisionWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeCountdownTimeWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeCurrentPhaseWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeFeatureMapWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeGeneratedCommandListWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeOperationalErrorWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeOperationalStateListWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeOperationalStateWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributePhaseListWithParams: not bound +!missing-selector! MTRClusterOperationalState::resumeWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::resumeWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::startWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::startWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::stopWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::stopWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterPowerSource::readAttributeEndpointListWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::changeToModeWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterRVCCleanMode::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeAcceptedCommandListWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeAttributeListWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeClusterRevisionWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeCurrentModeWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeFeatureMapWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeGeneratedCommandListWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeSupportedModesWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRClusterRVCOperationalState::pauseWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterRVCOperationalState::pauseWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeAcceptedCommandListWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeAttributeListWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeClusterRevisionWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeCountdownTimeWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeCurrentPhaseWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeFeatureMapWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeGeneratedCommandListWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeOperationalErrorWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeOperationalStateListWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeOperationalStateWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributePhaseListWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::resumeWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterRVCOperationalState::resumeWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterRVCRunMode::changeToModeWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterRVCRunMode::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeAcceptedCommandListWithParams: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeAttributeListWithParams: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeClusterRevisionWithParams: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeCurrentModeWithParams: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeFeatureMapWithParams: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeGeneratedCommandListWithParams: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeSupportedModesWithParams: not bound +!missing-selector! MTRClusterUnitTesting::testNullableOptionalRequestWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterUnitTesting::testSimpleOptionalArgumentRequestWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRDevice::deviceController not bound +!missing-selector! MTRDevice::invokeCommandWithEndpointID:clusterID:commandID:commandFields:expectedValues:expectedValueInterval:queue:completion: not bound +!missing-selector! MTRDevice::nodeID not bound +!missing-selector! MTRGenericCluster::device not bound +!missing-selector! MTROperationalStateClusterErrorStateStruct::errorStateDetails not bound +!missing-selector! MTROperationalStateClusterErrorStateStruct::errorStateID not bound +!missing-selector! MTROperationalStateClusterErrorStateStruct::errorStateLabel not bound +!missing-selector! MTROperationalStateClusterErrorStateStruct::setErrorStateDetails: not bound +!missing-selector! MTROperationalStateClusterErrorStateStruct::setErrorStateID: not bound +!missing-selector! MTROperationalStateClusterErrorStateStruct::setErrorStateLabel: not bound +!missing-selector! MTROperationalStateClusterOperationalCommandResponseParams::commandResponseState not bound +!missing-selector! MTROperationalStateClusterOperationalCommandResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTROperationalStateClusterOperationalCommandResponseParams::setCommandResponseState: not bound +!missing-selector! MTROperationalStateClusterOperationalErrorEvent::errorState not bound +!missing-selector! MTROperationalStateClusterOperationalErrorEvent::setErrorState: not bound +!missing-selector! MTROperationalStateClusterOperationalStateStruct::operationalStateID not bound +!missing-selector! MTROperationalStateClusterOperationalStateStruct::operationalStateLabel not bound +!missing-selector! MTROperationalStateClusterOperationalStateStruct::setOperationalStateID: not bound +!missing-selector! MTROperationalStateClusterOperationalStateStruct::setOperationalStateLabel: not bound +!missing-selector! MTROperationalStateClusterOperationCompletionEvent::completionErrorCode not bound +!missing-selector! MTROperationalStateClusterOperationCompletionEvent::pausedTime not bound +!missing-selector! MTROperationalStateClusterOperationCompletionEvent::setCompletionErrorCode: not bound +!missing-selector! MTROperationalStateClusterOperationCompletionEvent::setPausedTime: not bound +!missing-selector! MTROperationalStateClusterOperationCompletionEvent::setTotalOperationalTime: not bound +!missing-selector! MTROperationalStateClusterOperationCompletionEvent::totalOperationalTime not bound +!missing-selector! MTROperationalStateClusterPauseParams::serverSideProcessingTimeout not bound +!missing-selector! MTROperationalStateClusterPauseParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTROperationalStateClusterPauseParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTROperationalStateClusterPauseParams::timedInvokeTimeoutMs not bound +!missing-selector! MTROperationalStateClusterResumeParams::serverSideProcessingTimeout not bound +!missing-selector! MTROperationalStateClusterResumeParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTROperationalStateClusterResumeParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTROperationalStateClusterResumeParams::timedInvokeTimeoutMs not bound +!missing-selector! MTROperationalStateClusterStartParams::serverSideProcessingTimeout not bound +!missing-selector! MTROperationalStateClusterStartParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTROperationalStateClusterStartParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTROperationalStateClusterStartParams::timedInvokeTimeoutMs not bound +!missing-selector! MTROperationalStateClusterStopParams::serverSideProcessingTimeout not bound +!missing-selector! MTROperationalStateClusterStopParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTROperationalStateClusterStopParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTROperationalStateClusterStopParams::timedInvokeTimeoutMs not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::getNewMode not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::serverSideProcessingTimeout not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::setNewMode: not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::timedInvokeTimeoutMs not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeResponseParams::setStatus: not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeResponseParams::setStatusText: not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeResponseParams::status not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeResponseParams::statusText not bound +!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::label not bound +!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::mode not bound +!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::modeTags not bound +!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::setLabel: not bound +!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::setMode: not bound +!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::setModeTags: not bound +!missing-selector! MTRRVCCleanModeClusterModeTagStruct::mfgCode not bound +!missing-selector! MTRRVCCleanModeClusterModeTagStruct::setMfgCode: not bound +!missing-selector! MTRRVCCleanModeClusterModeTagStruct::setValue: not bound +!missing-selector! MTRRVCCleanModeClusterModeTagStruct::value not bound +!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::errorStateDetails not bound +!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::errorStateID not bound +!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::errorStateLabel not bound +!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::setErrorStateDetails: not bound +!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::setErrorStateID: not bound +!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::setErrorStateLabel: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalCommandResponseParams::commandResponseState not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalCommandResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalCommandResponseParams::setCommandResponseState: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalErrorEvent::errorState not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalErrorEvent::setErrorState: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalStateStruct::operationalStateID not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalStateStruct::operationalStateLabel not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalStateStruct::setOperationalStateID: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalStateStruct::setOperationalStateLabel: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::completionErrorCode not bound +!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::pausedTime not bound +!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::setCompletionErrorCode: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::setPausedTime: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::setTotalOperationalTime: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::totalOperationalTime not bound +!missing-selector! MTRRVCOperationalStateClusterPauseParams::serverSideProcessingTimeout not bound +!missing-selector! MTRRVCOperationalStateClusterPauseParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTRRVCOperationalStateClusterPauseParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTRRVCOperationalStateClusterPauseParams::timedInvokeTimeoutMs not bound +!missing-selector! MTRRVCOperationalStateClusterResumeParams::serverSideProcessingTimeout not bound +!missing-selector! MTRRVCOperationalStateClusterResumeParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTRRVCOperationalStateClusterResumeParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTRRVCOperationalStateClusterResumeParams::timedInvokeTimeoutMs not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeParams::getNewMode not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeParams::serverSideProcessingTimeout not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeParams::setNewMode: not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeParams::timedInvokeTimeoutMs not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeResponseParams::setStatus: not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeResponseParams::setStatusText: not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeResponseParams::status not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeResponseParams::statusText not bound +!missing-selector! MTRRVCRunModeClusterModeOptionStruct::label not bound +!missing-selector! MTRRVCRunModeClusterModeOptionStruct::mode not bound +!missing-selector! MTRRVCRunModeClusterModeOptionStruct::modeTags not bound +!missing-selector! MTRRVCRunModeClusterModeOptionStruct::setLabel: not bound +!missing-selector! MTRRVCRunModeClusterModeOptionStruct::setMode: not bound +!missing-selector! MTRRVCRunModeClusterModeOptionStruct::setModeTags: not bound +!missing-selector! MTRRVCRunModeClusterModeTagStruct::mfgCode not bound +!missing-selector! MTRRVCRunModeClusterModeTagStruct::setMfgCode: not bound +!missing-selector! MTRRVCRunModeClusterModeTagStruct::setValue: not bound +!missing-selector! MTRRVCRunModeClusterModeTagStruct::value not bound +!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::coolSetpoint not bound +!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::heatSetpoint not bound +!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::setCoolSetpoint: not bound +!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::setHeatSetpoint: not bound +!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::setTransitionTime: not bound +!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::transitionTime not bound +!missing-selector! MTRWiFiNetworkDiagnosticsClusterAssociationFailureEvent::associationFailureCause not bound +!missing-selector! MTRWiFiNetworkDiagnosticsClusterAssociationFailureEvent::setAssociationFailureCause: not bound +!missing-type! MTRBaseClusterOperationalState not bound +!missing-type! MTRBaseClusterRVCCleanMode not bound +!missing-type! MTRBaseClusterRVCOperationalState not bound +!missing-type! MTRBaseClusterRVCRunMode not bound +!missing-type! MTRClusterOperationalState not bound +!missing-type! MTRClusterRVCCleanMode not bound +!missing-type! MTRClusterRVCOperationalState not bound +!missing-type! MTRClusterRVCRunMode not bound +!missing-type! MTRGenericBaseCluster not bound +!missing-type! MTRGenericCluster not bound +!missing-type! MTROperationalStateClusterErrorStateStruct not bound +!missing-type! MTROperationalStateClusterOperationalCommandResponseParams not bound +!missing-type! MTROperationalStateClusterOperationalErrorEvent not bound +!missing-type! MTROperationalStateClusterOperationalStateStruct not bound +!missing-type! MTROperationalStateClusterOperationCompletionEvent not bound +!missing-type! MTROperationalStateClusterPauseParams not bound +!missing-type! MTROperationalStateClusterResumeParams not bound +!missing-type! MTROperationalStateClusterStartParams not bound +!missing-type! MTROperationalStateClusterStopParams not bound +!missing-type! MTRRVCCleanModeClusterChangeToModeParams not bound +!missing-type! MTRRVCCleanModeClusterChangeToModeResponseParams not bound +!missing-type! MTRRVCCleanModeClusterModeOptionStruct not bound +!missing-type! MTRRVCCleanModeClusterModeTagStruct not bound +!missing-type! MTRRVCOperationalStateClusterErrorStateStruct not bound +!missing-type! MTRRVCOperationalStateClusterOperationalCommandResponseParams not bound +!missing-type! MTRRVCOperationalStateClusterOperationalErrorEvent not bound +!missing-type! MTRRVCOperationalStateClusterOperationalStateStruct not bound +!missing-type! MTRRVCOperationalStateClusterOperationCompletionEvent not bound +!missing-type! MTRRVCOperationalStateClusterPauseParams not bound +!missing-type! MTRRVCOperationalStateClusterResumeParams not bound +!missing-type! MTRRVCRunModeClusterChangeToModeParams not bound +!missing-type! MTRRVCRunModeClusterChangeToModeResponseParams not bound +!missing-type! MTRRVCRunModeClusterModeOptionStruct not bound +!missing-type! MTRRVCRunModeClusterModeTagStruct not bound +!missing-type! MTRThermostatClusterWeeklyScheduleTransitionStruct not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-Metal.todo b/tests/xtro-sharpie/api-annotations-dotnet/iOS-Metal.todo new file mode 100644 index 000000000000..1bb2b6b6ef03 --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-Metal.todo @@ -0,0 +1,2 @@ +!missing-protocol-member! MTLResource::setOwnerWithIdentity: not found +!missing-protocol-member! MTLSharedEvent::waitUntilSignaledValue:timeoutMS: not found diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-MetalPerformanceShadersGraph.todo b/tests/xtro-sharpie/api-annotations-dotnet/iOS-MetalPerformanceShadersGraph.todo index 41e7d3e02722..bb4ab4a4bab1 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/iOS-MetalPerformanceShadersGraph.todo +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-MetalPerformanceShadersGraph.todo @@ -342,3 +342,5 @@ !wrong-base-type! MPSGraphTensor expected MPSGraphObject actual NSObject !wrong-base-type! MPSGraphTensorData expected MPSGraphObject actual NSObject !wrong-base-type! MPSGraphType expected MPSGraphObject actual NSObject +!missing-selector! MPSGraph::sliceUpdateDataTensor:updateTensor:starts:ends:strides:startMask:endMask:squeezeMask:name: not bound +!missing-selector! MPSGraph::sliceUpdateDataTensor:updateTensor:startsTensor:endsTensor:stridesTensor:startMask:endMask:squeezeMask:name: not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-NetworkExtension.todo b/tests/xtro-sharpie/api-annotations-dotnet/iOS-NetworkExtension.todo new file mode 100644 index 000000000000..feba76486668 --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-NetworkExtension.todo @@ -0,0 +1,2 @@ +!missing-selector! NEVPNProtocol::excludeDeviceCommunication not bound +!missing-selector! NEVPNProtocol::setExcludeDeviceCommunication: not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-PassKit.todo b/tests/xtro-sharpie/api-annotations-dotnet/iOS-PassKit.todo new file mode 100644 index 000000000000..94f814a8e4ad --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-PassKit.todo @@ -0,0 +1 @@ +!missing-field! PKPaymentNetworkMeeza not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-PencilKit.todo b/tests/xtro-sharpie/api-annotations-dotnet/iOS-PencilKit.todo new file mode 100644 index 000000000000..9041a74cc57f --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-PencilKit.todo @@ -0,0 +1 @@ +!missing-enum-value! PKContentVersion native value PKContentVersionLatest = 3 not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-SafariServices.todo b/tests/xtro-sharpie/api-annotations-dotnet/iOS-SafariServices.todo new file mode 100644 index 000000000000..01525fe21402 --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-SafariServices.todo @@ -0,0 +1 @@ +!missing-protocol! SFAddToHomeScreenActivityItem not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-SensorKit.todo b/tests/xtro-sharpie/api-annotations-dotnet/iOS-SensorKit.todo index 530e5dd75ebd..6d49b59bfa4a 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/iOS-SensorKit.todo +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-SensorKit.todo @@ -46,3 +46,55 @@ !missing-type! SRWristTemperature not bound !missing-type! SRWristTemperatureSession not bound !missing-selector! SRSpeechMetrics::timeSinceAudioStart not bound +!missing-enum! SRElectrocardiogramDataFlags not bound +!missing-enum! SRElectrocardiogramLead not bound +!missing-enum! SRElectrocardiogramSessionGuidance not bound +!missing-enum! SRElectrocardiogramSessionState not bound +!missing-field! SRPhotoplethysmogramOpticalSampleConditionSignalSaturation not bound +!missing-field! SRPhotoplethysmogramOpticalSampleConditionUnreliableNoise not bound +!missing-field! SRPhotoplethysmogramSampleUsageBackgroundSystem not bound +!missing-field! SRPhotoplethysmogramSampleUsageDeepBreathing not bound +!missing-field! SRPhotoplethysmogramSampleUsageForegroundBloodOxygen not bound +!missing-field! SRPhotoplethysmogramSampleUsageForegroundHeartRate not bound +!missing-field! SRSensorElectrocardiogram not bound +!missing-field! SRSensorPhotoplethysmogram not bound +!missing-selector! SRElectrocardiogramData::flags not bound +!missing-selector! SRElectrocardiogramData::value not bound +!missing-selector! SRElectrocardiogramSample::data not bound +!missing-selector! SRElectrocardiogramSample::date not bound +!missing-selector! SRElectrocardiogramSample::frequency not bound +!missing-selector! SRElectrocardiogramSample::lead not bound +!missing-selector! SRElectrocardiogramSample::session not bound +!missing-selector! SRElectrocardiogramSession::identifier not bound +!missing-selector! SRElectrocardiogramSession::sessionGuidance not bound +!missing-selector! SRElectrocardiogramSession::state not bound +!missing-selector! SRPhotoplethysmogramAccelerometerSample::nanosecondsSinceStart not bound +!missing-selector! SRPhotoplethysmogramAccelerometerSample::samplingFrequency not bound +!missing-selector! SRPhotoplethysmogramAccelerometerSample::x not bound +!missing-selector! SRPhotoplethysmogramAccelerometerSample::y not bound +!missing-selector! SRPhotoplethysmogramAccelerometerSample::z not bound +!missing-selector! SRPhotoplethysmogramOpticalSample::activePhotodiodeIndexes not bound +!missing-selector! SRPhotoplethysmogramOpticalSample::backgroundNoise not bound +!missing-selector! SRPhotoplethysmogramOpticalSample::backgroundNoiseOffset not bound +!missing-selector! SRPhotoplethysmogramOpticalSample::conditions not bound +!missing-selector! SRPhotoplethysmogramOpticalSample::effectiveWavelength not bound +!missing-selector! SRPhotoplethysmogramOpticalSample::emitter not bound +!missing-selector! SRPhotoplethysmogramOpticalSample::nanosecondsSinceStart not bound +!missing-selector! SRPhotoplethysmogramOpticalSample::nominalWavelength not bound +!missing-selector! SRPhotoplethysmogramOpticalSample::normalizedReflectance not bound +!missing-selector! SRPhotoplethysmogramOpticalSample::pinkNoise not bound +!missing-selector! SRPhotoplethysmogramOpticalSample::samplingFrequency not bound +!missing-selector! SRPhotoplethysmogramOpticalSample::signalIdentifier not bound +!missing-selector! SRPhotoplethysmogramOpticalSample::whiteNoise not bound +!missing-selector! SRPhotoplethysmogramSample::accelerometerSamples not bound +!missing-selector! SRPhotoplethysmogramSample::nanosecondsSinceStart not bound +!missing-selector! SRPhotoplethysmogramSample::opticalSamples not bound +!missing-selector! SRPhotoplethysmogramSample::startDate not bound +!missing-selector! SRPhotoplethysmogramSample::temperature not bound +!missing-selector! SRPhotoplethysmogramSample::usage not bound +!missing-type! SRElectrocardiogramData not bound +!missing-type! SRElectrocardiogramSample not bound +!missing-type! SRElectrocardiogramSession not bound +!missing-type! SRPhotoplethysmogramAccelerometerSample not bound +!missing-type! SRPhotoplethysmogramOpticalSample not bound +!missing-type! SRPhotoplethysmogramSample not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-SystemConfiguration.todo b/tests/xtro-sharpie/api-annotations-dotnet/iOS-SystemConfiguration.todo new file mode 100644 index 000000000000..3af4b652b589 --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-SystemConfiguration.todo @@ -0,0 +1,8 @@ +!deprecated-attribute-missing! SCNetworkReachabilityCreateWithAddress missing a [Deprecated] attribute +!deprecated-attribute-missing! SCNetworkReachabilityCreateWithAddressPair missing a [Deprecated] attribute +!deprecated-attribute-missing! SCNetworkReachabilityCreateWithName missing a [Deprecated] attribute +!deprecated-attribute-missing! SCNetworkReachabilityGetFlags missing a [Deprecated] attribute +!deprecated-attribute-missing! SCNetworkReachabilityScheduleWithRunLoop missing a [Deprecated] attribute +!deprecated-attribute-missing! SCNetworkReachabilitySetCallback missing a [Deprecated] attribute +!deprecated-attribute-missing! SCNetworkReachabilitySetDispatchQueue missing a [Deprecated] attribute +!deprecated-attribute-missing! SCNetworkReachabilityUnscheduleFromRunLoop missing a [Deprecated] attribute diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-UIKit.todo b/tests/xtro-sharpie/api-annotations-dotnet/iOS-UIKit.todo new file mode 100644 index 000000000000..a738af55c2a6 --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-UIKit.todo @@ -0,0 +1,37 @@ +!missing-enum-value! UIDatePickerMode native value UIDatePickerModeYearAndMonth = 4 not bound +!missing-field! UITextContentTypeCellularEID not bound +!missing-field! UITextContentTypeCellularIMEI not bound +!missing-protocol! UIItemProviderReadingAugmentationDesignating not bound +!missing-protocol! UIItemProviderReadingAugmentationProviding not bound +!missing-protocol-member! UITextInput::caretTransformForPosition: not found +!missing-selector! NSItemProvider::_availableTypes not bound +!missing-selector! UIControl::performPrimaryAction not bound +!missing-selector! UIDragItem::setNeedsDropPreviewUpdate not bound +!missing-selector! UIMenu::displayPreferences not bound +!missing-selector! UIMenu::setDisplayPreferences: not bound +!missing-selector! UIMenuDisplayPreferences::maximumNumberOfTitleLines not bound +!missing-selector! UIMenuDisplayPreferences::setMaximumNumberOfTitleLines: not bound +!missing-selector! UIScrollView::bouncesHorizontally not bound +!missing-selector! UIScrollView::bouncesVertically not bound +!missing-selector! UIScrollView::contentAlignmentPoint not bound +!missing-selector! UIScrollView::isScrollAnimating not bound +!missing-selector! UIScrollView::isZoomAnimating not bound +!missing-selector! UIScrollView::setBouncesHorizontally: not bound +!missing-selector! UIScrollView::setBouncesVertically: not bound +!missing-selector! UIScrollView::setContentAlignmentPoint: not bound +!missing-selector! UIScrollView::setTransfersHorizontalScrollingToParent: not bound +!missing-selector! UIScrollView::setTransfersVerticalScrollingToParent: not bound +!missing-selector! UIScrollView::stopScrollingAndZooming not bound +!missing-selector! UIScrollView::transfersHorizontalScrollingToParent not bound +!missing-selector! UIScrollView::transfersVerticalScrollingToParent not bound +!missing-selector! UIScrollView::withScrollIndicatorsShownForContentOffsetChanges: not bound +!missing-selector! UITextCursorDropPositionAnimator::animateAlongsideChanges:completion: not bound +!missing-selector! UITextCursorDropPositionAnimator::cursorView not bound +!missing-selector! UITextCursorDropPositionAnimator::initWithTextCursorView:textInput: not bound +!missing-selector! UITextCursorDropPositionAnimator::placeCursorAtPosition:animated: not bound +!missing-selector! UITextCursorDropPositionAnimator::setCursorVisible:animated: not bound +!missing-selector! UITextCursorDropPositionAnimator::textInput not bound +!missing-selector! UITextSelectionRect::transform not bound +!missing-type! UIMenuDisplayPreferences not bound +!missing-type! UIStandardTextCursorView not bound +!missing-type! UITextCursorDropPositionAnimator not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-VideoSubscriberAccount.todo b/tests/xtro-sharpie/api-annotations-dotnet/iOS-VideoSubscriberAccount.todo new file mode 100644 index 000000000000..b325adc0448d --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-VideoSubscriberAccount.todo @@ -0,0 +1,8 @@ +!missing-selector! VSAppleSubscription::customerID not bound +!missing-selector! VSAppleSubscription::initWithCustomerID:productCodes: not bound +!missing-selector! VSAppleSubscription::productCodes not bound +!missing-selector! VSAppleSubscription::setCustomerID: not bound +!missing-selector! VSAppleSubscription::setProductCodes: not bound +!missing-selector! VSUserAccount::appleSubscription not bound +!missing-selector! VSUserAccount::setAppleSubscription: not bound +!missing-type! VSAppleSubscription not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-VideoToolbox.ignore b/tests/xtro-sharpie/api-annotations-dotnet/iOS-VideoToolbox.ignore index c25a07669c8d..6be06ae37e08 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/iOS-VideoToolbox.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-VideoToolbox.ignore @@ -4,4 +4,3 @@ ## availability macro says iOS 8.0 but constants are under a #if !TARGET_OS_IPHONE define. ## introspection does not report them as missing... -!unknown-field! kVTCompressionPropertyKey_UsingHardwareAcceleratedVideoEncoder bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-VideoToolbox.todo b/tests/xtro-sharpie/api-annotations-dotnet/iOS-VideoToolbox.todo index cccf05ac9c53..060e298c5b6b 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/iOS-VideoToolbox.todo +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-VideoToolbox.todo @@ -15,3 +15,11 @@ !missing-pinvoke! VTIsStereoMVHEVCEncodeSupported is not bound !missing-field! kVTCompressionPropertyKey_HasLeftStereoEyeView not bound !missing-field! kVTCompressionPropertyKey_HasRightStereoEyeView not bound +!missing-field! kVTCompressionPropertyKey_CalculateMeanSquaredError not bound +!missing-field! kVTCompressionPropertyKey_HorizontalFieldOfView not bound +!missing-field! kVTSampleAttachmentKey_QualityMetrics not bound +!missing-field! kVTSampleAttachmentQualityMetricsKey_ChromaBlueMeanSquaredError not bound +!missing-field! kVTSampleAttachmentQualityMetricsKey_ChromaRedMeanSquaredError not bound +!missing-field! kVTSampleAttachmentQualityMetricsKey_LumaMeanSquaredError not bound +!missing-field! kVTVideoEncoderSpecification_EnableHardwareAcceleratedVideoEncoder not bound +!missing-field! kVTVideoEncoderSpecification_RequireHardwareAcceleratedVideoEncoder not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-AVFoundation.todo b/tests/xtro-sharpie/api-annotations-dotnet/macOS-AVFoundation.todo index bfd7946624f8..64e5fbcbef8b 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/macOS-AVFoundation.todo +++ b/tests/xtro-sharpie/api-annotations-dotnet/macOS-AVFoundation.todo @@ -472,7 +472,6 @@ !missing-selector! AVCaptureDeviceFormat::zoomFactorsOutsideOfVideoZoomRangesForDepthDeliverySupported not bound !missing-selector! AVPlayer::setVideoOutput: not bound !missing-selector! AVPlayer::videoOutput not bound -!missing-selector! AVPlayerItemErrorLogEvent::allHTTPResponseHeaderFields not bound !missing-selector! AVPlayerVideoOutput::copyTaggedBufferGroupForHostTime:presentationTimeStamp:activeConfiguration: not bound !missing-selector! AVPlayerVideoOutput::initWithSpecification: not bound !missing-selector! AVPlayerVideoOutputConfiguration::activationTime not bound @@ -490,3 +489,21 @@ !missing-type! AVPlayerVideoOutputConfiguration not bound !missing-type! AVVideoOutputSpecification not bound !missing-type! AVZoomRange not bound +!missing-enum! AVExternalContentProtectionStatus not bound +!missing-field! AVSampleBufferDisplayLayerReadyForDisplayDidChangeNotification not bound +!missing-protocol-member! AVContentKeySessionDelegate::contentKeySession:didProvideContentKeyRequests:forInitializationData: not found +!missing-protocol-member! AVContentKeySessionDelegate::contentKeySession:externalProtectionStatusDidChangeForContentKey: not found +!missing-selector! AVContentKey::externalContentProtectionStatus not bound +!missing-selector! AVContentKey::revoke not bound +!missing-selector! AVSampleBufferDisplayLayer::isReadyForDisplay not bound +!missing-selector! AVSampleBufferVideoRenderer::copyDisplayedPixelBuffer not bound +!missing-selector! AVSampleBufferVideoRenderer::expectMinimumUpcomingSampleBufferPresentationTime: not bound +!missing-selector! AVSampleBufferVideoRenderer::expectMonotonicallyIncreasingUpcomingSampleBufferPresentationTimes not bound +!missing-selector! AVSampleBufferVideoRenderer::loadVideoPerformanceMetricsWithCompletionHandler: not bound +!missing-selector! AVSampleBufferVideoRenderer::resetUpcomingSampleBufferPresentationTimeExpectations not bound +!missing-selector! AVVideoPerformanceMetrics::numberOfCorruptedFrames not bound +!missing-selector! AVVideoPerformanceMetrics::numberOfDroppedFrames not bound +!missing-selector! AVVideoPerformanceMetrics::numberOfFramesDisplayedUsingOptimizedCompositing not bound +!missing-selector! AVVideoPerformanceMetrics::totalAccumulatedFrameDelay not bound +!missing-selector! AVVideoPerformanceMetrics::totalNumberOfFrames not bound +!missing-type! AVVideoPerformanceMetrics not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-AuthenticationServices.todo b/tests/xtro-sharpie/api-annotations-dotnet/macOS-AuthenticationServices.todo new file mode 100644 index 000000000000..4e3c5c889d32 --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/macOS-AuthenticationServices.todo @@ -0,0 +1,21 @@ +!deprecated-attribute-missing! ASWebAuthenticationSession::initWithURL:callbackURLScheme:completionHandler: missing a [Deprecated] attribute +!missing-enum! ASAuthorizationProviderExtensionUserSecureEnclaveKeyBiometricPolicy not bound +!missing-enum! ASCredentialIdentityTypes not bound +!missing-enum! ASUserAgeRange not bound +!missing-enum-value! ASAuthorizationProviderExtensionRequestOptions native value ASAuthorizationProviderExtensionRequestOptionsUserKeyInvalid = 32 not bound +!missing-protocol! ASAuthorizationWebBrowserSecurityKeyPublicKeyCredentialAssertionRequest not bound +!missing-protocol! ASAuthorizationWebBrowserSecurityKeyPublicKeyCredentialProvider not bound +!missing-protocol! ASAuthorizationWebBrowserSecurityKeyPublicKeyCredentialRegistrationRequest not bound +!missing-selector! +ASWebAuthenticationSessionCallback::callbackWithCustomScheme: not bound +!missing-selector! +ASWebAuthenticationSessionCallback::callbackWithHTTPSHost:path: not bound +!missing-selector! ASAuthorizationAppleIDCredential::userAgeRange not bound +!missing-selector! ASAuthorizationProviderExtensionLoginConfiguration::setUserSecureEnclaveKeyBiometricPolicy: not bound +!missing-selector! ASAuthorizationProviderExtensionLoginConfiguration::userSecureEnclaveKeyBiometricPolicy not bound +!missing-selector! ASCredentialIdentityStore::getCredentialIdentitiesForService:credentialIdentityTypes:completionHandler: not bound +!missing-selector! ASWebAuthenticationSession::additionalHeaderFields not bound +!missing-selector! ASWebAuthenticationSession::initWithURL:callback:completionHandler: not bound +!missing-selector! ASWebAuthenticationSession::setAdditionalHeaderFields: not bound +!missing-selector! ASWebAuthenticationSessionCallback::matchesURL: not bound +!missing-selector! ASWebAuthenticationSessionRequest::additionalHeaderFields not bound +!missing-selector! ASWebAuthenticationSessionRequest::callback not bound +!missing-type! ASWebAuthenticationSessionCallback not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-BrowserEngineKit.todo b/tests/xtro-sharpie/api-annotations-dotnet/macOS-BrowserEngineKit.todo new file mode 100644 index 000000000000..d7b2ad085ff1 --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/macOS-BrowserEngineKit.todo @@ -0,0 +1,32 @@ +!missing-enum! BEGestureType not bound +!missing-enum! BESelectionFlags not bound +!missing-enum! BESelectionTouchPhase not bound +!missing-protocol! BEProcessCapabilityGrant not bound +!missing-protocol! BETextInputDelegate not bound +!missing-protocol! BETextInteractionDelegate not bound +!missing-selector! +BENetworkingProcess::networkProcessWithInterruptionHandler:completion: not bound +!missing-selector! +BEProcessCapability::background not bound +!missing-selector! +BEProcessCapability::foreground not bound +!missing-selector! +BEProcessCapability::suspended not bound +!missing-selector! +BERenderingProcess::renderingProcessWithInterruptionHandler:completion: not bound +!missing-selector! +BEWebContentProcess::webContentProcessWithInterruptionHandler:completion: not bound +!missing-selector! BENetworkingProcess::grantBENetworkingProcess:error: not bound +!missing-selector! BENetworkingProcess::invalidate not bound +!missing-selector! BENetworkingProcess::makeLibXPCConnectionError: not bound +!missing-selector! BEProcessCapability::requestWithError: not bound +!missing-selector! BERenderingProcess::grantBERenderingProcess:error: not bound +!missing-selector! BERenderingProcess::invalidate not bound +!missing-selector! BERenderingProcess::makeLibXPCConnectionError: not bound +!missing-selector! BETextAlternatives::alternativeStrings not bound +!missing-selector! BETextAlternatives::primaryString not bound +!missing-selector! BETextSuggestion::initWithInputText: not bound +!missing-selector! BETextSuggestion::inputText not bound +!missing-selector! BEWebContentProcess::grantBEWebContentProcess:error: not bound +!missing-selector! BEWebContentProcess::invalidate not bound +!missing-selector! BEWebContentProcess::makeLibXPCConnectionError: not bound +!missing-type! BENetworkingProcess not bound +!missing-type! BEProcessCapability not bound +!missing-type! BERenderingProcess not bound +!missing-type! BETextAlternatives not bound +!missing-type! BETextSuggestion not bound +!missing-type! BEWebContentProcess not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-CoreGraphics.ignore b/tests/xtro-sharpie/api-annotations-dotnet/macOS-CoreGraphics.ignore index 5e5a6359c1e1..b9635b1c5dc9 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/macOS-CoreGraphics.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/macOS-CoreGraphics.ignore @@ -36,8 +36,6 @@ !missing-pinvoke! CGDisplayCopyAllDisplayModes is not bound !missing-pinvoke! CGDisplayCopyColorSpace is not bound !missing-pinvoke! CGDisplayCopyDisplayMode is not bound -!missing-pinvoke! CGDisplayCreateImage is not bound -!missing-pinvoke! CGDisplayCreateImageForRect is not bound !missing-pinvoke! CGDisplayFade is not bound !missing-pinvoke! CGDisplayGetDrawingContext is not bound !missing-pinvoke! CGDisplayIsActive is not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-CoreML.todo b/tests/xtro-sharpie/api-annotations-dotnet/macOS-CoreML.todo new file mode 100644 index 000000000000..cd65c2081202 --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/macOS-CoreML.todo @@ -0,0 +1,58 @@ +!missing-enum! MLReshapeFrequencyHint not bound +!missing-selector! +MLComputePlan::loadContentsOfURL:configuration:completionHandler: not bound +!missing-selector! +MLComputePlan::loadModelAsset:configuration:completionHandler: not bound +!missing-selector! +MLModelStructure::loadContentsOfURL:completionHandler: not bound +!missing-selector! +MLModelStructure::loadModelAsset:completionHandler: not bound +!missing-selector! MLComputePlan::computeDeviceUsageForMLProgramOperation: not bound +!missing-selector! MLComputePlan::computeDeviceUsageForNeuralNetworkLayer: not bound +!missing-selector! MLComputePlan::estimatedCostOfMLProgramOperation: not bound +!missing-selector! MLComputePlan::modelStructure not bound +!missing-selector! MLComputePlanCost::weight not bound +!missing-selector! MLComputePlanDeviceUsage::preferredComputeDevice not bound +!missing-selector! MLComputePlanDeviceUsage::supportedComputeDevices not bound +!missing-selector! MLModelConfiguration::optimizationHints not bound +!missing-selector! MLModelConfiguration::setOptimizationHints: not bound +!missing-selector! MLModelStructure::neuralNetwork not bound +!missing-selector! MLModelStructure::pipeline not bound +!missing-selector! MLModelStructure::program not bound +!missing-selector! MLModelStructureNeuralNetwork::layers not bound +!missing-selector! MLModelStructureNeuralNetworkLayer::inputNames not bound +!missing-selector! MLModelStructureNeuralNetworkLayer::name not bound +!missing-selector! MLModelStructureNeuralNetworkLayer::outputNames not bound +!missing-selector! MLModelStructureNeuralNetworkLayer::type not bound +!missing-selector! MLModelStructurePipeline::subModelNames not bound +!missing-selector! MLModelStructurePipeline::subModels not bound +!missing-selector! MLModelStructureProgram::functions not bound +!missing-selector! MLModelStructureProgramArgument::bindings not bound +!missing-selector! MLModelStructureProgramBinding::name not bound +!missing-selector! MLModelStructureProgramBinding::value not bound +!missing-selector! MLModelStructureProgramBlock::inputs not bound +!missing-selector! MLModelStructureProgramBlock::operations not bound +!missing-selector! MLModelStructureProgramBlock::outputNames not bound +!missing-selector! MLModelStructureProgramFunction::block not bound +!missing-selector! MLModelStructureProgramFunction::inputs not bound +!missing-selector! MLModelStructureProgramNamedValueType::name not bound +!missing-selector! MLModelStructureProgramNamedValueType::type not bound +!missing-selector! MLModelStructureProgramOperation::blocks not bound +!missing-selector! MLModelStructureProgramOperation::inputs not bound +!missing-selector! MLModelStructureProgramOperation::operatorName not bound +!missing-selector! MLModelStructureProgramOperation::outputs not bound +!missing-selector! MLOptimizationHints::reshapeFrequency not bound +!missing-selector! MLOptimizationHints::setReshapeFrequency: not bound +!missing-type! MLComputePlan not bound +!missing-type! MLComputePlanCost not bound +!missing-type! MLComputePlanDeviceUsage not bound +!missing-type! MLModelStructure not bound +!missing-type! MLModelStructureNeuralNetwork not bound +!missing-type! MLModelStructureNeuralNetworkLayer not bound +!missing-type! MLModelStructurePipeline not bound +!missing-type! MLModelStructureProgram not bound +!missing-type! MLModelStructureProgramArgument not bound +!missing-type! MLModelStructureProgramBinding not bound +!missing-type! MLModelStructureProgramBlock not bound +!missing-type! MLModelStructureProgramFunction not bound +!missing-type! MLModelStructureProgramNamedValueType not bound +!missing-type! MLModelStructureProgramOperation not bound +!missing-type! MLModelStructureProgramValue not bound +!missing-type! MLModelStructureProgramValueType not bound +!missing-type! MLOptimizationHints not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-CoreMediaIO.todo b/tests/xtro-sharpie/api-annotations-dotnet/macOS-CoreMediaIO.todo index 05018fd60cea..d756228577da 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/macOS-CoreMediaIO.todo +++ b/tests/xtro-sharpie/api-annotations-dotnet/macOS-CoreMediaIO.todo @@ -206,3 +206,6 @@ !missing-type! CMIOExtensionStreamCustomClockConfiguration not bound !missing-type! CMIOExtensionStreamFormat not bound !missing-type! CMIOExtensionStreamProperties not bound +!missing-field! CMIOExtensionPropertyDeviceLatency not bound +!missing-field! CMIOExtensionPropertyStreamLatency not bound +!missing-selector! +CMIOExtensionProvider::stopServiceWithProvider: not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-FileProvider.todo b/tests/xtro-sharpie/api-annotations-dotnet/macOS-FileProvider.todo new file mode 100644 index 000000000000..f93b23c66048 --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/macOS-FileProvider.todo @@ -0,0 +1,3 @@ +!missing-enum-value! NSFileProviderError native value NSFileProviderErrorApplicationExtensionNotFound = -2014 not bound +!missing-enum-value! NSFileProviderError native value NSFileProviderErrorProviderDomainNotFound = -2013 not bound +!missing-enum-value! NSFileProviderError native value NSFileProviderErrorProviderDomainTemporarilyUnavailable = -2012 not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-Foundation.todo b/tests/xtro-sharpie/api-annotations-dotnet/macOS-Foundation.todo new file mode 100644 index 000000000000..5a3715756ab5 --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/macOS-Foundation.todo @@ -0,0 +1,5 @@ +!missing-protocol-member! NSFilePresenter::accommodatePresentedItemEvictionWithCompletionHandler: not found +!missing-selector! NSTask::launchRequirementData not bound +!missing-selector! NSTask::setLaunchRequirementData: not bound +!missing-selector! NSUndoManager::redoCount not bound +!missing-selector! NSUndoManager::undoCount not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-GameController.todo b/tests/xtro-sharpie/api-annotations-dotnet/macOS-GameController.todo index 1196c3885f8b..7039e96d94db 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/macOS-GameController.todo +++ b/tests/xtro-sharpie/api-annotations-dotnet/macOS-GameController.todo @@ -33,3 +33,13 @@ !missing-type! GCControllerInputState not bound !missing-type! GCControllerLiveInput not bound !missing-type! GCPhysicalInputElementCollection not bound +!missing-field! GCInputLeftBumper not bound +!missing-field! GCInputRightBumper not bound +!missing-field! GCPoint2Zero not bound +!missing-pinvoke! GCInputBackLeftButton is not bound +!missing-pinvoke! GCInputBackRightButton is not bound +!missing-pinvoke! NSStringFromGCPoint2 is not bound +!missing-protocol! GCAxis2DInput not bound +!missing-protocol-member! GCDirectionPadElement::xyAxes not found +!missing-selector! +NSValue::valueWithGCPoint2: not bound +!missing-selector! NSValue::GCPoint2Value not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-GameKit.todo b/tests/xtro-sharpie/api-annotations-dotnet/macOS-GameKit.todo new file mode 100644 index 000000000000..dfab76092956 --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/macOS-GameKit.todo @@ -0,0 +1,2 @@ +!missing-enum-value! GKError native value GKErrorAppUnlisted = 37 not bound +!missing-selector! GKScoreChallenge::leaderboardEntry not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-IOSurface.todo b/tests/xtro-sharpie/api-annotations-dotnet/macOS-IOSurface.todo new file mode 100644 index 000000000000..f9eaac2545d4 --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/macOS-IOSurface.todo @@ -0,0 +1,3 @@ +!missing-enum! IOSurfaceMemoryLedgerFlags not bound +!missing-enum! IOSurfaceMemoryLedgerTags not bound +!missing-pinvoke! IOSurfaceSetOwnershipIdentity is not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-ImageIO.todo b/tests/xtro-sharpie/api-annotations-dotnet/macOS-ImageIO.todo new file mode 100644 index 000000000000..4c217d8b7e78 --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/macOS-ImageIO.todo @@ -0,0 +1,3 @@ +!missing-field! kCGImagePropertyTIFFXPosition not bound +!missing-field! kCGImagePropertyTIFFYPosition not bound +!missing-pinvoke! CGImageSourceSetAllowableTypes is not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-MLCompute.todo b/tests/xtro-sharpie/api-annotations-dotnet/macOS-MLCompute.todo index 9ea91f77132c..53a08da02f2d 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/macOS-MLCompute.todo +++ b/tests/xtro-sharpie/api-annotations-dotnet/macOS-MLCompute.todo @@ -1,55 +1 @@ -!deprecated-attribute-missing! MLCActivationDescriptor missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCActivationLayer missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCAdamOptimizer missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCAdamWOptimizer missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCArithmeticLayer missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCBatchNormalizationLayer missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCComparisonLayer missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCConcatenationLayer missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCConvolutionDescriptor missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCConvolutionLayer missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCDevice missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCDropoutLayer missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCEmbeddingDescriptor missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCEmbeddingLayer missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCFullyConnectedLayer missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCGatherLayer missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCGramMatrixLayer missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCGraph missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCGroupNormalizationLayer missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCInferenceGraph missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCInstanceNormalizationLayer missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCLayer missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCLayerNormalizationLayer missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCLossDescriptor missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCLossLayer missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCLSTMDescriptor missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCLSTMLayer missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCMatMulDescriptor missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCMatMulLayer missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCMultiheadAttentionDescriptor missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCMultiheadAttentionLayer missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCOptimizer missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCOptimizerDescriptor missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCPaddingLayer missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCPlatform missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCPoolingDescriptor missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCPoolingLayer missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCReductionLayer missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCReshapeLayer missing a [Deprecated] attribute !deprecated-attribute-missing! MLCRMSPropOptimizer missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCScatterLayer missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCSelectionLayer missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCSGDOptimizer missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCSliceLayer missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCSoftmaxLayer missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCSplitLayer missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCTensor missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCTensorData missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCTensorDescriptor missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCTensorParameter missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCTrainingGraph missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCTransposeLayer missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCUpsampleLayer missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCYOLOLossDescriptor missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCYOLOLossLayer missing a [Deprecated] attribute diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-MapKit.todo b/tests/xtro-sharpie/api-annotations-dotnet/macOS-MapKit.todo new file mode 100644 index 000000000000..dc35c07c28a2 --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/macOS-MapKit.todo @@ -0,0 +1,2 @@ +!missing-selector! +MKMapItem::openMapsWithItems:launchOptions:completionHandler: not bound +!missing-selector! MKMapItem::openInMapsWithLaunchOptions:completionHandler: not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-Matter.todo b/tests/xtro-sharpie/api-annotations-dotnet/macOS-Matter.todo index fe1dbd568000..1d707cc1e85c 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/macOS-Matter.todo +++ b/tests/xtro-sharpie/api-annotations-dotnet/macOS-Matter.todo @@ -36,11 +36,9 @@ !missing-enum! MTRCommandIDType not bound !missing-enum! MTRCommissioningFlow not bound !missing-enum! MTRCommissioningStatus not bound -!missing-enum! MTRContentLauncherContentLaunchStatus not bound !missing-enum! MTRContentLauncherFeature not bound !missing-enum! MTRContentLauncherMetricType not bound !missing-enum! MTRContentLauncherParameter not bound -!missing-enum! MTRContentLauncherSupportedStreamingProtocol not bound !missing-enum! MTRDeviceState not bound !missing-enum! MTRDiagnosticLogsIntent not bound !missing-enum! MTRDiagnosticLogsStatus not bound @@ -102,12 +100,10 @@ !missing-enum! MTRIdentifyType not bound !missing-enum! MTRIlluminanceMeasurementLightSensorType not bound !missing-enum! MTRInteractionErrorCode not bound -!missing-enum! MTRKeypadInputCecKeyCode not bound !missing-enum! MTRKeypadInputFeature not bound !missing-enum! MTRKeypadInputStatus not bound !missing-enum! MTRLevelControlFeature not bound !missing-enum! MTRLevelControlMoveMode not bound -!missing-enum! MTRLevelControlOptions not bound !missing-enum! MTRLevelControlStepMode not bound !missing-enum! MTRLogType not bound !missing-enum! MTRMediaInputFeature not bound @@ -148,17 +144,12 @@ !missing-enum! MTRPumpConfigurationAndControlFeature not bound !missing-enum! MTRPumpConfigurationAndControlOperationMode not bound !missing-enum! MTRPumpConfigurationAndControlPumpStatusBitmap not bound -!missing-enum! MTRScenesCopyMode not bound !missing-enum! MTRScenesFeature not bound !missing-enum! MTRSoftwareDiagnosticsFeature not bound !missing-enum! MTRSwitchFeature not bound !missing-enum! MTRTargetNavigatorStatus not bound -!missing-enum! MTRThermostatControlSequence not bound -!missing-enum! MTRThermostatDayOfWeek not bound !missing-enum! MTRThermostatFeature not bound -!missing-enum! MTRThermostatModeForSequence not bound !missing-enum! MTRThermostatRunningMode not bound -!missing-enum! MTRThermostatSetpointAdjustMode not bound !missing-enum! MTRThermostatSystemMode not bound !missing-enum! MTRThreadNetworkDiagnosticsConnectionStatus not bound !missing-enum! MTRThreadNetworkDiagnosticsFeature not bound @@ -8432,12 +8423,6 @@ !missing-selector! MTRThermostatClusterSetWeeklyScheduleParams::setTransitions: not bound !missing-selector! MTRThermostatClusterSetWeeklyScheduleParams::timedInvokeTimeoutMs not bound !missing-selector! MTRThermostatClusterSetWeeklyScheduleParams::transitions not bound -!missing-selector! MTRThermostatClusterThermostatScheduleTransition::coolSetpoint not bound -!missing-selector! MTRThermostatClusterThermostatScheduleTransition::heatSetpoint not bound -!missing-selector! MTRThermostatClusterThermostatScheduleTransition::setCoolSetpoint: not bound -!missing-selector! MTRThermostatClusterThermostatScheduleTransition::setHeatSetpoint: not bound -!missing-selector! MTRThermostatClusterThermostatScheduleTransition::setTransitionTime: not bound -!missing-selector! MTRThermostatClusterThermostatScheduleTransition::transitionTime not bound !missing-selector! MTRThreadNetworkDiagnosticsClusterConnectionStatusEvent::connectionStatus not bound !missing-selector! MTRThreadNetworkDiagnosticsClusterConnectionStatusEvent::setConnectionStatus: not bound !missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::age not bound @@ -8925,8 +8910,6 @@ !missing-selector! MTRUserLabelClusterLabelStruct::setLabel: not bound !missing-selector! MTRUserLabelClusterLabelStruct::setValue: not bound !missing-selector! MTRUserLabelClusterLabelStruct::value not bound -!missing-selector! MTRWiFiNetworkDiagnosticsClusterAssociationFailureEvent::associationFailure not bound -!missing-selector! MTRWiFiNetworkDiagnosticsClusterAssociationFailureEvent::setAssociationFailure: not bound !missing-selector! MTRWiFiNetworkDiagnosticsClusterAssociationFailureEvent::setStatus: not bound !missing-selector! MTRWiFiNetworkDiagnosticsClusterAssociationFailureEvent::status not bound !missing-selector! MTRWiFiNetworkDiagnosticsClusterConnectionStatusEvent::connectionStatus not bound @@ -9433,7 +9416,6 @@ !missing-type! MTRThermostatClusterGetWeeklyScheduleResponseParams not bound !missing-type! MTRThermostatClusterSetpointRaiseLowerParams not bound !missing-type! MTRThermostatClusterSetWeeklyScheduleParams not bound -!missing-type! MTRThermostatClusterThermostatScheduleTransition not bound !missing-type! MTRThreadNetworkDiagnosticsClusterConnectionStatusEvent not bound !missing-type! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct not bound !missing-type! MTRThreadNetworkDiagnosticsClusterNetworkFaultChangeEvent not bound @@ -9520,3 +9502,383 @@ !missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::timeSource not bound !missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::utcTime not bound !missing-type! MTRTimeSynchronizationClusterSetUTCTimeParams not bound +!missing-enum! MTRAdministratorCommissioningFeature not bound +!missing-enum! MTRContentLauncherStatus not bound +!missing-enum! MTRContentLauncherSupportedProtocolsBitmap not bound +!missing-enum! MTRKeypadInputCECKeyCode not bound +!missing-enum! MTRLevelControlOptionsBitmap not bound +!missing-enum! MTROperationalState not bound +!missing-enum! MTROperationalStateErrorState not bound +!missing-enum! MTRRVCCleanModeFeature not bound +!missing-enum! MTRRVCCleanModeModeTag not bound +!missing-enum! MTRRVCCleanModeStatusCode not bound +!missing-enum! MTRRVCOperationalStateErrorState not bound +!missing-enum! MTRRVCOperationalStateOperationalState not bound +!missing-enum! MTRRVCRunModeFeature not bound +!missing-enum! MTRRVCRunModeModeTag not bound +!missing-enum! MTRRVCRunModeStatusCode not bound +!missing-enum! MTRScenesCopyModeBitmap not bound +!missing-enum! MTRThermostatControlSequenceOfOperation not bound +!missing-enum! MTRThermostatScheduleDayOfWeekBitmap not bound +!missing-enum! MTRThermostatScheduleModeBitmap not bound +!missing-enum! MTRThermostatSetpointRaiseLowerMode not bound +!missing-enum! MTRThermostatUserInterfaceConfigurationKeypadLockout not bound +!missing-enum! MTRThermostatUserInterfaceConfigurationScheduleProgrammingVisibility not bound +!missing-enum! MTRThermostatUserInterfaceConfigurationTemperatureDisplayMode not bound +!missing-field! MTREventIsHistoricalKey not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeAcceptedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeAttributeListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeClusterRevisionWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeCountdownTimeWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeCurrentPhaseWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeFeatureMapWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeGeneratedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeOperationalErrorWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeOperationalStateListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeOperationalStateWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributePhaseListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterPowerSource::readAttributeEndpointListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeAcceptedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeAttributeListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeClusterRevisionWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeCurrentModeWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeFeatureMapWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeGeneratedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeSupportedModesWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeAcceptedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeAttributeListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeClusterRevisionWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeCountdownTimeWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeCurrentPhaseWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeFeatureMapWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeGeneratedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeOperationalErrorWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeOperationalStateListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeOperationalStateWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributePhaseListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeAcceptedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeAttributeListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeClusterRevisionWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeCurrentModeWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeFeatureMapWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeGeneratedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeSupportedModesWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! MTRBaseClusterApplicationLauncher::hideAppWithCompletion: not bound +!missing-selector! MTRBaseClusterApplicationLauncher::launchAppWithCompletion: not bound +!missing-selector! MTRBaseClusterApplicationLauncher::stopAppWithCompletion: not bound +!missing-selector! MTRBaseClusterDoorLock::lockDoorWithCompletion: not bound +!missing-selector! MTRBaseClusterDoorLock::unlockDoorWithCompletion: not bound +!missing-selector! MTRBaseClusterNetworkCommissioning::scanNetworksWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRBaseClusterOperationalState::pauseWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::pauseWithParams:completion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeAcceptedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeAttributeListWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeClusterRevisionWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeCountdownTimeWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeCurrentPhaseWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeFeatureMapWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeGeneratedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeOperationalErrorWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeOperationalStateListWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeOperationalStateWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributePhaseListWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::resumeWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::resumeWithParams:completion: not bound +!missing-selector! MTRBaseClusterOperationalState::startWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::startWithParams:completion: not bound +!missing-selector! MTRBaseClusterOperationalState::stopWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::stopWithParams:completion: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeAcceptedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeAttributeListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeClusterRevisionWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeCountdownTimeWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeCurrentPhaseWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeFeatureMapWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeGeneratedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeOperationalErrorWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeOperationalStateListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeOperationalStateWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributePhaseListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterPowerSource::readAttributeEndpointListWithCompletion: not bound +!missing-selector! MTRBaseClusterPowerSource::subscribeAttributeEndpointListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::changeToModeWithParams:completion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeAcceptedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeAttributeListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeClusterRevisionWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeCurrentModeWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeFeatureMapWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeGeneratedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeSupportedModesWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeAcceptedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeAttributeListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeClusterRevisionWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeCurrentModeWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeFeatureMapWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeGeneratedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeSupportedModesWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::pauseWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::pauseWithParams:completion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeAcceptedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeAttributeListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeClusterRevisionWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeCountdownTimeWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeCurrentPhaseWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeFeatureMapWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeGeneratedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeOperationalErrorWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeOperationalStateListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeOperationalStateWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributePhaseListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::resumeWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::resumeWithParams:completion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeAcceptedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeAttributeListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeClusterRevisionWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeCountdownTimeWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeCurrentPhaseWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeFeatureMapWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeGeneratedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeOperationalErrorWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeOperationalStateListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeOperationalStateWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributePhaseListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::changeToModeWithParams:completion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeAcceptedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeAttributeListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeClusterRevisionWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeCurrentModeWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeFeatureMapWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeGeneratedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeSupportedModesWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeAcceptedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeAttributeListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeClusterRevisionWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeCurrentModeWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeFeatureMapWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeGeneratedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeSupportedModesWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterUnitTesting::testNullableOptionalRequestWithCompletion: not bound +!missing-selector! MTRBaseClusterUnitTesting::testSimpleOptionalArgumentRequestWithCompletion: not bound +!missing-selector! MTRCluster::endpointID not bound +!missing-selector! MTRClusterApplicationLauncher::hideAppWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterApplicationLauncher::launchAppWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterApplicationLauncher::stopAppWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterDoorLock::lockDoorWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterDoorLock::unlockDoorWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterNetworkCommissioning::scanNetworksWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRClusterOperationalState::pauseWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::pauseWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::readAttributeAcceptedCommandListWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeAttributeListWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeClusterRevisionWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeCountdownTimeWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeCurrentPhaseWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeFeatureMapWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeGeneratedCommandListWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeOperationalErrorWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeOperationalStateListWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeOperationalStateWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributePhaseListWithParams: not bound +!missing-selector! MTRClusterOperationalState::resumeWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::resumeWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::startWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::startWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::stopWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::stopWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterPowerSource::readAttributeEndpointListWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::changeToModeWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterRVCCleanMode::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeAcceptedCommandListWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeAttributeListWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeClusterRevisionWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeCurrentModeWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeFeatureMapWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeGeneratedCommandListWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeSupportedModesWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRClusterRVCOperationalState::pauseWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterRVCOperationalState::pauseWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeAcceptedCommandListWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeAttributeListWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeClusterRevisionWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeCountdownTimeWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeCurrentPhaseWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeFeatureMapWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeGeneratedCommandListWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeOperationalErrorWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeOperationalStateListWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeOperationalStateWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributePhaseListWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::resumeWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterRVCOperationalState::resumeWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterRVCRunMode::changeToModeWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterRVCRunMode::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeAcceptedCommandListWithParams: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeAttributeListWithParams: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeClusterRevisionWithParams: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeCurrentModeWithParams: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeFeatureMapWithParams: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeGeneratedCommandListWithParams: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeSupportedModesWithParams: not bound +!missing-selector! MTRClusterUnitTesting::testNullableOptionalRequestWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterUnitTesting::testSimpleOptionalArgumentRequestWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRDevice::deviceController not bound +!missing-selector! MTRDevice::invokeCommandWithEndpointID:clusterID:commandID:commandFields:expectedValues:expectedValueInterval:queue:completion: not bound +!missing-selector! MTRDevice::nodeID not bound +!missing-selector! MTRGenericCluster::device not bound +!missing-selector! MTROperationalStateClusterErrorStateStruct::errorStateDetails not bound +!missing-selector! MTROperationalStateClusterErrorStateStruct::errorStateID not bound +!missing-selector! MTROperationalStateClusterErrorStateStruct::errorStateLabel not bound +!missing-selector! MTROperationalStateClusterErrorStateStruct::setErrorStateDetails: not bound +!missing-selector! MTROperationalStateClusterErrorStateStruct::setErrorStateID: not bound +!missing-selector! MTROperationalStateClusterErrorStateStruct::setErrorStateLabel: not bound +!missing-selector! MTROperationalStateClusterOperationalCommandResponseParams::commandResponseState not bound +!missing-selector! MTROperationalStateClusterOperationalCommandResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTROperationalStateClusterOperationalCommandResponseParams::setCommandResponseState: not bound +!missing-selector! MTROperationalStateClusterOperationalErrorEvent::errorState not bound +!missing-selector! MTROperationalStateClusterOperationalErrorEvent::setErrorState: not bound +!missing-selector! MTROperationalStateClusterOperationalStateStruct::operationalStateID not bound +!missing-selector! MTROperationalStateClusterOperationalStateStruct::operationalStateLabel not bound +!missing-selector! MTROperationalStateClusterOperationalStateStruct::setOperationalStateID: not bound +!missing-selector! MTROperationalStateClusterOperationalStateStruct::setOperationalStateLabel: not bound +!missing-selector! MTROperationalStateClusterOperationCompletionEvent::completionErrorCode not bound +!missing-selector! MTROperationalStateClusterOperationCompletionEvent::pausedTime not bound +!missing-selector! MTROperationalStateClusterOperationCompletionEvent::setCompletionErrorCode: not bound +!missing-selector! MTROperationalStateClusterOperationCompletionEvent::setPausedTime: not bound +!missing-selector! MTROperationalStateClusterOperationCompletionEvent::setTotalOperationalTime: not bound +!missing-selector! MTROperationalStateClusterOperationCompletionEvent::totalOperationalTime not bound +!missing-selector! MTROperationalStateClusterPauseParams::serverSideProcessingTimeout not bound +!missing-selector! MTROperationalStateClusterPauseParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTROperationalStateClusterPauseParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTROperationalStateClusterPauseParams::timedInvokeTimeoutMs not bound +!missing-selector! MTROperationalStateClusterResumeParams::serverSideProcessingTimeout not bound +!missing-selector! MTROperationalStateClusterResumeParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTROperationalStateClusterResumeParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTROperationalStateClusterResumeParams::timedInvokeTimeoutMs not bound +!missing-selector! MTROperationalStateClusterStartParams::serverSideProcessingTimeout not bound +!missing-selector! MTROperationalStateClusterStartParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTROperationalStateClusterStartParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTROperationalStateClusterStartParams::timedInvokeTimeoutMs not bound +!missing-selector! MTROperationalStateClusterStopParams::serverSideProcessingTimeout not bound +!missing-selector! MTROperationalStateClusterStopParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTROperationalStateClusterStopParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTROperationalStateClusterStopParams::timedInvokeTimeoutMs not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::getNewMode not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::serverSideProcessingTimeout not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::setNewMode: not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::timedInvokeTimeoutMs not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeResponseParams::setStatus: not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeResponseParams::setStatusText: not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeResponseParams::status not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeResponseParams::statusText not bound +!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::label not bound +!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::mode not bound +!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::modeTags not bound +!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::setLabel: not bound +!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::setMode: not bound +!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::setModeTags: not bound +!missing-selector! MTRRVCCleanModeClusterModeTagStruct::mfgCode not bound +!missing-selector! MTRRVCCleanModeClusterModeTagStruct::setMfgCode: not bound +!missing-selector! MTRRVCCleanModeClusterModeTagStruct::setValue: not bound +!missing-selector! MTRRVCCleanModeClusterModeTagStruct::value not bound +!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::errorStateDetails not bound +!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::errorStateID not bound +!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::errorStateLabel not bound +!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::setErrorStateDetails: not bound +!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::setErrorStateID: not bound +!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::setErrorStateLabel: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalCommandResponseParams::commandResponseState not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalCommandResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalCommandResponseParams::setCommandResponseState: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalErrorEvent::errorState not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalErrorEvent::setErrorState: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalStateStruct::operationalStateID not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalStateStruct::operationalStateLabel not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalStateStruct::setOperationalStateID: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalStateStruct::setOperationalStateLabel: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::completionErrorCode not bound +!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::pausedTime not bound +!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::setCompletionErrorCode: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::setPausedTime: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::setTotalOperationalTime: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::totalOperationalTime not bound +!missing-selector! MTRRVCOperationalStateClusterPauseParams::serverSideProcessingTimeout not bound +!missing-selector! MTRRVCOperationalStateClusterPauseParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTRRVCOperationalStateClusterPauseParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTRRVCOperationalStateClusterPauseParams::timedInvokeTimeoutMs not bound +!missing-selector! MTRRVCOperationalStateClusterResumeParams::serverSideProcessingTimeout not bound +!missing-selector! MTRRVCOperationalStateClusterResumeParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTRRVCOperationalStateClusterResumeParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTRRVCOperationalStateClusterResumeParams::timedInvokeTimeoutMs not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeParams::getNewMode not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeParams::serverSideProcessingTimeout not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeParams::setNewMode: not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeParams::timedInvokeTimeoutMs not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeResponseParams::setStatus: not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeResponseParams::setStatusText: not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeResponseParams::status not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeResponseParams::statusText not bound +!missing-selector! MTRRVCRunModeClusterModeOptionStruct::label not bound +!missing-selector! MTRRVCRunModeClusterModeOptionStruct::mode not bound +!missing-selector! MTRRVCRunModeClusterModeOptionStruct::modeTags not bound +!missing-selector! MTRRVCRunModeClusterModeOptionStruct::setLabel: not bound +!missing-selector! MTRRVCRunModeClusterModeOptionStruct::setMode: not bound +!missing-selector! MTRRVCRunModeClusterModeOptionStruct::setModeTags: not bound +!missing-selector! MTRRVCRunModeClusterModeTagStruct::mfgCode not bound +!missing-selector! MTRRVCRunModeClusterModeTagStruct::setMfgCode: not bound +!missing-selector! MTRRVCRunModeClusterModeTagStruct::setValue: not bound +!missing-selector! MTRRVCRunModeClusterModeTagStruct::value not bound +!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::coolSetpoint not bound +!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::heatSetpoint not bound +!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::setCoolSetpoint: not bound +!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::setHeatSetpoint: not bound +!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::setTransitionTime: not bound +!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::transitionTime not bound +!missing-selector! MTRWiFiNetworkDiagnosticsClusterAssociationFailureEvent::associationFailureCause not bound +!missing-selector! MTRWiFiNetworkDiagnosticsClusterAssociationFailureEvent::setAssociationFailureCause: not bound +!missing-type! MTRBaseClusterOperationalState not bound +!missing-type! MTRBaseClusterRVCCleanMode not bound +!missing-type! MTRBaseClusterRVCOperationalState not bound +!missing-type! MTRBaseClusterRVCRunMode not bound +!missing-type! MTRClusterOperationalState not bound +!missing-type! MTRClusterRVCCleanMode not bound +!missing-type! MTRClusterRVCOperationalState not bound +!missing-type! MTRClusterRVCRunMode not bound +!missing-type! MTRGenericBaseCluster not bound +!missing-type! MTRGenericCluster not bound +!missing-type! MTROperationalStateClusterErrorStateStruct not bound +!missing-type! MTROperationalStateClusterOperationalCommandResponseParams not bound +!missing-type! MTROperationalStateClusterOperationalErrorEvent not bound +!missing-type! MTROperationalStateClusterOperationalStateStruct not bound +!missing-type! MTROperationalStateClusterOperationCompletionEvent not bound +!missing-type! MTROperationalStateClusterPauseParams not bound +!missing-type! MTROperationalStateClusterResumeParams not bound +!missing-type! MTROperationalStateClusterStartParams not bound +!missing-type! MTROperationalStateClusterStopParams not bound +!missing-type! MTRRVCCleanModeClusterChangeToModeParams not bound +!missing-type! MTRRVCCleanModeClusterChangeToModeResponseParams not bound +!missing-type! MTRRVCCleanModeClusterModeOptionStruct not bound +!missing-type! MTRRVCCleanModeClusterModeTagStruct not bound +!missing-type! MTRRVCOperationalStateClusterErrorStateStruct not bound +!missing-type! MTRRVCOperationalStateClusterOperationalCommandResponseParams not bound +!missing-type! MTRRVCOperationalStateClusterOperationalErrorEvent not bound +!missing-type! MTRRVCOperationalStateClusterOperationalStateStruct not bound +!missing-type! MTRRVCOperationalStateClusterOperationCompletionEvent not bound +!missing-type! MTRRVCOperationalStateClusterPauseParams not bound +!missing-type! MTRRVCOperationalStateClusterResumeParams not bound +!missing-type! MTRRVCRunModeClusterChangeToModeParams not bound +!missing-type! MTRRVCRunModeClusterChangeToModeResponseParams not bound +!missing-type! MTRRVCRunModeClusterModeOptionStruct not bound +!missing-type! MTRRVCRunModeClusterModeTagStruct not bound +!missing-type! MTRThermostatClusterWeeklyScheduleTransitionStruct not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-Metal.todo b/tests/xtro-sharpie/api-annotations-dotnet/macOS-Metal.todo index 3aecdefd9d51..518da75143ef 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/macOS-Metal.todo +++ b/tests/xtro-sharpie/api-annotations-dotnet/macOS-Metal.todo @@ -5,3 +5,5 @@ !missing-protocol-member! MTLIndirectRenderCommand::setMeshBuffer:offset:atIndex: not found !missing-protocol-member! MTLIndirectRenderCommand::setObjectBuffer:offset:atIndex: not found !missing-protocol-member! MTLIndirectRenderCommand::setObjectThreadgroupMemoryLength:atIndex: not found +!missing-protocol-member! MTLResource::setOwnerWithIdentity: not found +!missing-protocol-member! MTLSharedEvent::waitUntilSignaledValue:timeoutMS: not found diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-MetalPerformanceShadersGraph.todo b/tests/xtro-sharpie/api-annotations-dotnet/macOS-MetalPerformanceShadersGraph.todo index 41e7d3e02722..bb4ab4a4bab1 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/macOS-MetalPerformanceShadersGraph.todo +++ b/tests/xtro-sharpie/api-annotations-dotnet/macOS-MetalPerformanceShadersGraph.todo @@ -342,3 +342,5 @@ !wrong-base-type! MPSGraphTensor expected MPSGraphObject actual NSObject !wrong-base-type! MPSGraphTensorData expected MPSGraphObject actual NSObject !wrong-base-type! MPSGraphType expected MPSGraphObject actual NSObject +!missing-selector! MPSGraph::sliceUpdateDataTensor:updateTensor:starts:ends:strides:startMask:endMask:squeezeMask:name: not bound +!missing-selector! MPSGraph::sliceUpdateDataTensor:updateTensor:startsTensor:endsTensor:stridesTensor:startMask:endMask:squeezeMask:name: not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-NetworkExtension.todo b/tests/xtro-sharpie/api-annotations-dotnet/macOS-NetworkExtension.todo new file mode 100644 index 000000000000..feba76486668 --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/macOS-NetworkExtension.todo @@ -0,0 +1,2 @@ +!missing-selector! NEVPNProtocol::excludeDeviceCommunication not bound +!missing-selector! NEVPNProtocol::setExcludeDeviceCommunication: not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-PassKit.todo b/tests/xtro-sharpie/api-annotations-dotnet/macOS-PassKit.todo new file mode 100644 index 000000000000..94f814a8e4ad --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/macOS-PassKit.todo @@ -0,0 +1 @@ +!missing-field! PKPaymentNetworkMeeza not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-PencilKit.todo b/tests/xtro-sharpie/api-annotations-dotnet/macOS-PencilKit.todo new file mode 100644 index 000000000000..9041a74cc57f --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/macOS-PencilKit.todo @@ -0,0 +1 @@ +!missing-enum-value! PKContentVersion native value PKContentVersionLatest = 3 not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-ScreenCaptureKit.todo b/tests/xtro-sharpie/api-annotations-dotnet/macOS-ScreenCaptureKit.todo new file mode 100644 index 000000000000..46a1687c0986 --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/macOS-ScreenCaptureKit.todo @@ -0,0 +1,2 @@ +!missing-protocol-member! SCStreamDelegate::userDidStopStream: not found +!missing-selector! +SCShareableContent::getCurrentProcessShareableContentWithCompletionHandler: not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-VideoSubscriberAccount.todo b/tests/xtro-sharpie/api-annotations-dotnet/macOS-VideoSubscriberAccount.todo new file mode 100644 index 000000000000..b325adc0448d --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/macOS-VideoSubscriberAccount.todo @@ -0,0 +1,8 @@ +!missing-selector! VSAppleSubscription::customerID not bound +!missing-selector! VSAppleSubscription::initWithCustomerID:productCodes: not bound +!missing-selector! VSAppleSubscription::productCodes not bound +!missing-selector! VSAppleSubscription::setCustomerID: not bound +!missing-selector! VSAppleSubscription::setProductCodes: not bound +!missing-selector! VSUserAccount::appleSubscription not bound +!missing-selector! VSUserAccount::setAppleSubscription: not bound +!missing-type! VSAppleSubscription not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-VideoToolbox.todo b/tests/xtro-sharpie/api-annotations-dotnet/macOS-VideoToolbox.todo index 31bea8d7aea4..a96be7076184 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/macOS-VideoToolbox.todo +++ b/tests/xtro-sharpie/api-annotations-dotnet/macOS-VideoToolbox.todo @@ -18,3 +18,9 @@ !missing-pinvoke! VTIsStereoMVHEVCEncodeSupported is not bound !missing-field! kVTCompressionPropertyKey_HasLeftStereoEyeView not bound !missing-field! kVTCompressionPropertyKey_HasRightStereoEyeView not bound +!missing-field! kVTCompressionPropertyKey_CalculateMeanSquaredError not bound +!missing-field! kVTCompressionPropertyKey_HorizontalFieldOfView not bound +!missing-field! kVTSampleAttachmentKey_QualityMetrics not bound +!missing-field! kVTSampleAttachmentQualityMetricsKey_ChromaBlueMeanSquaredError not bound +!missing-field! kVTSampleAttachmentQualityMetricsKey_ChromaRedMeanSquaredError not bound +!missing-field! kVTSampleAttachmentQualityMetricsKey_LumaMeanSquaredError not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-AVFoundation.todo b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-AVFoundation.todo index 86cd3b31c292..9678078c5501 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-AVFoundation.todo +++ b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-AVFoundation.todo @@ -1142,7 +1142,6 @@ !missing-selector! AVCaptureDeviceFormat::zoomFactorsOutsideOfVideoZoomRangesForDepthDeliverySupported not bound !missing-selector! AVPlayer::setVideoOutput: not bound !missing-selector! AVPlayer::videoOutput not bound -!missing-selector! AVPlayerItemErrorLogEvent::allHTTPResponseHeaderFields not bound !missing-selector! AVPlayerVideoOutput::copyTaggedBufferGroupForHostTime:presentationTimeStamp:activeConfiguration: not bound !missing-selector! AVPlayerVideoOutput::initWithSpecification: not bound !missing-selector! AVPlayerVideoOutputConfiguration::activationTime not bound @@ -1160,3 +1159,21 @@ !missing-type! AVPlayerVideoOutputConfiguration not bound !missing-type! AVVideoOutputSpecification not bound !missing-type! AVZoomRange not bound +!missing-enum! AVExternalContentProtectionStatus not bound +!missing-field! AVSampleBufferDisplayLayerReadyForDisplayDidChangeNotification not bound +!missing-protocol-member! AVContentKeySessionDelegate::contentKeySession:didProvideContentKeyRequests:forInitializationData: not found +!missing-protocol-member! AVContentKeySessionDelegate::contentKeySession:externalProtectionStatusDidChangeForContentKey: not found +!missing-selector! AVContentKey::externalContentProtectionStatus not bound +!missing-selector! AVContentKey::revoke not bound +!missing-selector! AVSampleBufferDisplayLayer::isReadyForDisplay not bound +!missing-selector! AVSampleBufferVideoRenderer::copyDisplayedPixelBuffer not bound +!missing-selector! AVSampleBufferVideoRenderer::expectMinimumUpcomingSampleBufferPresentationTime: not bound +!missing-selector! AVSampleBufferVideoRenderer::expectMonotonicallyIncreasingUpcomingSampleBufferPresentationTimes not bound +!missing-selector! AVSampleBufferVideoRenderer::loadVideoPerformanceMetricsWithCompletionHandler: not bound +!missing-selector! AVSampleBufferVideoRenderer::resetUpcomingSampleBufferPresentationTimeExpectations not bound +!missing-selector! AVVideoPerformanceMetrics::numberOfCorruptedFrames not bound +!missing-selector! AVVideoPerformanceMetrics::numberOfDroppedFrames not bound +!missing-selector! AVVideoPerformanceMetrics::numberOfFramesDisplayedUsingOptimizedCompositing not bound +!missing-selector! AVVideoPerformanceMetrics::totalAccumulatedFrameDelay not bound +!missing-selector! AVVideoPerformanceMetrics::totalNumberOfFrames not bound +!missing-type! AVVideoPerformanceMetrics not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-AuthenticationServices.todo b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-AuthenticationServices.todo new file mode 100644 index 000000000000..bd7c6c12fce1 --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-AuthenticationServices.todo @@ -0,0 +1,10 @@ +!deprecated-attribute-missing! ASWebAuthenticationSession::initWithURL:callbackURLScheme:completionHandler: missing a [Deprecated] attribute +!missing-enum! ASUserAgeRange not bound +!missing-selector! +ASWebAuthenticationSessionCallback::callbackWithCustomScheme: not bound +!missing-selector! +ASWebAuthenticationSessionCallback::callbackWithHTTPSHost:path: not bound +!missing-selector! ASAuthorizationAppleIDCredential::userAgeRange not bound +!missing-selector! ASWebAuthenticationSession::additionalHeaderFields not bound +!missing-selector! ASWebAuthenticationSession::initWithURL:callback:completionHandler: not bound +!missing-selector! ASWebAuthenticationSession::setAdditionalHeaderFields: not bound +!missing-selector! ASWebAuthenticationSessionCallback::matchesURL: not bound +!missing-type! ASWebAuthenticationSessionCallback not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-BrowserEngineKit.todo b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-BrowserEngineKit.todo new file mode 100644 index 000000000000..79ad97e0f803 --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-BrowserEngineKit.todo @@ -0,0 +1,74 @@ +!missing-enum! BEGestureType not bound +!missing-enum! BEKeyModifierFlags not bound +!missing-enum! BEKeyPressState not bound +!missing-enum! BEScrollViewScrollUpdatePhase not bound +!missing-enum! BESelectionFlags not bound +!missing-enum! BESelectionTouchPhase not bound +!missing-enum! BETextDocumentRequestOptions not bound +!missing-enum! BETextReplacementOptions not bound +!missing-protocol! BEExtendedTextInputTraits not bound +!missing-protocol! BEResponderEditActions not bound +!missing-protocol! BEScrollViewDelegate not bound +!missing-protocol! BETextInput not bound +!missing-protocol! BETextInputDelegate not bound +!missing-protocol! BETextInteractionDelegate not bound +!missing-protocol! BETextSelectionDirectionNavigation not bound +!missing-selector! BEAutoFillTextSuggestion::contents not bound +!missing-selector! BEKeyEntry::isKeyRepeating not bound +!missing-selector! BEKeyEntry::key not bound +!missing-selector! BEKeyEntry::state not bound +!missing-selector! BEKeyEntry::timestamp not bound +!missing-selector! BEKeyEntryContext::initWithKeyEntry: not bound +!missing-selector! BEKeyEntryContext::isDocumentEditable not bound +!missing-selector! BEKeyEntryContext::keyEntry not bound +!missing-selector! BEKeyEntryContext::setDocumentEditable: not bound +!missing-selector! BEKeyEntryContext::setShouldEvaluateForInputSystemHandling: not bound +!missing-selector! BEKeyEntryContext::setShouldInsertCharacter: not bound +!missing-selector! BEKeyEntryContext::shouldEvaluateForInputSystemHandling not bound +!missing-selector! BEKeyEntryContext::shouldInsertCharacter not bound +!missing-selector! BEScrollView::delegate not bound +!missing-selector! BEScrollView::setDelegate: not bound +!missing-selector! BEScrollViewScrollUpdate::locationInView: not bound +!missing-selector! BEScrollViewScrollUpdate::phase not bound +!missing-selector! BEScrollViewScrollUpdate::timestamp not bound +!missing-selector! BEScrollViewScrollUpdate::translationInView: not bound +!missing-selector! BETextAlternatives::alternativeStrings not bound +!missing-selector! BETextAlternatives::primaryString not bound +!missing-selector! BETextDocumentContext::addTextRect:forCharacterRange: not bound +!missing-selector! BETextDocumentContext::autocorrectedRanges not bound +!missing-selector! BETextDocumentContext::initWithAttributedSelectedText:contextBefore:contextAfter:markedText:selectedRangeInMarkedText: not bound +!missing-selector! BETextDocumentContext::initWithSelectedText:contextBefore:contextAfter:markedText:selectedRangeInMarkedText: not bound +!missing-selector! BETextDocumentContext::setAutocorrectedRanges: not bound +!missing-selector! BETextDocumentRequest::granularityCount not bound +!missing-selector! BETextDocumentRequest::options not bound +!missing-selector! BETextDocumentRequest::setGranularityCount: not bound +!missing-selector! BETextDocumentRequest::setOptions: not bound +!missing-selector! BETextDocumentRequest::setSurroundingGranularity: not bound +!missing-selector! BETextDocumentRequest::surroundingGranularity not bound +!missing-selector! BETextInteraction::addShortcutForText:fromRect: not bound +!missing-selector! BETextInteraction::delegate not bound +!missing-selector! BETextInteraction::dismissEditMenuForSelection not bound +!missing-selector! BETextInteraction::editabilityChanged not bound +!missing-selector! BETextInteraction::presentEditMenuForSelection not bound +!missing-selector! BETextInteraction::refreshKeyboardUI not bound +!missing-selector! BETextInteraction::selectionBoundaryAdjustedToPoint:touchPhase:flags: not bound +!missing-selector! BETextInteraction::selectionChangedWithGestureAtPoint:gesture:state:flags: not bound +!missing-selector! BETextInteraction::setDelegate: not bound +!missing-selector! BETextInteraction::shareText:fromRect: not bound +!missing-selector! BETextInteraction::showDictionaryForTextInContext:definingTextInRange:fromRect: not bound +!missing-selector! BETextInteraction::showReplacementsForText: not bound +!missing-selector! BETextInteraction::textSelectionDisplayInteraction not bound +!missing-selector! BETextInteraction::translateText:fromRect: not bound +!missing-selector! BETextInteraction::transliterateChineseForText: not bound +!missing-selector! BETextSuggestion::initWithInputText: not bound +!missing-selector! BETextSuggestion::inputText not bound +!missing-type! BEAutoFillTextSuggestion not bound +!missing-type! BEKeyEntry not bound +!missing-type! BEKeyEntryContext not bound +!missing-type! BEScrollView not bound +!missing-type! BEScrollViewScrollUpdate not bound +!missing-type! BETextAlternatives not bound +!missing-type! BETextDocumentContext not bound +!missing-type! BETextDocumentRequest not bound +!missing-type! BETextInteraction not bound +!missing-type! BETextSuggestion not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-CoreML.todo b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-CoreML.todo new file mode 100644 index 000000000000..cd65c2081202 --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-CoreML.todo @@ -0,0 +1,58 @@ +!missing-enum! MLReshapeFrequencyHint not bound +!missing-selector! +MLComputePlan::loadContentsOfURL:configuration:completionHandler: not bound +!missing-selector! +MLComputePlan::loadModelAsset:configuration:completionHandler: not bound +!missing-selector! +MLModelStructure::loadContentsOfURL:completionHandler: not bound +!missing-selector! +MLModelStructure::loadModelAsset:completionHandler: not bound +!missing-selector! MLComputePlan::computeDeviceUsageForMLProgramOperation: not bound +!missing-selector! MLComputePlan::computeDeviceUsageForNeuralNetworkLayer: not bound +!missing-selector! MLComputePlan::estimatedCostOfMLProgramOperation: not bound +!missing-selector! MLComputePlan::modelStructure not bound +!missing-selector! MLComputePlanCost::weight not bound +!missing-selector! MLComputePlanDeviceUsage::preferredComputeDevice not bound +!missing-selector! MLComputePlanDeviceUsage::supportedComputeDevices not bound +!missing-selector! MLModelConfiguration::optimizationHints not bound +!missing-selector! MLModelConfiguration::setOptimizationHints: not bound +!missing-selector! MLModelStructure::neuralNetwork not bound +!missing-selector! MLModelStructure::pipeline not bound +!missing-selector! MLModelStructure::program not bound +!missing-selector! MLModelStructureNeuralNetwork::layers not bound +!missing-selector! MLModelStructureNeuralNetworkLayer::inputNames not bound +!missing-selector! MLModelStructureNeuralNetworkLayer::name not bound +!missing-selector! MLModelStructureNeuralNetworkLayer::outputNames not bound +!missing-selector! MLModelStructureNeuralNetworkLayer::type not bound +!missing-selector! MLModelStructurePipeline::subModelNames not bound +!missing-selector! MLModelStructurePipeline::subModels not bound +!missing-selector! MLModelStructureProgram::functions not bound +!missing-selector! MLModelStructureProgramArgument::bindings not bound +!missing-selector! MLModelStructureProgramBinding::name not bound +!missing-selector! MLModelStructureProgramBinding::value not bound +!missing-selector! MLModelStructureProgramBlock::inputs not bound +!missing-selector! MLModelStructureProgramBlock::operations not bound +!missing-selector! MLModelStructureProgramBlock::outputNames not bound +!missing-selector! MLModelStructureProgramFunction::block not bound +!missing-selector! MLModelStructureProgramFunction::inputs not bound +!missing-selector! MLModelStructureProgramNamedValueType::name not bound +!missing-selector! MLModelStructureProgramNamedValueType::type not bound +!missing-selector! MLModelStructureProgramOperation::blocks not bound +!missing-selector! MLModelStructureProgramOperation::inputs not bound +!missing-selector! MLModelStructureProgramOperation::operatorName not bound +!missing-selector! MLModelStructureProgramOperation::outputs not bound +!missing-selector! MLOptimizationHints::reshapeFrequency not bound +!missing-selector! MLOptimizationHints::setReshapeFrequency: not bound +!missing-type! MLComputePlan not bound +!missing-type! MLComputePlanCost not bound +!missing-type! MLComputePlanDeviceUsage not bound +!missing-type! MLModelStructure not bound +!missing-type! MLModelStructureNeuralNetwork not bound +!missing-type! MLModelStructureNeuralNetworkLayer not bound +!missing-type! MLModelStructurePipeline not bound +!missing-type! MLModelStructureProgram not bound +!missing-type! MLModelStructureProgramArgument not bound +!missing-type! MLModelStructureProgramBinding not bound +!missing-type! MLModelStructureProgramBlock not bound +!missing-type! MLModelStructureProgramFunction not bound +!missing-type! MLModelStructureProgramNamedValueType not bound +!missing-type! MLModelStructureProgramOperation not bound +!missing-type! MLModelStructureProgramValue not bound +!missing-type! MLModelStructureProgramValueType not bound +!missing-type! MLOptimizationHints not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-Foundation.todo b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-Foundation.todo new file mode 100644 index 000000000000..2630cbe5af9f --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-Foundation.todo @@ -0,0 +1,2 @@ +!missing-selector! NSUndoManager::redoCount not bound +!missing-selector! NSUndoManager::undoCount not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-GameController.todo b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-GameController.todo index 1106fdad9687..05700c01a485 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-GameController.todo +++ b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-GameController.todo @@ -16,3 +16,13 @@ !missing-selector! GCControllerLiveInput::unmappedInput not bound !missing-type! GCControllerInputState not bound !missing-type! GCControllerLiveInput not bound +!missing-field! GCInputLeftBumper not bound +!missing-field! GCInputRightBumper not bound +!missing-field! GCPoint2Zero not bound +!missing-pinvoke! GCInputBackLeftButton is not bound +!missing-pinvoke! GCInputBackRightButton is not bound +!missing-pinvoke! NSStringFromGCPoint2 is not bound +!missing-protocol! GCAxis2DInput not bound +!missing-protocol-member! GCDirectionPadElement::xyAxes not found +!missing-selector! +NSValue::valueWithGCPoint2: not bound +!missing-selector! NSValue::GCPoint2Value not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-GameKit.todo b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-GameKit.todo new file mode 100644 index 000000000000..fbc685833dbe --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-GameKit.todo @@ -0,0 +1,3 @@ +!deprecated-attribute-missing! GKScoreChallenge::score missing a [Deprecated] attribute +!missing-enum-value! GKError native value GKErrorAppUnlisted = 37 not bound +!missing-selector! GKScoreChallenge::leaderboardEntry not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-HomeKit.todo b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-HomeKit.todo new file mode 100644 index 000000000000..4e339b4433d5 --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-HomeKit.todo @@ -0,0 +1 @@ +!missing-enum-value! HMError native value HMErrorCodePartialCommunicationFailure = 104 not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-IOSurface.todo b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-IOSurface.todo index b3c729926b86..c6839a4fd0d7 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-IOSurface.todo +++ b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-IOSurface.todo @@ -1 +1,4 @@ !deprecated-attribute-missing! IOSurface missing a [Deprecated] attribute +!missing-enum! IOSurfaceMemoryLedgerFlags not bound +!missing-enum! IOSurfaceMemoryLedgerTags not bound +!missing-pinvoke! IOSurfaceSetOwnershipIdentity is not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-ImageIO.todo b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-ImageIO.todo new file mode 100644 index 000000000000..4c217d8b7e78 --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-ImageIO.todo @@ -0,0 +1,3 @@ +!missing-field! kCGImagePropertyTIFFXPosition not bound +!missing-field! kCGImagePropertyTIFFYPosition not bound +!missing-pinvoke! CGImageSourceSetAllowableTypes is not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-MLCompute.todo b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-MLCompute.todo index f7d76f9cbafb..d14eb75bf584 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-MLCompute.todo +++ b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-MLCompute.todo @@ -52,3 +52,4 @@ !deprecated-attribute-missing! MLCUpsampleLayer missing a [Deprecated] attribute !deprecated-attribute-missing! MLCYOLOLossDescriptor missing a [Deprecated] attribute !deprecated-attribute-missing! MLCYOLOLossLayer missing a [Deprecated] attribute +!deprecated-attribute-missing! MLCTensorOptimizerDeviceData missing a [Deprecated] attribute diff --git a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-Matter.ignore b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-Matter.ignore index a7ad51a42f5b..21498983956b 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-Matter.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-Matter.ignore @@ -22,11 +22,9 @@ !missing-enum! MTRColorControlSaturationMoveMode not bound !missing-enum! MTRColorControlSaturationStepMode not bound !missing-enum! MTRCommissioningFlow not bound -!missing-enum! MTRContentLauncherContentLaunchStatus not bound !missing-enum! MTRContentLauncherFeature not bound !missing-enum! MTRContentLauncherMetricType not bound !missing-enum! MTRContentLauncherParameter not bound -!missing-enum! MTRContentLauncherSupportedStreamingProtocol not bound !missing-enum! MTRDoorLockDayOfWeek not bound !missing-enum! MTRDoorLockDlCredentialRuleMask not bound !missing-enum! MTRDoorLockDlCredentialRulesSupport not bound @@ -57,7 +55,6 @@ !missing-enum! MTRIdentifyType not bound !missing-enum! MTRIlluminanceMeasurementLightSensorType not bound !missing-enum! MTRInteractionErrorCode not bound -!missing-enum! MTRKeypadInputCecKeyCode not bound !missing-enum! MTRKeypadInputFeature not bound !missing-enum! MTRKeypadInputStatus not bound !missing-enum! MTRLevelControlFeature not bound @@ -86,15 +83,10 @@ !missing-enum! MTRPowerSourceStatus not bound !missing-enum! MTRPowerSourceWiredCurrentType not bound !missing-enum! MTRPowerSourceWiredFault not bound -!missing-enum! MTRScenesCopyMode not bound !missing-enum! MTRSoftwareDiagnosticsFeature not bound !missing-enum! MTRTargetNavigatorStatus not bound -!missing-enum! MTRThermostatControlSequence not bound -!missing-enum! MTRThermostatDayOfWeek not bound !missing-enum! MTRThermostatFeature not bound -!missing-enum! MTRThermostatModeForSequence not bound !missing-enum! MTRThermostatRunningMode not bound -!missing-enum! MTRThermostatSetpointAdjustMode not bound !missing-enum! MTRThermostatSystemMode not bound !missing-enum! MTRThreadNetworkDiagnosticsFeature not bound !missing-enum! MTRThreadNetworkDiagnosticsNetworkFault not bound @@ -1363,12 +1355,6 @@ !missing-selector! MTRThermostatClusterSetWeeklyScheduleParams::setTransitions: not bound !missing-selector! MTRThermostatClusterSetWeeklyScheduleParams::timedInvokeTimeoutMs not bound !missing-selector! MTRThermostatClusterSetWeeklyScheduleParams::transitions not bound -!missing-selector! MTRThermostatClusterThermostatScheduleTransition::coolSetpoint not bound -!missing-selector! MTRThermostatClusterThermostatScheduleTransition::heatSetpoint not bound -!missing-selector! MTRThermostatClusterThermostatScheduleTransition::setCoolSetpoint: not bound -!missing-selector! MTRThermostatClusterThermostatScheduleTransition::setHeatSetpoint: not bound -!missing-selector! MTRThermostatClusterThermostatScheduleTransition::setTransitionTime: not bound -!missing-selector! MTRThermostatClusterThermostatScheduleTransition::transitionTime not bound !missing-selector! MTRThreadNetworkDiagnosticsClusterConnectionStatusEvent::connectionStatus not bound !missing-selector! MTRThreadNetworkDiagnosticsClusterConnectionStatusEvent::setConnectionStatus: not bound !missing-selector! MTRThreadNetworkDiagnosticsClusterOperationalDatasetComponents::activeTimestampPresent not bound @@ -1412,8 +1398,6 @@ !missing-selector! MTRUserLabelClusterLabelStruct::setLabel: not bound !missing-selector! MTRUserLabelClusterLabelStruct::setValue: not bound !missing-selector! MTRUserLabelClusterLabelStruct::value not bound -!missing-selector! MTRWiFiNetworkDiagnosticsClusterAssociationFailureEvent::associationFailure not bound -!missing-selector! MTRWiFiNetworkDiagnosticsClusterAssociationFailureEvent::setAssociationFailure: not bound !missing-selector! MTRWiFiNetworkDiagnosticsClusterAssociationFailureEvent::setStatus: not bound !missing-selector! MTRWiFiNetworkDiagnosticsClusterAssociationFailureEvent::status not bound !missing-selector! MTRWiFiNetworkDiagnosticsClusterConnectionStatusEvent::connectionStatus not bound @@ -1745,7 +1729,6 @@ !missing-type! MTRThermostatClusterGetWeeklyScheduleResponseParams not bound !missing-type! MTRThermostatClusterSetpointRaiseLowerParams not bound !missing-type! MTRThermostatClusterSetWeeklyScheduleParams not bound -!missing-type! MTRThermostatClusterThermostatScheduleTransition not bound !missing-type! MTRThreadNetworkDiagnosticsClusterConnectionStatusEvent not bound !missing-type! MTRThreadNetworkDiagnosticsClusterOperationalDatasetComponents not bound !missing-type! MTRThreadNetworkDiagnosticsClusterResetCountsParams not bound @@ -3267,7 +3250,6 @@ !missing-enum! MTRGeneralDiagnosticsHardwareFault not bound !missing-enum! MTRGeneralDiagnosticsNetworkFault not bound !missing-enum! MTRGeneralDiagnosticsRadioFault not bound -!missing-enum! MTRLevelControlOptions not bound !missing-enum! MTRLogType not bound !missing-enum! MTRMediaPlaybackFeature not bound !missing-enum! MTROperationalCredentialsCertificateChainType not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-Matter.todo b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-Matter.todo index 9e4d83bffc12..60406a5077b9 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-Matter.todo +++ b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-Matter.todo @@ -301,3 +301,383 @@ !missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::timeSource not bound !missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::utcTime not bound !missing-type! MTRTimeSynchronizationClusterSetUTCTimeParams not bound +!missing-enum! MTRAdministratorCommissioningFeature not bound +!missing-enum! MTRContentLauncherStatus not bound +!missing-enum! MTRContentLauncherSupportedProtocolsBitmap not bound +!missing-enum! MTRKeypadInputCECKeyCode not bound +!missing-enum! MTRLevelControlOptionsBitmap not bound +!missing-enum! MTROperationalState not bound +!missing-enum! MTROperationalStateErrorState not bound +!missing-enum! MTRRVCCleanModeFeature not bound +!missing-enum! MTRRVCCleanModeModeTag not bound +!missing-enum! MTRRVCCleanModeStatusCode not bound +!missing-enum! MTRRVCOperationalStateErrorState not bound +!missing-enum! MTRRVCOperationalStateOperationalState not bound +!missing-enum! MTRRVCRunModeFeature not bound +!missing-enum! MTRRVCRunModeModeTag not bound +!missing-enum! MTRRVCRunModeStatusCode not bound +!missing-enum! MTRScenesCopyModeBitmap not bound +!missing-enum! MTRThermostatControlSequenceOfOperation not bound +!missing-enum! MTRThermostatScheduleDayOfWeekBitmap not bound +!missing-enum! MTRThermostatScheduleModeBitmap not bound +!missing-enum! MTRThermostatSetpointRaiseLowerMode not bound +!missing-enum! MTRThermostatUserInterfaceConfigurationKeypadLockout not bound +!missing-enum! MTRThermostatUserInterfaceConfigurationScheduleProgrammingVisibility not bound +!missing-enum! MTRThermostatUserInterfaceConfigurationTemperatureDisplayMode not bound +!missing-field! MTREventIsHistoricalKey not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeAcceptedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeAttributeListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeClusterRevisionWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeCountdownTimeWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeCurrentPhaseWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeFeatureMapWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeGeneratedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeOperationalErrorWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeOperationalStateListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeOperationalStateWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributePhaseListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterPowerSource::readAttributeEndpointListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeAcceptedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeAttributeListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeClusterRevisionWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeCurrentModeWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeFeatureMapWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeGeneratedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeSupportedModesWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeAcceptedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeAttributeListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeClusterRevisionWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeCountdownTimeWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeCurrentPhaseWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeFeatureMapWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeGeneratedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeOperationalErrorWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeOperationalStateListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeOperationalStateWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributePhaseListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeAcceptedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeAttributeListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeClusterRevisionWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeCurrentModeWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeFeatureMapWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeGeneratedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeSupportedModesWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! MTRBaseClusterApplicationLauncher::hideAppWithCompletion: not bound +!missing-selector! MTRBaseClusterApplicationLauncher::launchAppWithCompletion: not bound +!missing-selector! MTRBaseClusterApplicationLauncher::stopAppWithCompletion: not bound +!missing-selector! MTRBaseClusterDoorLock::lockDoorWithCompletion: not bound +!missing-selector! MTRBaseClusterDoorLock::unlockDoorWithCompletion: not bound +!missing-selector! MTRBaseClusterNetworkCommissioning::scanNetworksWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRBaseClusterOperationalState::pauseWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::pauseWithParams:completion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeAcceptedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeAttributeListWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeClusterRevisionWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeCountdownTimeWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeCurrentPhaseWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeFeatureMapWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeGeneratedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeOperationalErrorWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeOperationalStateListWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeOperationalStateWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributePhaseListWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::resumeWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::resumeWithParams:completion: not bound +!missing-selector! MTRBaseClusterOperationalState::startWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::startWithParams:completion: not bound +!missing-selector! MTRBaseClusterOperationalState::stopWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::stopWithParams:completion: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeAcceptedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeAttributeListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeClusterRevisionWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeCountdownTimeWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeCurrentPhaseWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeFeatureMapWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeGeneratedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeOperationalErrorWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeOperationalStateListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeOperationalStateWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributePhaseListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterPowerSource::readAttributeEndpointListWithCompletion: not bound +!missing-selector! MTRBaseClusterPowerSource::subscribeAttributeEndpointListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::changeToModeWithParams:completion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeAcceptedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeAttributeListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeClusterRevisionWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeCurrentModeWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeFeatureMapWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeGeneratedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeSupportedModesWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeAcceptedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeAttributeListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeClusterRevisionWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeCurrentModeWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeFeatureMapWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeGeneratedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeSupportedModesWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::pauseWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::pauseWithParams:completion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeAcceptedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeAttributeListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeClusterRevisionWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeCountdownTimeWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeCurrentPhaseWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeFeatureMapWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeGeneratedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeOperationalErrorWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeOperationalStateListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeOperationalStateWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributePhaseListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::resumeWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::resumeWithParams:completion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeAcceptedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeAttributeListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeClusterRevisionWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeCountdownTimeWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeCurrentPhaseWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeFeatureMapWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeGeneratedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeOperationalErrorWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeOperationalStateListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeOperationalStateWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributePhaseListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::changeToModeWithParams:completion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeAcceptedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeAttributeListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeClusterRevisionWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeCurrentModeWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeFeatureMapWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeGeneratedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeSupportedModesWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeAcceptedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeAttributeListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeClusterRevisionWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeCurrentModeWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeFeatureMapWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeGeneratedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeSupportedModesWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterUnitTesting::testNullableOptionalRequestWithCompletion: not bound +!missing-selector! MTRBaseClusterUnitTesting::testSimpleOptionalArgumentRequestWithCompletion: not bound +!missing-selector! MTRCluster::endpointID not bound +!missing-selector! MTRClusterApplicationLauncher::hideAppWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterApplicationLauncher::launchAppWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterApplicationLauncher::stopAppWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterDoorLock::lockDoorWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterDoorLock::unlockDoorWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterNetworkCommissioning::scanNetworksWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRClusterOperationalState::pauseWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::pauseWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::readAttributeAcceptedCommandListWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeAttributeListWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeClusterRevisionWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeCountdownTimeWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeCurrentPhaseWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeFeatureMapWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeGeneratedCommandListWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeOperationalErrorWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeOperationalStateListWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeOperationalStateWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributePhaseListWithParams: not bound +!missing-selector! MTRClusterOperationalState::resumeWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::resumeWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::startWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::startWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::stopWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::stopWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterPowerSource::readAttributeEndpointListWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::changeToModeWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterRVCCleanMode::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeAcceptedCommandListWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeAttributeListWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeClusterRevisionWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeCurrentModeWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeFeatureMapWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeGeneratedCommandListWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeSupportedModesWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRClusterRVCOperationalState::pauseWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterRVCOperationalState::pauseWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeAcceptedCommandListWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeAttributeListWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeClusterRevisionWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeCountdownTimeWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeCurrentPhaseWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeFeatureMapWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeGeneratedCommandListWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeOperationalErrorWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeOperationalStateListWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeOperationalStateWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributePhaseListWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::resumeWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterRVCOperationalState::resumeWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterRVCRunMode::changeToModeWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterRVCRunMode::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeAcceptedCommandListWithParams: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeAttributeListWithParams: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeClusterRevisionWithParams: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeCurrentModeWithParams: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeFeatureMapWithParams: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeGeneratedCommandListWithParams: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeSupportedModesWithParams: not bound +!missing-selector! MTRClusterUnitTesting::testNullableOptionalRequestWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterUnitTesting::testSimpleOptionalArgumentRequestWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRDevice::deviceController not bound +!missing-selector! MTRDevice::invokeCommandWithEndpointID:clusterID:commandID:commandFields:expectedValues:expectedValueInterval:queue:completion: not bound +!missing-selector! MTRDevice::nodeID not bound +!missing-selector! MTRGenericCluster::device not bound +!missing-selector! MTROperationalStateClusterErrorStateStruct::errorStateDetails not bound +!missing-selector! MTROperationalStateClusterErrorStateStruct::errorStateID not bound +!missing-selector! MTROperationalStateClusterErrorStateStruct::errorStateLabel not bound +!missing-selector! MTROperationalStateClusterErrorStateStruct::setErrorStateDetails: not bound +!missing-selector! MTROperationalStateClusterErrorStateStruct::setErrorStateID: not bound +!missing-selector! MTROperationalStateClusterErrorStateStruct::setErrorStateLabel: not bound +!missing-selector! MTROperationalStateClusterOperationalCommandResponseParams::commandResponseState not bound +!missing-selector! MTROperationalStateClusterOperationalCommandResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTROperationalStateClusterOperationalCommandResponseParams::setCommandResponseState: not bound +!missing-selector! MTROperationalStateClusterOperationalErrorEvent::errorState not bound +!missing-selector! MTROperationalStateClusterOperationalErrorEvent::setErrorState: not bound +!missing-selector! MTROperationalStateClusterOperationalStateStruct::operationalStateID not bound +!missing-selector! MTROperationalStateClusterOperationalStateStruct::operationalStateLabel not bound +!missing-selector! MTROperationalStateClusterOperationalStateStruct::setOperationalStateID: not bound +!missing-selector! MTROperationalStateClusterOperationalStateStruct::setOperationalStateLabel: not bound +!missing-selector! MTROperationalStateClusterOperationCompletionEvent::completionErrorCode not bound +!missing-selector! MTROperationalStateClusterOperationCompletionEvent::pausedTime not bound +!missing-selector! MTROperationalStateClusterOperationCompletionEvent::setCompletionErrorCode: not bound +!missing-selector! MTROperationalStateClusterOperationCompletionEvent::setPausedTime: not bound +!missing-selector! MTROperationalStateClusterOperationCompletionEvent::setTotalOperationalTime: not bound +!missing-selector! MTROperationalStateClusterOperationCompletionEvent::totalOperationalTime not bound +!missing-selector! MTROperationalStateClusterPauseParams::serverSideProcessingTimeout not bound +!missing-selector! MTROperationalStateClusterPauseParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTROperationalStateClusterPauseParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTROperationalStateClusterPauseParams::timedInvokeTimeoutMs not bound +!missing-selector! MTROperationalStateClusterResumeParams::serverSideProcessingTimeout not bound +!missing-selector! MTROperationalStateClusterResumeParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTROperationalStateClusterResumeParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTROperationalStateClusterResumeParams::timedInvokeTimeoutMs not bound +!missing-selector! MTROperationalStateClusterStartParams::serverSideProcessingTimeout not bound +!missing-selector! MTROperationalStateClusterStartParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTROperationalStateClusterStartParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTROperationalStateClusterStartParams::timedInvokeTimeoutMs not bound +!missing-selector! MTROperationalStateClusterStopParams::serverSideProcessingTimeout not bound +!missing-selector! MTROperationalStateClusterStopParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTROperationalStateClusterStopParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTROperationalStateClusterStopParams::timedInvokeTimeoutMs not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::getNewMode not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::serverSideProcessingTimeout not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::setNewMode: not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::timedInvokeTimeoutMs not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeResponseParams::setStatus: not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeResponseParams::setStatusText: not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeResponseParams::status not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeResponseParams::statusText not bound +!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::label not bound +!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::mode not bound +!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::modeTags not bound +!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::setLabel: not bound +!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::setMode: not bound +!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::setModeTags: not bound +!missing-selector! MTRRVCCleanModeClusterModeTagStruct::mfgCode not bound +!missing-selector! MTRRVCCleanModeClusterModeTagStruct::setMfgCode: not bound +!missing-selector! MTRRVCCleanModeClusterModeTagStruct::setValue: not bound +!missing-selector! MTRRVCCleanModeClusterModeTagStruct::value not bound +!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::errorStateDetails not bound +!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::errorStateID not bound +!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::errorStateLabel not bound +!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::setErrorStateDetails: not bound +!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::setErrorStateID: not bound +!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::setErrorStateLabel: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalCommandResponseParams::commandResponseState not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalCommandResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalCommandResponseParams::setCommandResponseState: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalErrorEvent::errorState not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalErrorEvent::setErrorState: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalStateStruct::operationalStateID not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalStateStruct::operationalStateLabel not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalStateStruct::setOperationalStateID: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalStateStruct::setOperationalStateLabel: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::completionErrorCode not bound +!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::pausedTime not bound +!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::setCompletionErrorCode: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::setPausedTime: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::setTotalOperationalTime: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::totalOperationalTime not bound +!missing-selector! MTRRVCOperationalStateClusterPauseParams::serverSideProcessingTimeout not bound +!missing-selector! MTRRVCOperationalStateClusterPauseParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTRRVCOperationalStateClusterPauseParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTRRVCOperationalStateClusterPauseParams::timedInvokeTimeoutMs not bound +!missing-selector! MTRRVCOperationalStateClusterResumeParams::serverSideProcessingTimeout not bound +!missing-selector! MTRRVCOperationalStateClusterResumeParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTRRVCOperationalStateClusterResumeParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTRRVCOperationalStateClusterResumeParams::timedInvokeTimeoutMs not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeParams::getNewMode not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeParams::serverSideProcessingTimeout not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeParams::setNewMode: not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeParams::timedInvokeTimeoutMs not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeResponseParams::setStatus: not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeResponseParams::setStatusText: not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeResponseParams::status not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeResponseParams::statusText not bound +!missing-selector! MTRRVCRunModeClusterModeOptionStruct::label not bound +!missing-selector! MTRRVCRunModeClusterModeOptionStruct::mode not bound +!missing-selector! MTRRVCRunModeClusterModeOptionStruct::modeTags not bound +!missing-selector! MTRRVCRunModeClusterModeOptionStruct::setLabel: not bound +!missing-selector! MTRRVCRunModeClusterModeOptionStruct::setMode: not bound +!missing-selector! MTRRVCRunModeClusterModeOptionStruct::setModeTags: not bound +!missing-selector! MTRRVCRunModeClusterModeTagStruct::mfgCode not bound +!missing-selector! MTRRVCRunModeClusterModeTagStruct::setMfgCode: not bound +!missing-selector! MTRRVCRunModeClusterModeTagStruct::setValue: not bound +!missing-selector! MTRRVCRunModeClusterModeTagStruct::value not bound +!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::coolSetpoint not bound +!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::heatSetpoint not bound +!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::setCoolSetpoint: not bound +!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::setHeatSetpoint: not bound +!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::setTransitionTime: not bound +!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::transitionTime not bound +!missing-selector! MTRWiFiNetworkDiagnosticsClusterAssociationFailureEvent::associationFailureCause not bound +!missing-selector! MTRWiFiNetworkDiagnosticsClusterAssociationFailureEvent::setAssociationFailureCause: not bound +!missing-type! MTRBaseClusterOperationalState not bound +!missing-type! MTRBaseClusterRVCCleanMode not bound +!missing-type! MTRBaseClusterRVCOperationalState not bound +!missing-type! MTRBaseClusterRVCRunMode not bound +!missing-type! MTRClusterOperationalState not bound +!missing-type! MTRClusterRVCCleanMode not bound +!missing-type! MTRClusterRVCOperationalState not bound +!missing-type! MTRClusterRVCRunMode not bound +!missing-type! MTRGenericBaseCluster not bound +!missing-type! MTRGenericCluster not bound +!missing-type! MTROperationalStateClusterErrorStateStruct not bound +!missing-type! MTROperationalStateClusterOperationalCommandResponseParams not bound +!missing-type! MTROperationalStateClusterOperationalErrorEvent not bound +!missing-type! MTROperationalStateClusterOperationalStateStruct not bound +!missing-type! MTROperationalStateClusterOperationCompletionEvent not bound +!missing-type! MTROperationalStateClusterPauseParams not bound +!missing-type! MTROperationalStateClusterResumeParams not bound +!missing-type! MTROperationalStateClusterStartParams not bound +!missing-type! MTROperationalStateClusterStopParams not bound +!missing-type! MTRRVCCleanModeClusterChangeToModeParams not bound +!missing-type! MTRRVCCleanModeClusterChangeToModeResponseParams not bound +!missing-type! MTRRVCCleanModeClusterModeOptionStruct not bound +!missing-type! MTRRVCCleanModeClusterModeTagStruct not bound +!missing-type! MTRRVCOperationalStateClusterErrorStateStruct not bound +!missing-type! MTRRVCOperationalStateClusterOperationalCommandResponseParams not bound +!missing-type! MTRRVCOperationalStateClusterOperationalErrorEvent not bound +!missing-type! MTRRVCOperationalStateClusterOperationalStateStruct not bound +!missing-type! MTRRVCOperationalStateClusterOperationCompletionEvent not bound +!missing-type! MTRRVCOperationalStateClusterPauseParams not bound +!missing-type! MTRRVCOperationalStateClusterResumeParams not bound +!missing-type! MTRRVCRunModeClusterChangeToModeParams not bound +!missing-type! MTRRVCRunModeClusterChangeToModeResponseParams not bound +!missing-type! MTRRVCRunModeClusterModeOptionStruct not bound +!missing-type! MTRRVCRunModeClusterModeTagStruct not bound +!missing-type! MTRThermostatClusterWeeklyScheduleTransitionStruct not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-Metal.todo b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-Metal.todo new file mode 100644 index 000000000000..1bb2b6b6ef03 --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-Metal.todo @@ -0,0 +1,2 @@ +!missing-protocol-member! MTLResource::setOwnerWithIdentity: not found +!missing-protocol-member! MTLSharedEvent::waitUntilSignaledValue:timeoutMS: not found diff --git a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-MetalPerformanceShadersGraph.todo b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-MetalPerformanceShadersGraph.todo index a638a0553357..3fe3f392d7f9 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-MetalPerformanceShadersGraph.todo +++ b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-MetalPerformanceShadersGraph.todo @@ -342,3 +342,5 @@ !wrong-base-type! MPSGraphTensor expected MPSGraphObject actual NSObject !wrong-base-type! MPSGraphTensorData expected MPSGraphObject actual NSObject !wrong-base-type! MPSGraphType expected MPSGraphObject actual NSObject +!missing-selector! MPSGraph::sliceUpdateDataTensor:updateTensor:starts:ends:strides:startMask:endMask:squeezeMask:name: not bound +!missing-selector! MPSGraph::sliceUpdateDataTensor:updateTensor:startsTensor:endsTensor:stridesTensor:startMask:endMask:squeezeMask:name: not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-SystemConfiguration.todo b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-SystemConfiguration.todo new file mode 100644 index 000000000000..3af4b652b589 --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-SystemConfiguration.todo @@ -0,0 +1,8 @@ +!deprecated-attribute-missing! SCNetworkReachabilityCreateWithAddress missing a [Deprecated] attribute +!deprecated-attribute-missing! SCNetworkReachabilityCreateWithAddressPair missing a [Deprecated] attribute +!deprecated-attribute-missing! SCNetworkReachabilityCreateWithName missing a [Deprecated] attribute +!deprecated-attribute-missing! SCNetworkReachabilityGetFlags missing a [Deprecated] attribute +!deprecated-attribute-missing! SCNetworkReachabilityScheduleWithRunLoop missing a [Deprecated] attribute +!deprecated-attribute-missing! SCNetworkReachabilitySetCallback missing a [Deprecated] attribute +!deprecated-attribute-missing! SCNetworkReachabilitySetDispatchQueue missing a [Deprecated] attribute +!deprecated-attribute-missing! SCNetworkReachabilityUnscheduleFromRunLoop missing a [Deprecated] attribute diff --git a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-UIKit.ignore b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-UIKit.ignore index aaf53d60186d..db499bd01f32 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-UIKit.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-UIKit.ignore @@ -85,8 +85,6 @@ !missing-protocol! UIPreviewInteractionDelegate not bound ## enums only exposed from properties marked with UIKIT_CLASS_AVAILABLE_IOS_ONLY(10_0) -!missing-enum! UIImpactFeedbackStyle not bound -!missing-enum! UINotificationFeedbackType not bound ## headers are unclear (added in iOS9.1) but Apple web documentation does not show those members ## and several only make sense for the stylus touches @@ -110,7 +108,6 @@ !missing-selector! UIViewController::popoverPresentationController not bound ## property not decorated as unavailable but UIPinchGestureRecognizer, the returned type, is not available in tvOS -!missing-selector! UIScrollView::pinchGestureRecognizer not bound ## Apple renamed NSLineBreakMode from UILineBreakMode and we kept the old name !unknown-native-enum! UILineBreakMode bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-UIKit.todo b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-UIKit.todo new file mode 100644 index 000000000000..2b881e164ba2 --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-UIKit.todo @@ -0,0 +1,47 @@ +!missing-field! UITextContentTypeCellularEID not bound +!missing-field! UITextContentTypeCellularIMEI not bound +!missing-protocol! UIItemProviderReadingAugmentationDesignating not bound +!missing-protocol! UIItemProviderReadingAugmentationProviding not bound +!missing-protocol-member! UITextInput::caretTransformForPosition: not found +!missing-selector! NSItemProvider::_availableTypes not bound +!missing-selector! UIControl::performPrimaryAction not bound +!missing-selector! UIMenu::displayPreferences not bound +!missing-selector! UIMenu::setDisplayPreferences: not bound +!missing-selector! UIMenuDisplayPreferences::maximumNumberOfTitleLines not bound +!missing-selector! UIMenuDisplayPreferences::setMaximumNumberOfTitleLines: not bound +!missing-selector! UIScrollView::bouncesHorizontally not bound +!missing-selector! UIScrollView::bouncesVertically not bound +!missing-selector! UIScrollView::contentAlignmentPoint not bound +!missing-selector! UIScrollView::isScrollAnimating not bound +!missing-selector! UIScrollView::isZoomAnimating not bound +!missing-selector! UIScrollView::setBouncesHorizontally: not bound +!missing-selector! UIScrollView::setBouncesVertically: not bound +!missing-selector! UIScrollView::setContentAlignmentPoint: not bound +!missing-selector! UIScrollView::setTransfersHorizontalScrollingToParent: not bound +!missing-selector! UIScrollView::setTransfersVerticalScrollingToParent: not bound +!missing-selector! UIScrollView::stopScrollingAndZooming not bound +!missing-selector! UIScrollView::transfersHorizontalScrollingToParent not bound +!missing-selector! UIScrollView::transfersVerticalScrollingToParent not bound +!missing-selector! UIScrollView::withScrollIndicatorsShownForContentOffsetChanges: not bound +!missing-selector! UITextCursorDropPositionAnimator::animateAlongsideChanges:completion: not bound +!missing-selector! UITextCursorDropPositionAnimator::cursorView not bound +!missing-selector! UITextCursorDropPositionAnimator::initWithTextCursorView:textInput: not bound +!missing-selector! UITextCursorDropPositionAnimator::placeCursorAtPosition:animated: not bound +!missing-selector! UITextCursorDropPositionAnimator::setCursorVisible:animated: not bound +!missing-selector! UITextCursorDropPositionAnimator::textInput not bound +!missing-selector! UITextSelectionRect::transform not bound +!missing-type! UIMenuDisplayPreferences not bound +!missing-type! UIStandardTextCursorView not bound +!missing-type! UITextCursorDropPositionAnimator not bound +!unknown-field! UIPasteboardDetectionPatternCalendarEvent bound +!unknown-field! UIPasteboardDetectionPatternEmailAddress bound +!unknown-field! UIPasteboardDetectionPatternFlightNumber bound +!unknown-field! UIPasteboardDetectionPatternLink bound +!unknown-field! UIPasteboardDetectionPatternMoneyAmount bound +!unknown-field! UIPasteboardDetectionPatternNumber bound +!unknown-field! UIPasteboardDetectionPatternPhoneNumber bound +!unknown-field! UIPasteboardDetectionPatternPostalAddress bound +!unknown-field! UIPasteboardDetectionPatternProbableWebSearch bound +!unknown-field! UIPasteboardDetectionPatternProbableWebURL bound +!unknown-field! UIPasteboardDetectionPatternShipmentTrackingNumber bound +!unknown-native-enum! UIPasteControlDisplayMode bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-VideoSubscriberAccount.todo b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-VideoSubscriberAccount.todo new file mode 100644 index 000000000000..b325adc0448d --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-VideoSubscriberAccount.todo @@ -0,0 +1,8 @@ +!missing-selector! VSAppleSubscription::customerID not bound +!missing-selector! VSAppleSubscription::initWithCustomerID:productCodes: not bound +!missing-selector! VSAppleSubscription::productCodes not bound +!missing-selector! VSAppleSubscription::setCustomerID: not bound +!missing-selector! VSAppleSubscription::setProductCodes: not bound +!missing-selector! VSUserAccount::appleSubscription not bound +!missing-selector! VSUserAccount::setAppleSubscription: not bound +!missing-type! VSAppleSubscription not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-VideoToolbox.ignore b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-VideoToolbox.ignore index c25a07669c8d..6be06ae37e08 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-VideoToolbox.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-VideoToolbox.ignore @@ -4,4 +4,3 @@ ## availability macro says iOS 8.0 but constants are under a #if !TARGET_OS_IPHONE define. ## introspection does not report them as missing... -!unknown-field! kVTCompressionPropertyKey_UsingHardwareAcceleratedVideoEncoder bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-VideoToolbox.todo b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-VideoToolbox.todo index 5dae2c5753a8..e9d680df02fd 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-VideoToolbox.todo +++ b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-VideoToolbox.todo @@ -2,3 +2,10 @@ !missing-field! kVTDecompressionPropertyKey_GeneratePerFrameHDRDisplayMetadata not bound !missing-pinvoke! VTIsStereoMVHEVCDecodeSupported is not bound !missing-pinvoke! VTIsStereoMVHEVCEncodeSupported is not bound +!missing-field! kVTCompressionPropertyKey_CalculateMeanSquaredError not bound +!missing-field! kVTSampleAttachmentKey_QualityMetrics not bound +!missing-field! kVTSampleAttachmentQualityMetricsKey_ChromaBlueMeanSquaredError not bound +!missing-field! kVTSampleAttachmentQualityMetricsKey_ChromaRedMeanSquaredError not bound +!missing-field! kVTSampleAttachmentQualityMetricsKey_LumaMeanSquaredError not bound +!missing-field! kVTVideoEncoderSpecification_EnableHardwareAcceleratedVideoEncoder not bound +!missing-field! kVTVideoEncoderSpecification_RequireHardwareAcceleratedVideoEncoder not bound diff --git a/tests/xtro-sharpie/common-SystemConfiguration.ignore b/tests/xtro-sharpie/common-SystemConfiguration.ignore index 8400bf2dc9ee..05b1c7b36ed4 100644 --- a/tests/xtro-sharpie/common-SystemConfiguration.ignore +++ b/tests/xtro-sharpie/common-SystemConfiguration.ignore @@ -7,4 +7,3 @@ !missing-pinvoke! SCCopyLastError is not bound ## *GetTypeID are generally not bound -!missing-pinvoke! SCNetworkReachabilityGetTypeID is not bound diff --git a/tests/xtro-sharpie/iOS-AVFoundation.todo b/tests/xtro-sharpie/iOS-AVFoundation.todo index dfca775a6d07..faff4729863c 100644 --- a/tests/xtro-sharpie/iOS-AVFoundation.todo +++ b/tests/xtro-sharpie/iOS-AVFoundation.todo @@ -501,7 +501,6 @@ !missing-selector! AVCaptureDeviceFormat::zoomFactorsOutsideOfVideoZoomRangesForDepthDeliverySupported not bound !missing-selector! AVPlayer::setVideoOutput: not bound !missing-selector! AVPlayer::videoOutput not bound -!missing-selector! AVPlayerItemErrorLogEvent::allHTTPResponseHeaderFields not bound !missing-selector! AVPlayerVideoOutput::copyTaggedBufferGroupForHostTime:presentationTimeStamp:activeConfiguration: not bound !missing-selector! AVPlayerVideoOutput::initWithSpecification: not bound !missing-selector! AVPlayerVideoOutputConfiguration::activationTime not bound @@ -519,3 +518,21 @@ !missing-type! AVPlayerVideoOutputConfiguration not bound !missing-type! AVVideoOutputSpecification not bound !missing-type! AVZoomRange not bound +!missing-enum! AVExternalContentProtectionStatus not bound +!missing-field! AVSampleBufferDisplayLayerReadyForDisplayDidChangeNotification not bound +!missing-protocol-member! AVContentKeySessionDelegate::contentKeySession:didProvideContentKeyRequests:forInitializationData: not found +!missing-protocol-member! AVContentKeySessionDelegate::contentKeySession:externalProtectionStatusDidChangeForContentKey: not found +!missing-selector! AVContentKey::externalContentProtectionStatus not bound +!missing-selector! AVContentKey::revoke not bound +!missing-selector! AVSampleBufferDisplayLayer::isReadyForDisplay not bound +!missing-selector! AVSampleBufferVideoRenderer::copyDisplayedPixelBuffer not bound +!missing-selector! AVSampleBufferVideoRenderer::expectMinimumUpcomingSampleBufferPresentationTime: not bound +!missing-selector! AVSampleBufferVideoRenderer::expectMonotonicallyIncreasingUpcomingSampleBufferPresentationTimes not bound +!missing-selector! AVSampleBufferVideoRenderer::loadVideoPerformanceMetricsWithCompletionHandler: not bound +!missing-selector! AVSampleBufferVideoRenderer::resetUpcomingSampleBufferPresentationTimeExpectations not bound +!missing-selector! AVVideoPerformanceMetrics::numberOfCorruptedFrames not bound +!missing-selector! AVVideoPerformanceMetrics::numberOfDroppedFrames not bound +!missing-selector! AVVideoPerformanceMetrics::numberOfFramesDisplayedUsingOptimizedCompositing not bound +!missing-selector! AVVideoPerformanceMetrics::totalAccumulatedFrameDelay not bound +!missing-selector! AVVideoPerformanceMetrics::totalNumberOfFrames not bound +!missing-type! AVVideoPerformanceMetrics not bound diff --git a/tests/xtro-sharpie/iOS-AssetsLibrary.ignore b/tests/xtro-sharpie/iOS-AssetsLibrary.ignore index c8da4e49ad63..dff92464fb6a 100644 --- a/tests/xtro-sharpie/iOS-AssetsLibrary.ignore +++ b/tests/xtro-sharpie/iOS-AssetsLibrary.ignore @@ -1,2 +1 @@ ## typedef is used + untyped enum in ALAssetsLibrary.h: typedef NSUInteger ALAssetsGroupType; -!unknown-native-enum! ALAssetsGroupType bound diff --git a/tests/xtro-sharpie/iOS-AuthenticationServices.todo b/tests/xtro-sharpie/iOS-AuthenticationServices.todo new file mode 100644 index 000000000000..0a98b7e19b25 --- /dev/null +++ b/tests/xtro-sharpie/iOS-AuthenticationServices.todo @@ -0,0 +1,40 @@ +!deprecated-attribute-missing! ASWebAuthenticationSession::initWithURL:callbackURLScheme:completionHandler: missing a [Deprecated] attribute +!missing-enum! ASCredentialIdentityTypes not bound +!missing-enum! ASUserAgeRange not bound +!missing-protocol! ASAuthorizationWebBrowserPlatformPublicKeyCredentialAssertionRequest not bound +!missing-protocol! ASAuthorizationWebBrowserPlatformPublicKeyCredentialProvider not bound +!missing-protocol! ASAuthorizationWebBrowserPlatformPublicKeyCredentialRegistrationRequest not bound +!missing-protocol! ASAuthorizationWebBrowserSecurityKeyPublicKeyCredentialAssertionRequest not bound +!missing-protocol! ASAuthorizationWebBrowserSecurityKeyPublicKeyCredentialProvider not bound +!missing-protocol! ASAuthorizationWebBrowserSecurityKeyPublicKeyCredentialRegistrationRequest not bound +!missing-selector! +ASWebAuthenticationSessionCallback::callbackWithCustomScheme: not bound +!missing-selector! +ASWebAuthenticationSessionCallback::callbackWithHTTPSHost:path: not bound +!missing-selector! ASAuthorizationAppleIDCredential::userAgeRange not bound +!missing-selector! ASAuthorizationWebBrowserPlatformPublicKeyCredential::credentialID not bound +!missing-selector! ASAuthorizationWebBrowserPlatformPublicKeyCredential::customTitle not bound +!missing-selector! ASAuthorizationWebBrowserPlatformPublicKeyCredential::name not bound +!missing-selector! ASAuthorizationWebBrowserPlatformPublicKeyCredential::providerName not bound +!missing-selector! ASAuthorizationWebBrowserPlatformPublicKeyCredential::relyingParty not bound +!missing-selector! ASAuthorizationWebBrowserPlatformPublicKeyCredential::userHandle not bound +!missing-selector! ASAuthorizationWebBrowserPublicKeyCredentialManager::authorizationStateForPlatformCredentials not bound +!missing-selector! ASAuthorizationWebBrowserPublicKeyCredentialManager::init not bound +!missing-selector! ASAuthorizationWebBrowserPublicKeyCredentialManager::platformCredentialsForRelyingParty:completionHandler: not bound +!missing-selector! ASAuthorizationWebBrowserPublicKeyCredentialManager::requestAuthorizationForPublicKeyCredentials: not bound +!missing-selector! ASCredentialIdentityStore::getCredentialIdentitiesForService:credentialIdentityTypes:completionHandler: not bound +!missing-selector! ASPublicKeyCredentialClientData::challenge not bound +!missing-selector! ASPublicKeyCredentialClientData::crossOrigin not bound +!missing-selector! ASPublicKeyCredentialClientData::initWithChallenge:origin: not bound +!missing-selector! ASPublicKeyCredentialClientData::origin not bound +!missing-selector! ASPublicKeyCredentialClientData::setChallenge: not bound +!missing-selector! ASPublicKeyCredentialClientData::setCrossOrigin: not bound +!missing-selector! ASPublicKeyCredentialClientData::setOrigin: not bound +!missing-selector! ASPublicKeyCredentialClientData::setTopOrigin: not bound +!missing-selector! ASPublicKeyCredentialClientData::topOrigin not bound +!missing-selector! ASWebAuthenticationSession::additionalHeaderFields not bound +!missing-selector! ASWebAuthenticationSession::initWithURL:callback:completionHandler: not bound +!missing-selector! ASWebAuthenticationSession::setAdditionalHeaderFields: not bound +!missing-selector! ASWebAuthenticationSessionCallback::matchesURL: not bound +!missing-type! ASAuthorizationWebBrowserPlatformPublicKeyCredential not bound +!missing-type! ASAuthorizationWebBrowserPublicKeyCredentialManager not bound +!missing-type! ASPublicKeyCredentialClientData not bound +!missing-type! ASWebAuthenticationSessionCallback not bound diff --git a/tests/xtro-sharpie/iOS-BrowserEngineCore.todo b/tests/xtro-sharpie/iOS-BrowserEngineCore.todo new file mode 100644 index 000000000000..c4a95b2bb2d6 --- /dev/null +++ b/tests/xtro-sharpie/iOS-BrowserEngineCore.todo @@ -0,0 +1,5 @@ +!missing-pinvoke! be_memory_inline_jit_restrict_rwx_to_rw_with_witness is not bound +!missing-pinvoke! be_memory_inline_jit_restrict_rwx_to_rw_with_witness_impl is not bound +!missing-pinvoke! be_memory_inline_jit_restrict_rwx_to_rx_with_witness is not bound +!missing-pinvoke! be_memory_inline_jit_restrict_rwx_to_rx_with_witness_impl is not bound +!missing-pinvoke! be_memory_inline_jit_restrict_with_witness_supported is not bound diff --git a/tests/xtro-sharpie/iOS-BrowserEngineKit.todo b/tests/xtro-sharpie/iOS-BrowserEngineKit.todo new file mode 100644 index 000000000000..2347460bde1d --- /dev/null +++ b/tests/xtro-sharpie/iOS-BrowserEngineKit.todo @@ -0,0 +1,134 @@ +!missing-enum! BEGestureType not bound +!missing-enum! BEKeyModifierFlags not bound +!missing-enum! BEKeyPressState not bound +!missing-enum! BEScrollViewScrollUpdatePhase not bound +!missing-enum! BESelectionFlags not bound +!missing-enum! BESelectionTouchPhase not bound +!missing-enum! BETextDocumentRequestOptions not bound +!missing-enum! BETextReplacementOptions not bound +!missing-protocol! BEDragInteractionDelegate not bound +!missing-protocol! BEExtendedTextInputTraits not bound +!missing-protocol! BEProcessCapabilityGrant not bound +!missing-protocol! BEResponderEditActions not bound +!missing-protocol! BEScrollViewDelegate not bound +!missing-protocol! BETextInput not bound +!missing-protocol! BETextInputDelegate not bound +!missing-protocol! BETextInteractionDelegate not bound +!missing-protocol! BETextSelectionDirectionNavigation not bound +!missing-selector! +BELayerHierarchy::layerHierarchyWithError: not bound +!missing-selector! +BELayerHierarchyHandle::handleWithXPCRepresentation:error: not bound +!missing-selector! +BELayerHierarchyHostingTransactionCoordinator::coordinatorWithError: not bound +!missing-selector! +BELayerHierarchyHostingTransactionCoordinator::coordinatorWithXPCRepresentation:error: not bound +!missing-selector! +BENetworkingProcess::networkProcessWithInterruptionHandler:completion: not bound +!missing-selector! +BEProcessCapability::background not bound +!missing-selector! +BEProcessCapability::foreground not bound +!missing-selector! +BEProcessCapability::mediaPlaybackAndCaptureWithEnvironment: not bound +!missing-selector! +BEProcessCapability::suspended not bound +!missing-selector! +BERenderingProcess::renderingProcessWithInterruptionHandler:completion: not bound +!missing-selector! +BEWebContentProcess::webContentProcessWithInterruptionHandler:completion: not bound +!missing-selector! BEAutoFillTextSuggestion::contents not bound +!missing-selector! BEContextMenuConfiguration::fulfillUsingConfiguration: not bound +!missing-selector! BEContextMenuConfiguration::init not bound +!missing-selector! BEDragInteraction::delegate not bound +!missing-selector! BEDragInteraction::initWithDelegate: not bound +!missing-selector! BEKeyEntry::isKeyRepeating not bound +!missing-selector! BEKeyEntry::key not bound +!missing-selector! BEKeyEntry::state not bound +!missing-selector! BEKeyEntry::timestamp not bound +!missing-selector! BEKeyEntryContext::initWithKeyEntry: not bound +!missing-selector! BEKeyEntryContext::isDocumentEditable not bound +!missing-selector! BEKeyEntryContext::keyEntry not bound +!missing-selector! BEKeyEntryContext::setDocumentEditable: not bound +!missing-selector! BEKeyEntryContext::setShouldEvaluateForInputSystemHandling: not bound +!missing-selector! BEKeyEntryContext::setShouldInsertCharacter: not bound +!missing-selector! BEKeyEntryContext::shouldEvaluateForInputSystemHandling not bound +!missing-selector! BEKeyEntryContext::shouldInsertCharacter not bound +!missing-selector! BELayerHierarchy::handle not bound +!missing-selector! BELayerHierarchy::invalidate not bound +!missing-selector! BELayerHierarchy::layer not bound +!missing-selector! BELayerHierarchy::setLayer: not bound +!missing-selector! BELayerHierarchyHandle::createXPCRepresentation not bound +!missing-selector! BELayerHierarchyHostingTransactionCoordinator::addLayerHierarchy: not bound +!missing-selector! BELayerHierarchyHostingTransactionCoordinator::addLayerHierarchyHostingView: not bound +!missing-selector! BELayerHierarchyHostingTransactionCoordinator::commit not bound +!missing-selector! BELayerHierarchyHostingTransactionCoordinator::createXPCRepresentation not bound +!missing-selector! BELayerHierarchyHostingView::handle not bound +!missing-selector! BELayerHierarchyHostingView::setHandle: not bound +!missing-selector! BEMediaEnvironment::activateWithError: not bound +!missing-selector! BEMediaEnvironment::createXPCRepresentation not bound +!missing-selector! BEMediaEnvironment::initWithWebPageURL: not bound +!missing-selector! BEMediaEnvironment::initWithXPCRepresentation:error: not bound +!missing-selector! BEMediaEnvironment::makeCaptureSessionWithError: not bound +!missing-selector! BEMediaEnvironment::suspendWithError: not bound +!missing-selector! BENetworkingProcess::grantBENetworkingProcess:error: not bound +!missing-selector! BENetworkingProcess::invalidate not bound +!missing-selector! BENetworkingProcess::makeLibXPCConnectionError: not bound +!missing-selector! BEProcessCapability::requestWithError: not bound +!missing-selector! BERenderingProcess::createVisibilityPropagationInteraction not bound +!missing-selector! BERenderingProcess::grantBERenderingProcess:error: not bound +!missing-selector! BERenderingProcess::invalidate not bound +!missing-selector! BERenderingProcess::makeLibXPCConnectionError: not bound +!missing-selector! BEScrollView::delegate not bound +!missing-selector! BEScrollView::setDelegate: not bound +!missing-selector! BEScrollViewScrollUpdate::locationInView: not bound +!missing-selector! BEScrollViewScrollUpdate::phase not bound +!missing-selector! BEScrollViewScrollUpdate::timestamp not bound +!missing-selector! BEScrollViewScrollUpdate::translationInView: not bound +!missing-selector! BETextAlternatives::alternativeStrings not bound +!missing-selector! BETextAlternatives::primaryString not bound +!missing-selector! BETextDocumentContext::addTextRect:forCharacterRange: not bound +!missing-selector! BETextDocumentContext::autocorrectedRanges not bound +!missing-selector! BETextDocumentContext::initWithAttributedSelectedText:contextBefore:contextAfter:markedText:selectedRangeInMarkedText: not bound +!missing-selector! BETextDocumentContext::initWithSelectedText:contextBefore:contextAfter:markedText:selectedRangeInMarkedText: not bound +!missing-selector! BETextDocumentContext::setAutocorrectedRanges: not bound +!missing-selector! BETextDocumentRequest::granularityCount not bound +!missing-selector! BETextDocumentRequest::options not bound +!missing-selector! BETextDocumentRequest::setGranularityCount: not bound +!missing-selector! BETextDocumentRequest::setOptions: not bound +!missing-selector! BETextDocumentRequest::setSurroundingGranularity: not bound +!missing-selector! BETextDocumentRequest::surroundingGranularity not bound +!missing-selector! BETextInteraction::addShortcutForText:fromRect: not bound +!missing-selector! BETextInteraction::contextMenuInteraction not bound +!missing-selector! BETextInteraction::contextMenuInteractionDelegate not bound +!missing-selector! BETextInteraction::delegate not bound +!missing-selector! BETextInteraction::dismissEditMenuForSelection not bound +!missing-selector! BETextInteraction::editabilityChanged not bound +!missing-selector! BETextInteraction::presentEditMenuForSelection not bound +!missing-selector! BETextInteraction::refreshKeyboardUI not bound +!missing-selector! BETextInteraction::selectionBoundaryAdjustedToPoint:touchPhase:flags: not bound +!missing-selector! BETextInteraction::selectionChangedWithGestureAtPoint:gesture:state:flags: not bound +!missing-selector! BETextInteraction::setContextMenuInteractionDelegate: not bound +!missing-selector! BETextInteraction::setDelegate: not bound +!missing-selector! BETextInteraction::shareText:fromRect: not bound +!missing-selector! BETextInteraction::showDictionaryForTextInContext:definingTextInRange:fromRect: not bound +!missing-selector! BETextInteraction::showReplacementsForText: not bound +!missing-selector! BETextInteraction::textSelectionDisplayInteraction not bound +!missing-selector! BETextInteraction::translateText:fromRect: not bound +!missing-selector! BETextInteraction::transliterateChineseForText: not bound +!missing-selector! BETextSuggestion::initWithInputText: not bound +!missing-selector! BETextSuggestion::inputText not bound +!missing-selector! BEWebContentProcess::createVisibilityPropagationInteraction not bound +!missing-selector! BEWebContentProcess::grantBEWebContentProcess:error: not bound +!missing-selector! BEWebContentProcess::invalidate not bound +!missing-selector! BEWebContentProcess::makeLibXPCConnectionError: not bound +!missing-type! BEAutoFillTextSuggestion not bound +!missing-type! BEContextMenuConfiguration not bound +!missing-type! BEDragInteraction not bound +!missing-type! BEKeyEntry not bound +!missing-type! BEKeyEntryContext not bound +!missing-type! BELayerHierarchy not bound +!missing-type! BELayerHierarchyHandle not bound +!missing-type! BELayerHierarchyHostingTransactionCoordinator not bound +!missing-type! BELayerHierarchyHostingView not bound +!missing-type! BEMediaEnvironment not bound +!missing-type! BENetworkingProcess not bound +!missing-type! BEProcessCapability not bound +!missing-type! BERenderingProcess not bound +!missing-type! BEScrollView not bound +!missing-type! BEScrollViewScrollUpdate not bound +!missing-type! BETextAlternatives not bound +!missing-type! BETextDocumentContext not bound +!missing-type! BETextDocumentRequest not bound +!missing-type! BETextInteraction not bound +!missing-type! BETextSuggestion not bound +!missing-type! BEWebContentProcess not bound diff --git a/tests/xtro-sharpie/iOS-CarPlay.todo b/tests/xtro-sharpie/iOS-CarPlay.todo new file mode 100644 index 000000000000..149b03cef3e8 --- /dev/null +++ b/tests/xtro-sharpie/iOS-CarPlay.todo @@ -0,0 +1,58 @@ +!missing-enum! CPJunctionType not bound +!missing-enum! CPLaneStatus not bound +!missing-enum! CPManeuverState not bound +!missing-enum! CPManeuverType not bound +!missing-enum! CPTrafficSide not bound +!missing-protocol-member! CPMapTemplateDelegate::mapTemplateShouldProvideNavigationMetadata: not found +!missing-selector! CPLane::primaryAngle not bound +!missing-selector! CPLane::secondaryAngles not bound +!missing-selector! CPLane::setPrimaryAngle: not bound +!missing-selector! CPLane::setSecondaryAngles: not bound +!missing-selector! CPLane::setStatus: not bound +!missing-selector! CPLane::status not bound +!missing-selector! CPLaneGuidance::instructionVariants not bound +!missing-selector! CPLaneGuidance::lanes not bound +!missing-selector! CPLaneGuidance::setInstructionVariants: not bound +!missing-selector! CPLaneGuidance::setLanes: not bound +!missing-selector! CPListImageRowItem::imageTitles not bound +!missing-selector! CPListImageRowItem::initWithText:images:imageTitles: not bound +!missing-selector! CPListImageRowItem::setImageTitles: not bound +!missing-selector! CPManeuver::highwayExitLabel not bound +!missing-selector! CPManeuver::junctionElementAngles not bound +!missing-selector! CPManeuver::junctionExitAngle not bound +!missing-selector! CPManeuver::junctionType not bound +!missing-selector! CPManeuver::linkedLaneGuidance not bound +!missing-selector! CPManeuver::maneuverType not bound +!missing-selector! CPManeuver::roadFollowingManeuverVariants not bound +!missing-selector! CPManeuver::setHighwayExitLabel: not bound +!missing-selector! CPManeuver::setJunctionElementAngles: not bound +!missing-selector! CPManeuver::setJunctionExitAngle: not bound +!missing-selector! CPManeuver::setJunctionType: not bound +!missing-selector! CPManeuver::setLinkedLaneGuidance: not bound +!missing-selector! CPManeuver::setManeuverType: not bound +!missing-selector! CPManeuver::setRoadFollowingManeuverVariants: not bound +!missing-selector! CPManeuver::setTrafficSide: not bound +!missing-selector! CPManeuver::trafficSide not bound +!missing-selector! CPNavigationSession::addLaneGuidances: not bound +!missing-selector! CPNavigationSession::addManeuvers: not bound +!missing-selector! CPNavigationSession::currentLaneGuidance not bound +!missing-selector! CPNavigationSession::currentRoadNameVariants not bound +!missing-selector! CPNavigationSession::maneuverState not bound +!missing-selector! CPNavigationSession::resumeTripWithUpdatedRouteInformation: not bound +!missing-selector! CPNavigationSession::setCurrentLaneGuidance: not bound +!missing-selector! CPNavigationSession::setCurrentRoadNameVariants: not bound +!missing-selector! CPNavigationSession::setManeuverState: not bound +!missing-selector! CPRouteInformation::currentLaneGuidance not bound +!missing-selector! CPRouteInformation::currentManeuvers not bound +!missing-selector! CPRouteInformation::initWithManeuvers:laneGuidances:currentManeuvers:currentLaneGuidance:tripTravelEstimates:maneuverTravelEstimates: not bound +!missing-selector! CPRouteInformation::laneGuidances not bound +!missing-selector! CPRouteInformation::maneuvers not bound +!missing-selector! CPRouteInformation::maneuverTravelEstimates not bound +!missing-selector! CPRouteInformation::tripTravelEstimates not bound +!missing-selector! CPTravelEstimates::distanceRemainingToDisplay not bound +!missing-selector! CPTravelEstimates::initWithDistanceRemaining:distanceRemainingToDisplay:timeRemaining: not bound +!missing-selector! CPTrip::destinationNameVariants not bound +!missing-selector! CPTrip::setDestinationNameVariants: not bound +!missing-type! CPLane not bound +!missing-type! CPLaneGuidance not bound +!missing-type! CPRouteInformation not bound diff --git a/tests/xtro-sharpie/iOS-CoreML.todo b/tests/xtro-sharpie/iOS-CoreML.todo new file mode 100644 index 000000000000..cd65c2081202 --- /dev/null +++ b/tests/xtro-sharpie/iOS-CoreML.todo @@ -0,0 +1,58 @@ +!missing-enum! MLReshapeFrequencyHint not bound +!missing-selector! +MLComputePlan::loadContentsOfURL:configuration:completionHandler: not bound +!missing-selector! +MLComputePlan::loadModelAsset:configuration:completionHandler: not bound +!missing-selector! +MLModelStructure::loadContentsOfURL:completionHandler: not bound +!missing-selector! +MLModelStructure::loadModelAsset:completionHandler: not bound +!missing-selector! MLComputePlan::computeDeviceUsageForMLProgramOperation: not bound +!missing-selector! MLComputePlan::computeDeviceUsageForNeuralNetworkLayer: not bound +!missing-selector! MLComputePlan::estimatedCostOfMLProgramOperation: not bound +!missing-selector! MLComputePlan::modelStructure not bound +!missing-selector! MLComputePlanCost::weight not bound +!missing-selector! MLComputePlanDeviceUsage::preferredComputeDevice not bound +!missing-selector! MLComputePlanDeviceUsage::supportedComputeDevices not bound +!missing-selector! MLModelConfiguration::optimizationHints not bound +!missing-selector! MLModelConfiguration::setOptimizationHints: not bound +!missing-selector! MLModelStructure::neuralNetwork not bound +!missing-selector! MLModelStructure::pipeline not bound +!missing-selector! MLModelStructure::program not bound +!missing-selector! MLModelStructureNeuralNetwork::layers not bound +!missing-selector! MLModelStructureNeuralNetworkLayer::inputNames not bound +!missing-selector! MLModelStructureNeuralNetworkLayer::name not bound +!missing-selector! MLModelStructureNeuralNetworkLayer::outputNames not bound +!missing-selector! MLModelStructureNeuralNetworkLayer::type not bound +!missing-selector! MLModelStructurePipeline::subModelNames not bound +!missing-selector! MLModelStructurePipeline::subModels not bound +!missing-selector! MLModelStructureProgram::functions not bound +!missing-selector! MLModelStructureProgramArgument::bindings not bound +!missing-selector! MLModelStructureProgramBinding::name not bound +!missing-selector! MLModelStructureProgramBinding::value not bound +!missing-selector! MLModelStructureProgramBlock::inputs not bound +!missing-selector! MLModelStructureProgramBlock::operations not bound +!missing-selector! MLModelStructureProgramBlock::outputNames not bound +!missing-selector! MLModelStructureProgramFunction::block not bound +!missing-selector! MLModelStructureProgramFunction::inputs not bound +!missing-selector! MLModelStructureProgramNamedValueType::name not bound +!missing-selector! MLModelStructureProgramNamedValueType::type not bound +!missing-selector! MLModelStructureProgramOperation::blocks not bound +!missing-selector! MLModelStructureProgramOperation::inputs not bound +!missing-selector! MLModelStructureProgramOperation::operatorName not bound +!missing-selector! MLModelStructureProgramOperation::outputs not bound +!missing-selector! MLOptimizationHints::reshapeFrequency not bound +!missing-selector! MLOptimizationHints::setReshapeFrequency: not bound +!missing-type! MLComputePlan not bound +!missing-type! MLComputePlanCost not bound +!missing-type! MLComputePlanDeviceUsage not bound +!missing-type! MLModelStructure not bound +!missing-type! MLModelStructureNeuralNetwork not bound +!missing-type! MLModelStructureNeuralNetworkLayer not bound +!missing-type! MLModelStructurePipeline not bound +!missing-type! MLModelStructureProgram not bound +!missing-type! MLModelStructureProgramArgument not bound +!missing-type! MLModelStructureProgramBinding not bound +!missing-type! MLModelStructureProgramBlock not bound +!missing-type! MLModelStructureProgramFunction not bound +!missing-type! MLModelStructureProgramNamedValueType not bound +!missing-type! MLModelStructureProgramOperation not bound +!missing-type! MLModelStructureProgramValue not bound +!missing-type! MLModelStructureProgramValueType not bound +!missing-type! MLOptimizationHints not bound diff --git a/tests/xtro-sharpie/iOS-FileProvider.todo b/tests/xtro-sharpie/iOS-FileProvider.todo new file mode 100644 index 000000000000..f93b23c66048 --- /dev/null +++ b/tests/xtro-sharpie/iOS-FileProvider.todo @@ -0,0 +1,3 @@ +!missing-enum-value! NSFileProviderError native value NSFileProviderErrorApplicationExtensionNotFound = -2014 not bound +!missing-enum-value! NSFileProviderError native value NSFileProviderErrorProviderDomainNotFound = -2013 not bound +!missing-enum-value! NSFileProviderError native value NSFileProviderErrorProviderDomainTemporarilyUnavailable = -2012 not bound diff --git a/tests/xtro-sharpie/iOS-Foundation.todo b/tests/xtro-sharpie/iOS-Foundation.todo new file mode 100644 index 000000000000..cce243852bab --- /dev/null +++ b/tests/xtro-sharpie/iOS-Foundation.todo @@ -0,0 +1,7 @@ +!missing-protocol-member! NSFilePresenter::accommodatePresentedItemEvictionWithCompletionHandler: not found +!missing-selector! NSUndoManager::redoCount not bound +!missing-selector! NSUndoManager::undoCount not bound +!missing-selector! NSXPCCoder::decodeXPCObjectOfType:forKey: not bound +!missing-selector! NSXPCCoder::encodeXPCObject:forKey: not bound +!missing-selector! NSXPCInterface::setXPCType:forSelector:argumentIndex:ofReply: not bound +!missing-selector! NSXPCInterface::XPCTypeForSelector:argumentIndex:ofReply: not bound diff --git a/tests/xtro-sharpie/iOS-GameController.todo b/tests/xtro-sharpie/iOS-GameController.todo index 3498dd2833b8..f4791bccd7fb 100644 --- a/tests/xtro-sharpie/iOS-GameController.todo +++ b/tests/xtro-sharpie/iOS-GameController.todo @@ -35,3 +35,13 @@ !missing-type! GCControllerInputState not bound !missing-type! GCControllerLiveInput not bound !missing-type! GCPhysicalInputElementCollection not bound +!missing-field! GCInputLeftBumper not bound +!missing-field! GCInputRightBumper not bound +!missing-field! GCPoint2Zero not bound +!missing-pinvoke! GCInputBackLeftButton is not bound +!missing-pinvoke! GCInputBackRightButton is not bound +!missing-pinvoke! NSStringFromGCPoint2 is not bound +!missing-protocol! GCAxis2DInput not bound +!missing-protocol-member! GCDirectionPadElement::xyAxes not found +!missing-selector! +NSValue::valueWithGCPoint2: not bound +!missing-selector! NSValue::GCPoint2Value not bound diff --git a/tests/xtro-sharpie/iOS-GameKit.todo b/tests/xtro-sharpie/iOS-GameKit.todo new file mode 100644 index 000000000000..fbc685833dbe --- /dev/null +++ b/tests/xtro-sharpie/iOS-GameKit.todo @@ -0,0 +1,3 @@ +!deprecated-attribute-missing! GKScoreChallenge::score missing a [Deprecated] attribute +!missing-enum-value! GKError native value GKErrorAppUnlisted = 37 not bound +!missing-selector! GKScoreChallenge::leaderboardEntry not bound diff --git a/tests/xtro-sharpie/iOS-HomeKit.todo b/tests/xtro-sharpie/iOS-HomeKit.todo new file mode 100644 index 000000000000..4e339b4433d5 --- /dev/null +++ b/tests/xtro-sharpie/iOS-HomeKit.todo @@ -0,0 +1 @@ +!missing-enum-value! HMError native value HMErrorCodePartialCommunicationFailure = 104 not bound diff --git a/tests/xtro-sharpie/iOS-IOSurface.todo b/tests/xtro-sharpie/iOS-IOSurface.todo new file mode 100644 index 000000000000..c6839a4fd0d7 --- /dev/null +++ b/tests/xtro-sharpie/iOS-IOSurface.todo @@ -0,0 +1,4 @@ +!deprecated-attribute-missing! IOSurface missing a [Deprecated] attribute +!missing-enum! IOSurfaceMemoryLedgerFlags not bound +!missing-enum! IOSurfaceMemoryLedgerTags not bound +!missing-pinvoke! IOSurfaceSetOwnershipIdentity is not bound diff --git a/tests/xtro-sharpie/iOS-ImageIO.todo b/tests/xtro-sharpie/iOS-ImageIO.todo new file mode 100644 index 000000000000..4c217d8b7e78 --- /dev/null +++ b/tests/xtro-sharpie/iOS-ImageIO.todo @@ -0,0 +1,3 @@ +!missing-field! kCGImagePropertyTIFFXPosition not bound +!missing-field! kCGImagePropertyTIFFYPosition not bound +!missing-pinvoke! CGImageSourceSetAllowableTypes is not bound diff --git a/tests/xtro-sharpie/iOS-Intents.todo b/tests/xtro-sharpie/iOS-Intents.todo new file mode 100644 index 000000000000..4b974589bf5e --- /dev/null +++ b/tests/xtro-sharpie/iOS-Intents.todo @@ -0,0 +1,2 @@ +!missing-field! INCarChargingConnectorTypeNACSAC not bound +!missing-field! INCarChargingConnectorTypeNACSDC not bound diff --git a/tests/xtro-sharpie/iOS-MLCompute.todo b/tests/xtro-sharpie/iOS-MLCompute.todo index f7d76f9cbafb..d14eb75bf584 100644 --- a/tests/xtro-sharpie/iOS-MLCompute.todo +++ b/tests/xtro-sharpie/iOS-MLCompute.todo @@ -52,3 +52,4 @@ !deprecated-attribute-missing! MLCUpsampleLayer missing a [Deprecated] attribute !deprecated-attribute-missing! MLCYOLOLossDescriptor missing a [Deprecated] attribute !deprecated-attribute-missing! MLCYOLOLossLayer missing a [Deprecated] attribute +!deprecated-attribute-missing! MLCTensorOptimizerDeviceData missing a [Deprecated] attribute diff --git a/tests/xtro-sharpie/iOS-Matter.todo b/tests/xtro-sharpie/iOS-Matter.todo index fe1dbd568000..1d707cc1e85c 100644 --- a/tests/xtro-sharpie/iOS-Matter.todo +++ b/tests/xtro-sharpie/iOS-Matter.todo @@ -36,11 +36,9 @@ !missing-enum! MTRCommandIDType not bound !missing-enum! MTRCommissioningFlow not bound !missing-enum! MTRCommissioningStatus not bound -!missing-enum! MTRContentLauncherContentLaunchStatus not bound !missing-enum! MTRContentLauncherFeature not bound !missing-enum! MTRContentLauncherMetricType not bound !missing-enum! MTRContentLauncherParameter not bound -!missing-enum! MTRContentLauncherSupportedStreamingProtocol not bound !missing-enum! MTRDeviceState not bound !missing-enum! MTRDiagnosticLogsIntent not bound !missing-enum! MTRDiagnosticLogsStatus not bound @@ -102,12 +100,10 @@ !missing-enum! MTRIdentifyType not bound !missing-enum! MTRIlluminanceMeasurementLightSensorType not bound !missing-enum! MTRInteractionErrorCode not bound -!missing-enum! MTRKeypadInputCecKeyCode not bound !missing-enum! MTRKeypadInputFeature not bound !missing-enum! MTRKeypadInputStatus not bound !missing-enum! MTRLevelControlFeature not bound !missing-enum! MTRLevelControlMoveMode not bound -!missing-enum! MTRLevelControlOptions not bound !missing-enum! MTRLevelControlStepMode not bound !missing-enum! MTRLogType not bound !missing-enum! MTRMediaInputFeature not bound @@ -148,17 +144,12 @@ !missing-enum! MTRPumpConfigurationAndControlFeature not bound !missing-enum! MTRPumpConfigurationAndControlOperationMode not bound !missing-enum! MTRPumpConfigurationAndControlPumpStatusBitmap not bound -!missing-enum! MTRScenesCopyMode not bound !missing-enum! MTRScenesFeature not bound !missing-enum! MTRSoftwareDiagnosticsFeature not bound !missing-enum! MTRSwitchFeature not bound !missing-enum! MTRTargetNavigatorStatus not bound -!missing-enum! MTRThermostatControlSequence not bound -!missing-enum! MTRThermostatDayOfWeek not bound !missing-enum! MTRThermostatFeature not bound -!missing-enum! MTRThermostatModeForSequence not bound !missing-enum! MTRThermostatRunningMode not bound -!missing-enum! MTRThermostatSetpointAdjustMode not bound !missing-enum! MTRThermostatSystemMode not bound !missing-enum! MTRThreadNetworkDiagnosticsConnectionStatus not bound !missing-enum! MTRThreadNetworkDiagnosticsFeature not bound @@ -8432,12 +8423,6 @@ !missing-selector! MTRThermostatClusterSetWeeklyScheduleParams::setTransitions: not bound !missing-selector! MTRThermostatClusterSetWeeklyScheduleParams::timedInvokeTimeoutMs not bound !missing-selector! MTRThermostatClusterSetWeeklyScheduleParams::transitions not bound -!missing-selector! MTRThermostatClusterThermostatScheduleTransition::coolSetpoint not bound -!missing-selector! MTRThermostatClusterThermostatScheduleTransition::heatSetpoint not bound -!missing-selector! MTRThermostatClusterThermostatScheduleTransition::setCoolSetpoint: not bound -!missing-selector! MTRThermostatClusterThermostatScheduleTransition::setHeatSetpoint: not bound -!missing-selector! MTRThermostatClusterThermostatScheduleTransition::setTransitionTime: not bound -!missing-selector! MTRThermostatClusterThermostatScheduleTransition::transitionTime not bound !missing-selector! MTRThreadNetworkDiagnosticsClusterConnectionStatusEvent::connectionStatus not bound !missing-selector! MTRThreadNetworkDiagnosticsClusterConnectionStatusEvent::setConnectionStatus: not bound !missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::age not bound @@ -8925,8 +8910,6 @@ !missing-selector! MTRUserLabelClusterLabelStruct::setLabel: not bound !missing-selector! MTRUserLabelClusterLabelStruct::setValue: not bound !missing-selector! MTRUserLabelClusterLabelStruct::value not bound -!missing-selector! MTRWiFiNetworkDiagnosticsClusterAssociationFailureEvent::associationFailure not bound -!missing-selector! MTRWiFiNetworkDiagnosticsClusterAssociationFailureEvent::setAssociationFailure: not bound !missing-selector! MTRWiFiNetworkDiagnosticsClusterAssociationFailureEvent::setStatus: not bound !missing-selector! MTRWiFiNetworkDiagnosticsClusterAssociationFailureEvent::status not bound !missing-selector! MTRWiFiNetworkDiagnosticsClusterConnectionStatusEvent::connectionStatus not bound @@ -9433,7 +9416,6 @@ !missing-type! MTRThermostatClusterGetWeeklyScheduleResponseParams not bound !missing-type! MTRThermostatClusterSetpointRaiseLowerParams not bound !missing-type! MTRThermostatClusterSetWeeklyScheduleParams not bound -!missing-type! MTRThermostatClusterThermostatScheduleTransition not bound !missing-type! MTRThreadNetworkDiagnosticsClusterConnectionStatusEvent not bound !missing-type! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct not bound !missing-type! MTRThreadNetworkDiagnosticsClusterNetworkFaultChangeEvent not bound @@ -9520,3 +9502,383 @@ !missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::timeSource not bound !missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::utcTime not bound !missing-type! MTRTimeSynchronizationClusterSetUTCTimeParams not bound +!missing-enum! MTRAdministratorCommissioningFeature not bound +!missing-enum! MTRContentLauncherStatus not bound +!missing-enum! MTRContentLauncherSupportedProtocolsBitmap not bound +!missing-enum! MTRKeypadInputCECKeyCode not bound +!missing-enum! MTRLevelControlOptionsBitmap not bound +!missing-enum! MTROperationalState not bound +!missing-enum! MTROperationalStateErrorState not bound +!missing-enum! MTRRVCCleanModeFeature not bound +!missing-enum! MTRRVCCleanModeModeTag not bound +!missing-enum! MTRRVCCleanModeStatusCode not bound +!missing-enum! MTRRVCOperationalStateErrorState not bound +!missing-enum! MTRRVCOperationalStateOperationalState not bound +!missing-enum! MTRRVCRunModeFeature not bound +!missing-enum! MTRRVCRunModeModeTag not bound +!missing-enum! MTRRVCRunModeStatusCode not bound +!missing-enum! MTRScenesCopyModeBitmap not bound +!missing-enum! MTRThermostatControlSequenceOfOperation not bound +!missing-enum! MTRThermostatScheduleDayOfWeekBitmap not bound +!missing-enum! MTRThermostatScheduleModeBitmap not bound +!missing-enum! MTRThermostatSetpointRaiseLowerMode not bound +!missing-enum! MTRThermostatUserInterfaceConfigurationKeypadLockout not bound +!missing-enum! MTRThermostatUserInterfaceConfigurationScheduleProgrammingVisibility not bound +!missing-enum! MTRThermostatUserInterfaceConfigurationTemperatureDisplayMode not bound +!missing-field! MTREventIsHistoricalKey not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeAcceptedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeAttributeListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeClusterRevisionWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeCountdownTimeWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeCurrentPhaseWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeFeatureMapWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeGeneratedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeOperationalErrorWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeOperationalStateListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeOperationalStateWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributePhaseListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterPowerSource::readAttributeEndpointListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeAcceptedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeAttributeListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeClusterRevisionWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeCurrentModeWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeFeatureMapWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeGeneratedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeSupportedModesWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeAcceptedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeAttributeListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeClusterRevisionWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeCountdownTimeWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeCurrentPhaseWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeFeatureMapWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeGeneratedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeOperationalErrorWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeOperationalStateListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeOperationalStateWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributePhaseListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeAcceptedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeAttributeListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeClusterRevisionWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeCurrentModeWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeFeatureMapWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeGeneratedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeSupportedModesWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! MTRBaseClusterApplicationLauncher::hideAppWithCompletion: not bound +!missing-selector! MTRBaseClusterApplicationLauncher::launchAppWithCompletion: not bound +!missing-selector! MTRBaseClusterApplicationLauncher::stopAppWithCompletion: not bound +!missing-selector! MTRBaseClusterDoorLock::lockDoorWithCompletion: not bound +!missing-selector! MTRBaseClusterDoorLock::unlockDoorWithCompletion: not bound +!missing-selector! MTRBaseClusterNetworkCommissioning::scanNetworksWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRBaseClusterOperationalState::pauseWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::pauseWithParams:completion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeAcceptedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeAttributeListWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeClusterRevisionWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeCountdownTimeWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeCurrentPhaseWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeFeatureMapWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeGeneratedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeOperationalErrorWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeOperationalStateListWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeOperationalStateWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributePhaseListWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::resumeWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::resumeWithParams:completion: not bound +!missing-selector! MTRBaseClusterOperationalState::startWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::startWithParams:completion: not bound +!missing-selector! MTRBaseClusterOperationalState::stopWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::stopWithParams:completion: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeAcceptedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeAttributeListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeClusterRevisionWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeCountdownTimeWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeCurrentPhaseWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeFeatureMapWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeGeneratedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeOperationalErrorWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeOperationalStateListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeOperationalStateWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributePhaseListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterPowerSource::readAttributeEndpointListWithCompletion: not bound +!missing-selector! MTRBaseClusterPowerSource::subscribeAttributeEndpointListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::changeToModeWithParams:completion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeAcceptedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeAttributeListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeClusterRevisionWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeCurrentModeWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeFeatureMapWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeGeneratedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeSupportedModesWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeAcceptedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeAttributeListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeClusterRevisionWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeCurrentModeWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeFeatureMapWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeGeneratedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeSupportedModesWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::pauseWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::pauseWithParams:completion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeAcceptedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeAttributeListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeClusterRevisionWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeCountdownTimeWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeCurrentPhaseWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeFeatureMapWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeGeneratedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeOperationalErrorWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeOperationalStateListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeOperationalStateWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributePhaseListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::resumeWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::resumeWithParams:completion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeAcceptedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeAttributeListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeClusterRevisionWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeCountdownTimeWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeCurrentPhaseWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeFeatureMapWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeGeneratedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeOperationalErrorWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeOperationalStateListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeOperationalStateWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributePhaseListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::changeToModeWithParams:completion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeAcceptedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeAttributeListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeClusterRevisionWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeCurrentModeWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeFeatureMapWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeGeneratedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeSupportedModesWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeAcceptedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeAttributeListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeClusterRevisionWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeCurrentModeWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeFeatureMapWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeGeneratedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeSupportedModesWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterUnitTesting::testNullableOptionalRequestWithCompletion: not bound +!missing-selector! MTRBaseClusterUnitTesting::testSimpleOptionalArgumentRequestWithCompletion: not bound +!missing-selector! MTRCluster::endpointID not bound +!missing-selector! MTRClusterApplicationLauncher::hideAppWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterApplicationLauncher::launchAppWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterApplicationLauncher::stopAppWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterDoorLock::lockDoorWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterDoorLock::unlockDoorWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterNetworkCommissioning::scanNetworksWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRClusterOperationalState::pauseWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::pauseWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::readAttributeAcceptedCommandListWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeAttributeListWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeClusterRevisionWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeCountdownTimeWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeCurrentPhaseWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeFeatureMapWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeGeneratedCommandListWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeOperationalErrorWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeOperationalStateListWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeOperationalStateWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributePhaseListWithParams: not bound +!missing-selector! MTRClusterOperationalState::resumeWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::resumeWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::startWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::startWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::stopWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::stopWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterPowerSource::readAttributeEndpointListWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::changeToModeWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterRVCCleanMode::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeAcceptedCommandListWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeAttributeListWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeClusterRevisionWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeCurrentModeWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeFeatureMapWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeGeneratedCommandListWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeSupportedModesWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRClusterRVCOperationalState::pauseWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterRVCOperationalState::pauseWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeAcceptedCommandListWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeAttributeListWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeClusterRevisionWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeCountdownTimeWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeCurrentPhaseWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeFeatureMapWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeGeneratedCommandListWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeOperationalErrorWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeOperationalStateListWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeOperationalStateWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributePhaseListWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::resumeWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterRVCOperationalState::resumeWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterRVCRunMode::changeToModeWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterRVCRunMode::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeAcceptedCommandListWithParams: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeAttributeListWithParams: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeClusterRevisionWithParams: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeCurrentModeWithParams: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeFeatureMapWithParams: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeGeneratedCommandListWithParams: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeSupportedModesWithParams: not bound +!missing-selector! MTRClusterUnitTesting::testNullableOptionalRequestWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterUnitTesting::testSimpleOptionalArgumentRequestWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRDevice::deviceController not bound +!missing-selector! MTRDevice::invokeCommandWithEndpointID:clusterID:commandID:commandFields:expectedValues:expectedValueInterval:queue:completion: not bound +!missing-selector! MTRDevice::nodeID not bound +!missing-selector! MTRGenericCluster::device not bound +!missing-selector! MTROperationalStateClusterErrorStateStruct::errorStateDetails not bound +!missing-selector! MTROperationalStateClusterErrorStateStruct::errorStateID not bound +!missing-selector! MTROperationalStateClusterErrorStateStruct::errorStateLabel not bound +!missing-selector! MTROperationalStateClusterErrorStateStruct::setErrorStateDetails: not bound +!missing-selector! MTROperationalStateClusterErrorStateStruct::setErrorStateID: not bound +!missing-selector! MTROperationalStateClusterErrorStateStruct::setErrorStateLabel: not bound +!missing-selector! MTROperationalStateClusterOperationalCommandResponseParams::commandResponseState not bound +!missing-selector! MTROperationalStateClusterOperationalCommandResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTROperationalStateClusterOperationalCommandResponseParams::setCommandResponseState: not bound +!missing-selector! MTROperationalStateClusterOperationalErrorEvent::errorState not bound +!missing-selector! MTROperationalStateClusterOperationalErrorEvent::setErrorState: not bound +!missing-selector! MTROperationalStateClusterOperationalStateStruct::operationalStateID not bound +!missing-selector! MTROperationalStateClusterOperationalStateStruct::operationalStateLabel not bound +!missing-selector! MTROperationalStateClusterOperationalStateStruct::setOperationalStateID: not bound +!missing-selector! MTROperationalStateClusterOperationalStateStruct::setOperationalStateLabel: not bound +!missing-selector! MTROperationalStateClusterOperationCompletionEvent::completionErrorCode not bound +!missing-selector! MTROperationalStateClusterOperationCompletionEvent::pausedTime not bound +!missing-selector! MTROperationalStateClusterOperationCompletionEvent::setCompletionErrorCode: not bound +!missing-selector! MTROperationalStateClusterOperationCompletionEvent::setPausedTime: not bound +!missing-selector! MTROperationalStateClusterOperationCompletionEvent::setTotalOperationalTime: not bound +!missing-selector! MTROperationalStateClusterOperationCompletionEvent::totalOperationalTime not bound +!missing-selector! MTROperationalStateClusterPauseParams::serverSideProcessingTimeout not bound +!missing-selector! MTROperationalStateClusterPauseParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTROperationalStateClusterPauseParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTROperationalStateClusterPauseParams::timedInvokeTimeoutMs not bound +!missing-selector! MTROperationalStateClusterResumeParams::serverSideProcessingTimeout not bound +!missing-selector! MTROperationalStateClusterResumeParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTROperationalStateClusterResumeParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTROperationalStateClusterResumeParams::timedInvokeTimeoutMs not bound +!missing-selector! MTROperationalStateClusterStartParams::serverSideProcessingTimeout not bound +!missing-selector! MTROperationalStateClusterStartParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTROperationalStateClusterStartParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTROperationalStateClusterStartParams::timedInvokeTimeoutMs not bound +!missing-selector! MTROperationalStateClusterStopParams::serverSideProcessingTimeout not bound +!missing-selector! MTROperationalStateClusterStopParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTROperationalStateClusterStopParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTROperationalStateClusterStopParams::timedInvokeTimeoutMs not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::getNewMode not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::serverSideProcessingTimeout not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::setNewMode: not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::timedInvokeTimeoutMs not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeResponseParams::setStatus: not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeResponseParams::setStatusText: not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeResponseParams::status not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeResponseParams::statusText not bound +!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::label not bound +!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::mode not bound +!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::modeTags not bound +!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::setLabel: not bound +!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::setMode: not bound +!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::setModeTags: not bound +!missing-selector! MTRRVCCleanModeClusterModeTagStruct::mfgCode not bound +!missing-selector! MTRRVCCleanModeClusterModeTagStruct::setMfgCode: not bound +!missing-selector! MTRRVCCleanModeClusterModeTagStruct::setValue: not bound +!missing-selector! MTRRVCCleanModeClusterModeTagStruct::value not bound +!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::errorStateDetails not bound +!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::errorStateID not bound +!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::errorStateLabel not bound +!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::setErrorStateDetails: not bound +!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::setErrorStateID: not bound +!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::setErrorStateLabel: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalCommandResponseParams::commandResponseState not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalCommandResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalCommandResponseParams::setCommandResponseState: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalErrorEvent::errorState not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalErrorEvent::setErrorState: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalStateStruct::operationalStateID not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalStateStruct::operationalStateLabel not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalStateStruct::setOperationalStateID: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalStateStruct::setOperationalStateLabel: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::completionErrorCode not bound +!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::pausedTime not bound +!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::setCompletionErrorCode: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::setPausedTime: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::setTotalOperationalTime: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::totalOperationalTime not bound +!missing-selector! MTRRVCOperationalStateClusterPauseParams::serverSideProcessingTimeout not bound +!missing-selector! MTRRVCOperationalStateClusterPauseParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTRRVCOperationalStateClusterPauseParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTRRVCOperationalStateClusterPauseParams::timedInvokeTimeoutMs not bound +!missing-selector! MTRRVCOperationalStateClusterResumeParams::serverSideProcessingTimeout not bound +!missing-selector! MTRRVCOperationalStateClusterResumeParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTRRVCOperationalStateClusterResumeParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTRRVCOperationalStateClusterResumeParams::timedInvokeTimeoutMs not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeParams::getNewMode not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeParams::serverSideProcessingTimeout not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeParams::setNewMode: not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeParams::timedInvokeTimeoutMs not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeResponseParams::setStatus: not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeResponseParams::setStatusText: not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeResponseParams::status not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeResponseParams::statusText not bound +!missing-selector! MTRRVCRunModeClusterModeOptionStruct::label not bound +!missing-selector! MTRRVCRunModeClusterModeOptionStruct::mode not bound +!missing-selector! MTRRVCRunModeClusterModeOptionStruct::modeTags not bound +!missing-selector! MTRRVCRunModeClusterModeOptionStruct::setLabel: not bound +!missing-selector! MTRRVCRunModeClusterModeOptionStruct::setMode: not bound +!missing-selector! MTRRVCRunModeClusterModeOptionStruct::setModeTags: not bound +!missing-selector! MTRRVCRunModeClusterModeTagStruct::mfgCode not bound +!missing-selector! MTRRVCRunModeClusterModeTagStruct::setMfgCode: not bound +!missing-selector! MTRRVCRunModeClusterModeTagStruct::setValue: not bound +!missing-selector! MTRRVCRunModeClusterModeTagStruct::value not bound +!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::coolSetpoint not bound +!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::heatSetpoint not bound +!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::setCoolSetpoint: not bound +!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::setHeatSetpoint: not bound +!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::setTransitionTime: not bound +!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::transitionTime not bound +!missing-selector! MTRWiFiNetworkDiagnosticsClusterAssociationFailureEvent::associationFailureCause not bound +!missing-selector! MTRWiFiNetworkDiagnosticsClusterAssociationFailureEvent::setAssociationFailureCause: not bound +!missing-type! MTRBaseClusterOperationalState not bound +!missing-type! MTRBaseClusterRVCCleanMode not bound +!missing-type! MTRBaseClusterRVCOperationalState not bound +!missing-type! MTRBaseClusterRVCRunMode not bound +!missing-type! MTRClusterOperationalState not bound +!missing-type! MTRClusterRVCCleanMode not bound +!missing-type! MTRClusterRVCOperationalState not bound +!missing-type! MTRClusterRVCRunMode not bound +!missing-type! MTRGenericBaseCluster not bound +!missing-type! MTRGenericCluster not bound +!missing-type! MTROperationalStateClusterErrorStateStruct not bound +!missing-type! MTROperationalStateClusterOperationalCommandResponseParams not bound +!missing-type! MTROperationalStateClusterOperationalErrorEvent not bound +!missing-type! MTROperationalStateClusterOperationalStateStruct not bound +!missing-type! MTROperationalStateClusterOperationCompletionEvent not bound +!missing-type! MTROperationalStateClusterPauseParams not bound +!missing-type! MTROperationalStateClusterResumeParams not bound +!missing-type! MTROperationalStateClusterStartParams not bound +!missing-type! MTROperationalStateClusterStopParams not bound +!missing-type! MTRRVCCleanModeClusterChangeToModeParams not bound +!missing-type! MTRRVCCleanModeClusterChangeToModeResponseParams not bound +!missing-type! MTRRVCCleanModeClusterModeOptionStruct not bound +!missing-type! MTRRVCCleanModeClusterModeTagStruct not bound +!missing-type! MTRRVCOperationalStateClusterErrorStateStruct not bound +!missing-type! MTRRVCOperationalStateClusterOperationalCommandResponseParams not bound +!missing-type! MTRRVCOperationalStateClusterOperationalErrorEvent not bound +!missing-type! MTRRVCOperationalStateClusterOperationalStateStruct not bound +!missing-type! MTRRVCOperationalStateClusterOperationCompletionEvent not bound +!missing-type! MTRRVCOperationalStateClusterPauseParams not bound +!missing-type! MTRRVCOperationalStateClusterResumeParams not bound +!missing-type! MTRRVCRunModeClusterChangeToModeParams not bound +!missing-type! MTRRVCRunModeClusterChangeToModeResponseParams not bound +!missing-type! MTRRVCRunModeClusterModeOptionStruct not bound +!missing-type! MTRRVCRunModeClusterModeTagStruct not bound +!missing-type! MTRThermostatClusterWeeklyScheduleTransitionStruct not bound diff --git a/tests/xtro-sharpie/iOS-Metal.todo b/tests/xtro-sharpie/iOS-Metal.todo new file mode 100644 index 000000000000..1bb2b6b6ef03 --- /dev/null +++ b/tests/xtro-sharpie/iOS-Metal.todo @@ -0,0 +1,2 @@ +!missing-protocol-member! MTLResource::setOwnerWithIdentity: not found +!missing-protocol-member! MTLSharedEvent::waitUntilSignaledValue:timeoutMS: not found diff --git a/tests/xtro-sharpie/iOS-MetalPerformanceShadersGraph.todo b/tests/xtro-sharpie/iOS-MetalPerformanceShadersGraph.todo index 41e7d3e02722..bb4ab4a4bab1 100644 --- a/tests/xtro-sharpie/iOS-MetalPerformanceShadersGraph.todo +++ b/tests/xtro-sharpie/iOS-MetalPerformanceShadersGraph.todo @@ -342,3 +342,5 @@ !wrong-base-type! MPSGraphTensor expected MPSGraphObject actual NSObject !wrong-base-type! MPSGraphTensorData expected MPSGraphObject actual NSObject !wrong-base-type! MPSGraphType expected MPSGraphObject actual NSObject +!missing-selector! MPSGraph::sliceUpdateDataTensor:updateTensor:starts:ends:strides:startMask:endMask:squeezeMask:name: not bound +!missing-selector! MPSGraph::sliceUpdateDataTensor:updateTensor:startsTensor:endsTensor:stridesTensor:startMask:endMask:squeezeMask:name: not bound diff --git a/tests/xtro-sharpie/iOS-NetworkExtension.todo b/tests/xtro-sharpie/iOS-NetworkExtension.todo new file mode 100644 index 000000000000..feba76486668 --- /dev/null +++ b/tests/xtro-sharpie/iOS-NetworkExtension.todo @@ -0,0 +1,2 @@ +!missing-selector! NEVPNProtocol::excludeDeviceCommunication not bound +!missing-selector! NEVPNProtocol::setExcludeDeviceCommunication: not bound diff --git a/tests/xtro-sharpie/iOS-PassKit.todo b/tests/xtro-sharpie/iOS-PassKit.todo new file mode 100644 index 000000000000..94f814a8e4ad --- /dev/null +++ b/tests/xtro-sharpie/iOS-PassKit.todo @@ -0,0 +1 @@ +!missing-field! PKPaymentNetworkMeeza not bound diff --git a/tests/xtro-sharpie/iOS-PencilKit.todo b/tests/xtro-sharpie/iOS-PencilKit.todo new file mode 100644 index 000000000000..9041a74cc57f --- /dev/null +++ b/tests/xtro-sharpie/iOS-PencilKit.todo @@ -0,0 +1 @@ +!missing-enum-value! PKContentVersion native value PKContentVersionLatest = 3 not bound diff --git a/tests/xtro-sharpie/iOS-SafariServices.todo b/tests/xtro-sharpie/iOS-SafariServices.todo new file mode 100644 index 000000000000..01525fe21402 --- /dev/null +++ b/tests/xtro-sharpie/iOS-SafariServices.todo @@ -0,0 +1 @@ +!missing-protocol! SFAddToHomeScreenActivityItem not bound diff --git a/tests/xtro-sharpie/iOS-SensorKit.todo b/tests/xtro-sharpie/iOS-SensorKit.todo index 530e5dd75ebd..6d49b59bfa4a 100644 --- a/tests/xtro-sharpie/iOS-SensorKit.todo +++ b/tests/xtro-sharpie/iOS-SensorKit.todo @@ -46,3 +46,55 @@ !missing-type! SRWristTemperature not bound !missing-type! SRWristTemperatureSession not bound !missing-selector! SRSpeechMetrics::timeSinceAudioStart not bound +!missing-enum! SRElectrocardiogramDataFlags not bound +!missing-enum! SRElectrocardiogramLead not bound +!missing-enum! SRElectrocardiogramSessionGuidance not bound +!missing-enum! SRElectrocardiogramSessionState not bound +!missing-field! SRPhotoplethysmogramOpticalSampleConditionSignalSaturation not bound +!missing-field! SRPhotoplethysmogramOpticalSampleConditionUnreliableNoise not bound +!missing-field! SRPhotoplethysmogramSampleUsageBackgroundSystem not bound +!missing-field! SRPhotoplethysmogramSampleUsageDeepBreathing not bound +!missing-field! SRPhotoplethysmogramSampleUsageForegroundBloodOxygen not bound +!missing-field! SRPhotoplethysmogramSampleUsageForegroundHeartRate not bound +!missing-field! SRSensorElectrocardiogram not bound +!missing-field! SRSensorPhotoplethysmogram not bound +!missing-selector! SRElectrocardiogramData::flags not bound +!missing-selector! SRElectrocardiogramData::value not bound +!missing-selector! SRElectrocardiogramSample::data not bound +!missing-selector! SRElectrocardiogramSample::date not bound +!missing-selector! SRElectrocardiogramSample::frequency not bound +!missing-selector! SRElectrocardiogramSample::lead not bound +!missing-selector! SRElectrocardiogramSample::session not bound +!missing-selector! SRElectrocardiogramSession::identifier not bound +!missing-selector! SRElectrocardiogramSession::sessionGuidance not bound +!missing-selector! SRElectrocardiogramSession::state not bound +!missing-selector! SRPhotoplethysmogramAccelerometerSample::nanosecondsSinceStart not bound +!missing-selector! SRPhotoplethysmogramAccelerometerSample::samplingFrequency not bound +!missing-selector! SRPhotoplethysmogramAccelerometerSample::x not bound +!missing-selector! SRPhotoplethysmogramAccelerometerSample::y not bound +!missing-selector! SRPhotoplethysmogramAccelerometerSample::z not bound +!missing-selector! SRPhotoplethysmogramOpticalSample::activePhotodiodeIndexes not bound +!missing-selector! SRPhotoplethysmogramOpticalSample::backgroundNoise not bound +!missing-selector! SRPhotoplethysmogramOpticalSample::backgroundNoiseOffset not bound +!missing-selector! SRPhotoplethysmogramOpticalSample::conditions not bound +!missing-selector! SRPhotoplethysmogramOpticalSample::effectiveWavelength not bound +!missing-selector! SRPhotoplethysmogramOpticalSample::emitter not bound +!missing-selector! SRPhotoplethysmogramOpticalSample::nanosecondsSinceStart not bound +!missing-selector! SRPhotoplethysmogramOpticalSample::nominalWavelength not bound +!missing-selector! SRPhotoplethysmogramOpticalSample::normalizedReflectance not bound +!missing-selector! SRPhotoplethysmogramOpticalSample::pinkNoise not bound +!missing-selector! SRPhotoplethysmogramOpticalSample::samplingFrequency not bound +!missing-selector! SRPhotoplethysmogramOpticalSample::signalIdentifier not bound +!missing-selector! SRPhotoplethysmogramOpticalSample::whiteNoise not bound +!missing-selector! SRPhotoplethysmogramSample::accelerometerSamples not bound +!missing-selector! SRPhotoplethysmogramSample::nanosecondsSinceStart not bound +!missing-selector! SRPhotoplethysmogramSample::opticalSamples not bound +!missing-selector! SRPhotoplethysmogramSample::startDate not bound +!missing-selector! SRPhotoplethysmogramSample::temperature not bound +!missing-selector! SRPhotoplethysmogramSample::usage not bound +!missing-type! SRElectrocardiogramData not bound +!missing-type! SRElectrocardiogramSample not bound +!missing-type! SRElectrocardiogramSession not bound +!missing-type! SRPhotoplethysmogramAccelerometerSample not bound +!missing-type! SRPhotoplethysmogramOpticalSample not bound +!missing-type! SRPhotoplethysmogramSample not bound diff --git a/tests/xtro-sharpie/iOS-SystemConfiguration.todo b/tests/xtro-sharpie/iOS-SystemConfiguration.todo new file mode 100644 index 000000000000..3af4b652b589 --- /dev/null +++ b/tests/xtro-sharpie/iOS-SystemConfiguration.todo @@ -0,0 +1,8 @@ +!deprecated-attribute-missing! SCNetworkReachabilityCreateWithAddress missing a [Deprecated] attribute +!deprecated-attribute-missing! SCNetworkReachabilityCreateWithAddressPair missing a [Deprecated] attribute +!deprecated-attribute-missing! SCNetworkReachabilityCreateWithName missing a [Deprecated] attribute +!deprecated-attribute-missing! SCNetworkReachabilityGetFlags missing a [Deprecated] attribute +!deprecated-attribute-missing! SCNetworkReachabilityScheduleWithRunLoop missing a [Deprecated] attribute +!deprecated-attribute-missing! SCNetworkReachabilitySetCallback missing a [Deprecated] attribute +!deprecated-attribute-missing! SCNetworkReachabilitySetDispatchQueue missing a [Deprecated] attribute +!deprecated-attribute-missing! SCNetworkReachabilityUnscheduleFromRunLoop missing a [Deprecated] attribute diff --git a/tests/xtro-sharpie/iOS-UIKit.todo b/tests/xtro-sharpie/iOS-UIKit.todo new file mode 100644 index 000000000000..a738af55c2a6 --- /dev/null +++ b/tests/xtro-sharpie/iOS-UIKit.todo @@ -0,0 +1,37 @@ +!missing-enum-value! UIDatePickerMode native value UIDatePickerModeYearAndMonth = 4 not bound +!missing-field! UITextContentTypeCellularEID not bound +!missing-field! UITextContentTypeCellularIMEI not bound +!missing-protocol! UIItemProviderReadingAugmentationDesignating not bound +!missing-protocol! UIItemProviderReadingAugmentationProviding not bound +!missing-protocol-member! UITextInput::caretTransformForPosition: not found +!missing-selector! NSItemProvider::_availableTypes not bound +!missing-selector! UIControl::performPrimaryAction not bound +!missing-selector! UIDragItem::setNeedsDropPreviewUpdate not bound +!missing-selector! UIMenu::displayPreferences not bound +!missing-selector! UIMenu::setDisplayPreferences: not bound +!missing-selector! UIMenuDisplayPreferences::maximumNumberOfTitleLines not bound +!missing-selector! UIMenuDisplayPreferences::setMaximumNumberOfTitleLines: not bound +!missing-selector! UIScrollView::bouncesHorizontally not bound +!missing-selector! UIScrollView::bouncesVertically not bound +!missing-selector! UIScrollView::contentAlignmentPoint not bound +!missing-selector! UIScrollView::isScrollAnimating not bound +!missing-selector! UIScrollView::isZoomAnimating not bound +!missing-selector! UIScrollView::setBouncesHorizontally: not bound +!missing-selector! UIScrollView::setBouncesVertically: not bound +!missing-selector! UIScrollView::setContentAlignmentPoint: not bound +!missing-selector! UIScrollView::setTransfersHorizontalScrollingToParent: not bound +!missing-selector! UIScrollView::setTransfersVerticalScrollingToParent: not bound +!missing-selector! UIScrollView::stopScrollingAndZooming not bound +!missing-selector! UIScrollView::transfersHorizontalScrollingToParent not bound +!missing-selector! UIScrollView::transfersVerticalScrollingToParent not bound +!missing-selector! UIScrollView::withScrollIndicatorsShownForContentOffsetChanges: not bound +!missing-selector! UITextCursorDropPositionAnimator::animateAlongsideChanges:completion: not bound +!missing-selector! UITextCursorDropPositionAnimator::cursorView not bound +!missing-selector! UITextCursorDropPositionAnimator::initWithTextCursorView:textInput: not bound +!missing-selector! UITextCursorDropPositionAnimator::placeCursorAtPosition:animated: not bound +!missing-selector! UITextCursorDropPositionAnimator::setCursorVisible:animated: not bound +!missing-selector! UITextCursorDropPositionAnimator::textInput not bound +!missing-selector! UITextSelectionRect::transform not bound +!missing-type! UIMenuDisplayPreferences not bound +!missing-type! UIStandardTextCursorView not bound +!missing-type! UITextCursorDropPositionAnimator not bound diff --git a/tests/xtro-sharpie/iOS-VideoSubscriberAccount.todo b/tests/xtro-sharpie/iOS-VideoSubscriberAccount.todo new file mode 100644 index 000000000000..b325adc0448d --- /dev/null +++ b/tests/xtro-sharpie/iOS-VideoSubscriberAccount.todo @@ -0,0 +1,8 @@ +!missing-selector! VSAppleSubscription::customerID not bound +!missing-selector! VSAppleSubscription::initWithCustomerID:productCodes: not bound +!missing-selector! VSAppleSubscription::productCodes not bound +!missing-selector! VSAppleSubscription::setCustomerID: not bound +!missing-selector! VSAppleSubscription::setProductCodes: not bound +!missing-selector! VSUserAccount::appleSubscription not bound +!missing-selector! VSUserAccount::setAppleSubscription: not bound +!missing-type! VSAppleSubscription not bound diff --git a/tests/xtro-sharpie/iOS-VideoToolbox.ignore b/tests/xtro-sharpie/iOS-VideoToolbox.ignore index 63b3418ce694..c24edb77bf77 100644 --- a/tests/xtro-sharpie/iOS-VideoToolbox.ignore +++ b/tests/xtro-sharpie/iOS-VideoToolbox.ignore @@ -1,4 +1,3 @@ ### API not marked with unavailable (but without availability for tvOS/iOS) !missing-field! kVTVideoDecoderSpecification_PreferredDecoderGPURegistryID not bound !missing-field! kVTVideoDecoderSpecification_RequiredDecoderGPURegistryID not bound -!unknown-field! kVTCompressionPropertyKey_UsingHardwareAcceleratedVideoEncoder bound diff --git a/tests/xtro-sharpie/iOS-VideoToolbox.todo b/tests/xtro-sharpie/iOS-VideoToolbox.todo index cccf05ac9c53..060e298c5b6b 100644 --- a/tests/xtro-sharpie/iOS-VideoToolbox.todo +++ b/tests/xtro-sharpie/iOS-VideoToolbox.todo @@ -15,3 +15,11 @@ !missing-pinvoke! VTIsStereoMVHEVCEncodeSupported is not bound !missing-field! kVTCompressionPropertyKey_HasLeftStereoEyeView not bound !missing-field! kVTCompressionPropertyKey_HasRightStereoEyeView not bound +!missing-field! kVTCompressionPropertyKey_CalculateMeanSquaredError not bound +!missing-field! kVTCompressionPropertyKey_HorizontalFieldOfView not bound +!missing-field! kVTSampleAttachmentKey_QualityMetrics not bound +!missing-field! kVTSampleAttachmentQualityMetricsKey_ChromaBlueMeanSquaredError not bound +!missing-field! kVTSampleAttachmentQualityMetricsKey_ChromaRedMeanSquaredError not bound +!missing-field! kVTSampleAttachmentQualityMetricsKey_LumaMeanSquaredError not bound +!missing-field! kVTVideoEncoderSpecification_EnableHardwareAcceleratedVideoEncoder not bound +!missing-field! kVTVideoEncoderSpecification_RequireHardwareAcceleratedVideoEncoder not bound diff --git a/tests/xtro-sharpie/macOS-AVFoundation.todo b/tests/xtro-sharpie/macOS-AVFoundation.todo index bfd7946624f8..64e5fbcbef8b 100644 --- a/tests/xtro-sharpie/macOS-AVFoundation.todo +++ b/tests/xtro-sharpie/macOS-AVFoundation.todo @@ -472,7 +472,6 @@ !missing-selector! AVCaptureDeviceFormat::zoomFactorsOutsideOfVideoZoomRangesForDepthDeliverySupported not bound !missing-selector! AVPlayer::setVideoOutput: not bound !missing-selector! AVPlayer::videoOutput not bound -!missing-selector! AVPlayerItemErrorLogEvent::allHTTPResponseHeaderFields not bound !missing-selector! AVPlayerVideoOutput::copyTaggedBufferGroupForHostTime:presentationTimeStamp:activeConfiguration: not bound !missing-selector! AVPlayerVideoOutput::initWithSpecification: not bound !missing-selector! AVPlayerVideoOutputConfiguration::activationTime not bound @@ -490,3 +489,21 @@ !missing-type! AVPlayerVideoOutputConfiguration not bound !missing-type! AVVideoOutputSpecification not bound !missing-type! AVZoomRange not bound +!missing-enum! AVExternalContentProtectionStatus not bound +!missing-field! AVSampleBufferDisplayLayerReadyForDisplayDidChangeNotification not bound +!missing-protocol-member! AVContentKeySessionDelegate::contentKeySession:didProvideContentKeyRequests:forInitializationData: not found +!missing-protocol-member! AVContentKeySessionDelegate::contentKeySession:externalProtectionStatusDidChangeForContentKey: not found +!missing-selector! AVContentKey::externalContentProtectionStatus not bound +!missing-selector! AVContentKey::revoke not bound +!missing-selector! AVSampleBufferDisplayLayer::isReadyForDisplay not bound +!missing-selector! AVSampleBufferVideoRenderer::copyDisplayedPixelBuffer not bound +!missing-selector! AVSampleBufferVideoRenderer::expectMinimumUpcomingSampleBufferPresentationTime: not bound +!missing-selector! AVSampleBufferVideoRenderer::expectMonotonicallyIncreasingUpcomingSampleBufferPresentationTimes not bound +!missing-selector! AVSampleBufferVideoRenderer::loadVideoPerformanceMetricsWithCompletionHandler: not bound +!missing-selector! AVSampleBufferVideoRenderer::resetUpcomingSampleBufferPresentationTimeExpectations not bound +!missing-selector! AVVideoPerformanceMetrics::numberOfCorruptedFrames not bound +!missing-selector! AVVideoPerformanceMetrics::numberOfDroppedFrames not bound +!missing-selector! AVVideoPerformanceMetrics::numberOfFramesDisplayedUsingOptimizedCompositing not bound +!missing-selector! AVVideoPerformanceMetrics::totalAccumulatedFrameDelay not bound +!missing-selector! AVVideoPerformanceMetrics::totalNumberOfFrames not bound +!missing-type! AVVideoPerformanceMetrics not bound diff --git a/tests/xtro-sharpie/macOS-AuthenticationServices.todo b/tests/xtro-sharpie/macOS-AuthenticationServices.todo new file mode 100644 index 000000000000..4e3c5c889d32 --- /dev/null +++ b/tests/xtro-sharpie/macOS-AuthenticationServices.todo @@ -0,0 +1,21 @@ +!deprecated-attribute-missing! ASWebAuthenticationSession::initWithURL:callbackURLScheme:completionHandler: missing a [Deprecated] attribute +!missing-enum! ASAuthorizationProviderExtensionUserSecureEnclaveKeyBiometricPolicy not bound +!missing-enum! ASCredentialIdentityTypes not bound +!missing-enum! ASUserAgeRange not bound +!missing-enum-value! ASAuthorizationProviderExtensionRequestOptions native value ASAuthorizationProviderExtensionRequestOptionsUserKeyInvalid = 32 not bound +!missing-protocol! ASAuthorizationWebBrowserSecurityKeyPublicKeyCredentialAssertionRequest not bound +!missing-protocol! ASAuthorizationWebBrowserSecurityKeyPublicKeyCredentialProvider not bound +!missing-protocol! ASAuthorizationWebBrowserSecurityKeyPublicKeyCredentialRegistrationRequest not bound +!missing-selector! +ASWebAuthenticationSessionCallback::callbackWithCustomScheme: not bound +!missing-selector! +ASWebAuthenticationSessionCallback::callbackWithHTTPSHost:path: not bound +!missing-selector! ASAuthorizationAppleIDCredential::userAgeRange not bound +!missing-selector! ASAuthorizationProviderExtensionLoginConfiguration::setUserSecureEnclaveKeyBiometricPolicy: not bound +!missing-selector! ASAuthorizationProviderExtensionLoginConfiguration::userSecureEnclaveKeyBiometricPolicy not bound +!missing-selector! ASCredentialIdentityStore::getCredentialIdentitiesForService:credentialIdentityTypes:completionHandler: not bound +!missing-selector! ASWebAuthenticationSession::additionalHeaderFields not bound +!missing-selector! ASWebAuthenticationSession::initWithURL:callback:completionHandler: not bound +!missing-selector! ASWebAuthenticationSession::setAdditionalHeaderFields: not bound +!missing-selector! ASWebAuthenticationSessionCallback::matchesURL: not bound +!missing-selector! ASWebAuthenticationSessionRequest::additionalHeaderFields not bound +!missing-selector! ASWebAuthenticationSessionRequest::callback not bound +!missing-type! ASWebAuthenticationSessionCallback not bound diff --git a/tests/xtro-sharpie/macOS-BrowserEngineKit.todo b/tests/xtro-sharpie/macOS-BrowserEngineKit.todo new file mode 100644 index 000000000000..d7b2ad085ff1 --- /dev/null +++ b/tests/xtro-sharpie/macOS-BrowserEngineKit.todo @@ -0,0 +1,32 @@ +!missing-enum! BEGestureType not bound +!missing-enum! BESelectionFlags not bound +!missing-enum! BESelectionTouchPhase not bound +!missing-protocol! BEProcessCapabilityGrant not bound +!missing-protocol! BETextInputDelegate not bound +!missing-protocol! BETextInteractionDelegate not bound +!missing-selector! +BENetworkingProcess::networkProcessWithInterruptionHandler:completion: not bound +!missing-selector! +BEProcessCapability::background not bound +!missing-selector! +BEProcessCapability::foreground not bound +!missing-selector! +BEProcessCapability::suspended not bound +!missing-selector! +BERenderingProcess::renderingProcessWithInterruptionHandler:completion: not bound +!missing-selector! +BEWebContentProcess::webContentProcessWithInterruptionHandler:completion: not bound +!missing-selector! BENetworkingProcess::grantBENetworkingProcess:error: not bound +!missing-selector! BENetworkingProcess::invalidate not bound +!missing-selector! BENetworkingProcess::makeLibXPCConnectionError: not bound +!missing-selector! BEProcessCapability::requestWithError: not bound +!missing-selector! BERenderingProcess::grantBERenderingProcess:error: not bound +!missing-selector! BERenderingProcess::invalidate not bound +!missing-selector! BERenderingProcess::makeLibXPCConnectionError: not bound +!missing-selector! BETextAlternatives::alternativeStrings not bound +!missing-selector! BETextAlternatives::primaryString not bound +!missing-selector! BETextSuggestion::initWithInputText: not bound +!missing-selector! BETextSuggestion::inputText not bound +!missing-selector! BEWebContentProcess::grantBEWebContentProcess:error: not bound +!missing-selector! BEWebContentProcess::invalidate not bound +!missing-selector! BEWebContentProcess::makeLibXPCConnectionError: not bound +!missing-type! BENetworkingProcess not bound +!missing-type! BEProcessCapability not bound +!missing-type! BERenderingProcess not bound +!missing-type! BETextAlternatives not bound +!missing-type! BETextSuggestion not bound +!missing-type! BEWebContentProcess not bound diff --git a/tests/xtro-sharpie/macOS-CoreGraphics.ignore b/tests/xtro-sharpie/macOS-CoreGraphics.ignore index 5e5a6359c1e1..b9635b1c5dc9 100644 --- a/tests/xtro-sharpie/macOS-CoreGraphics.ignore +++ b/tests/xtro-sharpie/macOS-CoreGraphics.ignore @@ -36,8 +36,6 @@ !missing-pinvoke! CGDisplayCopyAllDisplayModes is not bound !missing-pinvoke! CGDisplayCopyColorSpace is not bound !missing-pinvoke! CGDisplayCopyDisplayMode is not bound -!missing-pinvoke! CGDisplayCreateImage is not bound -!missing-pinvoke! CGDisplayCreateImageForRect is not bound !missing-pinvoke! CGDisplayFade is not bound !missing-pinvoke! CGDisplayGetDrawingContext is not bound !missing-pinvoke! CGDisplayIsActive is not bound diff --git a/tests/xtro-sharpie/macOS-CoreML.todo b/tests/xtro-sharpie/macOS-CoreML.todo new file mode 100644 index 000000000000..cd65c2081202 --- /dev/null +++ b/tests/xtro-sharpie/macOS-CoreML.todo @@ -0,0 +1,58 @@ +!missing-enum! MLReshapeFrequencyHint not bound +!missing-selector! +MLComputePlan::loadContentsOfURL:configuration:completionHandler: not bound +!missing-selector! +MLComputePlan::loadModelAsset:configuration:completionHandler: not bound +!missing-selector! +MLModelStructure::loadContentsOfURL:completionHandler: not bound +!missing-selector! +MLModelStructure::loadModelAsset:completionHandler: not bound +!missing-selector! MLComputePlan::computeDeviceUsageForMLProgramOperation: not bound +!missing-selector! MLComputePlan::computeDeviceUsageForNeuralNetworkLayer: not bound +!missing-selector! MLComputePlan::estimatedCostOfMLProgramOperation: not bound +!missing-selector! MLComputePlan::modelStructure not bound +!missing-selector! MLComputePlanCost::weight not bound +!missing-selector! MLComputePlanDeviceUsage::preferredComputeDevice not bound +!missing-selector! MLComputePlanDeviceUsage::supportedComputeDevices not bound +!missing-selector! MLModelConfiguration::optimizationHints not bound +!missing-selector! MLModelConfiguration::setOptimizationHints: not bound +!missing-selector! MLModelStructure::neuralNetwork not bound +!missing-selector! MLModelStructure::pipeline not bound +!missing-selector! MLModelStructure::program not bound +!missing-selector! MLModelStructureNeuralNetwork::layers not bound +!missing-selector! MLModelStructureNeuralNetworkLayer::inputNames not bound +!missing-selector! MLModelStructureNeuralNetworkLayer::name not bound +!missing-selector! MLModelStructureNeuralNetworkLayer::outputNames not bound +!missing-selector! MLModelStructureNeuralNetworkLayer::type not bound +!missing-selector! MLModelStructurePipeline::subModelNames not bound +!missing-selector! MLModelStructurePipeline::subModels not bound +!missing-selector! MLModelStructureProgram::functions not bound +!missing-selector! MLModelStructureProgramArgument::bindings not bound +!missing-selector! MLModelStructureProgramBinding::name not bound +!missing-selector! MLModelStructureProgramBinding::value not bound +!missing-selector! MLModelStructureProgramBlock::inputs not bound +!missing-selector! MLModelStructureProgramBlock::operations not bound +!missing-selector! MLModelStructureProgramBlock::outputNames not bound +!missing-selector! MLModelStructureProgramFunction::block not bound +!missing-selector! MLModelStructureProgramFunction::inputs not bound +!missing-selector! MLModelStructureProgramNamedValueType::name not bound +!missing-selector! MLModelStructureProgramNamedValueType::type not bound +!missing-selector! MLModelStructureProgramOperation::blocks not bound +!missing-selector! MLModelStructureProgramOperation::inputs not bound +!missing-selector! MLModelStructureProgramOperation::operatorName not bound +!missing-selector! MLModelStructureProgramOperation::outputs not bound +!missing-selector! MLOptimizationHints::reshapeFrequency not bound +!missing-selector! MLOptimizationHints::setReshapeFrequency: not bound +!missing-type! MLComputePlan not bound +!missing-type! MLComputePlanCost not bound +!missing-type! MLComputePlanDeviceUsage not bound +!missing-type! MLModelStructure not bound +!missing-type! MLModelStructureNeuralNetwork not bound +!missing-type! MLModelStructureNeuralNetworkLayer not bound +!missing-type! MLModelStructurePipeline not bound +!missing-type! MLModelStructureProgram not bound +!missing-type! MLModelStructureProgramArgument not bound +!missing-type! MLModelStructureProgramBinding not bound +!missing-type! MLModelStructureProgramBlock not bound +!missing-type! MLModelStructureProgramFunction not bound +!missing-type! MLModelStructureProgramNamedValueType not bound +!missing-type! MLModelStructureProgramOperation not bound +!missing-type! MLModelStructureProgramValue not bound +!missing-type! MLModelStructureProgramValueType not bound +!missing-type! MLOptimizationHints not bound diff --git a/tests/xtro-sharpie/macOS-CoreMediaIO.todo b/tests/xtro-sharpie/macOS-CoreMediaIO.todo index 05018fd60cea..d756228577da 100644 --- a/tests/xtro-sharpie/macOS-CoreMediaIO.todo +++ b/tests/xtro-sharpie/macOS-CoreMediaIO.todo @@ -206,3 +206,6 @@ !missing-type! CMIOExtensionStreamCustomClockConfiguration not bound !missing-type! CMIOExtensionStreamFormat not bound !missing-type! CMIOExtensionStreamProperties not bound +!missing-field! CMIOExtensionPropertyDeviceLatency not bound +!missing-field! CMIOExtensionPropertyStreamLatency not bound +!missing-selector! +CMIOExtensionProvider::stopServiceWithProvider: not bound diff --git a/tests/xtro-sharpie/macOS-FileProvider.todo b/tests/xtro-sharpie/macOS-FileProvider.todo new file mode 100644 index 000000000000..f93b23c66048 --- /dev/null +++ b/tests/xtro-sharpie/macOS-FileProvider.todo @@ -0,0 +1,3 @@ +!missing-enum-value! NSFileProviderError native value NSFileProviderErrorApplicationExtensionNotFound = -2014 not bound +!missing-enum-value! NSFileProviderError native value NSFileProviderErrorProviderDomainNotFound = -2013 not bound +!missing-enum-value! NSFileProviderError native value NSFileProviderErrorProviderDomainTemporarilyUnavailable = -2012 not bound diff --git a/tests/xtro-sharpie/macOS-Foundation.todo b/tests/xtro-sharpie/macOS-Foundation.todo new file mode 100644 index 000000000000..5a3715756ab5 --- /dev/null +++ b/tests/xtro-sharpie/macOS-Foundation.todo @@ -0,0 +1,5 @@ +!missing-protocol-member! NSFilePresenter::accommodatePresentedItemEvictionWithCompletionHandler: not found +!missing-selector! NSTask::launchRequirementData not bound +!missing-selector! NSTask::setLaunchRequirementData: not bound +!missing-selector! NSUndoManager::redoCount not bound +!missing-selector! NSUndoManager::undoCount not bound diff --git a/tests/xtro-sharpie/macOS-GameController.todo b/tests/xtro-sharpie/macOS-GameController.todo index 1196c3885f8b..7039e96d94db 100644 --- a/tests/xtro-sharpie/macOS-GameController.todo +++ b/tests/xtro-sharpie/macOS-GameController.todo @@ -33,3 +33,13 @@ !missing-type! GCControllerInputState not bound !missing-type! GCControllerLiveInput not bound !missing-type! GCPhysicalInputElementCollection not bound +!missing-field! GCInputLeftBumper not bound +!missing-field! GCInputRightBumper not bound +!missing-field! GCPoint2Zero not bound +!missing-pinvoke! GCInputBackLeftButton is not bound +!missing-pinvoke! GCInputBackRightButton is not bound +!missing-pinvoke! NSStringFromGCPoint2 is not bound +!missing-protocol! GCAxis2DInput not bound +!missing-protocol-member! GCDirectionPadElement::xyAxes not found +!missing-selector! +NSValue::valueWithGCPoint2: not bound +!missing-selector! NSValue::GCPoint2Value not bound diff --git a/tests/xtro-sharpie/macOS-GameKit.todo b/tests/xtro-sharpie/macOS-GameKit.todo new file mode 100644 index 000000000000..dfab76092956 --- /dev/null +++ b/tests/xtro-sharpie/macOS-GameKit.todo @@ -0,0 +1,2 @@ +!missing-enum-value! GKError native value GKErrorAppUnlisted = 37 not bound +!missing-selector! GKScoreChallenge::leaderboardEntry not bound diff --git a/tests/xtro-sharpie/macOS-IOSurface.todo b/tests/xtro-sharpie/macOS-IOSurface.todo new file mode 100644 index 000000000000..f9eaac2545d4 --- /dev/null +++ b/tests/xtro-sharpie/macOS-IOSurface.todo @@ -0,0 +1,3 @@ +!missing-enum! IOSurfaceMemoryLedgerFlags not bound +!missing-enum! IOSurfaceMemoryLedgerTags not bound +!missing-pinvoke! IOSurfaceSetOwnershipIdentity is not bound diff --git a/tests/xtro-sharpie/macOS-ImageIO.todo b/tests/xtro-sharpie/macOS-ImageIO.todo new file mode 100644 index 000000000000..4c217d8b7e78 --- /dev/null +++ b/tests/xtro-sharpie/macOS-ImageIO.todo @@ -0,0 +1,3 @@ +!missing-field! kCGImagePropertyTIFFXPosition not bound +!missing-field! kCGImagePropertyTIFFYPosition not bound +!missing-pinvoke! CGImageSourceSetAllowableTypes is not bound diff --git a/tests/xtro-sharpie/macOS-MLCompute.todo b/tests/xtro-sharpie/macOS-MLCompute.todo index 9ea91f77132c..53a08da02f2d 100644 --- a/tests/xtro-sharpie/macOS-MLCompute.todo +++ b/tests/xtro-sharpie/macOS-MLCompute.todo @@ -1,55 +1 @@ -!deprecated-attribute-missing! MLCActivationDescriptor missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCActivationLayer missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCAdamOptimizer missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCAdamWOptimizer missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCArithmeticLayer missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCBatchNormalizationLayer missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCComparisonLayer missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCConcatenationLayer missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCConvolutionDescriptor missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCConvolutionLayer missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCDevice missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCDropoutLayer missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCEmbeddingDescriptor missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCEmbeddingLayer missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCFullyConnectedLayer missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCGatherLayer missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCGramMatrixLayer missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCGraph missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCGroupNormalizationLayer missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCInferenceGraph missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCInstanceNormalizationLayer missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCLayer missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCLayerNormalizationLayer missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCLossDescriptor missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCLossLayer missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCLSTMDescriptor missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCLSTMLayer missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCMatMulDescriptor missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCMatMulLayer missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCMultiheadAttentionDescriptor missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCMultiheadAttentionLayer missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCOptimizer missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCOptimizerDescriptor missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCPaddingLayer missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCPlatform missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCPoolingDescriptor missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCPoolingLayer missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCReductionLayer missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCReshapeLayer missing a [Deprecated] attribute !deprecated-attribute-missing! MLCRMSPropOptimizer missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCScatterLayer missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCSelectionLayer missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCSGDOptimizer missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCSliceLayer missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCSoftmaxLayer missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCSplitLayer missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCTensor missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCTensorData missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCTensorDescriptor missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCTensorParameter missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCTrainingGraph missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCTransposeLayer missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCUpsampleLayer missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCYOLOLossDescriptor missing a [Deprecated] attribute -!deprecated-attribute-missing! MLCYOLOLossLayer missing a [Deprecated] attribute diff --git a/tests/xtro-sharpie/macOS-MapKit.todo b/tests/xtro-sharpie/macOS-MapKit.todo new file mode 100644 index 000000000000..dc35c07c28a2 --- /dev/null +++ b/tests/xtro-sharpie/macOS-MapKit.todo @@ -0,0 +1,2 @@ +!missing-selector! +MKMapItem::openMapsWithItems:launchOptions:completionHandler: not bound +!missing-selector! MKMapItem::openInMapsWithLaunchOptions:completionHandler: not bound diff --git a/tests/xtro-sharpie/macOS-Matter.todo b/tests/xtro-sharpie/macOS-Matter.todo index fe1dbd568000..1d707cc1e85c 100644 --- a/tests/xtro-sharpie/macOS-Matter.todo +++ b/tests/xtro-sharpie/macOS-Matter.todo @@ -36,11 +36,9 @@ !missing-enum! MTRCommandIDType not bound !missing-enum! MTRCommissioningFlow not bound !missing-enum! MTRCommissioningStatus not bound -!missing-enum! MTRContentLauncherContentLaunchStatus not bound !missing-enum! MTRContentLauncherFeature not bound !missing-enum! MTRContentLauncherMetricType not bound !missing-enum! MTRContentLauncherParameter not bound -!missing-enum! MTRContentLauncherSupportedStreamingProtocol not bound !missing-enum! MTRDeviceState not bound !missing-enum! MTRDiagnosticLogsIntent not bound !missing-enum! MTRDiagnosticLogsStatus not bound @@ -102,12 +100,10 @@ !missing-enum! MTRIdentifyType not bound !missing-enum! MTRIlluminanceMeasurementLightSensorType not bound !missing-enum! MTRInteractionErrorCode not bound -!missing-enum! MTRKeypadInputCecKeyCode not bound !missing-enum! MTRKeypadInputFeature not bound !missing-enum! MTRKeypadInputStatus not bound !missing-enum! MTRLevelControlFeature not bound !missing-enum! MTRLevelControlMoveMode not bound -!missing-enum! MTRLevelControlOptions not bound !missing-enum! MTRLevelControlStepMode not bound !missing-enum! MTRLogType not bound !missing-enum! MTRMediaInputFeature not bound @@ -148,17 +144,12 @@ !missing-enum! MTRPumpConfigurationAndControlFeature not bound !missing-enum! MTRPumpConfigurationAndControlOperationMode not bound !missing-enum! MTRPumpConfigurationAndControlPumpStatusBitmap not bound -!missing-enum! MTRScenesCopyMode not bound !missing-enum! MTRScenesFeature not bound !missing-enum! MTRSoftwareDiagnosticsFeature not bound !missing-enum! MTRSwitchFeature not bound !missing-enum! MTRTargetNavigatorStatus not bound -!missing-enum! MTRThermostatControlSequence not bound -!missing-enum! MTRThermostatDayOfWeek not bound !missing-enum! MTRThermostatFeature not bound -!missing-enum! MTRThermostatModeForSequence not bound !missing-enum! MTRThermostatRunningMode not bound -!missing-enum! MTRThermostatSetpointAdjustMode not bound !missing-enum! MTRThermostatSystemMode not bound !missing-enum! MTRThreadNetworkDiagnosticsConnectionStatus not bound !missing-enum! MTRThreadNetworkDiagnosticsFeature not bound @@ -8432,12 +8423,6 @@ !missing-selector! MTRThermostatClusterSetWeeklyScheduleParams::setTransitions: not bound !missing-selector! MTRThermostatClusterSetWeeklyScheduleParams::timedInvokeTimeoutMs not bound !missing-selector! MTRThermostatClusterSetWeeklyScheduleParams::transitions not bound -!missing-selector! MTRThermostatClusterThermostatScheduleTransition::coolSetpoint not bound -!missing-selector! MTRThermostatClusterThermostatScheduleTransition::heatSetpoint not bound -!missing-selector! MTRThermostatClusterThermostatScheduleTransition::setCoolSetpoint: not bound -!missing-selector! MTRThermostatClusterThermostatScheduleTransition::setHeatSetpoint: not bound -!missing-selector! MTRThermostatClusterThermostatScheduleTransition::setTransitionTime: not bound -!missing-selector! MTRThermostatClusterThermostatScheduleTransition::transitionTime not bound !missing-selector! MTRThreadNetworkDiagnosticsClusterConnectionStatusEvent::connectionStatus not bound !missing-selector! MTRThreadNetworkDiagnosticsClusterConnectionStatusEvent::setConnectionStatus: not bound !missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::age not bound @@ -8925,8 +8910,6 @@ !missing-selector! MTRUserLabelClusterLabelStruct::setLabel: not bound !missing-selector! MTRUserLabelClusterLabelStruct::setValue: not bound !missing-selector! MTRUserLabelClusterLabelStruct::value not bound -!missing-selector! MTRWiFiNetworkDiagnosticsClusterAssociationFailureEvent::associationFailure not bound -!missing-selector! MTRWiFiNetworkDiagnosticsClusterAssociationFailureEvent::setAssociationFailure: not bound !missing-selector! MTRWiFiNetworkDiagnosticsClusterAssociationFailureEvent::setStatus: not bound !missing-selector! MTRWiFiNetworkDiagnosticsClusterAssociationFailureEvent::status not bound !missing-selector! MTRWiFiNetworkDiagnosticsClusterConnectionStatusEvent::connectionStatus not bound @@ -9433,7 +9416,6 @@ !missing-type! MTRThermostatClusterGetWeeklyScheduleResponseParams not bound !missing-type! MTRThermostatClusterSetpointRaiseLowerParams not bound !missing-type! MTRThermostatClusterSetWeeklyScheduleParams not bound -!missing-type! MTRThermostatClusterThermostatScheduleTransition not bound !missing-type! MTRThreadNetworkDiagnosticsClusterConnectionStatusEvent not bound !missing-type! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct not bound !missing-type! MTRThreadNetworkDiagnosticsClusterNetworkFaultChangeEvent not bound @@ -9520,3 +9502,383 @@ !missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::timeSource not bound !missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::utcTime not bound !missing-type! MTRTimeSynchronizationClusterSetUTCTimeParams not bound +!missing-enum! MTRAdministratorCommissioningFeature not bound +!missing-enum! MTRContentLauncherStatus not bound +!missing-enum! MTRContentLauncherSupportedProtocolsBitmap not bound +!missing-enum! MTRKeypadInputCECKeyCode not bound +!missing-enum! MTRLevelControlOptionsBitmap not bound +!missing-enum! MTROperationalState not bound +!missing-enum! MTROperationalStateErrorState not bound +!missing-enum! MTRRVCCleanModeFeature not bound +!missing-enum! MTRRVCCleanModeModeTag not bound +!missing-enum! MTRRVCCleanModeStatusCode not bound +!missing-enum! MTRRVCOperationalStateErrorState not bound +!missing-enum! MTRRVCOperationalStateOperationalState not bound +!missing-enum! MTRRVCRunModeFeature not bound +!missing-enum! MTRRVCRunModeModeTag not bound +!missing-enum! MTRRVCRunModeStatusCode not bound +!missing-enum! MTRScenesCopyModeBitmap not bound +!missing-enum! MTRThermostatControlSequenceOfOperation not bound +!missing-enum! MTRThermostatScheduleDayOfWeekBitmap not bound +!missing-enum! MTRThermostatScheduleModeBitmap not bound +!missing-enum! MTRThermostatSetpointRaiseLowerMode not bound +!missing-enum! MTRThermostatUserInterfaceConfigurationKeypadLockout not bound +!missing-enum! MTRThermostatUserInterfaceConfigurationScheduleProgrammingVisibility not bound +!missing-enum! MTRThermostatUserInterfaceConfigurationTemperatureDisplayMode not bound +!missing-field! MTREventIsHistoricalKey not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeAcceptedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeAttributeListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeClusterRevisionWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeCountdownTimeWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeCurrentPhaseWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeFeatureMapWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeGeneratedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeOperationalErrorWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeOperationalStateListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeOperationalStateWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributePhaseListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterPowerSource::readAttributeEndpointListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeAcceptedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeAttributeListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeClusterRevisionWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeCurrentModeWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeFeatureMapWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeGeneratedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeSupportedModesWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeAcceptedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeAttributeListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeClusterRevisionWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeCountdownTimeWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeCurrentPhaseWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeFeatureMapWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeGeneratedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeOperationalErrorWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeOperationalStateListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeOperationalStateWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributePhaseListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeAcceptedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeAttributeListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeClusterRevisionWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeCurrentModeWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeFeatureMapWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeGeneratedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeSupportedModesWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! MTRBaseClusterApplicationLauncher::hideAppWithCompletion: not bound +!missing-selector! MTRBaseClusterApplicationLauncher::launchAppWithCompletion: not bound +!missing-selector! MTRBaseClusterApplicationLauncher::stopAppWithCompletion: not bound +!missing-selector! MTRBaseClusterDoorLock::lockDoorWithCompletion: not bound +!missing-selector! MTRBaseClusterDoorLock::unlockDoorWithCompletion: not bound +!missing-selector! MTRBaseClusterNetworkCommissioning::scanNetworksWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRBaseClusterOperationalState::pauseWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::pauseWithParams:completion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeAcceptedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeAttributeListWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeClusterRevisionWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeCountdownTimeWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeCurrentPhaseWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeFeatureMapWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeGeneratedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeOperationalErrorWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeOperationalStateListWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeOperationalStateWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributePhaseListWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::resumeWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::resumeWithParams:completion: not bound +!missing-selector! MTRBaseClusterOperationalState::startWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::startWithParams:completion: not bound +!missing-selector! MTRBaseClusterOperationalState::stopWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::stopWithParams:completion: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeAcceptedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeAttributeListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeClusterRevisionWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeCountdownTimeWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeCurrentPhaseWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeFeatureMapWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeGeneratedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeOperationalErrorWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeOperationalStateListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeOperationalStateWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributePhaseListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterPowerSource::readAttributeEndpointListWithCompletion: not bound +!missing-selector! MTRBaseClusterPowerSource::subscribeAttributeEndpointListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::changeToModeWithParams:completion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeAcceptedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeAttributeListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeClusterRevisionWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeCurrentModeWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeFeatureMapWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeGeneratedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeSupportedModesWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeAcceptedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeAttributeListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeClusterRevisionWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeCurrentModeWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeFeatureMapWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeGeneratedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeSupportedModesWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::pauseWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::pauseWithParams:completion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeAcceptedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeAttributeListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeClusterRevisionWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeCountdownTimeWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeCurrentPhaseWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeFeatureMapWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeGeneratedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeOperationalErrorWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeOperationalStateListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeOperationalStateWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributePhaseListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::resumeWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::resumeWithParams:completion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeAcceptedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeAttributeListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeClusterRevisionWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeCountdownTimeWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeCurrentPhaseWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeFeatureMapWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeGeneratedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeOperationalErrorWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeOperationalStateListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeOperationalStateWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributePhaseListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::changeToModeWithParams:completion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeAcceptedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeAttributeListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeClusterRevisionWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeCurrentModeWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeFeatureMapWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeGeneratedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeSupportedModesWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeAcceptedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeAttributeListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeClusterRevisionWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeCurrentModeWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeFeatureMapWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeGeneratedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeSupportedModesWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterUnitTesting::testNullableOptionalRequestWithCompletion: not bound +!missing-selector! MTRBaseClusterUnitTesting::testSimpleOptionalArgumentRequestWithCompletion: not bound +!missing-selector! MTRCluster::endpointID not bound +!missing-selector! MTRClusterApplicationLauncher::hideAppWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterApplicationLauncher::launchAppWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterApplicationLauncher::stopAppWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterDoorLock::lockDoorWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterDoorLock::unlockDoorWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterNetworkCommissioning::scanNetworksWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRClusterOperationalState::pauseWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::pauseWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::readAttributeAcceptedCommandListWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeAttributeListWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeClusterRevisionWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeCountdownTimeWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeCurrentPhaseWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeFeatureMapWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeGeneratedCommandListWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeOperationalErrorWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeOperationalStateListWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeOperationalStateWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributePhaseListWithParams: not bound +!missing-selector! MTRClusterOperationalState::resumeWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::resumeWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::startWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::startWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::stopWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::stopWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterPowerSource::readAttributeEndpointListWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::changeToModeWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterRVCCleanMode::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeAcceptedCommandListWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeAttributeListWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeClusterRevisionWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeCurrentModeWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeFeatureMapWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeGeneratedCommandListWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeSupportedModesWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRClusterRVCOperationalState::pauseWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterRVCOperationalState::pauseWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeAcceptedCommandListWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeAttributeListWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeClusterRevisionWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeCountdownTimeWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeCurrentPhaseWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeFeatureMapWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeGeneratedCommandListWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeOperationalErrorWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeOperationalStateListWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeOperationalStateWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributePhaseListWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::resumeWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterRVCOperationalState::resumeWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterRVCRunMode::changeToModeWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterRVCRunMode::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeAcceptedCommandListWithParams: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeAttributeListWithParams: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeClusterRevisionWithParams: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeCurrentModeWithParams: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeFeatureMapWithParams: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeGeneratedCommandListWithParams: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeSupportedModesWithParams: not bound +!missing-selector! MTRClusterUnitTesting::testNullableOptionalRequestWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterUnitTesting::testSimpleOptionalArgumentRequestWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRDevice::deviceController not bound +!missing-selector! MTRDevice::invokeCommandWithEndpointID:clusterID:commandID:commandFields:expectedValues:expectedValueInterval:queue:completion: not bound +!missing-selector! MTRDevice::nodeID not bound +!missing-selector! MTRGenericCluster::device not bound +!missing-selector! MTROperationalStateClusterErrorStateStruct::errorStateDetails not bound +!missing-selector! MTROperationalStateClusterErrorStateStruct::errorStateID not bound +!missing-selector! MTROperationalStateClusterErrorStateStruct::errorStateLabel not bound +!missing-selector! MTROperationalStateClusterErrorStateStruct::setErrorStateDetails: not bound +!missing-selector! MTROperationalStateClusterErrorStateStruct::setErrorStateID: not bound +!missing-selector! MTROperationalStateClusterErrorStateStruct::setErrorStateLabel: not bound +!missing-selector! MTROperationalStateClusterOperationalCommandResponseParams::commandResponseState not bound +!missing-selector! MTROperationalStateClusterOperationalCommandResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTROperationalStateClusterOperationalCommandResponseParams::setCommandResponseState: not bound +!missing-selector! MTROperationalStateClusterOperationalErrorEvent::errorState not bound +!missing-selector! MTROperationalStateClusterOperationalErrorEvent::setErrorState: not bound +!missing-selector! MTROperationalStateClusterOperationalStateStruct::operationalStateID not bound +!missing-selector! MTROperationalStateClusterOperationalStateStruct::operationalStateLabel not bound +!missing-selector! MTROperationalStateClusterOperationalStateStruct::setOperationalStateID: not bound +!missing-selector! MTROperationalStateClusterOperationalStateStruct::setOperationalStateLabel: not bound +!missing-selector! MTROperationalStateClusterOperationCompletionEvent::completionErrorCode not bound +!missing-selector! MTROperationalStateClusterOperationCompletionEvent::pausedTime not bound +!missing-selector! MTROperationalStateClusterOperationCompletionEvent::setCompletionErrorCode: not bound +!missing-selector! MTROperationalStateClusterOperationCompletionEvent::setPausedTime: not bound +!missing-selector! MTROperationalStateClusterOperationCompletionEvent::setTotalOperationalTime: not bound +!missing-selector! MTROperationalStateClusterOperationCompletionEvent::totalOperationalTime not bound +!missing-selector! MTROperationalStateClusterPauseParams::serverSideProcessingTimeout not bound +!missing-selector! MTROperationalStateClusterPauseParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTROperationalStateClusterPauseParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTROperationalStateClusterPauseParams::timedInvokeTimeoutMs not bound +!missing-selector! MTROperationalStateClusterResumeParams::serverSideProcessingTimeout not bound +!missing-selector! MTROperationalStateClusterResumeParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTROperationalStateClusterResumeParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTROperationalStateClusterResumeParams::timedInvokeTimeoutMs not bound +!missing-selector! MTROperationalStateClusterStartParams::serverSideProcessingTimeout not bound +!missing-selector! MTROperationalStateClusterStartParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTROperationalStateClusterStartParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTROperationalStateClusterStartParams::timedInvokeTimeoutMs not bound +!missing-selector! MTROperationalStateClusterStopParams::serverSideProcessingTimeout not bound +!missing-selector! MTROperationalStateClusterStopParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTROperationalStateClusterStopParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTROperationalStateClusterStopParams::timedInvokeTimeoutMs not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::getNewMode not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::serverSideProcessingTimeout not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::setNewMode: not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::timedInvokeTimeoutMs not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeResponseParams::setStatus: not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeResponseParams::setStatusText: not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeResponseParams::status not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeResponseParams::statusText not bound +!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::label not bound +!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::mode not bound +!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::modeTags not bound +!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::setLabel: not bound +!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::setMode: not bound +!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::setModeTags: not bound +!missing-selector! MTRRVCCleanModeClusterModeTagStruct::mfgCode not bound +!missing-selector! MTRRVCCleanModeClusterModeTagStruct::setMfgCode: not bound +!missing-selector! MTRRVCCleanModeClusterModeTagStruct::setValue: not bound +!missing-selector! MTRRVCCleanModeClusterModeTagStruct::value not bound +!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::errorStateDetails not bound +!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::errorStateID not bound +!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::errorStateLabel not bound +!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::setErrorStateDetails: not bound +!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::setErrorStateID: not bound +!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::setErrorStateLabel: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalCommandResponseParams::commandResponseState not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalCommandResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalCommandResponseParams::setCommandResponseState: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalErrorEvent::errorState not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalErrorEvent::setErrorState: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalStateStruct::operationalStateID not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalStateStruct::operationalStateLabel not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalStateStruct::setOperationalStateID: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalStateStruct::setOperationalStateLabel: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::completionErrorCode not bound +!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::pausedTime not bound +!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::setCompletionErrorCode: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::setPausedTime: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::setTotalOperationalTime: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::totalOperationalTime not bound +!missing-selector! MTRRVCOperationalStateClusterPauseParams::serverSideProcessingTimeout not bound +!missing-selector! MTRRVCOperationalStateClusterPauseParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTRRVCOperationalStateClusterPauseParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTRRVCOperationalStateClusterPauseParams::timedInvokeTimeoutMs not bound +!missing-selector! MTRRVCOperationalStateClusterResumeParams::serverSideProcessingTimeout not bound +!missing-selector! MTRRVCOperationalStateClusterResumeParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTRRVCOperationalStateClusterResumeParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTRRVCOperationalStateClusterResumeParams::timedInvokeTimeoutMs not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeParams::getNewMode not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeParams::serverSideProcessingTimeout not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeParams::setNewMode: not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeParams::timedInvokeTimeoutMs not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeResponseParams::setStatus: not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeResponseParams::setStatusText: not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeResponseParams::status not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeResponseParams::statusText not bound +!missing-selector! MTRRVCRunModeClusterModeOptionStruct::label not bound +!missing-selector! MTRRVCRunModeClusterModeOptionStruct::mode not bound +!missing-selector! MTRRVCRunModeClusterModeOptionStruct::modeTags not bound +!missing-selector! MTRRVCRunModeClusterModeOptionStruct::setLabel: not bound +!missing-selector! MTRRVCRunModeClusterModeOptionStruct::setMode: not bound +!missing-selector! MTRRVCRunModeClusterModeOptionStruct::setModeTags: not bound +!missing-selector! MTRRVCRunModeClusterModeTagStruct::mfgCode not bound +!missing-selector! MTRRVCRunModeClusterModeTagStruct::setMfgCode: not bound +!missing-selector! MTRRVCRunModeClusterModeTagStruct::setValue: not bound +!missing-selector! MTRRVCRunModeClusterModeTagStruct::value not bound +!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::coolSetpoint not bound +!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::heatSetpoint not bound +!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::setCoolSetpoint: not bound +!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::setHeatSetpoint: not bound +!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::setTransitionTime: not bound +!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::transitionTime not bound +!missing-selector! MTRWiFiNetworkDiagnosticsClusterAssociationFailureEvent::associationFailureCause not bound +!missing-selector! MTRWiFiNetworkDiagnosticsClusterAssociationFailureEvent::setAssociationFailureCause: not bound +!missing-type! MTRBaseClusterOperationalState not bound +!missing-type! MTRBaseClusterRVCCleanMode not bound +!missing-type! MTRBaseClusterRVCOperationalState not bound +!missing-type! MTRBaseClusterRVCRunMode not bound +!missing-type! MTRClusterOperationalState not bound +!missing-type! MTRClusterRVCCleanMode not bound +!missing-type! MTRClusterRVCOperationalState not bound +!missing-type! MTRClusterRVCRunMode not bound +!missing-type! MTRGenericBaseCluster not bound +!missing-type! MTRGenericCluster not bound +!missing-type! MTROperationalStateClusterErrorStateStruct not bound +!missing-type! MTROperationalStateClusterOperationalCommandResponseParams not bound +!missing-type! MTROperationalStateClusterOperationalErrorEvent not bound +!missing-type! MTROperationalStateClusterOperationalStateStruct not bound +!missing-type! MTROperationalStateClusterOperationCompletionEvent not bound +!missing-type! MTROperationalStateClusterPauseParams not bound +!missing-type! MTROperationalStateClusterResumeParams not bound +!missing-type! MTROperationalStateClusterStartParams not bound +!missing-type! MTROperationalStateClusterStopParams not bound +!missing-type! MTRRVCCleanModeClusterChangeToModeParams not bound +!missing-type! MTRRVCCleanModeClusterChangeToModeResponseParams not bound +!missing-type! MTRRVCCleanModeClusterModeOptionStruct not bound +!missing-type! MTRRVCCleanModeClusterModeTagStruct not bound +!missing-type! MTRRVCOperationalStateClusterErrorStateStruct not bound +!missing-type! MTRRVCOperationalStateClusterOperationalCommandResponseParams not bound +!missing-type! MTRRVCOperationalStateClusterOperationalErrorEvent not bound +!missing-type! MTRRVCOperationalStateClusterOperationalStateStruct not bound +!missing-type! MTRRVCOperationalStateClusterOperationCompletionEvent not bound +!missing-type! MTRRVCOperationalStateClusterPauseParams not bound +!missing-type! MTRRVCOperationalStateClusterResumeParams not bound +!missing-type! MTRRVCRunModeClusterChangeToModeParams not bound +!missing-type! MTRRVCRunModeClusterChangeToModeResponseParams not bound +!missing-type! MTRRVCRunModeClusterModeOptionStruct not bound +!missing-type! MTRRVCRunModeClusterModeTagStruct not bound +!missing-type! MTRThermostatClusterWeeklyScheduleTransitionStruct not bound diff --git a/tests/xtro-sharpie/macOS-Metal.todo b/tests/xtro-sharpie/macOS-Metal.todo index 3aecdefd9d51..518da75143ef 100644 --- a/tests/xtro-sharpie/macOS-Metal.todo +++ b/tests/xtro-sharpie/macOS-Metal.todo @@ -5,3 +5,5 @@ !missing-protocol-member! MTLIndirectRenderCommand::setMeshBuffer:offset:atIndex: not found !missing-protocol-member! MTLIndirectRenderCommand::setObjectBuffer:offset:atIndex: not found !missing-protocol-member! MTLIndirectRenderCommand::setObjectThreadgroupMemoryLength:atIndex: not found +!missing-protocol-member! MTLResource::setOwnerWithIdentity: not found +!missing-protocol-member! MTLSharedEvent::waitUntilSignaledValue:timeoutMS: not found diff --git a/tests/xtro-sharpie/macOS-MetalPerformanceShadersGraph.todo b/tests/xtro-sharpie/macOS-MetalPerformanceShadersGraph.todo index 41e7d3e02722..bb4ab4a4bab1 100644 --- a/tests/xtro-sharpie/macOS-MetalPerformanceShadersGraph.todo +++ b/tests/xtro-sharpie/macOS-MetalPerformanceShadersGraph.todo @@ -342,3 +342,5 @@ !wrong-base-type! MPSGraphTensor expected MPSGraphObject actual NSObject !wrong-base-type! MPSGraphTensorData expected MPSGraphObject actual NSObject !wrong-base-type! MPSGraphType expected MPSGraphObject actual NSObject +!missing-selector! MPSGraph::sliceUpdateDataTensor:updateTensor:starts:ends:strides:startMask:endMask:squeezeMask:name: not bound +!missing-selector! MPSGraph::sliceUpdateDataTensor:updateTensor:startsTensor:endsTensor:stridesTensor:startMask:endMask:squeezeMask:name: not bound diff --git a/tests/xtro-sharpie/macOS-NetworkExtension.todo b/tests/xtro-sharpie/macOS-NetworkExtension.todo new file mode 100644 index 000000000000..feba76486668 --- /dev/null +++ b/tests/xtro-sharpie/macOS-NetworkExtension.todo @@ -0,0 +1,2 @@ +!missing-selector! NEVPNProtocol::excludeDeviceCommunication not bound +!missing-selector! NEVPNProtocol::setExcludeDeviceCommunication: not bound diff --git a/tests/xtro-sharpie/macOS-PassKit.todo b/tests/xtro-sharpie/macOS-PassKit.todo new file mode 100644 index 000000000000..94f814a8e4ad --- /dev/null +++ b/tests/xtro-sharpie/macOS-PassKit.todo @@ -0,0 +1 @@ +!missing-field! PKPaymentNetworkMeeza not bound diff --git a/tests/xtro-sharpie/macOS-PencilKit.todo b/tests/xtro-sharpie/macOS-PencilKit.todo new file mode 100644 index 000000000000..9041a74cc57f --- /dev/null +++ b/tests/xtro-sharpie/macOS-PencilKit.todo @@ -0,0 +1 @@ +!missing-enum-value! PKContentVersion native value PKContentVersionLatest = 3 not bound diff --git a/tests/xtro-sharpie/macOS-ScreenCaptureKit.todo b/tests/xtro-sharpie/macOS-ScreenCaptureKit.todo new file mode 100644 index 000000000000..46a1687c0986 --- /dev/null +++ b/tests/xtro-sharpie/macOS-ScreenCaptureKit.todo @@ -0,0 +1,2 @@ +!missing-protocol-member! SCStreamDelegate::userDidStopStream: not found +!missing-selector! +SCShareableContent::getCurrentProcessShareableContentWithCompletionHandler: not bound diff --git a/tests/xtro-sharpie/macOS-VideoSubscriberAccount.todo b/tests/xtro-sharpie/macOS-VideoSubscriberAccount.todo new file mode 100644 index 000000000000..b325adc0448d --- /dev/null +++ b/tests/xtro-sharpie/macOS-VideoSubscriberAccount.todo @@ -0,0 +1,8 @@ +!missing-selector! VSAppleSubscription::customerID not bound +!missing-selector! VSAppleSubscription::initWithCustomerID:productCodes: not bound +!missing-selector! VSAppleSubscription::productCodes not bound +!missing-selector! VSAppleSubscription::setCustomerID: not bound +!missing-selector! VSAppleSubscription::setProductCodes: not bound +!missing-selector! VSUserAccount::appleSubscription not bound +!missing-selector! VSUserAccount::setAppleSubscription: not bound +!missing-type! VSAppleSubscription not bound diff --git a/tests/xtro-sharpie/macOS-VideoToolbox.todo b/tests/xtro-sharpie/macOS-VideoToolbox.todo index 31bea8d7aea4..a96be7076184 100644 --- a/tests/xtro-sharpie/macOS-VideoToolbox.todo +++ b/tests/xtro-sharpie/macOS-VideoToolbox.todo @@ -18,3 +18,9 @@ !missing-pinvoke! VTIsStereoMVHEVCEncodeSupported is not bound !missing-field! kVTCompressionPropertyKey_HasLeftStereoEyeView not bound !missing-field! kVTCompressionPropertyKey_HasRightStereoEyeView not bound +!missing-field! kVTCompressionPropertyKey_CalculateMeanSquaredError not bound +!missing-field! kVTCompressionPropertyKey_HorizontalFieldOfView not bound +!missing-field! kVTSampleAttachmentKey_QualityMetrics not bound +!missing-field! kVTSampleAttachmentQualityMetricsKey_ChromaBlueMeanSquaredError not bound +!missing-field! kVTSampleAttachmentQualityMetricsKey_ChromaRedMeanSquaredError not bound +!missing-field! kVTSampleAttachmentQualityMetricsKey_LumaMeanSquaredError not bound diff --git a/tests/xtro-sharpie/tvOS-AVFoundation.todo b/tests/xtro-sharpie/tvOS-AVFoundation.todo index 86cd3b31c292..9678078c5501 100644 --- a/tests/xtro-sharpie/tvOS-AVFoundation.todo +++ b/tests/xtro-sharpie/tvOS-AVFoundation.todo @@ -1142,7 +1142,6 @@ !missing-selector! AVCaptureDeviceFormat::zoomFactorsOutsideOfVideoZoomRangesForDepthDeliverySupported not bound !missing-selector! AVPlayer::setVideoOutput: not bound !missing-selector! AVPlayer::videoOutput not bound -!missing-selector! AVPlayerItemErrorLogEvent::allHTTPResponseHeaderFields not bound !missing-selector! AVPlayerVideoOutput::copyTaggedBufferGroupForHostTime:presentationTimeStamp:activeConfiguration: not bound !missing-selector! AVPlayerVideoOutput::initWithSpecification: not bound !missing-selector! AVPlayerVideoOutputConfiguration::activationTime not bound @@ -1160,3 +1159,21 @@ !missing-type! AVPlayerVideoOutputConfiguration not bound !missing-type! AVVideoOutputSpecification not bound !missing-type! AVZoomRange not bound +!missing-enum! AVExternalContentProtectionStatus not bound +!missing-field! AVSampleBufferDisplayLayerReadyForDisplayDidChangeNotification not bound +!missing-protocol-member! AVContentKeySessionDelegate::contentKeySession:didProvideContentKeyRequests:forInitializationData: not found +!missing-protocol-member! AVContentKeySessionDelegate::contentKeySession:externalProtectionStatusDidChangeForContentKey: not found +!missing-selector! AVContentKey::externalContentProtectionStatus not bound +!missing-selector! AVContentKey::revoke not bound +!missing-selector! AVSampleBufferDisplayLayer::isReadyForDisplay not bound +!missing-selector! AVSampleBufferVideoRenderer::copyDisplayedPixelBuffer not bound +!missing-selector! AVSampleBufferVideoRenderer::expectMinimumUpcomingSampleBufferPresentationTime: not bound +!missing-selector! AVSampleBufferVideoRenderer::expectMonotonicallyIncreasingUpcomingSampleBufferPresentationTimes not bound +!missing-selector! AVSampleBufferVideoRenderer::loadVideoPerformanceMetricsWithCompletionHandler: not bound +!missing-selector! AVSampleBufferVideoRenderer::resetUpcomingSampleBufferPresentationTimeExpectations not bound +!missing-selector! AVVideoPerformanceMetrics::numberOfCorruptedFrames not bound +!missing-selector! AVVideoPerformanceMetrics::numberOfDroppedFrames not bound +!missing-selector! AVVideoPerformanceMetrics::numberOfFramesDisplayedUsingOptimizedCompositing not bound +!missing-selector! AVVideoPerformanceMetrics::totalAccumulatedFrameDelay not bound +!missing-selector! AVVideoPerformanceMetrics::totalNumberOfFrames not bound +!missing-type! AVVideoPerformanceMetrics not bound diff --git a/tests/xtro-sharpie/tvOS-AuthenticationServices.todo b/tests/xtro-sharpie/tvOS-AuthenticationServices.todo new file mode 100644 index 000000000000..bd7c6c12fce1 --- /dev/null +++ b/tests/xtro-sharpie/tvOS-AuthenticationServices.todo @@ -0,0 +1,10 @@ +!deprecated-attribute-missing! ASWebAuthenticationSession::initWithURL:callbackURLScheme:completionHandler: missing a [Deprecated] attribute +!missing-enum! ASUserAgeRange not bound +!missing-selector! +ASWebAuthenticationSessionCallback::callbackWithCustomScheme: not bound +!missing-selector! +ASWebAuthenticationSessionCallback::callbackWithHTTPSHost:path: not bound +!missing-selector! ASAuthorizationAppleIDCredential::userAgeRange not bound +!missing-selector! ASWebAuthenticationSession::additionalHeaderFields not bound +!missing-selector! ASWebAuthenticationSession::initWithURL:callback:completionHandler: not bound +!missing-selector! ASWebAuthenticationSession::setAdditionalHeaderFields: not bound +!missing-selector! ASWebAuthenticationSessionCallback::matchesURL: not bound +!missing-type! ASWebAuthenticationSessionCallback not bound diff --git a/tests/xtro-sharpie/tvOS-BrowserEngineKit.todo b/tests/xtro-sharpie/tvOS-BrowserEngineKit.todo new file mode 100644 index 000000000000..79ad97e0f803 --- /dev/null +++ b/tests/xtro-sharpie/tvOS-BrowserEngineKit.todo @@ -0,0 +1,74 @@ +!missing-enum! BEGestureType not bound +!missing-enum! BEKeyModifierFlags not bound +!missing-enum! BEKeyPressState not bound +!missing-enum! BEScrollViewScrollUpdatePhase not bound +!missing-enum! BESelectionFlags not bound +!missing-enum! BESelectionTouchPhase not bound +!missing-enum! BETextDocumentRequestOptions not bound +!missing-enum! BETextReplacementOptions not bound +!missing-protocol! BEExtendedTextInputTraits not bound +!missing-protocol! BEResponderEditActions not bound +!missing-protocol! BEScrollViewDelegate not bound +!missing-protocol! BETextInput not bound +!missing-protocol! BETextInputDelegate not bound +!missing-protocol! BETextInteractionDelegate not bound +!missing-protocol! BETextSelectionDirectionNavigation not bound +!missing-selector! BEAutoFillTextSuggestion::contents not bound +!missing-selector! BEKeyEntry::isKeyRepeating not bound +!missing-selector! BEKeyEntry::key not bound +!missing-selector! BEKeyEntry::state not bound +!missing-selector! BEKeyEntry::timestamp not bound +!missing-selector! BEKeyEntryContext::initWithKeyEntry: not bound +!missing-selector! BEKeyEntryContext::isDocumentEditable not bound +!missing-selector! BEKeyEntryContext::keyEntry not bound +!missing-selector! BEKeyEntryContext::setDocumentEditable: not bound +!missing-selector! BEKeyEntryContext::setShouldEvaluateForInputSystemHandling: not bound +!missing-selector! BEKeyEntryContext::setShouldInsertCharacter: not bound +!missing-selector! BEKeyEntryContext::shouldEvaluateForInputSystemHandling not bound +!missing-selector! BEKeyEntryContext::shouldInsertCharacter not bound +!missing-selector! BEScrollView::delegate not bound +!missing-selector! BEScrollView::setDelegate: not bound +!missing-selector! BEScrollViewScrollUpdate::locationInView: not bound +!missing-selector! BEScrollViewScrollUpdate::phase not bound +!missing-selector! BEScrollViewScrollUpdate::timestamp not bound +!missing-selector! BEScrollViewScrollUpdate::translationInView: not bound +!missing-selector! BETextAlternatives::alternativeStrings not bound +!missing-selector! BETextAlternatives::primaryString not bound +!missing-selector! BETextDocumentContext::addTextRect:forCharacterRange: not bound +!missing-selector! BETextDocumentContext::autocorrectedRanges not bound +!missing-selector! BETextDocumentContext::initWithAttributedSelectedText:contextBefore:contextAfter:markedText:selectedRangeInMarkedText: not bound +!missing-selector! BETextDocumentContext::initWithSelectedText:contextBefore:contextAfter:markedText:selectedRangeInMarkedText: not bound +!missing-selector! BETextDocumentContext::setAutocorrectedRanges: not bound +!missing-selector! BETextDocumentRequest::granularityCount not bound +!missing-selector! BETextDocumentRequest::options not bound +!missing-selector! BETextDocumentRequest::setGranularityCount: not bound +!missing-selector! BETextDocumentRequest::setOptions: not bound +!missing-selector! BETextDocumentRequest::setSurroundingGranularity: not bound +!missing-selector! BETextDocumentRequest::surroundingGranularity not bound +!missing-selector! BETextInteraction::addShortcutForText:fromRect: not bound +!missing-selector! BETextInteraction::delegate not bound +!missing-selector! BETextInteraction::dismissEditMenuForSelection not bound +!missing-selector! BETextInteraction::editabilityChanged not bound +!missing-selector! BETextInteraction::presentEditMenuForSelection not bound +!missing-selector! BETextInteraction::refreshKeyboardUI not bound +!missing-selector! BETextInteraction::selectionBoundaryAdjustedToPoint:touchPhase:flags: not bound +!missing-selector! BETextInteraction::selectionChangedWithGestureAtPoint:gesture:state:flags: not bound +!missing-selector! BETextInteraction::setDelegate: not bound +!missing-selector! BETextInteraction::shareText:fromRect: not bound +!missing-selector! BETextInteraction::showDictionaryForTextInContext:definingTextInRange:fromRect: not bound +!missing-selector! BETextInteraction::showReplacementsForText: not bound +!missing-selector! BETextInteraction::textSelectionDisplayInteraction not bound +!missing-selector! BETextInteraction::translateText:fromRect: not bound +!missing-selector! BETextInteraction::transliterateChineseForText: not bound +!missing-selector! BETextSuggestion::initWithInputText: not bound +!missing-selector! BETextSuggestion::inputText not bound +!missing-type! BEAutoFillTextSuggestion not bound +!missing-type! BEKeyEntry not bound +!missing-type! BEKeyEntryContext not bound +!missing-type! BEScrollView not bound +!missing-type! BEScrollViewScrollUpdate not bound +!missing-type! BETextAlternatives not bound +!missing-type! BETextDocumentContext not bound +!missing-type! BETextDocumentRequest not bound +!missing-type! BETextInteraction not bound +!missing-type! BETextSuggestion not bound diff --git a/tests/xtro-sharpie/tvOS-CoreML.todo b/tests/xtro-sharpie/tvOS-CoreML.todo new file mode 100644 index 000000000000..cd65c2081202 --- /dev/null +++ b/tests/xtro-sharpie/tvOS-CoreML.todo @@ -0,0 +1,58 @@ +!missing-enum! MLReshapeFrequencyHint not bound +!missing-selector! +MLComputePlan::loadContentsOfURL:configuration:completionHandler: not bound +!missing-selector! +MLComputePlan::loadModelAsset:configuration:completionHandler: not bound +!missing-selector! +MLModelStructure::loadContentsOfURL:completionHandler: not bound +!missing-selector! +MLModelStructure::loadModelAsset:completionHandler: not bound +!missing-selector! MLComputePlan::computeDeviceUsageForMLProgramOperation: not bound +!missing-selector! MLComputePlan::computeDeviceUsageForNeuralNetworkLayer: not bound +!missing-selector! MLComputePlan::estimatedCostOfMLProgramOperation: not bound +!missing-selector! MLComputePlan::modelStructure not bound +!missing-selector! MLComputePlanCost::weight not bound +!missing-selector! MLComputePlanDeviceUsage::preferredComputeDevice not bound +!missing-selector! MLComputePlanDeviceUsage::supportedComputeDevices not bound +!missing-selector! MLModelConfiguration::optimizationHints not bound +!missing-selector! MLModelConfiguration::setOptimizationHints: not bound +!missing-selector! MLModelStructure::neuralNetwork not bound +!missing-selector! MLModelStructure::pipeline not bound +!missing-selector! MLModelStructure::program not bound +!missing-selector! MLModelStructureNeuralNetwork::layers not bound +!missing-selector! MLModelStructureNeuralNetworkLayer::inputNames not bound +!missing-selector! MLModelStructureNeuralNetworkLayer::name not bound +!missing-selector! MLModelStructureNeuralNetworkLayer::outputNames not bound +!missing-selector! MLModelStructureNeuralNetworkLayer::type not bound +!missing-selector! MLModelStructurePipeline::subModelNames not bound +!missing-selector! MLModelStructurePipeline::subModels not bound +!missing-selector! MLModelStructureProgram::functions not bound +!missing-selector! MLModelStructureProgramArgument::bindings not bound +!missing-selector! MLModelStructureProgramBinding::name not bound +!missing-selector! MLModelStructureProgramBinding::value not bound +!missing-selector! MLModelStructureProgramBlock::inputs not bound +!missing-selector! MLModelStructureProgramBlock::operations not bound +!missing-selector! MLModelStructureProgramBlock::outputNames not bound +!missing-selector! MLModelStructureProgramFunction::block not bound +!missing-selector! MLModelStructureProgramFunction::inputs not bound +!missing-selector! MLModelStructureProgramNamedValueType::name not bound +!missing-selector! MLModelStructureProgramNamedValueType::type not bound +!missing-selector! MLModelStructureProgramOperation::blocks not bound +!missing-selector! MLModelStructureProgramOperation::inputs not bound +!missing-selector! MLModelStructureProgramOperation::operatorName not bound +!missing-selector! MLModelStructureProgramOperation::outputs not bound +!missing-selector! MLOptimizationHints::reshapeFrequency not bound +!missing-selector! MLOptimizationHints::setReshapeFrequency: not bound +!missing-type! MLComputePlan not bound +!missing-type! MLComputePlanCost not bound +!missing-type! MLComputePlanDeviceUsage not bound +!missing-type! MLModelStructure not bound +!missing-type! MLModelStructureNeuralNetwork not bound +!missing-type! MLModelStructureNeuralNetworkLayer not bound +!missing-type! MLModelStructurePipeline not bound +!missing-type! MLModelStructureProgram not bound +!missing-type! MLModelStructureProgramArgument not bound +!missing-type! MLModelStructureProgramBinding not bound +!missing-type! MLModelStructureProgramBlock not bound +!missing-type! MLModelStructureProgramFunction not bound +!missing-type! MLModelStructureProgramNamedValueType not bound +!missing-type! MLModelStructureProgramOperation not bound +!missing-type! MLModelStructureProgramValue not bound +!missing-type! MLModelStructureProgramValueType not bound +!missing-type! MLOptimizationHints not bound diff --git a/tests/xtro-sharpie/tvOS-Foundation.todo b/tests/xtro-sharpie/tvOS-Foundation.todo new file mode 100644 index 000000000000..2630cbe5af9f --- /dev/null +++ b/tests/xtro-sharpie/tvOS-Foundation.todo @@ -0,0 +1,2 @@ +!missing-selector! NSUndoManager::redoCount not bound +!missing-selector! NSUndoManager::undoCount not bound diff --git a/tests/xtro-sharpie/tvOS-GameController.todo b/tests/xtro-sharpie/tvOS-GameController.todo index 1106fdad9687..05700c01a485 100644 --- a/tests/xtro-sharpie/tvOS-GameController.todo +++ b/tests/xtro-sharpie/tvOS-GameController.todo @@ -16,3 +16,13 @@ !missing-selector! GCControllerLiveInput::unmappedInput not bound !missing-type! GCControllerInputState not bound !missing-type! GCControllerLiveInput not bound +!missing-field! GCInputLeftBumper not bound +!missing-field! GCInputRightBumper not bound +!missing-field! GCPoint2Zero not bound +!missing-pinvoke! GCInputBackLeftButton is not bound +!missing-pinvoke! GCInputBackRightButton is not bound +!missing-pinvoke! NSStringFromGCPoint2 is not bound +!missing-protocol! GCAxis2DInput not bound +!missing-protocol-member! GCDirectionPadElement::xyAxes not found +!missing-selector! +NSValue::valueWithGCPoint2: not bound +!missing-selector! NSValue::GCPoint2Value not bound diff --git a/tests/xtro-sharpie/tvOS-GameKit.todo b/tests/xtro-sharpie/tvOS-GameKit.todo new file mode 100644 index 000000000000..fbc685833dbe --- /dev/null +++ b/tests/xtro-sharpie/tvOS-GameKit.todo @@ -0,0 +1,3 @@ +!deprecated-attribute-missing! GKScoreChallenge::score missing a [Deprecated] attribute +!missing-enum-value! GKError native value GKErrorAppUnlisted = 37 not bound +!missing-selector! GKScoreChallenge::leaderboardEntry not bound diff --git a/tests/xtro-sharpie/tvOS-HomeKit.todo b/tests/xtro-sharpie/tvOS-HomeKit.todo new file mode 100644 index 000000000000..4e339b4433d5 --- /dev/null +++ b/tests/xtro-sharpie/tvOS-HomeKit.todo @@ -0,0 +1 @@ +!missing-enum-value! HMError native value HMErrorCodePartialCommunicationFailure = 104 not bound diff --git a/tests/xtro-sharpie/tvOS-IOSurface.todo b/tests/xtro-sharpie/tvOS-IOSurface.todo index b3c729926b86..c6839a4fd0d7 100644 --- a/tests/xtro-sharpie/tvOS-IOSurface.todo +++ b/tests/xtro-sharpie/tvOS-IOSurface.todo @@ -1 +1,4 @@ !deprecated-attribute-missing! IOSurface missing a [Deprecated] attribute +!missing-enum! IOSurfaceMemoryLedgerFlags not bound +!missing-enum! IOSurfaceMemoryLedgerTags not bound +!missing-pinvoke! IOSurfaceSetOwnershipIdentity is not bound diff --git a/tests/xtro-sharpie/tvOS-ImageIO.todo b/tests/xtro-sharpie/tvOS-ImageIO.todo new file mode 100644 index 000000000000..4c217d8b7e78 --- /dev/null +++ b/tests/xtro-sharpie/tvOS-ImageIO.todo @@ -0,0 +1,3 @@ +!missing-field! kCGImagePropertyTIFFXPosition not bound +!missing-field! kCGImagePropertyTIFFYPosition not bound +!missing-pinvoke! CGImageSourceSetAllowableTypes is not bound diff --git a/tests/xtro-sharpie/tvOS-MLCompute.todo b/tests/xtro-sharpie/tvOS-MLCompute.todo index f7d76f9cbafb..d14eb75bf584 100644 --- a/tests/xtro-sharpie/tvOS-MLCompute.todo +++ b/tests/xtro-sharpie/tvOS-MLCompute.todo @@ -52,3 +52,4 @@ !deprecated-attribute-missing! MLCUpsampleLayer missing a [Deprecated] attribute !deprecated-attribute-missing! MLCYOLOLossDescriptor missing a [Deprecated] attribute !deprecated-attribute-missing! MLCYOLOLossLayer missing a [Deprecated] attribute +!deprecated-attribute-missing! MLCTensorOptimizerDeviceData missing a [Deprecated] attribute diff --git a/tests/xtro-sharpie/tvOS-Matter.ignore b/tests/xtro-sharpie/tvOS-Matter.ignore index a7ad51a42f5b..21498983956b 100644 --- a/tests/xtro-sharpie/tvOS-Matter.ignore +++ b/tests/xtro-sharpie/tvOS-Matter.ignore @@ -22,11 +22,9 @@ !missing-enum! MTRColorControlSaturationMoveMode not bound !missing-enum! MTRColorControlSaturationStepMode not bound !missing-enum! MTRCommissioningFlow not bound -!missing-enum! MTRContentLauncherContentLaunchStatus not bound !missing-enum! MTRContentLauncherFeature not bound !missing-enum! MTRContentLauncherMetricType not bound !missing-enum! MTRContentLauncherParameter not bound -!missing-enum! MTRContentLauncherSupportedStreamingProtocol not bound !missing-enum! MTRDoorLockDayOfWeek not bound !missing-enum! MTRDoorLockDlCredentialRuleMask not bound !missing-enum! MTRDoorLockDlCredentialRulesSupport not bound @@ -57,7 +55,6 @@ !missing-enum! MTRIdentifyType not bound !missing-enum! MTRIlluminanceMeasurementLightSensorType not bound !missing-enum! MTRInteractionErrorCode not bound -!missing-enum! MTRKeypadInputCecKeyCode not bound !missing-enum! MTRKeypadInputFeature not bound !missing-enum! MTRKeypadInputStatus not bound !missing-enum! MTRLevelControlFeature not bound @@ -86,15 +83,10 @@ !missing-enum! MTRPowerSourceStatus not bound !missing-enum! MTRPowerSourceWiredCurrentType not bound !missing-enum! MTRPowerSourceWiredFault not bound -!missing-enum! MTRScenesCopyMode not bound !missing-enum! MTRSoftwareDiagnosticsFeature not bound !missing-enum! MTRTargetNavigatorStatus not bound -!missing-enum! MTRThermostatControlSequence not bound -!missing-enum! MTRThermostatDayOfWeek not bound !missing-enum! MTRThermostatFeature not bound -!missing-enum! MTRThermostatModeForSequence not bound !missing-enum! MTRThermostatRunningMode not bound -!missing-enum! MTRThermostatSetpointAdjustMode not bound !missing-enum! MTRThermostatSystemMode not bound !missing-enum! MTRThreadNetworkDiagnosticsFeature not bound !missing-enum! MTRThreadNetworkDiagnosticsNetworkFault not bound @@ -1363,12 +1355,6 @@ !missing-selector! MTRThermostatClusterSetWeeklyScheduleParams::setTransitions: not bound !missing-selector! MTRThermostatClusterSetWeeklyScheduleParams::timedInvokeTimeoutMs not bound !missing-selector! MTRThermostatClusterSetWeeklyScheduleParams::transitions not bound -!missing-selector! MTRThermostatClusterThermostatScheduleTransition::coolSetpoint not bound -!missing-selector! MTRThermostatClusterThermostatScheduleTransition::heatSetpoint not bound -!missing-selector! MTRThermostatClusterThermostatScheduleTransition::setCoolSetpoint: not bound -!missing-selector! MTRThermostatClusterThermostatScheduleTransition::setHeatSetpoint: not bound -!missing-selector! MTRThermostatClusterThermostatScheduleTransition::setTransitionTime: not bound -!missing-selector! MTRThermostatClusterThermostatScheduleTransition::transitionTime not bound !missing-selector! MTRThreadNetworkDiagnosticsClusterConnectionStatusEvent::connectionStatus not bound !missing-selector! MTRThreadNetworkDiagnosticsClusterConnectionStatusEvent::setConnectionStatus: not bound !missing-selector! MTRThreadNetworkDiagnosticsClusterOperationalDatasetComponents::activeTimestampPresent not bound @@ -1412,8 +1398,6 @@ !missing-selector! MTRUserLabelClusterLabelStruct::setLabel: not bound !missing-selector! MTRUserLabelClusterLabelStruct::setValue: not bound !missing-selector! MTRUserLabelClusterLabelStruct::value not bound -!missing-selector! MTRWiFiNetworkDiagnosticsClusterAssociationFailureEvent::associationFailure not bound -!missing-selector! MTRWiFiNetworkDiagnosticsClusterAssociationFailureEvent::setAssociationFailure: not bound !missing-selector! MTRWiFiNetworkDiagnosticsClusterAssociationFailureEvent::setStatus: not bound !missing-selector! MTRWiFiNetworkDiagnosticsClusterAssociationFailureEvent::status not bound !missing-selector! MTRWiFiNetworkDiagnosticsClusterConnectionStatusEvent::connectionStatus not bound @@ -1745,7 +1729,6 @@ !missing-type! MTRThermostatClusterGetWeeklyScheduleResponseParams not bound !missing-type! MTRThermostatClusterSetpointRaiseLowerParams not bound !missing-type! MTRThermostatClusterSetWeeklyScheduleParams not bound -!missing-type! MTRThermostatClusterThermostatScheduleTransition not bound !missing-type! MTRThreadNetworkDiagnosticsClusterConnectionStatusEvent not bound !missing-type! MTRThreadNetworkDiagnosticsClusterOperationalDatasetComponents not bound !missing-type! MTRThreadNetworkDiagnosticsClusterResetCountsParams not bound @@ -3267,7 +3250,6 @@ !missing-enum! MTRGeneralDiagnosticsHardwareFault not bound !missing-enum! MTRGeneralDiagnosticsNetworkFault not bound !missing-enum! MTRGeneralDiagnosticsRadioFault not bound -!missing-enum! MTRLevelControlOptions not bound !missing-enum! MTRLogType not bound !missing-enum! MTRMediaPlaybackFeature not bound !missing-enum! MTROperationalCredentialsCertificateChainType not bound diff --git a/tests/xtro-sharpie/tvOS-Matter.todo b/tests/xtro-sharpie/tvOS-Matter.todo index 9e4d83bffc12..60406a5077b9 100644 --- a/tests/xtro-sharpie/tvOS-Matter.todo +++ b/tests/xtro-sharpie/tvOS-Matter.todo @@ -301,3 +301,383 @@ !missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::timeSource not bound !missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::utcTime not bound !missing-type! MTRTimeSynchronizationClusterSetUTCTimeParams not bound +!missing-enum! MTRAdministratorCommissioningFeature not bound +!missing-enum! MTRContentLauncherStatus not bound +!missing-enum! MTRContentLauncherSupportedProtocolsBitmap not bound +!missing-enum! MTRKeypadInputCECKeyCode not bound +!missing-enum! MTRLevelControlOptionsBitmap not bound +!missing-enum! MTROperationalState not bound +!missing-enum! MTROperationalStateErrorState not bound +!missing-enum! MTRRVCCleanModeFeature not bound +!missing-enum! MTRRVCCleanModeModeTag not bound +!missing-enum! MTRRVCCleanModeStatusCode not bound +!missing-enum! MTRRVCOperationalStateErrorState not bound +!missing-enum! MTRRVCOperationalStateOperationalState not bound +!missing-enum! MTRRVCRunModeFeature not bound +!missing-enum! MTRRVCRunModeModeTag not bound +!missing-enum! MTRRVCRunModeStatusCode not bound +!missing-enum! MTRScenesCopyModeBitmap not bound +!missing-enum! MTRThermostatControlSequenceOfOperation not bound +!missing-enum! MTRThermostatScheduleDayOfWeekBitmap not bound +!missing-enum! MTRThermostatScheduleModeBitmap not bound +!missing-enum! MTRThermostatSetpointRaiseLowerMode not bound +!missing-enum! MTRThermostatUserInterfaceConfigurationKeypadLockout not bound +!missing-enum! MTRThermostatUserInterfaceConfigurationScheduleProgrammingVisibility not bound +!missing-enum! MTRThermostatUserInterfaceConfigurationTemperatureDisplayMode not bound +!missing-field! MTREventIsHistoricalKey not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeAcceptedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeAttributeListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeClusterRevisionWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeCountdownTimeWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeCurrentPhaseWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeFeatureMapWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeGeneratedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeOperationalErrorWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeOperationalStateListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeOperationalStateWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributePhaseListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterPowerSource::readAttributeEndpointListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeAcceptedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeAttributeListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeClusterRevisionWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeCurrentModeWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeFeatureMapWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeGeneratedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeSupportedModesWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeAcceptedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeAttributeListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeClusterRevisionWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeCountdownTimeWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeCurrentPhaseWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeFeatureMapWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeGeneratedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeOperationalErrorWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeOperationalStateListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeOperationalStateWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributePhaseListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeAcceptedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeAttributeListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeClusterRevisionWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeCurrentModeWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeFeatureMapWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeGeneratedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeSupportedModesWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! MTRBaseClusterApplicationLauncher::hideAppWithCompletion: not bound +!missing-selector! MTRBaseClusterApplicationLauncher::launchAppWithCompletion: not bound +!missing-selector! MTRBaseClusterApplicationLauncher::stopAppWithCompletion: not bound +!missing-selector! MTRBaseClusterDoorLock::lockDoorWithCompletion: not bound +!missing-selector! MTRBaseClusterDoorLock::unlockDoorWithCompletion: not bound +!missing-selector! MTRBaseClusterNetworkCommissioning::scanNetworksWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRBaseClusterOperationalState::pauseWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::pauseWithParams:completion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeAcceptedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeAttributeListWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeClusterRevisionWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeCountdownTimeWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeCurrentPhaseWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeFeatureMapWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeGeneratedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeOperationalErrorWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeOperationalStateListWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeOperationalStateWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributePhaseListWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::resumeWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::resumeWithParams:completion: not bound +!missing-selector! MTRBaseClusterOperationalState::startWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::startWithParams:completion: not bound +!missing-selector! MTRBaseClusterOperationalState::stopWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::stopWithParams:completion: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeAcceptedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeAttributeListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeClusterRevisionWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeCountdownTimeWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeCurrentPhaseWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeFeatureMapWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeGeneratedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeOperationalErrorWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeOperationalStateListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeOperationalStateWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributePhaseListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterPowerSource::readAttributeEndpointListWithCompletion: not bound +!missing-selector! MTRBaseClusterPowerSource::subscribeAttributeEndpointListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::changeToModeWithParams:completion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeAcceptedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeAttributeListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeClusterRevisionWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeCurrentModeWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeFeatureMapWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeGeneratedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeSupportedModesWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeAcceptedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeAttributeListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeClusterRevisionWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeCurrentModeWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeFeatureMapWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeGeneratedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeSupportedModesWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::pauseWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::pauseWithParams:completion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeAcceptedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeAttributeListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeClusterRevisionWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeCountdownTimeWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeCurrentPhaseWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeFeatureMapWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeGeneratedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeOperationalErrorWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeOperationalStateListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeOperationalStateWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributePhaseListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::resumeWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::resumeWithParams:completion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeAcceptedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeAttributeListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeClusterRevisionWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeCountdownTimeWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeCurrentPhaseWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeFeatureMapWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeGeneratedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeOperationalErrorWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeOperationalStateListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeOperationalStateWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributePhaseListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::changeToModeWithParams:completion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeAcceptedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeAttributeListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeClusterRevisionWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeCurrentModeWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeFeatureMapWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeGeneratedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeSupportedModesWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeAcceptedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeAttributeListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeClusterRevisionWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeCurrentModeWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeFeatureMapWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeGeneratedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeSupportedModesWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterUnitTesting::testNullableOptionalRequestWithCompletion: not bound +!missing-selector! MTRBaseClusterUnitTesting::testSimpleOptionalArgumentRequestWithCompletion: not bound +!missing-selector! MTRCluster::endpointID not bound +!missing-selector! MTRClusterApplicationLauncher::hideAppWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterApplicationLauncher::launchAppWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterApplicationLauncher::stopAppWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterDoorLock::lockDoorWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterDoorLock::unlockDoorWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterNetworkCommissioning::scanNetworksWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRClusterOperationalState::pauseWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::pauseWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::readAttributeAcceptedCommandListWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeAttributeListWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeClusterRevisionWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeCountdownTimeWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeCurrentPhaseWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeFeatureMapWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeGeneratedCommandListWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeOperationalErrorWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeOperationalStateListWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeOperationalStateWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributePhaseListWithParams: not bound +!missing-selector! MTRClusterOperationalState::resumeWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::resumeWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::startWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::startWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::stopWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::stopWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterPowerSource::readAttributeEndpointListWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::changeToModeWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterRVCCleanMode::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeAcceptedCommandListWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeAttributeListWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeClusterRevisionWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeCurrentModeWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeFeatureMapWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeGeneratedCommandListWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeSupportedModesWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRClusterRVCOperationalState::pauseWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterRVCOperationalState::pauseWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeAcceptedCommandListWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeAttributeListWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeClusterRevisionWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeCountdownTimeWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeCurrentPhaseWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeFeatureMapWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeGeneratedCommandListWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeOperationalErrorWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeOperationalStateListWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeOperationalStateWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributePhaseListWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::resumeWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterRVCOperationalState::resumeWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterRVCRunMode::changeToModeWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterRVCRunMode::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeAcceptedCommandListWithParams: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeAttributeListWithParams: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeClusterRevisionWithParams: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeCurrentModeWithParams: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeFeatureMapWithParams: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeGeneratedCommandListWithParams: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeSupportedModesWithParams: not bound +!missing-selector! MTRClusterUnitTesting::testNullableOptionalRequestWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterUnitTesting::testSimpleOptionalArgumentRequestWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRDevice::deviceController not bound +!missing-selector! MTRDevice::invokeCommandWithEndpointID:clusterID:commandID:commandFields:expectedValues:expectedValueInterval:queue:completion: not bound +!missing-selector! MTRDevice::nodeID not bound +!missing-selector! MTRGenericCluster::device not bound +!missing-selector! MTROperationalStateClusterErrorStateStruct::errorStateDetails not bound +!missing-selector! MTROperationalStateClusterErrorStateStruct::errorStateID not bound +!missing-selector! MTROperationalStateClusterErrorStateStruct::errorStateLabel not bound +!missing-selector! MTROperationalStateClusterErrorStateStruct::setErrorStateDetails: not bound +!missing-selector! MTROperationalStateClusterErrorStateStruct::setErrorStateID: not bound +!missing-selector! MTROperationalStateClusterErrorStateStruct::setErrorStateLabel: not bound +!missing-selector! MTROperationalStateClusterOperationalCommandResponseParams::commandResponseState not bound +!missing-selector! MTROperationalStateClusterOperationalCommandResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTROperationalStateClusterOperationalCommandResponseParams::setCommandResponseState: not bound +!missing-selector! MTROperationalStateClusterOperationalErrorEvent::errorState not bound +!missing-selector! MTROperationalStateClusterOperationalErrorEvent::setErrorState: not bound +!missing-selector! MTROperationalStateClusterOperationalStateStruct::operationalStateID not bound +!missing-selector! MTROperationalStateClusterOperationalStateStruct::operationalStateLabel not bound +!missing-selector! MTROperationalStateClusterOperationalStateStruct::setOperationalStateID: not bound +!missing-selector! MTROperationalStateClusterOperationalStateStruct::setOperationalStateLabel: not bound +!missing-selector! MTROperationalStateClusterOperationCompletionEvent::completionErrorCode not bound +!missing-selector! MTROperationalStateClusterOperationCompletionEvent::pausedTime not bound +!missing-selector! MTROperationalStateClusterOperationCompletionEvent::setCompletionErrorCode: not bound +!missing-selector! MTROperationalStateClusterOperationCompletionEvent::setPausedTime: not bound +!missing-selector! MTROperationalStateClusterOperationCompletionEvent::setTotalOperationalTime: not bound +!missing-selector! MTROperationalStateClusterOperationCompletionEvent::totalOperationalTime not bound +!missing-selector! MTROperationalStateClusterPauseParams::serverSideProcessingTimeout not bound +!missing-selector! MTROperationalStateClusterPauseParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTROperationalStateClusterPauseParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTROperationalStateClusterPauseParams::timedInvokeTimeoutMs not bound +!missing-selector! MTROperationalStateClusterResumeParams::serverSideProcessingTimeout not bound +!missing-selector! MTROperationalStateClusterResumeParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTROperationalStateClusterResumeParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTROperationalStateClusterResumeParams::timedInvokeTimeoutMs not bound +!missing-selector! MTROperationalStateClusterStartParams::serverSideProcessingTimeout not bound +!missing-selector! MTROperationalStateClusterStartParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTROperationalStateClusterStartParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTROperationalStateClusterStartParams::timedInvokeTimeoutMs not bound +!missing-selector! MTROperationalStateClusterStopParams::serverSideProcessingTimeout not bound +!missing-selector! MTROperationalStateClusterStopParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTROperationalStateClusterStopParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTROperationalStateClusterStopParams::timedInvokeTimeoutMs not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::getNewMode not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::serverSideProcessingTimeout not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::setNewMode: not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::timedInvokeTimeoutMs not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeResponseParams::setStatus: not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeResponseParams::setStatusText: not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeResponseParams::status not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeResponseParams::statusText not bound +!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::label not bound +!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::mode not bound +!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::modeTags not bound +!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::setLabel: not bound +!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::setMode: not bound +!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::setModeTags: not bound +!missing-selector! MTRRVCCleanModeClusterModeTagStruct::mfgCode not bound +!missing-selector! MTRRVCCleanModeClusterModeTagStruct::setMfgCode: not bound +!missing-selector! MTRRVCCleanModeClusterModeTagStruct::setValue: not bound +!missing-selector! MTRRVCCleanModeClusterModeTagStruct::value not bound +!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::errorStateDetails not bound +!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::errorStateID not bound +!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::errorStateLabel not bound +!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::setErrorStateDetails: not bound +!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::setErrorStateID: not bound +!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::setErrorStateLabel: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalCommandResponseParams::commandResponseState not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalCommandResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalCommandResponseParams::setCommandResponseState: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalErrorEvent::errorState not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalErrorEvent::setErrorState: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalStateStruct::operationalStateID not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalStateStruct::operationalStateLabel not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalStateStruct::setOperationalStateID: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalStateStruct::setOperationalStateLabel: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::completionErrorCode not bound +!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::pausedTime not bound +!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::setCompletionErrorCode: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::setPausedTime: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::setTotalOperationalTime: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::totalOperationalTime not bound +!missing-selector! MTRRVCOperationalStateClusterPauseParams::serverSideProcessingTimeout not bound +!missing-selector! MTRRVCOperationalStateClusterPauseParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTRRVCOperationalStateClusterPauseParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTRRVCOperationalStateClusterPauseParams::timedInvokeTimeoutMs not bound +!missing-selector! MTRRVCOperationalStateClusterResumeParams::serverSideProcessingTimeout not bound +!missing-selector! MTRRVCOperationalStateClusterResumeParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTRRVCOperationalStateClusterResumeParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTRRVCOperationalStateClusterResumeParams::timedInvokeTimeoutMs not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeParams::getNewMode not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeParams::serverSideProcessingTimeout not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeParams::setNewMode: not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeParams::timedInvokeTimeoutMs not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeResponseParams::setStatus: not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeResponseParams::setStatusText: not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeResponseParams::status not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeResponseParams::statusText not bound +!missing-selector! MTRRVCRunModeClusterModeOptionStruct::label not bound +!missing-selector! MTRRVCRunModeClusterModeOptionStruct::mode not bound +!missing-selector! MTRRVCRunModeClusterModeOptionStruct::modeTags not bound +!missing-selector! MTRRVCRunModeClusterModeOptionStruct::setLabel: not bound +!missing-selector! MTRRVCRunModeClusterModeOptionStruct::setMode: not bound +!missing-selector! MTRRVCRunModeClusterModeOptionStruct::setModeTags: not bound +!missing-selector! MTRRVCRunModeClusterModeTagStruct::mfgCode not bound +!missing-selector! MTRRVCRunModeClusterModeTagStruct::setMfgCode: not bound +!missing-selector! MTRRVCRunModeClusterModeTagStruct::setValue: not bound +!missing-selector! MTRRVCRunModeClusterModeTagStruct::value not bound +!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::coolSetpoint not bound +!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::heatSetpoint not bound +!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::setCoolSetpoint: not bound +!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::setHeatSetpoint: not bound +!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::setTransitionTime: not bound +!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::transitionTime not bound +!missing-selector! MTRWiFiNetworkDiagnosticsClusterAssociationFailureEvent::associationFailureCause not bound +!missing-selector! MTRWiFiNetworkDiagnosticsClusterAssociationFailureEvent::setAssociationFailureCause: not bound +!missing-type! MTRBaseClusterOperationalState not bound +!missing-type! MTRBaseClusterRVCCleanMode not bound +!missing-type! MTRBaseClusterRVCOperationalState not bound +!missing-type! MTRBaseClusterRVCRunMode not bound +!missing-type! MTRClusterOperationalState not bound +!missing-type! MTRClusterRVCCleanMode not bound +!missing-type! MTRClusterRVCOperationalState not bound +!missing-type! MTRClusterRVCRunMode not bound +!missing-type! MTRGenericBaseCluster not bound +!missing-type! MTRGenericCluster not bound +!missing-type! MTROperationalStateClusterErrorStateStruct not bound +!missing-type! MTROperationalStateClusterOperationalCommandResponseParams not bound +!missing-type! MTROperationalStateClusterOperationalErrorEvent not bound +!missing-type! MTROperationalStateClusterOperationalStateStruct not bound +!missing-type! MTROperationalStateClusterOperationCompletionEvent not bound +!missing-type! MTROperationalStateClusterPauseParams not bound +!missing-type! MTROperationalStateClusterResumeParams not bound +!missing-type! MTROperationalStateClusterStartParams not bound +!missing-type! MTROperationalStateClusterStopParams not bound +!missing-type! MTRRVCCleanModeClusterChangeToModeParams not bound +!missing-type! MTRRVCCleanModeClusterChangeToModeResponseParams not bound +!missing-type! MTRRVCCleanModeClusterModeOptionStruct not bound +!missing-type! MTRRVCCleanModeClusterModeTagStruct not bound +!missing-type! MTRRVCOperationalStateClusterErrorStateStruct not bound +!missing-type! MTRRVCOperationalStateClusterOperationalCommandResponseParams not bound +!missing-type! MTRRVCOperationalStateClusterOperationalErrorEvent not bound +!missing-type! MTRRVCOperationalStateClusterOperationalStateStruct not bound +!missing-type! MTRRVCOperationalStateClusterOperationCompletionEvent not bound +!missing-type! MTRRVCOperationalStateClusterPauseParams not bound +!missing-type! MTRRVCOperationalStateClusterResumeParams not bound +!missing-type! MTRRVCRunModeClusterChangeToModeParams not bound +!missing-type! MTRRVCRunModeClusterChangeToModeResponseParams not bound +!missing-type! MTRRVCRunModeClusterModeOptionStruct not bound +!missing-type! MTRRVCRunModeClusterModeTagStruct not bound +!missing-type! MTRThermostatClusterWeeklyScheduleTransitionStruct not bound diff --git a/tests/xtro-sharpie/tvOS-Metal.todo b/tests/xtro-sharpie/tvOS-Metal.todo new file mode 100644 index 000000000000..1bb2b6b6ef03 --- /dev/null +++ b/tests/xtro-sharpie/tvOS-Metal.todo @@ -0,0 +1,2 @@ +!missing-protocol-member! MTLResource::setOwnerWithIdentity: not found +!missing-protocol-member! MTLSharedEvent::waitUntilSignaledValue:timeoutMS: not found diff --git a/tests/xtro-sharpie/tvOS-MetalPerformanceShadersGraph.todo b/tests/xtro-sharpie/tvOS-MetalPerformanceShadersGraph.todo index a638a0553357..3fe3f392d7f9 100644 --- a/tests/xtro-sharpie/tvOS-MetalPerformanceShadersGraph.todo +++ b/tests/xtro-sharpie/tvOS-MetalPerformanceShadersGraph.todo @@ -342,3 +342,5 @@ !wrong-base-type! MPSGraphTensor expected MPSGraphObject actual NSObject !wrong-base-type! MPSGraphTensorData expected MPSGraphObject actual NSObject !wrong-base-type! MPSGraphType expected MPSGraphObject actual NSObject +!missing-selector! MPSGraph::sliceUpdateDataTensor:updateTensor:starts:ends:strides:startMask:endMask:squeezeMask:name: not bound +!missing-selector! MPSGraph::sliceUpdateDataTensor:updateTensor:startsTensor:endsTensor:stridesTensor:startMask:endMask:squeezeMask:name: not bound diff --git a/tests/xtro-sharpie/tvOS-SystemConfiguration.todo b/tests/xtro-sharpie/tvOS-SystemConfiguration.todo new file mode 100644 index 000000000000..3af4b652b589 --- /dev/null +++ b/tests/xtro-sharpie/tvOS-SystemConfiguration.todo @@ -0,0 +1,8 @@ +!deprecated-attribute-missing! SCNetworkReachabilityCreateWithAddress missing a [Deprecated] attribute +!deprecated-attribute-missing! SCNetworkReachabilityCreateWithAddressPair missing a [Deprecated] attribute +!deprecated-attribute-missing! SCNetworkReachabilityCreateWithName missing a [Deprecated] attribute +!deprecated-attribute-missing! SCNetworkReachabilityGetFlags missing a [Deprecated] attribute +!deprecated-attribute-missing! SCNetworkReachabilityScheduleWithRunLoop missing a [Deprecated] attribute +!deprecated-attribute-missing! SCNetworkReachabilitySetCallback missing a [Deprecated] attribute +!deprecated-attribute-missing! SCNetworkReachabilitySetDispatchQueue missing a [Deprecated] attribute +!deprecated-attribute-missing! SCNetworkReachabilityUnscheduleFromRunLoop missing a [Deprecated] attribute diff --git a/tests/xtro-sharpie/tvOS-UIKit.ignore b/tests/xtro-sharpie/tvOS-UIKit.ignore index 3d782cf2c176..732e7c1c62b7 100644 --- a/tests/xtro-sharpie/tvOS-UIKit.ignore +++ b/tests/xtro-sharpie/tvOS-UIKit.ignore @@ -83,8 +83,6 @@ !missing-protocol! UIPreviewInteractionDelegate not bound ## enums only exposed from properties marked with UIKIT_CLASS_AVAILABLE_IOS_ONLY(10_0) -!missing-enum! UIImpactFeedbackStyle not bound -!missing-enum! UINotificationFeedbackType not bound ## Marked as not in tvOS in Xcode 8.2 beta 1 but it's a breaking change and it's fixed only in .NET !unknown-native-enum! UICloudSharingPermissionOptions bound @@ -111,7 +109,6 @@ !missing-selector! UIViewController::popoverPresentationController not bound ## property not decorated as unavailable but UIPinchGestureRecognizer, the returned type, is not available in tvOS -!missing-selector! UIScrollView::pinchGestureRecognizer not bound ## Apple renamed NSLineBreakMode from UILineBreakMode and we kept the old name !unknown-native-enum! UILineBreakMode bound diff --git a/tests/xtro-sharpie/tvOS-UIKit.todo b/tests/xtro-sharpie/tvOS-UIKit.todo new file mode 100644 index 000000000000..2b881e164ba2 --- /dev/null +++ b/tests/xtro-sharpie/tvOS-UIKit.todo @@ -0,0 +1,47 @@ +!missing-field! UITextContentTypeCellularEID not bound +!missing-field! UITextContentTypeCellularIMEI not bound +!missing-protocol! UIItemProviderReadingAugmentationDesignating not bound +!missing-protocol! UIItemProviderReadingAugmentationProviding not bound +!missing-protocol-member! UITextInput::caretTransformForPosition: not found +!missing-selector! NSItemProvider::_availableTypes not bound +!missing-selector! UIControl::performPrimaryAction not bound +!missing-selector! UIMenu::displayPreferences not bound +!missing-selector! UIMenu::setDisplayPreferences: not bound +!missing-selector! UIMenuDisplayPreferences::maximumNumberOfTitleLines not bound +!missing-selector! UIMenuDisplayPreferences::setMaximumNumberOfTitleLines: not bound +!missing-selector! UIScrollView::bouncesHorizontally not bound +!missing-selector! UIScrollView::bouncesVertically not bound +!missing-selector! UIScrollView::contentAlignmentPoint not bound +!missing-selector! UIScrollView::isScrollAnimating not bound +!missing-selector! UIScrollView::isZoomAnimating not bound +!missing-selector! UIScrollView::setBouncesHorizontally: not bound +!missing-selector! UIScrollView::setBouncesVertically: not bound +!missing-selector! UIScrollView::setContentAlignmentPoint: not bound +!missing-selector! UIScrollView::setTransfersHorizontalScrollingToParent: not bound +!missing-selector! UIScrollView::setTransfersVerticalScrollingToParent: not bound +!missing-selector! UIScrollView::stopScrollingAndZooming not bound +!missing-selector! UIScrollView::transfersHorizontalScrollingToParent not bound +!missing-selector! UIScrollView::transfersVerticalScrollingToParent not bound +!missing-selector! UIScrollView::withScrollIndicatorsShownForContentOffsetChanges: not bound +!missing-selector! UITextCursorDropPositionAnimator::animateAlongsideChanges:completion: not bound +!missing-selector! UITextCursorDropPositionAnimator::cursorView not bound +!missing-selector! UITextCursorDropPositionAnimator::initWithTextCursorView:textInput: not bound +!missing-selector! UITextCursorDropPositionAnimator::placeCursorAtPosition:animated: not bound +!missing-selector! UITextCursorDropPositionAnimator::setCursorVisible:animated: not bound +!missing-selector! UITextCursorDropPositionAnimator::textInput not bound +!missing-selector! UITextSelectionRect::transform not bound +!missing-type! UIMenuDisplayPreferences not bound +!missing-type! UIStandardTextCursorView not bound +!missing-type! UITextCursorDropPositionAnimator not bound +!unknown-field! UIPasteboardDetectionPatternCalendarEvent bound +!unknown-field! UIPasteboardDetectionPatternEmailAddress bound +!unknown-field! UIPasteboardDetectionPatternFlightNumber bound +!unknown-field! UIPasteboardDetectionPatternLink bound +!unknown-field! UIPasteboardDetectionPatternMoneyAmount bound +!unknown-field! UIPasteboardDetectionPatternNumber bound +!unknown-field! UIPasteboardDetectionPatternPhoneNumber bound +!unknown-field! UIPasteboardDetectionPatternPostalAddress bound +!unknown-field! UIPasteboardDetectionPatternProbableWebSearch bound +!unknown-field! UIPasteboardDetectionPatternProbableWebURL bound +!unknown-field! UIPasteboardDetectionPatternShipmentTrackingNumber bound +!unknown-native-enum! UIPasteControlDisplayMode bound diff --git a/tests/xtro-sharpie/tvOS-VideoSubscriberAccount.todo b/tests/xtro-sharpie/tvOS-VideoSubscriberAccount.todo new file mode 100644 index 000000000000..b325adc0448d --- /dev/null +++ b/tests/xtro-sharpie/tvOS-VideoSubscriberAccount.todo @@ -0,0 +1,8 @@ +!missing-selector! VSAppleSubscription::customerID not bound +!missing-selector! VSAppleSubscription::initWithCustomerID:productCodes: not bound +!missing-selector! VSAppleSubscription::productCodes not bound +!missing-selector! VSAppleSubscription::setCustomerID: not bound +!missing-selector! VSAppleSubscription::setProductCodes: not bound +!missing-selector! VSUserAccount::appleSubscription not bound +!missing-selector! VSUserAccount::setAppleSubscription: not bound +!missing-type! VSAppleSubscription not bound diff --git a/tests/xtro-sharpie/tvOS-VideoToolbox.ignore b/tests/xtro-sharpie/tvOS-VideoToolbox.ignore index 63b3418ce694..c24edb77bf77 100644 --- a/tests/xtro-sharpie/tvOS-VideoToolbox.ignore +++ b/tests/xtro-sharpie/tvOS-VideoToolbox.ignore @@ -1,4 +1,3 @@ ### API not marked with unavailable (but without availability for tvOS/iOS) !missing-field! kVTVideoDecoderSpecification_PreferredDecoderGPURegistryID not bound !missing-field! kVTVideoDecoderSpecification_RequiredDecoderGPURegistryID not bound -!unknown-field! kVTCompressionPropertyKey_UsingHardwareAcceleratedVideoEncoder bound diff --git a/tests/xtro-sharpie/tvOS-VideoToolbox.todo b/tests/xtro-sharpie/tvOS-VideoToolbox.todo index 5dae2c5753a8..e9d680df02fd 100644 --- a/tests/xtro-sharpie/tvOS-VideoToolbox.todo +++ b/tests/xtro-sharpie/tvOS-VideoToolbox.todo @@ -2,3 +2,10 @@ !missing-field! kVTDecompressionPropertyKey_GeneratePerFrameHDRDisplayMetadata not bound !missing-pinvoke! VTIsStereoMVHEVCDecodeSupported is not bound !missing-pinvoke! VTIsStereoMVHEVCEncodeSupported is not bound +!missing-field! kVTCompressionPropertyKey_CalculateMeanSquaredError not bound +!missing-field! kVTSampleAttachmentKey_QualityMetrics not bound +!missing-field! kVTSampleAttachmentQualityMetricsKey_ChromaBlueMeanSquaredError not bound +!missing-field! kVTSampleAttachmentQualityMetricsKey_ChromaRedMeanSquaredError not bound +!missing-field! kVTSampleAttachmentQualityMetricsKey_LumaMeanSquaredError not bound +!missing-field! kVTVideoEncoderSpecification_EnableHardwareAcceleratedVideoEncoder not bound +!missing-field! kVTVideoEncoderSpecification_RequireHardwareAcceleratedVideoEncoder not bound diff --git a/tests/xtro-sharpie/watchOS-AVFoundation.todo b/tests/xtro-sharpie/watchOS-AVFoundation.todo index 2fe806356b71..94390f5234d7 100644 --- a/tests/xtro-sharpie/watchOS-AVFoundation.todo +++ b/tests/xtro-sharpie/watchOS-AVFoundation.todo @@ -279,7 +279,6 @@ !missing-pinvoke! CMTagCollectionCreateWithVideoOutputPreset is not bound !missing-selector! AVPlayer::setVideoOutput: not bound !missing-selector! AVPlayer::videoOutput not bound -!missing-selector! AVPlayerItemErrorLogEvent::allHTTPResponseHeaderFields not bound !missing-selector! AVPlayerVideoOutput::copyTaggedBufferGroupForHostTime:presentationTimeStamp:activeConfiguration: not bound !missing-selector! AVPlayerVideoOutput::initWithSpecification: not bound !missing-selector! AVPlayerVideoOutputConfiguration::activationTime not bound @@ -293,3 +292,5 @@ !missing-type! AVPlayerVideoOutput not bound !missing-type! AVPlayerVideoOutputConfiguration not bound !missing-type! AVVideoOutputSpecification not bound +!missing-protocol-member! AVContentKeySessionDelegate::contentKeySession:didProvideContentKeyRequests:forInitializationData: not found +!missing-selector! AVContentKey::revoke not bound diff --git a/tests/xtro-sharpie/watchOS-AuthenticationServices.todo b/tests/xtro-sharpie/watchOS-AuthenticationServices.todo new file mode 100644 index 000000000000..bd7c6c12fce1 --- /dev/null +++ b/tests/xtro-sharpie/watchOS-AuthenticationServices.todo @@ -0,0 +1,10 @@ +!deprecated-attribute-missing! ASWebAuthenticationSession::initWithURL:callbackURLScheme:completionHandler: missing a [Deprecated] attribute +!missing-enum! ASUserAgeRange not bound +!missing-selector! +ASWebAuthenticationSessionCallback::callbackWithCustomScheme: not bound +!missing-selector! +ASWebAuthenticationSessionCallback::callbackWithHTTPSHost:path: not bound +!missing-selector! ASAuthorizationAppleIDCredential::userAgeRange not bound +!missing-selector! ASWebAuthenticationSession::additionalHeaderFields not bound +!missing-selector! ASWebAuthenticationSession::initWithURL:callback:completionHandler: not bound +!missing-selector! ASWebAuthenticationSession::setAdditionalHeaderFields: not bound +!missing-selector! ASWebAuthenticationSessionCallback::matchesURL: not bound +!missing-type! ASWebAuthenticationSessionCallback not bound diff --git a/tests/xtro-sharpie/watchOS-CoreML.todo b/tests/xtro-sharpie/watchOS-CoreML.todo new file mode 100644 index 000000000000..cd65c2081202 --- /dev/null +++ b/tests/xtro-sharpie/watchOS-CoreML.todo @@ -0,0 +1,58 @@ +!missing-enum! MLReshapeFrequencyHint not bound +!missing-selector! +MLComputePlan::loadContentsOfURL:configuration:completionHandler: not bound +!missing-selector! +MLComputePlan::loadModelAsset:configuration:completionHandler: not bound +!missing-selector! +MLModelStructure::loadContentsOfURL:completionHandler: not bound +!missing-selector! +MLModelStructure::loadModelAsset:completionHandler: not bound +!missing-selector! MLComputePlan::computeDeviceUsageForMLProgramOperation: not bound +!missing-selector! MLComputePlan::computeDeviceUsageForNeuralNetworkLayer: not bound +!missing-selector! MLComputePlan::estimatedCostOfMLProgramOperation: not bound +!missing-selector! MLComputePlan::modelStructure not bound +!missing-selector! MLComputePlanCost::weight not bound +!missing-selector! MLComputePlanDeviceUsage::preferredComputeDevice not bound +!missing-selector! MLComputePlanDeviceUsage::supportedComputeDevices not bound +!missing-selector! MLModelConfiguration::optimizationHints not bound +!missing-selector! MLModelConfiguration::setOptimizationHints: not bound +!missing-selector! MLModelStructure::neuralNetwork not bound +!missing-selector! MLModelStructure::pipeline not bound +!missing-selector! MLModelStructure::program not bound +!missing-selector! MLModelStructureNeuralNetwork::layers not bound +!missing-selector! MLModelStructureNeuralNetworkLayer::inputNames not bound +!missing-selector! MLModelStructureNeuralNetworkLayer::name not bound +!missing-selector! MLModelStructureNeuralNetworkLayer::outputNames not bound +!missing-selector! MLModelStructureNeuralNetworkLayer::type not bound +!missing-selector! MLModelStructurePipeline::subModelNames not bound +!missing-selector! MLModelStructurePipeline::subModels not bound +!missing-selector! MLModelStructureProgram::functions not bound +!missing-selector! MLModelStructureProgramArgument::bindings not bound +!missing-selector! MLModelStructureProgramBinding::name not bound +!missing-selector! MLModelStructureProgramBinding::value not bound +!missing-selector! MLModelStructureProgramBlock::inputs not bound +!missing-selector! MLModelStructureProgramBlock::operations not bound +!missing-selector! MLModelStructureProgramBlock::outputNames not bound +!missing-selector! MLModelStructureProgramFunction::block not bound +!missing-selector! MLModelStructureProgramFunction::inputs not bound +!missing-selector! MLModelStructureProgramNamedValueType::name not bound +!missing-selector! MLModelStructureProgramNamedValueType::type not bound +!missing-selector! MLModelStructureProgramOperation::blocks not bound +!missing-selector! MLModelStructureProgramOperation::inputs not bound +!missing-selector! MLModelStructureProgramOperation::operatorName not bound +!missing-selector! MLModelStructureProgramOperation::outputs not bound +!missing-selector! MLOptimizationHints::reshapeFrequency not bound +!missing-selector! MLOptimizationHints::setReshapeFrequency: not bound +!missing-type! MLComputePlan not bound +!missing-type! MLComputePlanCost not bound +!missing-type! MLComputePlanDeviceUsage not bound +!missing-type! MLModelStructure not bound +!missing-type! MLModelStructureNeuralNetwork not bound +!missing-type! MLModelStructureNeuralNetworkLayer not bound +!missing-type! MLModelStructurePipeline not bound +!missing-type! MLModelStructureProgram not bound +!missing-type! MLModelStructureProgramArgument not bound +!missing-type! MLModelStructureProgramBinding not bound +!missing-type! MLModelStructureProgramBlock not bound +!missing-type! MLModelStructureProgramFunction not bound +!missing-type! MLModelStructureProgramNamedValueType not bound +!missing-type! MLModelStructureProgramOperation not bound +!missing-type! MLModelStructureProgramValue not bound +!missing-type! MLModelStructureProgramValueType not bound +!missing-type! MLOptimizationHints not bound diff --git a/tests/xtro-sharpie/watchOS-Foundation.todo b/tests/xtro-sharpie/watchOS-Foundation.todo new file mode 100644 index 000000000000..2630cbe5af9f --- /dev/null +++ b/tests/xtro-sharpie/watchOS-Foundation.todo @@ -0,0 +1,2 @@ +!missing-selector! NSUndoManager::redoCount not bound +!missing-selector! NSUndoManager::undoCount not bound diff --git a/tests/xtro-sharpie/watchOS-GameKit.todo b/tests/xtro-sharpie/watchOS-GameKit.todo index ab5f2854b2a8..aa29966d0b46 100644 --- a/tests/xtro-sharpie/watchOS-GameKit.todo +++ b/tests/xtro-sharpie/watchOS-GameKit.todo @@ -1,2 +1,3 @@ !unknown-native-enum! GKMatchSendDataMode bound !unknown-native-enum! GKVoiceChatPlayerState bound +!missing-enum-value! GKError native value GKErrorAppUnlisted = 37 not bound diff --git a/tests/xtro-sharpie/watchOS-HomeKit.todo b/tests/xtro-sharpie/watchOS-HomeKit.todo new file mode 100644 index 000000000000..4e339b4433d5 --- /dev/null +++ b/tests/xtro-sharpie/watchOS-HomeKit.todo @@ -0,0 +1 @@ +!missing-enum-value! HMError native value HMErrorCodePartialCommunicationFailure = 104 not bound diff --git a/tests/xtro-sharpie/watchOS-ImageIO.todo b/tests/xtro-sharpie/watchOS-ImageIO.todo new file mode 100644 index 000000000000..4c217d8b7e78 --- /dev/null +++ b/tests/xtro-sharpie/watchOS-ImageIO.todo @@ -0,0 +1,3 @@ +!missing-field! kCGImagePropertyTIFFXPosition not bound +!missing-field! kCGImagePropertyTIFFYPosition not bound +!missing-pinvoke! CGImageSourceSetAllowableTypes is not bound diff --git a/tests/xtro-sharpie/watchOS-Intents.todo b/tests/xtro-sharpie/watchOS-Intents.todo new file mode 100644 index 000000000000..4b974589bf5e --- /dev/null +++ b/tests/xtro-sharpie/watchOS-Intents.todo @@ -0,0 +1,2 @@ +!missing-field! INCarChargingConnectorTypeNACSAC not bound +!missing-field! INCarChargingConnectorTypeNACSDC not bound diff --git a/tests/xtro-sharpie/watchOS-Matter.ignore b/tests/xtro-sharpie/watchOS-Matter.ignore index a7ad51a42f5b..21498983956b 100644 --- a/tests/xtro-sharpie/watchOS-Matter.ignore +++ b/tests/xtro-sharpie/watchOS-Matter.ignore @@ -22,11 +22,9 @@ !missing-enum! MTRColorControlSaturationMoveMode not bound !missing-enum! MTRColorControlSaturationStepMode not bound !missing-enum! MTRCommissioningFlow not bound -!missing-enum! MTRContentLauncherContentLaunchStatus not bound !missing-enum! MTRContentLauncherFeature not bound !missing-enum! MTRContentLauncherMetricType not bound !missing-enum! MTRContentLauncherParameter not bound -!missing-enum! MTRContentLauncherSupportedStreamingProtocol not bound !missing-enum! MTRDoorLockDayOfWeek not bound !missing-enum! MTRDoorLockDlCredentialRuleMask not bound !missing-enum! MTRDoorLockDlCredentialRulesSupport not bound @@ -57,7 +55,6 @@ !missing-enum! MTRIdentifyType not bound !missing-enum! MTRIlluminanceMeasurementLightSensorType not bound !missing-enum! MTRInteractionErrorCode not bound -!missing-enum! MTRKeypadInputCecKeyCode not bound !missing-enum! MTRKeypadInputFeature not bound !missing-enum! MTRKeypadInputStatus not bound !missing-enum! MTRLevelControlFeature not bound @@ -86,15 +83,10 @@ !missing-enum! MTRPowerSourceStatus not bound !missing-enum! MTRPowerSourceWiredCurrentType not bound !missing-enum! MTRPowerSourceWiredFault not bound -!missing-enum! MTRScenesCopyMode not bound !missing-enum! MTRSoftwareDiagnosticsFeature not bound !missing-enum! MTRTargetNavigatorStatus not bound -!missing-enum! MTRThermostatControlSequence not bound -!missing-enum! MTRThermostatDayOfWeek not bound !missing-enum! MTRThermostatFeature not bound -!missing-enum! MTRThermostatModeForSequence not bound !missing-enum! MTRThermostatRunningMode not bound -!missing-enum! MTRThermostatSetpointAdjustMode not bound !missing-enum! MTRThermostatSystemMode not bound !missing-enum! MTRThreadNetworkDiagnosticsFeature not bound !missing-enum! MTRThreadNetworkDiagnosticsNetworkFault not bound @@ -1363,12 +1355,6 @@ !missing-selector! MTRThermostatClusterSetWeeklyScheduleParams::setTransitions: not bound !missing-selector! MTRThermostatClusterSetWeeklyScheduleParams::timedInvokeTimeoutMs not bound !missing-selector! MTRThermostatClusterSetWeeklyScheduleParams::transitions not bound -!missing-selector! MTRThermostatClusterThermostatScheduleTransition::coolSetpoint not bound -!missing-selector! MTRThermostatClusterThermostatScheduleTransition::heatSetpoint not bound -!missing-selector! MTRThermostatClusterThermostatScheduleTransition::setCoolSetpoint: not bound -!missing-selector! MTRThermostatClusterThermostatScheduleTransition::setHeatSetpoint: not bound -!missing-selector! MTRThermostatClusterThermostatScheduleTransition::setTransitionTime: not bound -!missing-selector! MTRThermostatClusterThermostatScheduleTransition::transitionTime not bound !missing-selector! MTRThreadNetworkDiagnosticsClusterConnectionStatusEvent::connectionStatus not bound !missing-selector! MTRThreadNetworkDiagnosticsClusterConnectionStatusEvent::setConnectionStatus: not bound !missing-selector! MTRThreadNetworkDiagnosticsClusterOperationalDatasetComponents::activeTimestampPresent not bound @@ -1412,8 +1398,6 @@ !missing-selector! MTRUserLabelClusterLabelStruct::setLabel: not bound !missing-selector! MTRUserLabelClusterLabelStruct::setValue: not bound !missing-selector! MTRUserLabelClusterLabelStruct::value not bound -!missing-selector! MTRWiFiNetworkDiagnosticsClusterAssociationFailureEvent::associationFailure not bound -!missing-selector! MTRWiFiNetworkDiagnosticsClusterAssociationFailureEvent::setAssociationFailure: not bound !missing-selector! MTRWiFiNetworkDiagnosticsClusterAssociationFailureEvent::setStatus: not bound !missing-selector! MTRWiFiNetworkDiagnosticsClusterAssociationFailureEvent::status not bound !missing-selector! MTRWiFiNetworkDiagnosticsClusterConnectionStatusEvent::connectionStatus not bound @@ -1745,7 +1729,6 @@ !missing-type! MTRThermostatClusterGetWeeklyScheduleResponseParams not bound !missing-type! MTRThermostatClusterSetpointRaiseLowerParams not bound !missing-type! MTRThermostatClusterSetWeeklyScheduleParams not bound -!missing-type! MTRThermostatClusterThermostatScheduleTransition not bound !missing-type! MTRThreadNetworkDiagnosticsClusterConnectionStatusEvent not bound !missing-type! MTRThreadNetworkDiagnosticsClusterOperationalDatasetComponents not bound !missing-type! MTRThreadNetworkDiagnosticsClusterResetCountsParams not bound @@ -3267,7 +3250,6 @@ !missing-enum! MTRGeneralDiagnosticsHardwareFault not bound !missing-enum! MTRGeneralDiagnosticsNetworkFault not bound !missing-enum! MTRGeneralDiagnosticsRadioFault not bound -!missing-enum! MTRLevelControlOptions not bound !missing-enum! MTRLogType not bound !missing-enum! MTRMediaPlaybackFeature not bound !missing-enum! MTROperationalCredentialsCertificateChainType not bound diff --git a/tests/xtro-sharpie/watchOS-Matter.todo b/tests/xtro-sharpie/watchOS-Matter.todo index 9e4d83bffc12..60406a5077b9 100644 --- a/tests/xtro-sharpie/watchOS-Matter.todo +++ b/tests/xtro-sharpie/watchOS-Matter.todo @@ -301,3 +301,383 @@ !missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::timeSource not bound !missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::utcTime not bound !missing-type! MTRTimeSynchronizationClusterSetUTCTimeParams not bound +!missing-enum! MTRAdministratorCommissioningFeature not bound +!missing-enum! MTRContentLauncherStatus not bound +!missing-enum! MTRContentLauncherSupportedProtocolsBitmap not bound +!missing-enum! MTRKeypadInputCECKeyCode not bound +!missing-enum! MTRLevelControlOptionsBitmap not bound +!missing-enum! MTROperationalState not bound +!missing-enum! MTROperationalStateErrorState not bound +!missing-enum! MTRRVCCleanModeFeature not bound +!missing-enum! MTRRVCCleanModeModeTag not bound +!missing-enum! MTRRVCCleanModeStatusCode not bound +!missing-enum! MTRRVCOperationalStateErrorState not bound +!missing-enum! MTRRVCOperationalStateOperationalState not bound +!missing-enum! MTRRVCRunModeFeature not bound +!missing-enum! MTRRVCRunModeModeTag not bound +!missing-enum! MTRRVCRunModeStatusCode not bound +!missing-enum! MTRScenesCopyModeBitmap not bound +!missing-enum! MTRThermostatControlSequenceOfOperation not bound +!missing-enum! MTRThermostatScheduleDayOfWeekBitmap not bound +!missing-enum! MTRThermostatScheduleModeBitmap not bound +!missing-enum! MTRThermostatSetpointRaiseLowerMode not bound +!missing-enum! MTRThermostatUserInterfaceConfigurationKeypadLockout not bound +!missing-enum! MTRThermostatUserInterfaceConfigurationScheduleProgrammingVisibility not bound +!missing-enum! MTRThermostatUserInterfaceConfigurationTemperatureDisplayMode not bound +!missing-field! MTREventIsHistoricalKey not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeAcceptedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeAttributeListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeClusterRevisionWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeCountdownTimeWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeCurrentPhaseWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeFeatureMapWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeGeneratedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeOperationalErrorWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeOperationalStateListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeOperationalStateWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributePhaseListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterPowerSource::readAttributeEndpointListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeAcceptedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeAttributeListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeClusterRevisionWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeCurrentModeWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeFeatureMapWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeGeneratedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeSupportedModesWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeAcceptedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeAttributeListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeClusterRevisionWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeCountdownTimeWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeCurrentPhaseWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeFeatureMapWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeGeneratedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeOperationalErrorWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeOperationalStateListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeOperationalStateWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributePhaseListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeAcceptedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeAttributeListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeClusterRevisionWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeCurrentModeWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeFeatureMapWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeGeneratedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeSupportedModesWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! MTRBaseClusterApplicationLauncher::hideAppWithCompletion: not bound +!missing-selector! MTRBaseClusterApplicationLauncher::launchAppWithCompletion: not bound +!missing-selector! MTRBaseClusterApplicationLauncher::stopAppWithCompletion: not bound +!missing-selector! MTRBaseClusterDoorLock::lockDoorWithCompletion: not bound +!missing-selector! MTRBaseClusterDoorLock::unlockDoorWithCompletion: not bound +!missing-selector! MTRBaseClusterNetworkCommissioning::scanNetworksWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRBaseClusterOperationalState::pauseWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::pauseWithParams:completion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeAcceptedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeAttributeListWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeClusterRevisionWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeCountdownTimeWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeCurrentPhaseWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeFeatureMapWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeGeneratedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeOperationalErrorWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeOperationalStateListWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeOperationalStateWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributePhaseListWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::resumeWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::resumeWithParams:completion: not bound +!missing-selector! MTRBaseClusterOperationalState::startWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::startWithParams:completion: not bound +!missing-selector! MTRBaseClusterOperationalState::stopWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::stopWithParams:completion: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeAcceptedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeAttributeListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeClusterRevisionWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeCountdownTimeWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeCurrentPhaseWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeFeatureMapWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeGeneratedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeOperationalErrorWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeOperationalStateListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeOperationalStateWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributePhaseListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterPowerSource::readAttributeEndpointListWithCompletion: not bound +!missing-selector! MTRBaseClusterPowerSource::subscribeAttributeEndpointListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::changeToModeWithParams:completion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeAcceptedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeAttributeListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeClusterRevisionWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeCurrentModeWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeFeatureMapWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeGeneratedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeSupportedModesWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeAcceptedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeAttributeListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeClusterRevisionWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeCurrentModeWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeFeatureMapWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeGeneratedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeSupportedModesWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::pauseWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::pauseWithParams:completion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeAcceptedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeAttributeListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeClusterRevisionWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeCountdownTimeWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeCurrentPhaseWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeFeatureMapWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeGeneratedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeOperationalErrorWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeOperationalStateListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeOperationalStateWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributePhaseListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::resumeWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::resumeWithParams:completion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeAcceptedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeAttributeListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeClusterRevisionWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeCountdownTimeWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeCurrentPhaseWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeFeatureMapWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeGeneratedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeOperationalErrorWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeOperationalStateListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeOperationalStateWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributePhaseListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::changeToModeWithParams:completion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeAcceptedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeAttributeListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeClusterRevisionWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeCurrentModeWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeFeatureMapWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeGeneratedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeSupportedModesWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeAcceptedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeAttributeListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeClusterRevisionWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeCurrentModeWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeFeatureMapWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeGeneratedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeSupportedModesWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterUnitTesting::testNullableOptionalRequestWithCompletion: not bound +!missing-selector! MTRBaseClusterUnitTesting::testSimpleOptionalArgumentRequestWithCompletion: not bound +!missing-selector! MTRCluster::endpointID not bound +!missing-selector! MTRClusterApplicationLauncher::hideAppWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterApplicationLauncher::launchAppWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterApplicationLauncher::stopAppWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterDoorLock::lockDoorWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterDoorLock::unlockDoorWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterNetworkCommissioning::scanNetworksWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRClusterOperationalState::pauseWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::pauseWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::readAttributeAcceptedCommandListWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeAttributeListWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeClusterRevisionWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeCountdownTimeWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeCurrentPhaseWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeFeatureMapWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeGeneratedCommandListWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeOperationalErrorWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeOperationalStateListWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeOperationalStateWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributePhaseListWithParams: not bound +!missing-selector! MTRClusterOperationalState::resumeWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::resumeWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::startWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::startWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::stopWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::stopWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterPowerSource::readAttributeEndpointListWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::changeToModeWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterRVCCleanMode::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeAcceptedCommandListWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeAttributeListWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeClusterRevisionWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeCurrentModeWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeFeatureMapWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeGeneratedCommandListWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeSupportedModesWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRClusterRVCOperationalState::pauseWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterRVCOperationalState::pauseWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeAcceptedCommandListWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeAttributeListWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeClusterRevisionWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeCountdownTimeWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeCurrentPhaseWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeFeatureMapWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeGeneratedCommandListWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeOperationalErrorWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeOperationalStateListWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeOperationalStateWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributePhaseListWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::resumeWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterRVCOperationalState::resumeWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterRVCRunMode::changeToModeWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterRVCRunMode::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeAcceptedCommandListWithParams: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeAttributeListWithParams: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeClusterRevisionWithParams: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeCurrentModeWithParams: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeFeatureMapWithParams: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeGeneratedCommandListWithParams: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeSupportedModesWithParams: not bound +!missing-selector! MTRClusterUnitTesting::testNullableOptionalRequestWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterUnitTesting::testSimpleOptionalArgumentRequestWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRDevice::deviceController not bound +!missing-selector! MTRDevice::invokeCommandWithEndpointID:clusterID:commandID:commandFields:expectedValues:expectedValueInterval:queue:completion: not bound +!missing-selector! MTRDevice::nodeID not bound +!missing-selector! MTRGenericCluster::device not bound +!missing-selector! MTROperationalStateClusterErrorStateStruct::errorStateDetails not bound +!missing-selector! MTROperationalStateClusterErrorStateStruct::errorStateID not bound +!missing-selector! MTROperationalStateClusterErrorStateStruct::errorStateLabel not bound +!missing-selector! MTROperationalStateClusterErrorStateStruct::setErrorStateDetails: not bound +!missing-selector! MTROperationalStateClusterErrorStateStruct::setErrorStateID: not bound +!missing-selector! MTROperationalStateClusterErrorStateStruct::setErrorStateLabel: not bound +!missing-selector! MTROperationalStateClusterOperationalCommandResponseParams::commandResponseState not bound +!missing-selector! MTROperationalStateClusterOperationalCommandResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTROperationalStateClusterOperationalCommandResponseParams::setCommandResponseState: not bound +!missing-selector! MTROperationalStateClusterOperationalErrorEvent::errorState not bound +!missing-selector! MTROperationalStateClusterOperationalErrorEvent::setErrorState: not bound +!missing-selector! MTROperationalStateClusterOperationalStateStruct::operationalStateID not bound +!missing-selector! MTROperationalStateClusterOperationalStateStruct::operationalStateLabel not bound +!missing-selector! MTROperationalStateClusterOperationalStateStruct::setOperationalStateID: not bound +!missing-selector! MTROperationalStateClusterOperationalStateStruct::setOperationalStateLabel: not bound +!missing-selector! MTROperationalStateClusterOperationCompletionEvent::completionErrorCode not bound +!missing-selector! MTROperationalStateClusterOperationCompletionEvent::pausedTime not bound +!missing-selector! MTROperationalStateClusterOperationCompletionEvent::setCompletionErrorCode: not bound +!missing-selector! MTROperationalStateClusterOperationCompletionEvent::setPausedTime: not bound +!missing-selector! MTROperationalStateClusterOperationCompletionEvent::setTotalOperationalTime: not bound +!missing-selector! MTROperationalStateClusterOperationCompletionEvent::totalOperationalTime not bound +!missing-selector! MTROperationalStateClusterPauseParams::serverSideProcessingTimeout not bound +!missing-selector! MTROperationalStateClusterPauseParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTROperationalStateClusterPauseParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTROperationalStateClusterPauseParams::timedInvokeTimeoutMs not bound +!missing-selector! MTROperationalStateClusterResumeParams::serverSideProcessingTimeout not bound +!missing-selector! MTROperationalStateClusterResumeParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTROperationalStateClusterResumeParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTROperationalStateClusterResumeParams::timedInvokeTimeoutMs not bound +!missing-selector! MTROperationalStateClusterStartParams::serverSideProcessingTimeout not bound +!missing-selector! MTROperationalStateClusterStartParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTROperationalStateClusterStartParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTROperationalStateClusterStartParams::timedInvokeTimeoutMs not bound +!missing-selector! MTROperationalStateClusterStopParams::serverSideProcessingTimeout not bound +!missing-selector! MTROperationalStateClusterStopParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTROperationalStateClusterStopParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTROperationalStateClusterStopParams::timedInvokeTimeoutMs not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::getNewMode not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::serverSideProcessingTimeout not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::setNewMode: not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::timedInvokeTimeoutMs not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeResponseParams::setStatus: not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeResponseParams::setStatusText: not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeResponseParams::status not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeResponseParams::statusText not bound +!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::label not bound +!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::mode not bound +!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::modeTags not bound +!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::setLabel: not bound +!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::setMode: not bound +!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::setModeTags: not bound +!missing-selector! MTRRVCCleanModeClusterModeTagStruct::mfgCode not bound +!missing-selector! MTRRVCCleanModeClusterModeTagStruct::setMfgCode: not bound +!missing-selector! MTRRVCCleanModeClusterModeTagStruct::setValue: not bound +!missing-selector! MTRRVCCleanModeClusterModeTagStruct::value not bound +!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::errorStateDetails not bound +!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::errorStateID not bound +!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::errorStateLabel not bound +!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::setErrorStateDetails: not bound +!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::setErrorStateID: not bound +!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::setErrorStateLabel: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalCommandResponseParams::commandResponseState not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalCommandResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalCommandResponseParams::setCommandResponseState: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalErrorEvent::errorState not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalErrorEvent::setErrorState: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalStateStruct::operationalStateID not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalStateStruct::operationalStateLabel not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalStateStruct::setOperationalStateID: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalStateStruct::setOperationalStateLabel: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::completionErrorCode not bound +!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::pausedTime not bound +!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::setCompletionErrorCode: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::setPausedTime: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::setTotalOperationalTime: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::totalOperationalTime not bound +!missing-selector! MTRRVCOperationalStateClusterPauseParams::serverSideProcessingTimeout not bound +!missing-selector! MTRRVCOperationalStateClusterPauseParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTRRVCOperationalStateClusterPauseParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTRRVCOperationalStateClusterPauseParams::timedInvokeTimeoutMs not bound +!missing-selector! MTRRVCOperationalStateClusterResumeParams::serverSideProcessingTimeout not bound +!missing-selector! MTRRVCOperationalStateClusterResumeParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTRRVCOperationalStateClusterResumeParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTRRVCOperationalStateClusterResumeParams::timedInvokeTimeoutMs not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeParams::getNewMode not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeParams::serverSideProcessingTimeout not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeParams::setNewMode: not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeParams::timedInvokeTimeoutMs not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeResponseParams::setStatus: not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeResponseParams::setStatusText: not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeResponseParams::status not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeResponseParams::statusText not bound +!missing-selector! MTRRVCRunModeClusterModeOptionStruct::label not bound +!missing-selector! MTRRVCRunModeClusterModeOptionStruct::mode not bound +!missing-selector! MTRRVCRunModeClusterModeOptionStruct::modeTags not bound +!missing-selector! MTRRVCRunModeClusterModeOptionStruct::setLabel: not bound +!missing-selector! MTRRVCRunModeClusterModeOptionStruct::setMode: not bound +!missing-selector! MTRRVCRunModeClusterModeOptionStruct::setModeTags: not bound +!missing-selector! MTRRVCRunModeClusterModeTagStruct::mfgCode not bound +!missing-selector! MTRRVCRunModeClusterModeTagStruct::setMfgCode: not bound +!missing-selector! MTRRVCRunModeClusterModeTagStruct::setValue: not bound +!missing-selector! MTRRVCRunModeClusterModeTagStruct::value not bound +!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::coolSetpoint not bound +!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::heatSetpoint not bound +!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::setCoolSetpoint: not bound +!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::setHeatSetpoint: not bound +!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::setTransitionTime: not bound +!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::transitionTime not bound +!missing-selector! MTRWiFiNetworkDiagnosticsClusterAssociationFailureEvent::associationFailureCause not bound +!missing-selector! MTRWiFiNetworkDiagnosticsClusterAssociationFailureEvent::setAssociationFailureCause: not bound +!missing-type! MTRBaseClusterOperationalState not bound +!missing-type! MTRBaseClusterRVCCleanMode not bound +!missing-type! MTRBaseClusterRVCOperationalState not bound +!missing-type! MTRBaseClusterRVCRunMode not bound +!missing-type! MTRClusterOperationalState not bound +!missing-type! MTRClusterRVCCleanMode not bound +!missing-type! MTRClusterRVCOperationalState not bound +!missing-type! MTRClusterRVCRunMode not bound +!missing-type! MTRGenericBaseCluster not bound +!missing-type! MTRGenericCluster not bound +!missing-type! MTROperationalStateClusterErrorStateStruct not bound +!missing-type! MTROperationalStateClusterOperationalCommandResponseParams not bound +!missing-type! MTROperationalStateClusterOperationalErrorEvent not bound +!missing-type! MTROperationalStateClusterOperationalStateStruct not bound +!missing-type! MTROperationalStateClusterOperationCompletionEvent not bound +!missing-type! MTROperationalStateClusterPauseParams not bound +!missing-type! MTROperationalStateClusterResumeParams not bound +!missing-type! MTROperationalStateClusterStartParams not bound +!missing-type! MTROperationalStateClusterStopParams not bound +!missing-type! MTRRVCCleanModeClusterChangeToModeParams not bound +!missing-type! MTRRVCCleanModeClusterChangeToModeResponseParams not bound +!missing-type! MTRRVCCleanModeClusterModeOptionStruct not bound +!missing-type! MTRRVCCleanModeClusterModeTagStruct not bound +!missing-type! MTRRVCOperationalStateClusterErrorStateStruct not bound +!missing-type! MTRRVCOperationalStateClusterOperationalCommandResponseParams not bound +!missing-type! MTRRVCOperationalStateClusterOperationalErrorEvent not bound +!missing-type! MTRRVCOperationalStateClusterOperationalStateStruct not bound +!missing-type! MTRRVCOperationalStateClusterOperationCompletionEvent not bound +!missing-type! MTRRVCOperationalStateClusterPauseParams not bound +!missing-type! MTRRVCOperationalStateClusterResumeParams not bound +!missing-type! MTRRVCRunModeClusterChangeToModeParams not bound +!missing-type! MTRRVCRunModeClusterChangeToModeResponseParams not bound +!missing-type! MTRRVCRunModeClusterModeOptionStruct not bound +!missing-type! MTRRVCRunModeClusterModeTagStruct not bound +!missing-type! MTRThermostatClusterWeeklyScheduleTransitionStruct not bound diff --git a/tests/xtro-sharpie/watchOS-PassKit.todo b/tests/xtro-sharpie/watchOS-PassKit.todo index 5eea7a80889d..94f814a8e4ad 100644 --- a/tests/xtro-sharpie/watchOS-PassKit.todo +++ b/tests/xtro-sharpie/watchOS-PassKit.todo @@ -1,4 +1 @@ -!missing-enum! PKAutomaticPassPresentationSuppressionResult not bound -!missing-selector! +PKPassLibrary::endAutomaticPassPresentationSuppressionWithRequestToken: not bound -!missing-selector! +PKPassLibrary::isSuppressingAutomaticPassPresentation not bound -!missing-selector! +PKPassLibrary::requestAutomaticPassPresentationSuppressionWithResponseHandler: not bound +!missing-field! PKPaymentNetworkMeeza not bound diff --git a/tests/xtro-sharpie/watchOS-UIKit.todo b/tests/xtro-sharpie/watchOS-UIKit.todo new file mode 100644 index 000000000000..855c822fddc1 --- /dev/null +++ b/tests/xtro-sharpie/watchOS-UIKit.todo @@ -0,0 +1,3 @@ +!missing-protocol! UIItemProviderReadingAugmentationDesignating not bound +!missing-protocol! UIItemProviderReadingAugmentationProviding not bound +!missing-selector! NSItemProvider::_availableTypes not bound From 70b3b7ccacfe11eef5b527d7fa21457e42c72da5 Mon Sep 17 00:00:00 2001 From: Alex Soto Date: Tue, 27 Feb 2024 19:01:57 -0500 Subject: [PATCH 19/73] [xcode15.3] Update to release candidate 1 --- Make.config | 4 ++-- tests/xtro-sharpie/api-annotations-dotnet/iOS-MetalFX.todo | 7 +++++++ tests/xtro-sharpie/iOS-MetalFX.todo | 7 +++++++ 3 files changed, 16 insertions(+), 2 deletions(-) create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/iOS-MetalFX.todo create mode 100644 tests/xtro-sharpie/iOS-MetalFX.todo diff --git a/Make.config b/Make.config index 0cc5522efaaf..47c575919e58 100644 --- a/Make.config +++ b/Make.config @@ -213,8 +213,8 @@ MACCATALYST_NUGET_VERSION_FULL=$(MACCATALYST_NUGET_VERSION_NO_METADATA)+$(NUGET_ # Xcode version should have both a major and a minor version (even if the minor version is 0) XCODE_VERSION=15.3 -XCODE_URL=https://dl.internalx.com/internal-files/xcodes/Xcode_15.3_beta_3.xip -XCODE_DEVELOPER_ROOT=/Applications/Xcode_15.3.0-beta3.app/Contents/Developer +XCODE_URL=https://dl.internalx.com/internal-files/xcodes/Xcode_15.3_Release_Candidate.xip +XCODE_DEVELOPER_ROOT=/Applications/Xcode_15.3.0-rc.app/Contents/Developer XCODE_PRODUCT_BUILD_VERSION:=$(shell /usr/libexec/PlistBuddy -c 'Print :ProductBuildVersion' $(XCODE_DEVELOPER_ROOT)/../version.plist 2>/dev/null || echo " $(shell tput setaf 1 2>/dev/null)The required Xcode ($(XCODE_VERSION)) is not installed in $(basename $(basename $(XCODE_DEVELOPER_ROOT)))$(shell tput sgr0 2>/dev/null)" >&2) # We define stable Xcode as the Xcode app being named like "Xcode_#.#[.#].app" diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-MetalFX.todo b/tests/xtro-sharpie/api-annotations-dotnet/iOS-MetalFX.todo new file mode 100644 index 000000000000..0fa60384da65 --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-MetalFX.todo @@ -0,0 +1,7 @@ +!missing-protocol-member! MTLFXTemporalScaler::reactiveMaskTexture not found +!missing-protocol-member! MTLFXTemporalScaler::reactiveTextureUsage not found +!missing-protocol-member! MTLFXTemporalScaler::setReactiveMaskTexture: not found +!missing-selector! MTLFXTemporalScalerDescriptor::isReactiveMaskTextureEnabled not bound +!missing-selector! MTLFXTemporalScalerDescriptor::reactiveMaskTextureFormat not bound +!missing-selector! MTLFXTemporalScalerDescriptor::setReactiveMaskTextureEnabled: not bound +!missing-selector! MTLFXTemporalScalerDescriptor::setReactiveMaskTextureFormat: not bound diff --git a/tests/xtro-sharpie/iOS-MetalFX.todo b/tests/xtro-sharpie/iOS-MetalFX.todo new file mode 100644 index 000000000000..0fa60384da65 --- /dev/null +++ b/tests/xtro-sharpie/iOS-MetalFX.todo @@ -0,0 +1,7 @@ +!missing-protocol-member! MTLFXTemporalScaler::reactiveMaskTexture not found +!missing-protocol-member! MTLFXTemporalScaler::reactiveTextureUsage not found +!missing-protocol-member! MTLFXTemporalScaler::setReactiveMaskTexture: not found +!missing-selector! MTLFXTemporalScalerDescriptor::isReactiveMaskTextureEnabled not bound +!missing-selector! MTLFXTemporalScalerDescriptor::reactiveMaskTextureFormat not bound +!missing-selector! MTLFXTemporalScalerDescriptor::setReactiveMaskTextureEnabled: not bound +!missing-selector! MTLFXTemporalScalerDescriptor::setReactiveMaskTextureFormat: not bound From 459f9862be95169c9246187cfb5305ca12858649 Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Wed, 28 Feb 2024 17:46:40 +0100 Subject: [PATCH 20/73] Adjust ProtocolTest a bit more. There's no need for a version check, since what's important is which version of Xcode was used to compile the app. --- tests/bindings-test/ProtocolTest.cs | 50 +++++++++-------------------- 1 file changed, 15 insertions(+), 35 deletions(-) diff --git a/tests/bindings-test/ProtocolTest.cs b/tests/bindings-test/ProtocolTest.cs index 4bb8fb26b189..1aadfc874037 100644 --- a/tests/bindings-test/ProtocolTest.cs +++ b/tests/bindings-test/ProtocolTest.cs @@ -234,42 +234,49 @@ public void ProtocolMembers () }), "Properties: requiredReadonlyProperty"); if (XamarinTests.ObjCRuntime.Registrar.IsStaticRegistrar) { - AssertContains (properties, new objc_property ("optionalInstanceProperty", "T@\"NSString\",N", true, new objc_property_attribute [] { + AssertContains (properties, new objc_property ("optionalInstanceProperty", "T@\"NSString\",?,N", new objc_property_attribute [] { new objc_property_attribute ("T", "@\"NSString\""), + new objc_property_attribute ("?"), new objc_property_attribute ("N", "") }), "Properties: optionalInstanceProperty"); - AssertContains (properties, new objc_property ("propertyWithCustomAccessors", "T@\"NSString\",N,Gget_propertyWithCustomAccessors,Sset_propertyWithCustomAccessors:", true, new objc_property_attribute [] { + AssertContains (properties, new objc_property ("propertyWithCustomAccessors", "T@\"NSString\",?,N,Gget_propertyWithCustomAccessors,Sset_propertyWithCustomAccessors:", new objc_property_attribute [] { new objc_property_attribute ("T", "@\"NSString\""), + new objc_property_attribute ("?"), new objc_property_attribute ("N", ""), new objc_property_attribute ("G", "get_propertyWithCustomAccessors"), new objc_property_attribute ("S", "set_propertyWithCustomAccessors:") }), "Properties: propertyWithCustomAccessors"); - AssertContains (properties, new objc_property ("propertyWithArgumentSemanticNone", "T@\"NSString\",N", true, new objc_property_attribute [] { + AssertContains (properties, new objc_property ("propertyWithArgumentSemanticNone", "T@\"NSString\",?,N", new objc_property_attribute [] { new objc_property_attribute ("T", "@\"NSString\""), + new objc_property_attribute ("?"), new objc_property_attribute ("N", "") }), "Properties: propertyWithArgumentSemanticNone"); - AssertContains (properties, new objc_property ("propertyWithArgumentSemanticCopy", "T@\"NSString\",C,N", true, new objc_property_attribute [] { + AssertContains (properties, new objc_property ("propertyWithArgumentSemanticCopy", "T@\"NSString\",?,C,N", new objc_property_attribute [] { new objc_property_attribute ("T", "@\"NSString\""), + new objc_property_attribute ("?"), new objc_property_attribute ("N", ""), new objc_property_attribute ("C", "") }), "Properties: propertyWithArgumentSemanticCopy"); - AssertContains (properties, new objc_property ("propertyWithArgumentSemanticAssign", "T@\"NSString\",N", true, new objc_property_attribute [] { + AssertContains (properties, new objc_property ("propertyWithArgumentSemanticAssign", "T@\"NSString\",?,N", new objc_property_attribute [] { new objc_property_attribute ("T", "@\"NSString\""), + new objc_property_attribute ("?"), new objc_property_attribute ("N", "") }), "Properties: propertyWithArgumentSemanticAssign"); - AssertContains (properties, new objc_property ("propertyWithArgumentSemanticRetain", "T@\"NSString\",&,N", true, new objc_property_attribute [] { + AssertContains (properties, new objc_property ("propertyWithArgumentSemanticRetain", "T@\"NSString\",?,&,N", new objc_property_attribute [] { new objc_property_attribute ("T", "@\"NSString\""), + new objc_property_attribute ("?"), new objc_property_attribute ("&", ""), new objc_property_attribute ("N", "") }), "Properties: propertyWithArgumentSemanticRetain"); - AssertContains (properties, new objc_property ("readonlyProperty", "T@\"NSString\",R,N", true, new objc_property_attribute [] { + AssertContains (properties, new objc_property ("readonlyProperty", "T@\"NSString\",?,R,N", new objc_property_attribute [] { new objc_property_attribute ("T", "@\"NSString\""), + new objc_property_attribute ("?"), new objc_property_attribute ("R", ""), new objc_property_attribute ("N", "") }), "Properties: readonlyProperty"); @@ -394,7 +401,7 @@ public objc_property_attribute () { } - public objc_property_attribute (string name, string value) + public objc_property_attribute (string name, string value = "") { this.Name = name; this.Value = value; @@ -440,33 +447,6 @@ public objc_property (string name, string attributes, objc_property_attribute [] this.AttributeList = list; } - public objc_property (string name, string attributes, bool addNewXcode15_3Property, params objc_property_attribute [] list) - { - this.Name = name; - this.Attributes = attributes; - this.AttributeList = list; - - // Xcode 15.3 added a new property attribute (aptly named '?'), so inject it - // if we were requested to. - if (addNewXcode15_3Property && TestRuntime.CheckXcodeVersion (15, 3)) { - var t = Array.FindIndex (list, (v) => v.Name == "T"); - if (t >= 0) { - var newList = new List (list); - newList.Insert (t + 1, new objc_property_attribute ("?", "")); - this.AttributeList = newList.ToArray (); - } - - var splitAttributes = attributes.Split (','); - t = Array.FindIndex (splitAttributes, (v) => v [0] == 'T'); - if (t >= 0) { - var newList = splitAttributes.ToList (); - newList.Insert (t + 1, "?"); - - this.Attributes = string.Join (",", newList); - } - } - } - public override string ToString () { return string.Format ("[{0}; {1}; {2}]", Name, Attributes, string.Join (", ", new List (AttributeList).Select ((v) => string.Format ("{0} = {1}", v.Name, v.Value)))); From e5e9b6ae60f4249064443c21e07987abbfbda5f9 Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Mon, 4 Mar 2024 10:39:13 +0100 Subject: [PATCH 21/73] watchOS isn't quite dead yet. --- tests/monotouch-test/Security/KeyTest.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/monotouch-test/Security/KeyTest.cs b/tests/monotouch-test/Security/KeyTest.cs index f463cbf4ac0b..0d4f90e912d0 100644 --- a/tests/monotouch-test/Security/KeyTest.cs +++ b/tests/monotouch-test/Security/KeyTest.cs @@ -507,7 +507,7 @@ public void RSA () Assert.That (data.ToArray (), Is.EqualTo (plain.ToArray ()), "roundtrip"); } -#if __MACCATALYST__ || __IOS__ || __TVOS__ +#if __MACCATALYST__ || __IOS__ || __TVOS__ || __WATCHOS__ var badDecrypt = !TestRuntime.CheckXcodeVersion (15, 0); #else var badDecrypt = true; From fbf1ddba5ca103e3e21c1cc9bb64f57528c9e97d Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Mon, 4 Mar 2024 16:19:09 +0100 Subject: [PATCH 22/73] Update known failures for documented APIs. --- .../Documentation.KnownFailures.txt | 4185 ++++++++++++++++- 1 file changed, 4182 insertions(+), 3 deletions(-) diff --git a/tests/cecil-tests/Documentation.KnownFailures.txt b/tests/cecil-tests/Documentation.KnownFailures.txt index 117d842d9997..cc28447d5671 100644 --- a/tests/cecil-tests/Documentation.KnownFailures.txt +++ b/tests/cecil-tests/Documentation.KnownFailures.txt @@ -23681,22 +23681,46 @@ M:Accessibility.AXAnimatedImagesUtilities.Notifications.ObserveAnimatedImagesEna M:Accessibility.AXBrailleMap.#ctor(Foundation.NSCoder) M:Accessibility.AXBrailleMap.#ctor(Foundation.NSObjectFlag) M:Accessibility.AXBrailleMap.#ctor(ObjCRuntime.NativeHandle) +M:Accessibility.AXBrailleMap.Copy(Foundation.NSZone) M:Accessibility.AXBrailleMap.EncodeTo(Foundation.NSCoder) M:Accessibility.AXBrailleMap.get_ClassHandle +M:Accessibility.AXBrailleMap.get_Dimensions +M:Accessibility.AXBrailleMap.GetHeight(CoreGraphics.CGPoint) +M:Accessibility.AXBrailleMap.Present(CoreGraphics.CGImage) +M:Accessibility.AXBrailleMap.SetHeight(System.Single,CoreGraphics.CGPoint) M:Accessibility.AXBrailleMapRenderer_Extensions.GetAccessibilityBrailleMapRenderer(Accessibility.IAXBrailleMapRenderer) M:Accessibility.AXBrailleMapRenderer_Extensions.GetAccessibilityBrailleMapRenderRegion(Accessibility.IAXBrailleMapRenderer) M:Accessibility.AXBrailleMapRenderer_Extensions.SetAccessibilityBrailleMapRenderer(Accessibility.IAXBrailleMapRenderer,System.Action{Accessibility.AXBrailleMap}) M:Accessibility.AXBrailleMapRenderer_Extensions.SetAccessibilityBrailleMapRenderRegion(Accessibility.IAXBrailleMapRenderer,CoreGraphics.CGRect) +M:Accessibility.AXCategoricalDataAxisDescriptor.#ctor(Foundation.NSAttributedString,System.String[]) M:Accessibility.AXCategoricalDataAxisDescriptor.#ctor(Foundation.NSObjectFlag) M:Accessibility.AXCategoricalDataAxisDescriptor.#ctor(ObjCRuntime.NativeHandle) +M:Accessibility.AXCategoricalDataAxisDescriptor.#ctor(System.String,System.String[]) M:Accessibility.AXCategoricalDataAxisDescriptor.Copy(Foundation.NSZone) +M:Accessibility.AXCategoricalDataAxisDescriptor.get_AttributedTitle +M:Accessibility.AXCategoricalDataAxisDescriptor.get_CategoryOrder M:Accessibility.AXCategoricalDataAxisDescriptor.get_ClassHandle +M:Accessibility.AXCategoricalDataAxisDescriptor.get_Title M:Accessibility.AXCategoricalDataAxisDescriptor.set_AttributedTitle(Foundation.NSAttributedString) M:Accessibility.AXCategoricalDataAxisDescriptor.set_CategoryOrder(System.String[]) M:Accessibility.AXCategoricalDataAxisDescriptor.set_Title(System.String) +M:Accessibility.AXChartDescriptor.#ctor(Foundation.NSAttributedString,System.String,Accessibility.IAXDataAxisDescriptor,Accessibility.AXNumericDataAxisDescriptor,Accessibility.AXDataSeriesDescriptor[]) +M:Accessibility.AXChartDescriptor.#ctor(Foundation.NSAttributedString,System.String,Accessibility.IAXDataAxisDescriptor,Accessibility.AXNumericDataAxisDescriptor,Accessibility.IAXDataAxisDescriptor[],Accessibility.AXDataSeriesDescriptor[]) M:Accessibility.AXChartDescriptor.#ctor(Foundation.NSObjectFlag) M:Accessibility.AXChartDescriptor.#ctor(ObjCRuntime.NativeHandle) +M:Accessibility.AXChartDescriptor.#ctor(System.String,System.String,Accessibility.IAXDataAxisDescriptor,Accessibility.AXNumericDataAxisDescriptor,Accessibility.AXDataSeriesDescriptor[]) +M:Accessibility.AXChartDescriptor.#ctor(System.String,System.String,Accessibility.IAXDataAxisDescriptor,Accessibility.AXNumericDataAxisDescriptor,Accessibility.IAXDataAxisDescriptor[],Accessibility.AXDataSeriesDescriptor[]) +M:Accessibility.AXChartDescriptor.Copy(Foundation.NSZone) +M:Accessibility.AXChartDescriptor.get_AdditionalAxes +M:Accessibility.AXChartDescriptor.get_AttributedTitle M:Accessibility.AXChartDescriptor.get_ClassHandle +M:Accessibility.AXChartDescriptor.get_ContentDirection +M:Accessibility.AXChartDescriptor.get_ContentFrame +M:Accessibility.AXChartDescriptor.get_Series +M:Accessibility.AXChartDescriptor.get_Summary +M:Accessibility.AXChartDescriptor.get_Title +M:Accessibility.AXChartDescriptor.get_XAxis +M:Accessibility.AXChartDescriptor.get_YAxis M:Accessibility.AXChartDescriptor.set_AdditionalAxes(Accessibility.IAXDataAxisDescriptor[]) M:Accessibility.AXChartDescriptor.set_AttributedTitle(Foundation.NSAttributedString) M:Accessibility.AXChartDescriptor.set_ContentDirection(Accessibility.AXChartDescriptorContentDirection) @@ -23709,14 +23733,31 @@ M:Accessibility.AXChartDescriptor.set_YAxis(Accessibility.AXNumericDataAxisDescr M:Accessibility.AXCustomContent.#ctor(Foundation.NSCoder) M:Accessibility.AXCustomContent.#ctor(Foundation.NSObjectFlag) M:Accessibility.AXCustomContent.#ctor(ObjCRuntime.NativeHandle) +M:Accessibility.AXCustomContent.Copy(Foundation.NSZone) +M:Accessibility.AXCustomContent.Create(Foundation.NSAttributedString,Foundation.NSAttributedString) +M:Accessibility.AXCustomContent.Create(System.String,System.String) M:Accessibility.AXCustomContent.EncodeTo(Foundation.NSCoder) +M:Accessibility.AXCustomContent.get_AttributedLabel +M:Accessibility.AXCustomContent.get_AttributedValue M:Accessibility.AXCustomContent.get_ClassHandle +M:Accessibility.AXCustomContent.get_Importance +M:Accessibility.AXCustomContent.get_Label +M:Accessibility.AXCustomContent.get_Value M:Accessibility.AXCustomContent.set_Importance(Accessibility.AXCustomContentImportance) M:Accessibility.AXCustomContentProvider_Extensions.GetAccessibilityCustomContentHandler(Accessibility.IAXCustomContentProvider) M:Accessibility.AXCustomContentProvider_Extensions.SetAccessibilityCustomContentHandler(Accessibility.IAXCustomContentProvider,System.Func{Accessibility.AXCustomContent[]}) +M:Accessibility.AXDataPoint.#ctor(Accessibility.AXDataPointValue,Accessibility.AXDataPointValue,Accessibility.AXDataPointValue[],System.String) +M:Accessibility.AXDataPoint.#ctor(Accessibility.AXDataPointValue,Accessibility.AXDataPointValue,Accessibility.AXDataPointValue[]) +M:Accessibility.AXDataPoint.#ctor(Accessibility.AXDataPointValue,Accessibility.AXDataPointValue) M:Accessibility.AXDataPoint.#ctor(Foundation.NSObjectFlag) M:Accessibility.AXDataPoint.#ctor(ObjCRuntime.NativeHandle) +M:Accessibility.AXDataPoint.Copy(Foundation.NSZone) +M:Accessibility.AXDataPoint.get_AdditionalValues +M:Accessibility.AXDataPoint.get_AttributedLabel M:Accessibility.AXDataPoint.get_ClassHandle +M:Accessibility.AXDataPoint.get_Label +M:Accessibility.AXDataPoint.get_XValue +M:Accessibility.AXDataPoint.get_YValue M:Accessibility.AXDataPoint.set_AdditionalValues(Accessibility.AXDataPointValue[]) M:Accessibility.AXDataPoint.set_AttributedLabel(Foundation.NSAttributedString) M:Accessibility.AXDataPoint.set_Label(System.String) @@ -23724,12 +23765,24 @@ M:Accessibility.AXDataPoint.set_XValue(Accessibility.AXDataPointValue) M:Accessibility.AXDataPoint.set_YValue(Accessibility.AXDataPointValue) M:Accessibility.AXDataPointValue.#ctor(Foundation.NSObjectFlag) M:Accessibility.AXDataPointValue.#ctor(ObjCRuntime.NativeHandle) +M:Accessibility.AXDataPointValue.Copy(Foundation.NSZone) +M:Accessibility.AXDataPointValue.CreateValueWithCategory(System.String) +M:Accessibility.AXDataPointValue.CreateValueWithNumber(System.Double) +M:Accessibility.AXDataPointValue.get_Category M:Accessibility.AXDataPointValue.get_ClassHandle +M:Accessibility.AXDataPointValue.get_Number M:Accessibility.AXDataPointValue.set_Category(System.String) M:Accessibility.AXDataPointValue.set_Number(System.Double) +M:Accessibility.AXDataSeriesDescriptor.#ctor(Foundation.NSAttributedString,System.Boolean,Accessibility.AXDataPoint[]) M:Accessibility.AXDataSeriesDescriptor.#ctor(Foundation.NSObjectFlag) M:Accessibility.AXDataSeriesDescriptor.#ctor(ObjCRuntime.NativeHandle) +M:Accessibility.AXDataSeriesDescriptor.#ctor(System.String,System.Boolean,Accessibility.AXDataPoint[]) +M:Accessibility.AXDataSeriesDescriptor.Copy(Foundation.NSZone) +M:Accessibility.AXDataSeriesDescriptor.get_AttributedName M:Accessibility.AXDataSeriesDescriptor.get_ClassHandle +M:Accessibility.AXDataSeriesDescriptor.get_DataPoints +M:Accessibility.AXDataSeriesDescriptor.get_IsContinuous +M:Accessibility.AXDataSeriesDescriptor.get_Name M:Accessibility.AXDataSeriesDescriptor.set_AttributedName(Foundation.NSAttributedString) M:Accessibility.AXDataSeriesDescriptor.set_DataPoints(Accessibility.AXDataPoint[]) M:Accessibility.AXDataSeriesDescriptor.set_IsContinuous(System.Boolean) @@ -23747,10 +23800,22 @@ M:Accessibility.AXHearingUtilities.SupportsBidirectionalStreaming M:Accessibility.AXLiveAudioGraph.#ctor(Foundation.NSObjectFlag) M:Accessibility.AXLiveAudioGraph.#ctor(ObjCRuntime.NativeHandle) M:Accessibility.AXLiveAudioGraph.get_ClassHandle +M:Accessibility.AXLiveAudioGraph.Start +M:Accessibility.AXLiveAudioGraph.Stop +M:Accessibility.AXLiveAudioGraph.Update(System.Double) +M:Accessibility.AXNumericDataAxisDescriptor.#ctor(Foundation.NSAttributedString,System.Double,System.Double,Foundation.NSNumber[],System.Func{System.Double,Foundation.NSString}) M:Accessibility.AXNumericDataAxisDescriptor.#ctor(Foundation.NSObjectFlag) M:Accessibility.AXNumericDataAxisDescriptor.#ctor(ObjCRuntime.NativeHandle) +M:Accessibility.AXNumericDataAxisDescriptor.#ctor(System.String,System.Double,System.Double,Foundation.NSNumber[],System.Func{System.Double,Foundation.NSString}) M:Accessibility.AXNumericDataAxisDescriptor.Copy(Foundation.NSZone) +M:Accessibility.AXNumericDataAxisDescriptor.get_AttributedTitle M:Accessibility.AXNumericDataAxisDescriptor.get_ClassHandle +M:Accessibility.AXNumericDataAxisDescriptor.get_GridlinePositions +M:Accessibility.AXNumericDataAxisDescriptor.get_LowerBound +M:Accessibility.AXNumericDataAxisDescriptor.get_ScaleType +M:Accessibility.AXNumericDataAxisDescriptor.get_Title +M:Accessibility.AXNumericDataAxisDescriptor.get_UpperBound +M:Accessibility.AXNumericDataAxisDescriptor.get_ValueDescriptionProvider M:Accessibility.AXNumericDataAxisDescriptor.set_AttributedTitle(Foundation.NSAttributedString) M:Accessibility.AXNumericDataAxisDescriptor.set_GridlinePositions(Foundation.NSNumber[]) M:Accessibility.AXNumericDataAxisDescriptor.set_LowerBound(System.Double) @@ -23775,11 +23840,18 @@ M:Accessibility.ValueDescriptionProviderHandler.BeginInvoke(System.Double,System M:Accessibility.ValueDescriptionProviderHandler.EndInvoke(System.IAsyncResult) M:Accessibility.ValueDescriptionProviderHandler.Invoke(System.Double) M:Accounts.ACAccount.#ctor +M:Accounts.ACAccount.#ctor(Accounts.ACAccountType) M:Accounts.ACAccount.#ctor(Foundation.NSCoder) M:Accounts.ACAccount.#ctor(Foundation.NSObjectFlag) M:Accounts.ACAccount.#ctor(ObjCRuntime.NativeHandle) M:Accounts.ACAccount.EncodeTo(Foundation.NSCoder) +M:Accounts.ACAccount.get_AccountDescription +M:Accounts.ACAccount.get_AccountType M:Accounts.ACAccount.get_ClassHandle +M:Accounts.ACAccount.get_Credential +M:Accounts.ACAccount.get_Identifier +M:Accounts.ACAccount.get_UserFullName +M:Accounts.ACAccount.get_Username M:Accounts.ACAccount.set_AccountDescription(System.String) M:Accounts.ACAccount.set_AccountType(Accounts.ACAccountType) M:Accounts.ACAccount.set_Credential(Accounts.ACAccountCredential) @@ -23788,23 +23860,35 @@ M:Accounts.ACAccountCredential.#ctor M:Accounts.ACAccountCredential.#ctor(Foundation.NSCoder) M:Accounts.ACAccountCredential.#ctor(Foundation.NSObjectFlag) M:Accounts.ACAccountCredential.#ctor(ObjCRuntime.NativeHandle) +M:Accounts.ACAccountCredential.#ctor(System.String,System.String,Foundation.NSDate) +M:Accounts.ACAccountCredential.#ctor(System.String,System.String) M:Accounts.ACAccountCredential.EncodeTo(Foundation.NSCoder) M:Accounts.ACAccountCredential.get_ClassHandle +M:Accounts.ACAccountCredential.get_OAuthToken M:Accounts.ACAccountCredential.set_OAuthToken(System.String) M:Accounts.ACAccountStore.#ctor M:Accounts.ACAccountStore.#ctor(Foundation.NSObjectFlag) M:Accounts.ACAccountStore.#ctor(ObjCRuntime.NativeHandle) M:Accounts.ACAccountStore.Dispose(System.Boolean) +M:Accounts.ACAccountStore.FindAccount(System.String) +M:Accounts.ACAccountStore.FindAccounts(Accounts.ACAccountType) +M:Accounts.ACAccountStore.FindAccountType(System.String) +M:Accounts.ACAccountStore.get_Accounts M:Accounts.ACAccountStore.get_ChangeNotification M:Accounts.ACAccountStore.get_ClassHandle M:Accounts.ACAccountStore.Notifications.ObserveChange(Foundation.NSObject,System.EventHandler{Foundation.NSNotificationEventArgs}) M:Accounts.ACAccountStore.Notifications.ObserveChange(System.EventHandler{Foundation.NSNotificationEventArgs}) +M:Accounts.ACAccountStore.RemoveAccount(Accounts.ACAccount,Accounts.ACAccountStoreRemoveCompletionHandler) M:Accounts.ACAccountStore.RemoveAccountAsync(Accounts.ACAccount) +M:Accounts.ACAccountStore.RenewCredentials(Accounts.ACAccount,System.Action{Accounts.ACAccountCredentialRenewResult,Foundation.NSError}) M:Accounts.ACAccountStore.RenewCredentialsAsync(Accounts.ACAccount) M:Accounts.ACAccountStore.RequestAccess(Accounts.ACAccountType,Accounts.AccountStoreOptions,Accounts.ACRequestCompletionHandler) +M:Accounts.ACAccountStore.RequestAccess(Accounts.ACAccountType,Accounts.ACRequestCompletionHandler) +M:Accounts.ACAccountStore.RequestAccess(Accounts.ACAccountType,Foundation.NSDictionary,Accounts.ACRequestCompletionHandler) M:Accounts.ACAccountStore.RequestAccessAsync(Accounts.ACAccountType,Accounts.AccountStoreOptions) M:Accounts.ACAccountStore.RequestAccessAsync(Accounts.ACAccountType,Foundation.NSDictionary) M:Accounts.ACAccountStore.RequestAccessAsync(Accounts.ACAccountType) +M:Accounts.ACAccountStore.SaveAccount(Accounts.ACAccount,Accounts.ACAccountStoreSaveCompletionHandler) M:Accounts.ACAccountStore.SaveAccountAsync(Accounts.ACAccount) M:Accounts.ACAccountStoreRemoveCompletionHandler.#ctor(System.Object,System.IntPtr) M:Accounts.ACAccountStoreRemoveCompletionHandler.BeginInvoke(System.Boolean,Foundation.NSError,System.AsyncCallback,System.Object) @@ -23819,8 +23903,11 @@ M:Accounts.ACAccountType.#ctor(Foundation.NSCoder) M:Accounts.ACAccountType.#ctor(Foundation.NSObjectFlag) M:Accounts.ACAccountType.#ctor(ObjCRuntime.NativeHandle) M:Accounts.ACAccountType.EncodeTo(Foundation.NSCoder) +M:Accounts.ACAccountType.get_AccessGranted M:Accounts.ACAccountType.get_ClassHandle +M:Accounts.ACAccountType.get_Description M:Accounts.ACAccountType.get_Facebook +M:Accounts.ACAccountType.get_Identifier M:Accounts.ACAccountType.get_LinkedIn M:Accounts.ACAccountType.get_SinaWeibo M:Accounts.ACAccountType.get_TencentWeibo @@ -24271,6 +24358,7 @@ M:AddressBookUI.IABUnknownPersonViewControllerDelegate.DidResolveToPerson(Addres M:AdServices.AAAttribution.#ctor(Foundation.NSObjectFlag) M:AdServices.AAAttribution.#ctor(ObjCRuntime.NativeHandle) M:AdServices.AAAttribution.get_ClassHandle +M:AdServices.AAAttribution.GetAttributionToken(Foundation.NSError@) M:AdServices.AAAttributionErrorCodeExtensions.GetDomain(AdServices.AAAttributionErrorCode) M:AdSupport.ASIdentifierManager.#ctor(Foundation.NSObjectFlag) M:AdSupport.ASIdentifierManager.#ctor(ObjCRuntime.NativeHandle) @@ -25020,22 +25108,138 @@ M:AppKit.NSAccessibilityCustomRotorSearchParameters.set_SearchDirection(AppKit.N M:AppKit.NSAccessibilityElement.#ctor M:AppKit.NSAccessibilityElement.#ctor(Foundation.NSObjectFlag) M:AppKit.NSAccessibilityElement.#ctor(ObjCRuntime.NativeHandle) +M:AppKit.NSAccessibilityElement.AccessibilityPerformCancel +M:AppKit.NSAccessibilityElement.AccessibilityPerformConfirm +M:AppKit.NSAccessibilityElement.AccessibilityPerformDecrement +M:AppKit.NSAccessibilityElement.AccessibilityPerformDelete +M:AppKit.NSAccessibilityElement.AccessibilityPerformIncrement +M:AppKit.NSAccessibilityElement.AccessibilityPerformPick +M:AppKit.NSAccessibilityElement.AccessibilityPerformPress +M:AppKit.NSAccessibilityElement.AccessibilityPerformRaise +M:AppKit.NSAccessibilityElement.AccessibilityPerformShowAlternateUI +M:AppKit.NSAccessibilityElement.AccessibilityPerformShowDefaultUI +M:AppKit.NSAccessibilityElement.AccessibilityPerformShowMenu M:AppKit.NSAccessibilityElement.Dispose(System.Boolean) +M:AppKit.NSAccessibilityElement.get_AccessibilityActivationPoint +M:AppKit.NSAccessibilityElement.get_AccessibilityAllowedValues M:AppKit.NSAccessibilityElement.get_AccessibilityAlternateUIVisible +M:AppKit.NSAccessibilityElement.get_AccessibilityApplicationFocusedUIElement +M:AppKit.NSAccessibilityElement.get_AccessibilityAttributedUserInputLabels +M:AppKit.NSAccessibilityElement.get_AccessibilityCancelButton +M:AppKit.NSAccessibilityElement.get_AccessibilityChildren +M:AppKit.NSAccessibilityElement.get_AccessibilityChildrenInNavigationOrder +M:AppKit.NSAccessibilityElement.get_AccessibilityClearButton +M:AppKit.NSAccessibilityElement.get_AccessibilityCloseButton +M:AppKit.NSAccessibilityElement.get_AccessibilityColumnCount +M:AppKit.NSAccessibilityElement.get_AccessibilityColumnHeaderUIElements +M:AppKit.NSAccessibilityElement.get_AccessibilityColumnIndexRange +M:AppKit.NSAccessibilityElement.get_AccessibilityColumns +M:AppKit.NSAccessibilityElement.get_AccessibilityColumnTitles +M:AppKit.NSAccessibilityElement.get_AccessibilityContents +M:AppKit.NSAccessibilityElement.get_AccessibilityCriticalValue +M:AppKit.NSAccessibilityElement.get_AccessibilityCustomActions +M:AppKit.NSAccessibilityElement.get_AccessibilityCustomRotors +M:AppKit.NSAccessibilityElement.get_AccessibilityDecrementButton +M:AppKit.NSAccessibilityElement.get_AccessibilityDefaultButton M:AppKit.NSAccessibilityElement.get_AccessibilityDisclosed +M:AppKit.NSAccessibilityElement.get_AccessibilityDisclosedByRow +M:AppKit.NSAccessibilityElement.get_AccessibilityDisclosedRows +M:AppKit.NSAccessibilityElement.get_AccessibilityDisclosureLevel +M:AppKit.NSAccessibilityElement.get_AccessibilityDocument M:AppKit.NSAccessibilityElement.get_AccessibilityEdited M:AppKit.NSAccessibilityElement.get_AccessibilityElement M:AppKit.NSAccessibilityElement.get_AccessibilityEnabled M:AppKit.NSAccessibilityElement.get_AccessibilityExpanded +M:AppKit.NSAccessibilityElement.get_AccessibilityExtrasMenuBar +M:AppKit.NSAccessibilityElement.get_AccessibilityFilename +M:AppKit.NSAccessibilityElement.get_AccessibilityFocusedWindow M:AppKit.NSAccessibilityElement.get_AccessibilityFrontmost +M:AppKit.NSAccessibilityElement.get_AccessibilityFullScreenButton +M:AppKit.NSAccessibilityElement.get_AccessibilityGrowArea +M:AppKit.NSAccessibilityElement.get_AccessibilityHandles +M:AppKit.NSAccessibilityElement.get_AccessibilityHeader +M:AppKit.NSAccessibilityElement.get_AccessibilityHelp M:AppKit.NSAccessibilityElement.get_AccessibilityHidden +M:AppKit.NSAccessibilityElement.get_AccessibilityHorizontalScrollBar +M:AppKit.NSAccessibilityElement.get_AccessibilityHorizontalUnitDescription +M:AppKit.NSAccessibilityElement.get_AccessibilityHorizontalUnits +M:AppKit.NSAccessibilityElement.get_AccessibilityIncrementButton +M:AppKit.NSAccessibilityElement.get_AccessibilityIndex +M:AppKit.NSAccessibilityElement.get_AccessibilityInsertionPointLineNumber +M:AppKit.NSAccessibilityElement.get_AccessibilityLabel +M:AppKit.NSAccessibilityElement.get_AccessibilityLabelUIElements +M:AppKit.NSAccessibilityElement.get_AccessibilityLabelValue +M:AppKit.NSAccessibilityElement.get_AccessibilityLinkedUIElements M:AppKit.NSAccessibilityElement.get_AccessibilityMain +M:AppKit.NSAccessibilityElement.get_AccessibilityMainWindow +M:AppKit.NSAccessibilityElement.get_AccessibilityMarkerGroupUIElement +M:AppKit.NSAccessibilityElement.get_AccessibilityMarkerTypeDescription +M:AppKit.NSAccessibilityElement.get_AccessibilityMarkerUIElements +M:AppKit.NSAccessibilityElement.get_AccessibilityMarkerValues +M:AppKit.NSAccessibilityElement.get_AccessibilityMaxValue +M:AppKit.NSAccessibilityElement.get_AccessibilityMenuBar +M:AppKit.NSAccessibilityElement.get_AccessibilityMinimizeButton M:AppKit.NSAccessibilityElement.get_AccessibilityMinimized +M:AppKit.NSAccessibilityElement.get_AccessibilityMinValue M:AppKit.NSAccessibilityElement.get_AccessibilityModal +M:AppKit.NSAccessibilityElement.get_AccessibilityNextContents +M:AppKit.NSAccessibilityElement.get_AccessibilityNumberOfCharacters M:AppKit.NSAccessibilityElement.get_AccessibilityOrderedByRow +M:AppKit.NSAccessibilityElement.get_AccessibilityOrientation +M:AppKit.NSAccessibilityElement.get_AccessibilityOverflowButton +M:AppKit.NSAccessibilityElement.get_AccessibilityPlaceholderValue +M:AppKit.NSAccessibilityElement.get_AccessibilityPreviousContents M:AppKit.NSAccessibilityElement.get_AccessibilityProtectedContent +M:AppKit.NSAccessibilityElement.get_AccessibilityProxy M:AppKit.NSAccessibilityElement.get_AccessibilityRequired +M:AppKit.NSAccessibilityElement.get_AccessibilityRole +M:AppKit.NSAccessibilityElement.get_AccessibilityRoleDescription +M:AppKit.NSAccessibilityElement.get_AccessibilityRowCount +M:AppKit.NSAccessibilityElement.get_AccessibilityRowHeaderUIElements +M:AppKit.NSAccessibilityElement.get_AccessibilityRowIndexRange +M:AppKit.NSAccessibilityElement.get_AccessibilityRows +M:AppKit.NSAccessibilityElement.get_AccessibilityRulerMarkerType +M:AppKit.NSAccessibilityElement.get_AccessibilitySearchButton +M:AppKit.NSAccessibilityElement.get_AccessibilitySearchMenu M:AppKit.NSAccessibilityElement.get_AccessibilitySelected +M:AppKit.NSAccessibilityElement.get_AccessibilitySelectedCells +M:AppKit.NSAccessibilityElement.get_AccessibilitySelectedChildren +M:AppKit.NSAccessibilityElement.get_AccessibilitySelectedColumns +M:AppKit.NSAccessibilityElement.get_AccessibilitySelectedRows +M:AppKit.NSAccessibilityElement.get_AccessibilitySelectedText +M:AppKit.NSAccessibilityElement.get_AccessibilitySelectedTextRange +M:AppKit.NSAccessibilityElement.get_AccessibilitySelectedTextRanges +M:AppKit.NSAccessibilityElement.get_AccessibilityServesAsTitleForUIElements +M:AppKit.NSAccessibilityElement.get_AccessibilitySharedCharacterRange +M:AppKit.NSAccessibilityElement.get_AccessibilitySharedFocusElements +M:AppKit.NSAccessibilityElement.get_AccessibilitySharedTextUIElements +M:AppKit.NSAccessibilityElement.get_AccessibilityShownMenu +M:AppKit.NSAccessibilityElement.get_AccessibilitySortDirection +M:AppKit.NSAccessibilityElement.get_AccessibilitySplitters +M:AppKit.NSAccessibilityElement.get_AccessibilitySubrole +M:AppKit.NSAccessibilityElement.get_AccessibilityTabs +M:AppKit.NSAccessibilityElement.get_AccessibilityTitle +M:AppKit.NSAccessibilityElement.get_AccessibilityTitleUIElement +M:AppKit.NSAccessibilityElement.get_AccessibilityToolbarButton +M:AppKit.NSAccessibilityElement.get_AccessibilityTopLevelUIElement +M:AppKit.NSAccessibilityElement.get_AccessibilityUnitDescription +M:AppKit.NSAccessibilityElement.get_AccessibilityUnits +M:AppKit.NSAccessibilityElement.get_AccessibilityUrl +M:AppKit.NSAccessibilityElement.get_AccessibilityUserInputLabels +M:AppKit.NSAccessibilityElement.get_AccessibilityValue +M:AppKit.NSAccessibilityElement.get_AccessibilityValueDescription +M:AppKit.NSAccessibilityElement.get_AccessibilityVerticalScrollBar +M:AppKit.NSAccessibilityElement.get_AccessibilityVerticalUnitDescription +M:AppKit.NSAccessibilityElement.get_AccessibilityVerticalUnits +M:AppKit.NSAccessibilityElement.get_AccessibilityVisibleCells +M:AppKit.NSAccessibilityElement.get_AccessibilityVisibleCharacterRange +M:AppKit.NSAccessibilityElement.get_AccessibilityVisibleChildren +M:AppKit.NSAccessibilityElement.get_AccessibilityVisibleColumns +M:AppKit.NSAccessibilityElement.get_AccessibilityVisibleRows +M:AppKit.NSAccessibilityElement.get_AccessibilityWarningValue +M:AppKit.NSAccessibilityElement.get_AccessibilityWindow +M:AppKit.NSAccessibilityElement.get_AccessibilityWindows +M:AppKit.NSAccessibilityElement.get_AccessibilityZoomButton M:AppKit.NSAccessibilityElement.get_AnnouncementRequestedNotification M:AppKit.NSAccessibilityElement.get_ApplicationActivatedNotification M:AppKit.NSAccessibilityElement.get_ApplicationDeactivatedNotification @@ -25070,6 +25274,21 @@ M:AppKit.NSAccessibilityElement.get_WindowDeminiaturizedNotification M:AppKit.NSAccessibilityElement.get_WindowMiniaturizedNotification M:AppKit.NSAccessibilityElement.get_WindowMovedNotification M:AppKit.NSAccessibilityElement.get_WindowResizedNotification +M:AppKit.NSAccessibilityElement.GetAccessibilityAttributedString(Foundation.NSRange) +M:AppKit.NSAccessibilityElement.GetAccessibilityCellForColumn(System.IntPtr,System.IntPtr) +M:AppKit.NSAccessibilityElement.GetAccessibilityFrame(Foundation.NSRange) +M:AppKit.NSAccessibilityElement.GetAccessibilityLayoutForScreen(CoreGraphics.CGPoint) +M:AppKit.NSAccessibilityElement.GetAccessibilityLayoutForScreen(CoreGraphics.CGSize) +M:AppKit.NSAccessibilityElement.GetAccessibilityLine(System.IntPtr) +M:AppKit.NSAccessibilityElement.GetAccessibilityRange(CoreGraphics.CGPoint) +M:AppKit.NSAccessibilityElement.GetAccessibilityRange(System.IntPtr) +M:AppKit.NSAccessibilityElement.GetAccessibilityRangeForLine(System.IntPtr) +M:AppKit.NSAccessibilityElement.GetAccessibilityRtf(Foundation.NSRange) +M:AppKit.NSAccessibilityElement.GetAccessibilityScreenForLayout(CoreGraphics.CGPoint) +M:AppKit.NSAccessibilityElement.GetAccessibilityScreenForLayout(CoreGraphics.CGSize) +M:AppKit.NSAccessibilityElement.GetAccessibilityString(Foundation.NSRange) +M:AppKit.NSAccessibilityElement.GetAccessibilityStyleRange(System.IntPtr) +M:AppKit.NSAccessibilityElement.IsAccessibilitySelectorAllowed(ObjCRuntime.Selector) M:AppKit.NSAccessibilityElement.Notifications.ObserveAnnouncementRequested(Foundation.NSObject,System.EventHandler{Foundation.NSNotificationEventArgs}) M:AppKit.NSAccessibilityElement.Notifications.ObserveAnnouncementRequested(System.EventHandler{Foundation.NSNotificationEventArgs}) M:AppKit.NSAccessibilityElement.Notifications.ObserveApplicationActivated(Foundation.NSObject,System.EventHandler{Foundation.NSNotificationEventArgs}) @@ -25435,7 +25654,9 @@ M:AppKit.NSAnimation.#ctor(ObjCRuntime.NativeHandle) M:AppKit.NSAnimation.add_AnimationDidEnd(System.EventHandler) M:AppKit.NSAnimation.add_AnimationDidReachProgressMark(System.EventHandler{AppKit.NSAnimationEventArgs}) M:AppKit.NSAnimation.add_AnimationDidStop(System.EventHandler) +M:AppKit.NSAnimation.Copy(Foundation.NSZone) M:AppKit.NSAnimation.Dispose(System.Boolean) +M:AppKit.NSAnimation.EncodeTo(Foundation.NSCoder) M:AppKit.NSAnimation.get_AnimationShouldStart M:AppKit.NSAnimation.get_ClassHandle M:AppKit.NSAnimation.get_ComputeAnimationCurve @@ -25524,6 +25745,17 @@ M:AppKit.NSApplication_NSTouchBarCustomization.ToggleTouchBarCustomizationPalett M:AppKit.NSApplication.#ctor(Foundation.NSCoder) M:AppKit.NSApplication.#ctor(Foundation.NSObjectFlag) M:AppKit.NSApplication.#ctor(ObjCRuntime.NativeHandle) +M:AppKit.NSApplication.AccessibilityPerformCancel +M:AppKit.NSApplication.AccessibilityPerformConfirm +M:AppKit.NSApplication.AccessibilityPerformDecrement +M:AppKit.NSApplication.AccessibilityPerformDelete +M:AppKit.NSApplication.AccessibilityPerformIncrement +M:AppKit.NSApplication.AccessibilityPerformPick +M:AppKit.NSApplication.AccessibilityPerformPress +M:AppKit.NSApplication.AccessibilityPerformRaise +M:AppKit.NSApplication.AccessibilityPerformShowAlternateUI +M:AppKit.NSApplication.AccessibilityPerformShowDefaultUI +M:AppKit.NSApplication.AccessibilityPerformShowMenu M:AppKit.NSApplication.add_DecodedRestorableState(System.EventHandler{AppKit.NSCoderEventArgs}) M:AppKit.NSApplication.add_DidBecomeActive(System.EventHandler) M:AppKit.NSApplication.add_DidFinishLaunching(System.EventHandler) @@ -25557,21 +25789,130 @@ M:AppKit.NSApplication.Dispose(System.Boolean) M:AppKit.NSApplication.EnsureDelegateAssignIsNotOverwritingInternalDelegate(System.Object,System.Object,System.Type) M:AppKit.NSApplication.EnsureEventAndDelegateAreNotMismatched(System.Object,System.Type) M:AppKit.NSApplication.EnsureUIThread +M:AppKit.NSApplication.get_AccessibilityActivationPoint +M:AppKit.NSApplication.get_AccessibilityAllowedValues M:AppKit.NSApplication.get_AccessibilityAlternateUIVisible +M:AppKit.NSApplication.get_AccessibilityApplicationFocusedUIElement +M:AppKit.NSApplication.get_AccessibilityAttributedUserInputLabels +M:AppKit.NSApplication.get_AccessibilityCancelButton +M:AppKit.NSApplication.get_AccessibilityChildren +M:AppKit.NSApplication.get_AccessibilityChildrenInNavigationOrder +M:AppKit.NSApplication.get_AccessibilityClearButton +M:AppKit.NSApplication.get_AccessibilityCloseButton +M:AppKit.NSApplication.get_AccessibilityColumnCount +M:AppKit.NSApplication.get_AccessibilityColumnHeaderUIElements +M:AppKit.NSApplication.get_AccessibilityColumnIndexRange +M:AppKit.NSApplication.get_AccessibilityColumns +M:AppKit.NSApplication.get_AccessibilityColumnTitles +M:AppKit.NSApplication.get_AccessibilityContents +M:AppKit.NSApplication.get_AccessibilityCriticalValue +M:AppKit.NSApplication.get_AccessibilityCustomActions +M:AppKit.NSApplication.get_AccessibilityCustomRotors +M:AppKit.NSApplication.get_AccessibilityDecrementButton +M:AppKit.NSApplication.get_AccessibilityDefaultButton M:AppKit.NSApplication.get_AccessibilityDisclosed +M:AppKit.NSApplication.get_AccessibilityDisclosedByRow +M:AppKit.NSApplication.get_AccessibilityDisclosedRows +M:AppKit.NSApplication.get_AccessibilityDisclosureLevel +M:AppKit.NSApplication.get_AccessibilityDocument M:AppKit.NSApplication.get_AccessibilityEdited M:AppKit.NSApplication.get_AccessibilityElement M:AppKit.NSApplication.get_AccessibilityEnabled M:AppKit.NSApplication.get_AccessibilityExpanded +M:AppKit.NSApplication.get_AccessibilityExtrasMenuBar +M:AppKit.NSApplication.get_AccessibilityFilename +M:AppKit.NSApplication.get_AccessibilityFocused +M:AppKit.NSApplication.get_AccessibilityFocusedWindow +M:AppKit.NSApplication.get_AccessibilityFrame M:AppKit.NSApplication.get_AccessibilityFrontmost +M:AppKit.NSApplication.get_AccessibilityFullScreenButton +M:AppKit.NSApplication.get_AccessibilityGrowArea +M:AppKit.NSApplication.get_AccessibilityHandles +M:AppKit.NSApplication.get_AccessibilityHeader +M:AppKit.NSApplication.get_AccessibilityHelp M:AppKit.NSApplication.get_AccessibilityHidden +M:AppKit.NSApplication.get_AccessibilityHorizontalScrollBar +M:AppKit.NSApplication.get_AccessibilityHorizontalUnitDescription +M:AppKit.NSApplication.get_AccessibilityHorizontalUnits +M:AppKit.NSApplication.get_AccessibilityIdentifier +M:AppKit.NSApplication.get_AccessibilityIncrementButton +M:AppKit.NSApplication.get_AccessibilityIndex +M:AppKit.NSApplication.get_AccessibilityInsertionPointLineNumber +M:AppKit.NSApplication.get_AccessibilityLabel +M:AppKit.NSApplication.get_AccessibilityLabelUIElements +M:AppKit.NSApplication.get_AccessibilityLabelValue +M:AppKit.NSApplication.get_AccessibilityLinkedUIElements M:AppKit.NSApplication.get_AccessibilityMain +M:AppKit.NSApplication.get_AccessibilityMainWindow +M:AppKit.NSApplication.get_AccessibilityMarkerGroupUIElement +M:AppKit.NSApplication.get_AccessibilityMarkerTypeDescription +M:AppKit.NSApplication.get_AccessibilityMarkerUIElements +M:AppKit.NSApplication.get_AccessibilityMarkerValues +M:AppKit.NSApplication.get_AccessibilityMaxValue +M:AppKit.NSApplication.get_AccessibilityMenuBar +M:AppKit.NSApplication.get_AccessibilityMinimizeButton M:AppKit.NSApplication.get_AccessibilityMinimized +M:AppKit.NSApplication.get_AccessibilityMinValue M:AppKit.NSApplication.get_AccessibilityModal +M:AppKit.NSApplication.get_AccessibilityNextContents +M:AppKit.NSApplication.get_AccessibilityNumberOfCharacters M:AppKit.NSApplication.get_AccessibilityOrderedByRow +M:AppKit.NSApplication.get_AccessibilityOrientation +M:AppKit.NSApplication.get_AccessibilityOverflowButton +M:AppKit.NSApplication.get_AccessibilityParent +M:AppKit.NSApplication.get_AccessibilityPlaceholderValue +M:AppKit.NSApplication.get_AccessibilityPreviousContents M:AppKit.NSApplication.get_AccessibilityProtectedContent +M:AppKit.NSApplication.get_AccessibilityProxy M:AppKit.NSApplication.get_AccessibilityRequired +M:AppKit.NSApplication.get_AccessibilityRole +M:AppKit.NSApplication.get_AccessibilityRoleDescription +M:AppKit.NSApplication.get_AccessibilityRowCount +M:AppKit.NSApplication.get_AccessibilityRowHeaderUIElements +M:AppKit.NSApplication.get_AccessibilityRowIndexRange +M:AppKit.NSApplication.get_AccessibilityRows +M:AppKit.NSApplication.get_AccessibilityRulerMarkerType +M:AppKit.NSApplication.get_AccessibilitySearchButton +M:AppKit.NSApplication.get_AccessibilitySearchMenu M:AppKit.NSApplication.get_AccessibilitySelected +M:AppKit.NSApplication.get_AccessibilitySelectedCells +M:AppKit.NSApplication.get_AccessibilitySelectedChildren +M:AppKit.NSApplication.get_AccessibilitySelectedColumns +M:AppKit.NSApplication.get_AccessibilitySelectedRows +M:AppKit.NSApplication.get_AccessibilitySelectedText +M:AppKit.NSApplication.get_AccessibilitySelectedTextRange +M:AppKit.NSApplication.get_AccessibilitySelectedTextRanges +M:AppKit.NSApplication.get_AccessibilityServesAsTitleForUIElements +M:AppKit.NSApplication.get_AccessibilitySharedCharacterRange +M:AppKit.NSApplication.get_AccessibilitySharedFocusElements +M:AppKit.NSApplication.get_AccessibilitySharedTextUIElements +M:AppKit.NSApplication.get_AccessibilityShownMenu +M:AppKit.NSApplication.get_AccessibilitySortDirection +M:AppKit.NSApplication.get_AccessibilitySplitters +M:AppKit.NSApplication.get_AccessibilitySubrole +M:AppKit.NSApplication.get_AccessibilityTabs +M:AppKit.NSApplication.get_AccessibilityTitle +M:AppKit.NSApplication.get_AccessibilityTitleUIElement +M:AppKit.NSApplication.get_AccessibilityToolbarButton +M:AppKit.NSApplication.get_AccessibilityTopLevelUIElement +M:AppKit.NSApplication.get_AccessibilityUnitDescription +M:AppKit.NSApplication.get_AccessibilityUnits +M:AppKit.NSApplication.get_AccessibilityUrl +M:AppKit.NSApplication.get_AccessibilityUserInputLabels +M:AppKit.NSApplication.get_AccessibilityValue +M:AppKit.NSApplication.get_AccessibilityValueDescription +M:AppKit.NSApplication.get_AccessibilityVerticalScrollBar +M:AppKit.NSApplication.get_AccessibilityVerticalUnitDescription +M:AppKit.NSApplication.get_AccessibilityVerticalUnits +M:AppKit.NSApplication.get_AccessibilityVisibleCells +M:AppKit.NSApplication.get_AccessibilityVisibleCharacterRange +M:AppKit.NSApplication.get_AccessibilityVisibleChildren +M:AppKit.NSApplication.get_AccessibilityVisibleColumns +M:AppKit.NSApplication.get_AccessibilityVisibleRows +M:AppKit.NSApplication.get_AccessibilityWarningValue +M:AppKit.NSApplication.get_AccessibilityWindow +M:AppKit.NSApplication.get_AccessibilityWindows +M:AppKit.NSApplication.get_AccessibilityZoomButton M:AppKit.NSApplication.get_ActivationPolicy M:AppKit.NSApplication.get_Active M:AppKit.NSApplication.get_AnnouncementRequestedNotification @@ -25649,8 +25990,23 @@ M:AppKit.NSApplication.get_WindowDeminiaturizedNotification M:AppKit.NSApplication.get_WindowMiniaturizedNotification M:AppKit.NSApplication.get_WindowMovedNotification M:AppKit.NSApplication.get_WindowResizedNotification +M:AppKit.NSApplication.GetAccessibilityAttributedString(Foundation.NSRange) +M:AppKit.NSApplication.GetAccessibilityCellForColumn(System.IntPtr,System.IntPtr) +M:AppKit.NSApplication.GetAccessibilityFrame(Foundation.NSRange) +M:AppKit.NSApplication.GetAccessibilityLayoutForScreen(CoreGraphics.CGPoint) +M:AppKit.NSApplication.GetAccessibilityLayoutForScreen(CoreGraphics.CGSize) +M:AppKit.NSApplication.GetAccessibilityLine(System.IntPtr) +M:AppKit.NSApplication.GetAccessibilityRange(CoreGraphics.CGPoint) +M:AppKit.NSApplication.GetAccessibilityRange(System.IntPtr) +M:AppKit.NSApplication.GetAccessibilityRangeForLine(System.IntPtr) +M:AppKit.NSApplication.GetAccessibilityRtf(Foundation.NSRange) +M:AppKit.NSApplication.GetAccessibilityScreenForLayout(CoreGraphics.CGPoint) +M:AppKit.NSApplication.GetAccessibilityScreenForLayout(CoreGraphics.CGSize) +M:AppKit.NSApplication.GetAccessibilityString(Foundation.NSRange) +M:AppKit.NSApplication.GetAccessibilityStyleRange(System.IntPtr) M:AppKit.NSApplication.Init M:AppKit.NSApplication.InitDrawingBridge +M:AppKit.NSApplication.IsAccessibilitySelectorAllowed(ObjCRuntime.Selector) M:AppKit.NSApplication.Main(System.String[]) M:AppKit.NSApplication.NextEvent(AppKit.NSEventMask,Foundation.NSDate,Foundation.NSRunLoopMode,System.Boolean) M:AppKit.NSApplication.Notifications.ObserveAnnouncementRequested(Foundation.NSObject,System.EventHandler{Foundation.NSNotificationEventArgs}) @@ -25929,6 +26285,8 @@ M:AppKit.NSApplication.set_WeakDelegate(Foundation.NSObject) M:AppKit.NSApplication.set_WillContinueUserActivity(AppKit.NSApplicationUserActivityType) M:AppKit.NSApplication.set_WillPresentError(AppKit.NSApplicationError) M:AppKit.NSApplication.set_WindowsMenu(AppKit.NSMenu) +M:AppKit.NSApplication.ValidateMenuItem(AppKit.NSMenuItem) +M:AppKit.NSApplication.ValidateUserInterfaceItem(AppKit.INSValidatedUserInterfaceItem) M:AppKit.NSApplicationContinueUserActivity.#ctor(System.Object,System.IntPtr) M:AppKit.NSApplicationContinueUserActivity.BeginInvoke(AppKit.NSApplication,Foundation.NSUserActivity,AppKit.ContinueUserActivityRestorationHandler,System.AsyncCallback,System.Object) M:AppKit.NSApplicationContinueUserActivity.EndInvoke(System.IAsyncResult) @@ -26146,6 +26504,7 @@ M:AppKit.NSBezierPath.#ctor(ObjCRuntime.NativeHandle) M:AppKit.NSBezierPath.Append(AppKit.NSBezierPath) M:AppKit.NSBezierPath.Append(CoreGraphics.CGPoint[]) M:AppKit.NSBezierPath.Append(System.UInt32[],AppKit.NSFont) +M:AppKit.NSBezierPath.Copy(Foundation.NSZone) M:AppKit.NSBezierPath.ElementAt(System.IntPtr,CoreGraphics.CGPoint[]@) M:AppKit.NSBezierPath.EncodeTo(Foundation.NSCoder) M:AppKit.NSBezierPath.get_ClassHandle @@ -26335,6 +26694,7 @@ M:AppKit.NSButton.#ctor(CoreGraphics.CGRect) M:AppKit.NSButton.#ctor(Foundation.NSCoder) M:AppKit.NSButton.#ctor(Foundation.NSObjectFlag) M:AppKit.NSButton.#ctor(ObjCRuntime.NativeHandle) +M:AppKit.NSButton.AccessibilityPerformPress M:AppKit.NSButton.CreateButton(AppKit.NSImage,System.Action) M:AppKit.NSButton.CreateButton(System.String,AppKit.NSImage,System.Action) M:AppKit.NSButton.CreateButton(System.String,System.Action) @@ -26344,6 +26704,7 @@ M:AppKit.NSButton.Dispose(System.Boolean) M:AppKit.NSButton.get_AccessibilityFocused M:AppKit.NSButton.get_AccessibilityFrame M:AppKit.NSButton.get_AccessibilityIdentifier +M:AppKit.NSButton.get_AccessibilityLabel M:AppKit.NSButton.get_AccessibilityParent M:AppKit.NSButton.get_Bordered M:AppKit.NSButton.get_Cell @@ -26375,6 +26736,7 @@ M:AppKit.NSButton.set_State(AppKit.NSCellStateValue) M:AppKit.NSButton.set_SymbolConfiguration(AppKit.NSImageSymbolConfiguration) M:AppKit.NSButton.set_Title(System.String) M:AppKit.NSButton.set_Transparent(System.Boolean) +M:AppKit.NSButton.ValidateUserInterfaceItem(AppKit.INSValidatedUserInterfaceItem) M:AppKit.NSButtonCell.#ctor M:AppKit.NSButtonCell.#ctor(Foundation.NSObjectFlag) M:AppKit.NSButtonCell.#ctor(ObjCRuntime.NativeHandle) @@ -26449,29 +26811,151 @@ M:AppKit.NSCandidateListTouchBarItemDelegate.EndSelectingCandidate(AppKit.NSCand M:AppKit.NSCell.#ctor(Foundation.NSObjectFlag) M:AppKit.NSCell.#ctor(ObjCRuntime.NativeHandle) M:AppKit.NSCell.AccessibilityPerformAction(Foundation.NSString) +M:AppKit.NSCell.AccessibilityPerformCancel +M:AppKit.NSCell.AccessibilityPerformConfirm +M:AppKit.NSCell.AccessibilityPerformDecrement +M:AppKit.NSCell.AccessibilityPerformDelete +M:AppKit.NSCell.AccessibilityPerformIncrement +M:AppKit.NSCell.AccessibilityPerformPick +M:AppKit.NSCell.AccessibilityPerformPress +M:AppKit.NSCell.AccessibilityPerformRaise +M:AppKit.NSCell.AccessibilityPerformShowAlternateUI +M:AppKit.NSCell.AccessibilityPerformShowDefaultUI +M:AppKit.NSCell.AccessibilityPerformShowMenu +M:AppKit.NSCell.Copy(Foundation.NSZone) M:AppKit.NSCell.Dispose(System.Boolean) M:AppKit.NSCell.DrawNinePartImage(CoreGraphics.CGRect,AppKit.NSImage,AppKit.NSImage,AppKit.NSImage,AppKit.NSImage,AppKit.NSImage,AppKit.NSImage,AppKit.NSImage,AppKit.NSImage,AppKit.NSImage,AppKit.NSCompositingOperation,System.Runtime.InteropServices.NFloat,System.Boolean) M:AppKit.NSCell.DrawThreePartImage(CoreGraphics.CGRect,AppKit.NSImage,AppKit.NSImage,AppKit.NSImage,System.Boolean,AppKit.NSCompositingOperation,System.Runtime.InteropServices.NFloat,System.Boolean) +M:AppKit.NSCell.EncodeTo(Foundation.NSCoder) M:AppKit.NSCell.get_AccessibilityActionNames +M:AppKit.NSCell.get_AccessibilityActivationPoint +M:AppKit.NSCell.get_AccessibilityAllowedValues M:AppKit.NSCell.get_AccessibilityAlternateUIVisible +M:AppKit.NSCell.get_AccessibilityApplicationFocusedUIElement +M:AppKit.NSCell.get_AccessibilityAttributedUserInputLabels M:AppKit.NSCell.get_AccessibilityAttributeNames +M:AppKit.NSCell.get_AccessibilityCancelButton +M:AppKit.NSCell.get_AccessibilityChildren +M:AppKit.NSCell.get_AccessibilityChildrenInNavigationOrder +M:AppKit.NSCell.get_AccessibilityClearButton +M:AppKit.NSCell.get_AccessibilityCloseButton +M:AppKit.NSCell.get_AccessibilityColumnCount +M:AppKit.NSCell.get_AccessibilityColumnHeaderUIElements +M:AppKit.NSCell.get_AccessibilityColumnIndexRange +M:AppKit.NSCell.get_AccessibilityColumns +M:AppKit.NSCell.get_AccessibilityColumnTitles +M:AppKit.NSCell.get_AccessibilityContents +M:AppKit.NSCell.get_AccessibilityCriticalValue +M:AppKit.NSCell.get_AccessibilityCustomActions +M:AppKit.NSCell.get_AccessibilityCustomRotors +M:AppKit.NSCell.get_AccessibilityDecrementButton +M:AppKit.NSCell.get_AccessibilityDefaultButton M:AppKit.NSCell.get_AccessibilityDisclosed +M:AppKit.NSCell.get_AccessibilityDisclosedByRow +M:AppKit.NSCell.get_AccessibilityDisclosedRows +M:AppKit.NSCell.get_AccessibilityDisclosureLevel +M:AppKit.NSCell.get_AccessibilityDocument M:AppKit.NSCell.get_AccessibilityEdited M:AppKit.NSCell.get_AccessibilityElement M:AppKit.NSCell.get_AccessibilityEnabled M:AppKit.NSCell.get_AccessibilityExpanded +M:AppKit.NSCell.get_AccessibilityExtrasMenuBar +M:AppKit.NSCell.get_AccessibilityFilename +M:AppKit.NSCell.get_AccessibilityFocused +M:AppKit.NSCell.get_AccessibilityFocusedWindow +M:AppKit.NSCell.get_AccessibilityFrame M:AppKit.NSCell.get_AccessibilityFrontmost +M:AppKit.NSCell.get_AccessibilityFullScreenButton +M:AppKit.NSCell.get_AccessibilityGrowArea +M:AppKit.NSCell.get_AccessibilityHandles +M:AppKit.NSCell.get_AccessibilityHeader +M:AppKit.NSCell.get_AccessibilityHelp M:AppKit.NSCell.get_AccessibilityHidden +M:AppKit.NSCell.get_AccessibilityHorizontalScrollBar +M:AppKit.NSCell.get_AccessibilityHorizontalUnitDescription +M:AppKit.NSCell.get_AccessibilityHorizontalUnits +M:AppKit.NSCell.get_AccessibilityIdentifier +M:AppKit.NSCell.get_AccessibilityIncrementButton +M:AppKit.NSCell.get_AccessibilityIndex +M:AppKit.NSCell.get_AccessibilityInsertionPointLineNumber M:AppKit.NSCell.get_AccessibilityIsIgnored +M:AppKit.NSCell.get_AccessibilityLabel +M:AppKit.NSCell.get_AccessibilityLabelUIElements +M:AppKit.NSCell.get_AccessibilityLabelValue +M:AppKit.NSCell.get_AccessibilityLinkedUIElements M:AppKit.NSCell.get_AccessibilityMain +M:AppKit.NSCell.get_AccessibilityMainWindow +M:AppKit.NSCell.get_AccessibilityMarkerGroupUIElement +M:AppKit.NSCell.get_AccessibilityMarkerTypeDescription +M:AppKit.NSCell.get_AccessibilityMarkerUIElements +M:AppKit.NSCell.get_AccessibilityMarkerValues +M:AppKit.NSCell.get_AccessibilityMaxValue +M:AppKit.NSCell.get_AccessibilityMenuBar +M:AppKit.NSCell.get_AccessibilityMinimizeButton M:AppKit.NSCell.get_AccessibilityMinimized +M:AppKit.NSCell.get_AccessibilityMinValue M:AppKit.NSCell.get_AccessibilityModal +M:AppKit.NSCell.get_AccessibilityNextContents M:AppKit.NSCell.get_AccessibilityNotifiesWhenDestroyed +M:AppKit.NSCell.get_AccessibilityNumberOfCharacters M:AppKit.NSCell.get_AccessibilityOrderedByRow +M:AppKit.NSCell.get_AccessibilityOrientation +M:AppKit.NSCell.get_AccessibilityOverflowButton M:AppKit.NSCell.get_AccessibilityParameterizedAttributeNames +M:AppKit.NSCell.get_AccessibilityParent +M:AppKit.NSCell.get_AccessibilityPlaceholderValue +M:AppKit.NSCell.get_AccessibilityPreviousContents M:AppKit.NSCell.get_AccessibilityProtectedContent +M:AppKit.NSCell.get_AccessibilityProxy M:AppKit.NSCell.get_AccessibilityRequired +M:AppKit.NSCell.get_AccessibilityRole +M:AppKit.NSCell.get_AccessibilityRoleDescription +M:AppKit.NSCell.get_AccessibilityRowCount +M:AppKit.NSCell.get_AccessibilityRowHeaderUIElements +M:AppKit.NSCell.get_AccessibilityRowIndexRange +M:AppKit.NSCell.get_AccessibilityRows +M:AppKit.NSCell.get_AccessibilityRulerMarkerType +M:AppKit.NSCell.get_AccessibilitySearchButton +M:AppKit.NSCell.get_AccessibilitySearchMenu M:AppKit.NSCell.get_AccessibilitySelected +M:AppKit.NSCell.get_AccessibilitySelectedCells +M:AppKit.NSCell.get_AccessibilitySelectedChildren +M:AppKit.NSCell.get_AccessibilitySelectedColumns +M:AppKit.NSCell.get_AccessibilitySelectedRows +M:AppKit.NSCell.get_AccessibilitySelectedText +M:AppKit.NSCell.get_AccessibilitySelectedTextRange +M:AppKit.NSCell.get_AccessibilitySelectedTextRanges +M:AppKit.NSCell.get_AccessibilityServesAsTitleForUIElements +M:AppKit.NSCell.get_AccessibilitySharedCharacterRange +M:AppKit.NSCell.get_AccessibilitySharedFocusElements +M:AppKit.NSCell.get_AccessibilitySharedTextUIElements +M:AppKit.NSCell.get_AccessibilityShownMenu +M:AppKit.NSCell.get_AccessibilitySortDirection +M:AppKit.NSCell.get_AccessibilitySplitters +M:AppKit.NSCell.get_AccessibilitySubrole +M:AppKit.NSCell.get_AccessibilityTabs +M:AppKit.NSCell.get_AccessibilityTitle +M:AppKit.NSCell.get_AccessibilityTitleUIElement +M:AppKit.NSCell.get_AccessibilityToolbarButton +M:AppKit.NSCell.get_AccessibilityTopLevelUIElement +M:AppKit.NSCell.get_AccessibilityUnitDescription +M:AppKit.NSCell.get_AccessibilityUnits +M:AppKit.NSCell.get_AccessibilityUrl +M:AppKit.NSCell.get_AccessibilityUserInputLabels +M:AppKit.NSCell.get_AccessibilityValue +M:AppKit.NSCell.get_AccessibilityValueDescription +M:AppKit.NSCell.get_AccessibilityVerticalScrollBar +M:AppKit.NSCell.get_AccessibilityVerticalUnitDescription +M:AppKit.NSCell.get_AccessibilityVerticalUnits +M:AppKit.NSCell.get_AccessibilityVisibleCells +M:AppKit.NSCell.get_AccessibilityVisibleCharacterRange +M:AppKit.NSCell.get_AccessibilityVisibleChildren +M:AppKit.NSCell.get_AccessibilityVisibleColumns +M:AppKit.NSCell.get_AccessibilityVisibleRows +M:AppKit.NSCell.get_AccessibilityWarningValue +M:AppKit.NSCell.get_AccessibilityWindow +M:AppKit.NSCell.get_AccessibilityWindows +M:AppKit.NSCell.get_AccessibilityZoomButton M:AppKit.NSCell.get_AnnouncementRequestedNotification M:AppKit.NSCell.get_ApplicationActivatedNotification M:AppKit.NSCell.get_ApplicationDeactivatedNotification @@ -26488,6 +26972,7 @@ M:AppKit.NSCell.get_Enabled M:AppKit.NSCell.get_FocusedWindowChangedNotification M:AppKit.NSCell.get_HelpTagCreatedNotification M:AppKit.NSCell.get_Highlighted +M:AppKit.NSCell.get_Identifier M:AppKit.NSCell.get_IsContinuous M:AppKit.NSCell.get_IsOpaque M:AppKit.NSCell.get_LayoutChangedNotification @@ -26519,12 +27004,27 @@ M:AppKit.NSCell.get_WindowResizedNotification M:AppKit.NSCell.GetAccessibilityActionDescription(Foundation.NSString) M:AppKit.NSCell.GetAccessibilityArrayAttributeCount(Foundation.NSString) M:AppKit.NSCell.GetAccessibilityArrayAttributeValues(Foundation.NSString,System.UIntPtr,System.UIntPtr) +M:AppKit.NSCell.GetAccessibilityAttributedString(Foundation.NSRange) +M:AppKit.NSCell.GetAccessibilityCellForColumn(System.IntPtr,System.IntPtr) M:AppKit.NSCell.GetAccessibilityFocusedUIElement +M:AppKit.NSCell.GetAccessibilityFrame(Foundation.NSRange) M:AppKit.NSCell.GetAccessibilityHitTest(CoreGraphics.CGPoint) M:AppKit.NSCell.GetAccessibilityIndexOfChild(Foundation.NSObject) +M:AppKit.NSCell.GetAccessibilityLayoutForScreen(CoreGraphics.CGPoint) +M:AppKit.NSCell.GetAccessibilityLayoutForScreen(CoreGraphics.CGSize) +M:AppKit.NSCell.GetAccessibilityLine(System.IntPtr) +M:AppKit.NSCell.GetAccessibilityRange(CoreGraphics.CGPoint) +M:AppKit.NSCell.GetAccessibilityRange(System.IntPtr) +M:AppKit.NSCell.GetAccessibilityRangeForLine(System.IntPtr) +M:AppKit.NSCell.GetAccessibilityRtf(Foundation.NSRange) +M:AppKit.NSCell.GetAccessibilityScreenForLayout(CoreGraphics.CGPoint) +M:AppKit.NSCell.GetAccessibilityScreenForLayout(CoreGraphics.CGSize) +M:AppKit.NSCell.GetAccessibilityString(Foundation.NSRange) +M:AppKit.NSCell.GetAccessibilityStyleRange(System.IntPtr) M:AppKit.NSCell.GetAccessibilityValue(Foundation.NSString,Foundation.NSObject) M:AppKit.NSCell.GetAccessibilityValue(Foundation.NSString) M:AppKit.NSCell.IsAccessibilityAttributeSettable(Foundation.NSString) +M:AppKit.NSCell.IsAccessibilitySelectorAllowed(ObjCRuntime.Selector) M:AppKit.NSCell.Notifications.ObserveAnnouncementRequested(Foundation.NSObject,System.EventHandler{Foundation.NSNotificationEventArgs}) M:AppKit.NSCell.Notifications.ObserveAnnouncementRequested(System.EventHandler{Foundation.NSNotificationEventArgs}) M:AppKit.NSCell.Notifications.ObserveApplicationActivated(Foundation.NSObject,System.EventHandler{Foundation.NSNotificationEventArgs}) @@ -26769,11 +27269,13 @@ M:AppKit.NSCIImageRep.#ctor(Foundation.NSObjectFlag) M:AppKit.NSCIImageRep.#ctor(ObjCRuntime.NativeHandle) M:AppKit.NSCIImageRep.get_ClassHandle M:AppKit.NSClickGestureRecognizer.#ctor +M:AppKit.NSClickGestureRecognizer.#ctor(Foundation.NSCoder) M:AppKit.NSClickGestureRecognizer.#ctor(Foundation.NSObject,ObjCRuntime.Selector) M:AppKit.NSClickGestureRecognizer.#ctor(Foundation.NSObjectFlag) M:AppKit.NSClickGestureRecognizer.#ctor(ObjCRuntime.NativeHandle) M:AppKit.NSClickGestureRecognizer.#ctor(System.Action) M:AppKit.NSClickGestureRecognizer.#ctor(System.Action{AppKit.NSClickGestureRecognizer}) +M:AppKit.NSClickGestureRecognizer.EncodeTo(Foundation.NSCoder) M:AppKit.NSClickGestureRecognizer.get_ClassHandle M:AppKit.NSClickGestureRecognizer.set_ButtonMask(System.UIntPtr) M:AppKit.NSClickGestureRecognizer.set_NumberOfClicksRequired(System.IntPtr) @@ -26960,18 +27462,26 @@ M:AppKit.NSCollectionView.#ctor(CoreGraphics.CGRect) M:AppKit.NSCollectionView.#ctor(Foundation.NSCoder) M:AppKit.NSCollectionView.#ctor(Foundation.NSObjectFlag) M:AppKit.NSCollectionView.#ctor(ObjCRuntime.NativeHandle) +M:AppKit.NSCollectionView.ConcludeDragOperation(AppKit.INSDraggingInfo) M:AppKit.NSCollectionView.Dispose(System.Boolean) M:AppKit.NSCollectionView.DraggedImageBeganAt(AppKit.NSImage,CoreGraphics.CGPoint) M:AppKit.NSCollectionView.DraggedImageEndedAtDeposited(AppKit.NSImage,CoreGraphics.CGPoint,System.Boolean) M:AppKit.NSCollectionView.DraggedImageEndedAtOperation(AppKit.NSImage,CoreGraphics.CGPoint,AppKit.NSDragOperation) M:AppKit.NSCollectionView.DraggedImageMovedTo(AppKit.NSImage,CoreGraphics.CGPoint) +M:AppKit.NSCollectionView.DraggingEnded(AppKit.INSDraggingInfo) +M:AppKit.NSCollectionView.DraggingEntered(AppKit.INSDraggingInfo) +M:AppKit.NSCollectionView.DraggingExited(AppKit.INSDraggingInfo) M:AppKit.NSCollectionView.DraggingSourceOperationMaskForLocal(System.Boolean) +M:AppKit.NSCollectionView.DraggingUpdated(AppKit.INSDraggingInfo) M:AppKit.NSCollectionView.get_ClassHandle M:AppKit.NSCollectionView.get_Delegate M:AppKit.NSCollectionView.get_IgnoreModifierKeysWhileDragging M:AppKit.NSCollectionView.get_IsFirstResponder M:AppKit.NSCollectionView.get_Selectable +M:AppKit.NSCollectionView.get_WantsPeriodicDraggingUpdates M:AppKit.NSCollectionView.NamesOfPromisedFilesDroppedAtDestination(Foundation.NSUrl) +M:AppKit.NSCollectionView.PerformDragOperation(AppKit.INSDraggingInfo) +M:AppKit.NSCollectionView.PrepareForDragOperation(AppKit.INSDraggingInfo) M:AppKit.NSCollectionView.RegisterClassForItem(System.Type,System.String) M:AppKit.NSCollectionView.RegisterClassForSupplementaryView(System.Type,Foundation.NSString,System.String) M:AppKit.NSCollectionView.set_AllowsEmptySelection(System.Boolean) @@ -27001,6 +27511,7 @@ M:AppKit.NSCollectionViewCompositionalLayout.set_Configuration(AppKit.NSCollecti M:AppKit.NSCollectionViewCompositionalLayoutConfiguration.#ctor M:AppKit.NSCollectionViewCompositionalLayoutConfiguration.#ctor(Foundation.NSObjectFlag) M:AppKit.NSCollectionViewCompositionalLayoutConfiguration.#ctor(ObjCRuntime.NativeHandle) +M:AppKit.NSCollectionViewCompositionalLayoutConfiguration.Copy(Foundation.NSZone) M:AppKit.NSCollectionViewCompositionalLayoutConfiguration.get_ClassHandle M:AppKit.NSCollectionViewCompositionalLayoutConfiguration.set_BoundarySupplementaryItems(AppKit.NSCollectionLayoutBoundarySupplementaryItem[]) M:AppKit.NSCollectionViewCompositionalLayoutConfiguration.set_InterSectionSpacing(System.Runtime.InteropServices.NFloat) @@ -27123,6 +27634,10 @@ M:AppKit.NSCollectionViewDelegateFlowLayout.WriteItems(AppKit.NSCollectionView,F M:AppKit.NSCollectionViewDiffableDataSource`2.#ctor(Foundation.NSObjectFlag) M:AppKit.NSCollectionViewDiffableDataSource`2.#ctor(ObjCRuntime.NativeHandle) M:AppKit.NSCollectionViewDiffableDataSource`2.get_ClassHandle +M:AppKit.NSCollectionViewDiffableDataSource`2.GetItem(AppKit.NSCollectionView,Foundation.NSIndexPath) +M:AppKit.NSCollectionViewDiffableDataSource`2.GetNumberofItems(AppKit.NSCollectionView,System.IntPtr) +M:AppKit.NSCollectionViewDiffableDataSource`2.GetNumberOfSections(AppKit.NSCollectionView) +M:AppKit.NSCollectionViewDiffableDataSource`2.GetView(AppKit.NSCollectionView,Foundation.NSString,Foundation.NSIndexPath) M:AppKit.NSCollectionViewDiffableDataSource`2.set_SupplementaryViewProvider(AppKit.NSCollectionViewDiffableDataSourceSupplementaryViewProvider) M:AppKit.NSCollectionViewDiffableDataSourceItemProvider.#ctor(System.Object,System.IntPtr) M:AppKit.NSCollectionViewDiffableDataSourceItemProvider.BeginInvoke(AppKit.NSCollectionView,Foundation.NSIndexPath,Foundation.NSObject,System.AsyncCallback,System.Object) @@ -27186,6 +27701,7 @@ M:AppKit.NSCollectionViewItem.#ctor(Foundation.NSCoder) M:AppKit.NSCollectionViewItem.#ctor(Foundation.NSObjectFlag) M:AppKit.NSCollectionViewItem.#ctor(ObjCRuntime.NativeHandle) M:AppKit.NSCollectionViewItem.#ctor(System.String,Foundation.NSBundle) +M:AppKit.NSCollectionViewItem.Copy(Foundation.NSZone) M:AppKit.NSCollectionViewItem.Dispose(System.Boolean) M:AppKit.NSCollectionViewItem.get_ClassHandle M:AppKit.NSCollectionViewItem.get_Selected @@ -27194,14 +27710,17 @@ M:AppKit.NSCollectionViewItem.set_ImageView(AppKit.NSImageView) M:AppKit.NSCollectionViewItem.set_Selected(System.Boolean) M:AppKit.NSCollectionViewItem.set_TextField(AppKit.NSTextField) M:AppKit.NSCollectionViewLayout.#ctor +M:AppKit.NSCollectionViewLayout.#ctor(Foundation.NSCoder) M:AppKit.NSCollectionViewLayout.#ctor(Foundation.NSObjectFlag) M:AppKit.NSCollectionViewLayout.#ctor(ObjCRuntime.NativeHandle) M:AppKit.NSCollectionViewLayout.Dispose(System.Boolean) +M:AppKit.NSCollectionViewLayout.EncodeTo(Foundation.NSCoder) M:AppKit.NSCollectionViewLayout.get_ClassHandle M:AppKit.NSCollectionViewLayout.RegisterClassForDecorationView(System.Type,Foundation.NSString) M:AppKit.NSCollectionViewLayoutAttributes.#ctor M:AppKit.NSCollectionViewLayoutAttributes.#ctor(Foundation.NSObjectFlag) M:AppKit.NSCollectionViewLayoutAttributes.#ctor(ObjCRuntime.NativeHandle) +M:AppKit.NSCollectionViewLayoutAttributes.Copy(Foundation.NSZone) M:AppKit.NSCollectionViewLayoutAttributes.get_ClassHandle M:AppKit.NSCollectionViewLayoutAttributes.get_Hidden M:AppKit.NSCollectionViewLayoutAttributes.set_Alpha(System.Runtime.InteropServices.NFloat) @@ -27230,6 +27749,7 @@ M:AppKit.NSCollectionViewUpdateItem.#ctor(ObjCRuntime.NativeHandle) M:AppKit.NSCollectionViewUpdateItem.get_ClassHandle M:AppKit.NSColor.#ctor(Foundation.NSObjectFlag) M:AppKit.NSColor.#ctor(ObjCRuntime.NativeHandle) +M:AppKit.NSColor.Copy(Foundation.NSZone) M:AppKit.NSColor.EncodeTo(Foundation.NSCoder) M:AppKit.NSColor.FromCalibratedHsb(System.Byte,System.Byte,System.Byte) M:AppKit.NSColor.FromCalibratedHsb(System.Int32,System.Int32,System.Int32) @@ -27271,6 +27791,11 @@ M:AppKit.NSColor.get_AccessibilityName M:AppKit.NSColor.get_ClassHandle M:AppKit.NSColor.get_SystemColorsChanged M:AppKit.NSColor.GetComponents(System.Runtime.InteropServices.NFloat[]@) +M:AppKit.NSColor.GetPasteboardPropertyListForType(System.String) +M:AppKit.NSColor.GetReadableTypesForPasteboard(AppKit.NSPasteboard) +M:AppKit.NSColor.GetReadingOptionsForType(System.String,AppKit.NSPasteboard) +M:AppKit.NSColor.GetWritableTypesForPasteboard(AppKit.NSPasteboard) +M:AppKit.NSColor.GetWritingOptionsForType(System.String,AppKit.NSPasteboard) M:AppKit.NSColor.Notifications.ObserveSystemColorsChanged(Foundation.NSObject,System.EventHandler{Foundation.NSNotificationEventArgs}) M:AppKit.NSColor.Notifications.ObserveSystemColorsChanged(System.EventHandler{Foundation.NSNotificationEventArgs}) M:AppKit.NSColor.set_IgnoresAlpha(System.Boolean) @@ -27503,6 +28028,8 @@ M:AppKit.NSControlCommand.EndInvoke(System.IAsyncResult) M:AppKit.NSControlCommand.Invoke(AppKit.NSControl,AppKit.NSTextView,ObjCRuntime.Selector) M:AppKit.NSController.#ctor(Foundation.NSObjectFlag) M:AppKit.NSController.#ctor(ObjCRuntime.NativeHandle) +M:AppKit.NSController.CommitEditing(Foundation.NSError@) +M:AppKit.NSController.EncodeTo(Foundation.NSCoder) M:AppKit.NSController.get_ClassHandle M:AppKit.NSController.get_IsEditing M:AppKit.NSControlText.#ctor(System.Object,System.IntPtr) @@ -27729,6 +28256,7 @@ M:AppKit.NSDockTilePlugIn.DockMenu M:AppKit.NSDockTilePlugIn.SetDockTile(AppKit.NSDockTile) M:AppKit.NSDocument.#ctor(Foundation.NSObjectFlag) M:AppKit.NSDocument.#ctor(ObjCRuntime.NativeHandle) +M:AppKit.NSDocument.AccommodatePresentedSubitemDeletion(Foundation.NSUrl,System.Action{Foundation.NSError}) M:AppKit.NSDocument.DuplicateCallback.#ctor(System.Object,System.IntPtr) M:AppKit.NSDocument.DuplicateCallback.BeginInvoke(AppKit.NSDocument,System.Boolean,System.AsyncCallback,System.Object) M:AppKit.NSDocument.DuplicateCallback.EndInvoke(System.IAsyncResult) @@ -27741,6 +28269,16 @@ M:AppKit.NSDocument.get_IsDraft M:AppKit.NSDocument.get_IsEntireFileLoaded M:AppKit.NSDocument.get_IsInViewingMode M:AppKit.NSDocument.get_IsLocked +M:AppKit.NSDocument.get_PresentedItemOperationQueue +M:AppKit.NSDocument.get_PrimaryPresentedItemUrl +M:AppKit.NSDocument.ObjectDidBeginEditing(AppKit.INSEditor) +M:AppKit.NSDocument.ObjectDidEndEditing(AppKit.INSEditor) +M:AppKit.NSDocument.PresentedSubitemAppeared(Foundation.NSUrl) +M:AppKit.NSDocument.PresentedSubitemChanged(Foundation.NSUrl) +M:AppKit.NSDocument.PresentedSubitemGainedVersion(Foundation.NSUrl,Foundation.NSFileVersion) +M:AppKit.NSDocument.PresentedSubitemLostVersion(Foundation.NSUrl,Foundation.NSFileVersion) +M:AppKit.NSDocument.PresentedSubitemMoved(Foundation.NSUrl,Foundation.NSUrl) +M:AppKit.NSDocument.PresentedSubitemResolvedConflictVersion(Foundation.NSUrl,Foundation.NSFileVersion) M:AppKit.NSDocument.RestoreUserActivityState(Foundation.NSUserActivity) M:AppKit.NSDocument.set_AutosavedContentsFileUrl(Foundation.NSUrl) M:AppKit.NSDocument.set_FileModificationDate(Foundation.NSDate) @@ -27754,15 +28292,18 @@ M:AppKit.NSDocument.set_UndoManager(Foundation.NSUndoManager) M:AppKit.NSDocument.set_UserActivity(Foundation.NSUserActivity) M:AppKit.NSDocument.ShareDocumentAsync(AppKit.NSSharingService) M:AppKit.NSDocument.StopBrowsingVersionsAsync +M:AppKit.NSDocument.ValidateMenuItem(AppKit.NSMenuItem) M:AppKit.NSDocumentCompletionHandler.#ctor(System.Object,System.IntPtr) M:AppKit.NSDocumentCompletionHandler.BeginInvoke(System.IntPtr,System.AsyncCallback,System.Object) M:AppKit.NSDocumentCompletionHandler.EndInvoke(System.IAsyncResult) M:AppKit.NSDocumentCompletionHandler.Invoke(System.IntPtr) M:AppKit.NSDocumentController.#ctor(Foundation.NSObjectFlag) M:AppKit.NSDocumentController.#ctor(ObjCRuntime.NativeHandle) +M:AppKit.NSDocumentController.EncodeTo(Foundation.NSCoder) M:AppKit.NSDocumentController.get_ClassHandle M:AppKit.NSDocumentController.RestoreWindow(System.String,Foundation.NSCoder,AppKit.NSWindowCompletionHandler) M:AppKit.NSDocumentController.set_AutosavingDelay(System.Double) +M:AppKit.NSDocumentController.ValidateMenuItem(AppKit.NSMenuItem) M:AppKit.NSDocumentControllerOpenPanelResultHandler.#ctor(System.Object,System.IntPtr) M:AppKit.NSDocumentControllerOpenPanelResultHandler.BeginInvoke(System.IntPtr,System.AsyncCallback,System.Object) M:AppKit.NSDocumentControllerOpenPanelResultHandler.EndInvoke(System.IAsyncResult) @@ -27866,26 +28407,146 @@ M:AppKit.NSDrawer.#ctor M:AppKit.NSDrawer.#ctor(Foundation.NSCoder) M:AppKit.NSDrawer.#ctor(Foundation.NSObjectFlag) M:AppKit.NSDrawer.#ctor(ObjCRuntime.NativeHandle) +M:AppKit.NSDrawer.AccessibilityPerformCancel +M:AppKit.NSDrawer.AccessibilityPerformConfirm +M:AppKit.NSDrawer.AccessibilityPerformDecrement +M:AppKit.NSDrawer.AccessibilityPerformDelete +M:AppKit.NSDrawer.AccessibilityPerformIncrement +M:AppKit.NSDrawer.AccessibilityPerformPick +M:AppKit.NSDrawer.AccessibilityPerformPress +M:AppKit.NSDrawer.AccessibilityPerformRaise +M:AppKit.NSDrawer.AccessibilityPerformShowAlternateUI +M:AppKit.NSDrawer.AccessibilityPerformShowDefaultUI +M:AppKit.NSDrawer.AccessibilityPerformShowMenu M:AppKit.NSDrawer.add_DrawerDidClose(System.EventHandler) M:AppKit.NSDrawer.add_DrawerDidOpen(System.EventHandler) M:AppKit.NSDrawer.add_DrawerWillClose(System.EventHandler) M:AppKit.NSDrawer.add_DrawerWillOpen(System.EventHandler) M:AppKit.NSDrawer.Dispose(System.Boolean) +M:AppKit.NSDrawer.get_AccessibilityActivationPoint +M:AppKit.NSDrawer.get_AccessibilityAllowedValues M:AppKit.NSDrawer.get_AccessibilityAlternateUIVisible +M:AppKit.NSDrawer.get_AccessibilityApplicationFocusedUIElement +M:AppKit.NSDrawer.get_AccessibilityAttributedUserInputLabels +M:AppKit.NSDrawer.get_AccessibilityCancelButton +M:AppKit.NSDrawer.get_AccessibilityChildren +M:AppKit.NSDrawer.get_AccessibilityChildrenInNavigationOrder +M:AppKit.NSDrawer.get_AccessibilityClearButton +M:AppKit.NSDrawer.get_AccessibilityCloseButton +M:AppKit.NSDrawer.get_AccessibilityColumnCount +M:AppKit.NSDrawer.get_AccessibilityColumnHeaderUIElements +M:AppKit.NSDrawer.get_AccessibilityColumnIndexRange +M:AppKit.NSDrawer.get_AccessibilityColumns +M:AppKit.NSDrawer.get_AccessibilityColumnTitles +M:AppKit.NSDrawer.get_AccessibilityContents +M:AppKit.NSDrawer.get_AccessibilityCriticalValue +M:AppKit.NSDrawer.get_AccessibilityCustomActions +M:AppKit.NSDrawer.get_AccessibilityCustomRotors +M:AppKit.NSDrawer.get_AccessibilityDecrementButton +M:AppKit.NSDrawer.get_AccessibilityDefaultButton M:AppKit.NSDrawer.get_AccessibilityDisclosed +M:AppKit.NSDrawer.get_AccessibilityDisclosedByRow +M:AppKit.NSDrawer.get_AccessibilityDisclosedRows +M:AppKit.NSDrawer.get_AccessibilityDisclosureLevel +M:AppKit.NSDrawer.get_AccessibilityDocument M:AppKit.NSDrawer.get_AccessibilityEdited M:AppKit.NSDrawer.get_AccessibilityElement M:AppKit.NSDrawer.get_AccessibilityEnabled M:AppKit.NSDrawer.get_AccessibilityExpanded +M:AppKit.NSDrawer.get_AccessibilityExtrasMenuBar +M:AppKit.NSDrawer.get_AccessibilityFilename +M:AppKit.NSDrawer.get_AccessibilityFocused +M:AppKit.NSDrawer.get_AccessibilityFocusedWindow +M:AppKit.NSDrawer.get_AccessibilityFrame M:AppKit.NSDrawer.get_AccessibilityFrontmost +M:AppKit.NSDrawer.get_AccessibilityFullScreenButton +M:AppKit.NSDrawer.get_AccessibilityGrowArea +M:AppKit.NSDrawer.get_AccessibilityHandles +M:AppKit.NSDrawer.get_AccessibilityHeader +M:AppKit.NSDrawer.get_AccessibilityHelp M:AppKit.NSDrawer.get_AccessibilityHidden +M:AppKit.NSDrawer.get_AccessibilityHorizontalScrollBar +M:AppKit.NSDrawer.get_AccessibilityHorizontalUnitDescription +M:AppKit.NSDrawer.get_AccessibilityHorizontalUnits +M:AppKit.NSDrawer.get_AccessibilityIdentifier +M:AppKit.NSDrawer.get_AccessibilityIncrementButton +M:AppKit.NSDrawer.get_AccessibilityIndex +M:AppKit.NSDrawer.get_AccessibilityInsertionPointLineNumber +M:AppKit.NSDrawer.get_AccessibilityLabel +M:AppKit.NSDrawer.get_AccessibilityLabelUIElements +M:AppKit.NSDrawer.get_AccessibilityLabelValue +M:AppKit.NSDrawer.get_AccessibilityLinkedUIElements M:AppKit.NSDrawer.get_AccessibilityMain +M:AppKit.NSDrawer.get_AccessibilityMainWindow +M:AppKit.NSDrawer.get_AccessibilityMarkerGroupUIElement +M:AppKit.NSDrawer.get_AccessibilityMarkerTypeDescription +M:AppKit.NSDrawer.get_AccessibilityMarkerUIElements +M:AppKit.NSDrawer.get_AccessibilityMarkerValues +M:AppKit.NSDrawer.get_AccessibilityMaxValue +M:AppKit.NSDrawer.get_AccessibilityMenuBar +M:AppKit.NSDrawer.get_AccessibilityMinimizeButton M:AppKit.NSDrawer.get_AccessibilityMinimized +M:AppKit.NSDrawer.get_AccessibilityMinValue M:AppKit.NSDrawer.get_AccessibilityModal +M:AppKit.NSDrawer.get_AccessibilityNextContents +M:AppKit.NSDrawer.get_AccessibilityNumberOfCharacters M:AppKit.NSDrawer.get_AccessibilityOrderedByRow +M:AppKit.NSDrawer.get_AccessibilityOrientation +M:AppKit.NSDrawer.get_AccessibilityOverflowButton +M:AppKit.NSDrawer.get_AccessibilityParent +M:AppKit.NSDrawer.get_AccessibilityPlaceholderValue +M:AppKit.NSDrawer.get_AccessibilityPreviousContents M:AppKit.NSDrawer.get_AccessibilityProtectedContent +M:AppKit.NSDrawer.get_AccessibilityProxy M:AppKit.NSDrawer.get_AccessibilityRequired +M:AppKit.NSDrawer.get_AccessibilityRole +M:AppKit.NSDrawer.get_AccessibilityRoleDescription +M:AppKit.NSDrawer.get_AccessibilityRowCount +M:AppKit.NSDrawer.get_AccessibilityRowHeaderUIElements +M:AppKit.NSDrawer.get_AccessibilityRowIndexRange +M:AppKit.NSDrawer.get_AccessibilityRows +M:AppKit.NSDrawer.get_AccessibilityRulerMarkerType +M:AppKit.NSDrawer.get_AccessibilitySearchButton +M:AppKit.NSDrawer.get_AccessibilitySearchMenu M:AppKit.NSDrawer.get_AccessibilitySelected +M:AppKit.NSDrawer.get_AccessibilitySelectedCells +M:AppKit.NSDrawer.get_AccessibilitySelectedChildren +M:AppKit.NSDrawer.get_AccessibilitySelectedColumns +M:AppKit.NSDrawer.get_AccessibilitySelectedRows +M:AppKit.NSDrawer.get_AccessibilitySelectedText +M:AppKit.NSDrawer.get_AccessibilitySelectedTextRange +M:AppKit.NSDrawer.get_AccessibilitySelectedTextRanges +M:AppKit.NSDrawer.get_AccessibilityServesAsTitleForUIElements +M:AppKit.NSDrawer.get_AccessibilitySharedCharacterRange +M:AppKit.NSDrawer.get_AccessibilitySharedFocusElements +M:AppKit.NSDrawer.get_AccessibilitySharedTextUIElements +M:AppKit.NSDrawer.get_AccessibilityShownMenu +M:AppKit.NSDrawer.get_AccessibilitySortDirection +M:AppKit.NSDrawer.get_AccessibilitySplitters +M:AppKit.NSDrawer.get_AccessibilitySubrole +M:AppKit.NSDrawer.get_AccessibilityTabs +M:AppKit.NSDrawer.get_AccessibilityTitle +M:AppKit.NSDrawer.get_AccessibilityTitleUIElement +M:AppKit.NSDrawer.get_AccessibilityToolbarButton +M:AppKit.NSDrawer.get_AccessibilityTopLevelUIElement +M:AppKit.NSDrawer.get_AccessibilityUnitDescription +M:AppKit.NSDrawer.get_AccessibilityUnits +M:AppKit.NSDrawer.get_AccessibilityUrl +M:AppKit.NSDrawer.get_AccessibilityUserInputLabels +M:AppKit.NSDrawer.get_AccessibilityValue +M:AppKit.NSDrawer.get_AccessibilityValueDescription +M:AppKit.NSDrawer.get_AccessibilityVerticalScrollBar +M:AppKit.NSDrawer.get_AccessibilityVerticalUnitDescription +M:AppKit.NSDrawer.get_AccessibilityVerticalUnits +M:AppKit.NSDrawer.get_AccessibilityVisibleCells +M:AppKit.NSDrawer.get_AccessibilityVisibleCharacterRange +M:AppKit.NSDrawer.get_AccessibilityVisibleChildren +M:AppKit.NSDrawer.get_AccessibilityVisibleColumns +M:AppKit.NSDrawer.get_AccessibilityVisibleRows +M:AppKit.NSDrawer.get_AccessibilityWarningValue +M:AppKit.NSDrawer.get_AccessibilityWindow +M:AppKit.NSDrawer.get_AccessibilityWindows +M:AppKit.NSDrawer.get_AccessibilityZoomButton M:AppKit.NSDrawer.get_AnnouncementRequestedNotification M:AppKit.NSDrawer.get_ApplicationActivatedNotification M:AppKit.NSDrawer.get_ApplicationDeactivatedNotification @@ -27928,6 +28589,21 @@ M:AppKit.NSDrawer.get_WindowDeminiaturizedNotification M:AppKit.NSDrawer.get_WindowMiniaturizedNotification M:AppKit.NSDrawer.get_WindowMovedNotification M:AppKit.NSDrawer.get_WindowResizedNotification +M:AppKit.NSDrawer.GetAccessibilityAttributedString(Foundation.NSRange) +M:AppKit.NSDrawer.GetAccessibilityCellForColumn(System.IntPtr,System.IntPtr) +M:AppKit.NSDrawer.GetAccessibilityFrame(Foundation.NSRange) +M:AppKit.NSDrawer.GetAccessibilityLayoutForScreen(CoreGraphics.CGPoint) +M:AppKit.NSDrawer.GetAccessibilityLayoutForScreen(CoreGraphics.CGSize) +M:AppKit.NSDrawer.GetAccessibilityLine(System.IntPtr) +M:AppKit.NSDrawer.GetAccessibilityRange(CoreGraphics.CGPoint) +M:AppKit.NSDrawer.GetAccessibilityRange(System.IntPtr) +M:AppKit.NSDrawer.GetAccessibilityRangeForLine(System.IntPtr) +M:AppKit.NSDrawer.GetAccessibilityRtf(Foundation.NSRange) +M:AppKit.NSDrawer.GetAccessibilityScreenForLayout(CoreGraphics.CGPoint) +M:AppKit.NSDrawer.GetAccessibilityScreenForLayout(CoreGraphics.CGSize) +M:AppKit.NSDrawer.GetAccessibilityString(Foundation.NSRange) +M:AppKit.NSDrawer.GetAccessibilityStyleRange(System.IntPtr) +M:AppKit.NSDrawer.IsAccessibilitySelectorAllowed(ObjCRuntime.Selector) M:AppKit.NSDrawer.Notifications.ObserveAnnouncementRequested(Foundation.NSObject,System.EventHandler{Foundation.NSNotificationEventArgs}) M:AppKit.NSDrawer.Notifications.ObserveAnnouncementRequested(System.EventHandler{Foundation.NSNotificationEventArgs}) M:AppKit.NSDrawer.Notifications.ObserveApplicationActivated(Foundation.NSObject,System.EventHandler{Foundation.NSNotificationEventArgs}) @@ -28168,8 +28844,11 @@ M:AppKit.NSEPSImageRep.#ctor(Foundation.NSObjectFlag) M:AppKit.NSEPSImageRep.#ctor(ObjCRuntime.NativeHandle) M:AppKit.NSEPSImageRep.get_ClassHandle M:AppKit.NSEvent.#ctor +M:AppKit.NSEvent.#ctor(Foundation.NSCoder) M:AppKit.NSEvent.#ctor(Foundation.NSObjectFlag) M:AppKit.NSEvent.#ctor(ObjCRuntime.NativeHandle) +M:AppKit.NSEvent.Copy(Foundation.NSZone) +M:AppKit.NSEvent.EncodeTo(Foundation.NSCoder) M:AppKit.NSEvent.get_ClassHandle M:AppKit.NSEvent.get_IsARepeat M:AppKit.NSEvent.get_IsDirectionInvertedFromDevice @@ -28189,6 +28868,9 @@ M:AppKit.NSFilePromiseProvider.#ctor(Foundation.NSObjectFlag) M:AppKit.NSFilePromiseProvider.#ctor(ObjCRuntime.NativeHandle) M:AppKit.NSFilePromiseProvider.Dispose(System.Boolean) M:AppKit.NSFilePromiseProvider.get_ClassHandle +M:AppKit.NSFilePromiseProvider.GetPasteboardPropertyListForType(System.String) +M:AppKit.NSFilePromiseProvider.GetWritableTypesForPasteboard(AppKit.NSPasteboard) +M:AppKit.NSFilePromiseProvider.GetWritingOptionsForType(System.String,AppKit.NSPasteboard) M:AppKit.NSFilePromiseProvider.set_Delegate(AppKit.INSFilePromiseProviderDelegate) M:AppKit.NSFilePromiseProvider.set_FileType(System.String) M:AppKit.NSFilePromiseProvider.set_UserInfo(Foundation.NSObject) @@ -28203,11 +28885,14 @@ M:AppKit.NSFilePromiseReceiver.#ctor M:AppKit.NSFilePromiseReceiver.#ctor(Foundation.NSObjectFlag) M:AppKit.NSFilePromiseReceiver.#ctor(ObjCRuntime.NativeHandle) M:AppKit.NSFilePromiseReceiver.get_ClassHandle +M:AppKit.NSFilePromiseReceiver.GetReadableTypesForPasteboard(AppKit.NSPasteboard) +M:AppKit.NSFilePromiseReceiver.GetReadingOptionsForType(System.String,AppKit.NSPasteboard) M:AppKit.NSFont.#ctor(Foundation.NSCoder) M:AppKit.NSFont.#ctor(Foundation.NSObjectFlag) M:AppKit.NSFont.#ctor(ObjCRuntime.NativeHandle) M:AppKit.NSFont.BoldSystemFontOfSize(System.Runtime.InteropServices.NFloat) M:AppKit.NSFont.ControlContentFontOfSize(System.Runtime.InteropServices.NFloat) +M:AppKit.NSFont.Copy(Foundation.NSZone) M:AppKit.NSFont.EncodeTo(Foundation.NSCoder) M:AppKit.NSFont.FromCTFont(CoreText.CTFont) M:AppKit.NSFont.FromDescription(AppKit.NSFontDescriptor,Foundation.NSAffineTransform) @@ -28271,8 +28956,11 @@ M:AppKit.NSFontAssetRequest.get_ClassHandle M:AppKit.NSFontChanging_Extensions.ChangeFont(AppKit.INSFontChanging,AppKit.NSFontManager) M:AppKit.NSFontChanging_Extensions.GetValidModes(AppKit.INSFontChanging,AppKit.NSFontPanel) M:AppKit.NSFontCollection.#ctor +M:AppKit.NSFontCollection.#ctor(Foundation.NSCoder) M:AppKit.NSFontCollection.#ctor(Foundation.NSObjectFlag) M:AppKit.NSFontCollection.#ctor(ObjCRuntime.NativeHandle) +M:AppKit.NSFontCollection.Copy(Foundation.NSZone) +M:AppKit.NSFontCollection.EncodeTo(Foundation.NSCoder) M:AppKit.NSFontCollection.get_ActionKey M:AppKit.NSFontCollection.get_ActionWasHidden M:AppKit.NSFontCollection.get_ActionWasRenamed @@ -28289,6 +28977,7 @@ M:AppKit.NSFontCollection.get_NameUser M:AppKit.NSFontCollection.get_OldNameKey M:AppKit.NSFontCollection.get_RemoveDuplicatesOption M:AppKit.NSFontCollection.get_VisibilityKey +M:AppKit.NSFontCollection.MutableCopy(Foundation.NSZone) M:AppKit.NSFontCollection.Notifications.ObserveChanged(Foundation.NSObject,System.EventHandler{AppKit.NSFontCollectionChangedEventArgs}) M:AppKit.NSFontCollection.Notifications.ObserveChanged(System.EventHandler{AppKit.NSFontCollectionChangedEventArgs}) M:AppKit.NSFontCollectionChangedEventArgs.#ctor(Foundation.NSNotification) @@ -28300,6 +28989,7 @@ M:AppKit.NSFontDescriptor.#ctor M:AppKit.NSFontDescriptor.#ctor(Foundation.NSCoder) M:AppKit.NSFontDescriptor.#ctor(Foundation.NSObjectFlag) M:AppKit.NSFontDescriptor.#ctor(ObjCRuntime.NativeHandle) +M:AppKit.NSFontDescriptor.Copy(Foundation.NSZone) M:AppKit.NSFontDescriptor.Create(AppKit.NSFontDescriptorSystemDesign) M:AppKit.NSFontDescriptor.EncodeTo(Foundation.NSCoder) M:AppKit.NSFontDescriptor.get_ClassHandle @@ -28316,6 +29006,7 @@ M:AppKit.NSFontManager.set_Action(ObjCRuntime.Selector) M:AppKit.NSFontManager.set_Enabled(System.Boolean) M:AppKit.NSFontManager.set_Target(Foundation.NSObject) M:AppKit.NSFontManager.set_WeakDelegate(Foundation.NSObject) +M:AppKit.NSFontManager.ValidateMenuItem(AppKit.NSMenuItem) M:AppKit.NSFontPanel.#ctor M:AppKit.NSFontPanel.#ctor(Foundation.NSCoder) M:AppKit.NSFontPanel.#ctor(Foundation.NSObjectFlag) @@ -28378,6 +29069,7 @@ M:AppKit.NSGestureRecognizer.#ctor(ObjCRuntime.NativeHandle) M:AppKit.NSGestureRecognizer.#ctor(ObjCRuntime.Selector,AppKit.NSGestureRecognizer.Token) M:AppKit.NSGestureRecognizer.#ctor(System.Action) M:AppKit.NSGestureRecognizer.Dispose(System.Boolean) +M:AppKit.NSGestureRecognizer.EncodeTo(Foundation.NSCoder) M:AppKit.NSGestureRecognizer.get_ClassHandle M:AppKit.NSGestureRecognizer.get_Delegate M:AppKit.NSGestureRecognizer.get_Enabled @@ -28436,6 +29128,7 @@ M:AppKit.NSGlyphInfo.#ctor M:AppKit.NSGlyphInfo.#ctor(Foundation.NSCoder) M:AppKit.NSGlyphInfo.#ctor(Foundation.NSObjectFlag) M:AppKit.NSGlyphInfo.#ctor(ObjCRuntime.NativeHandle) +M:AppKit.NSGlyphInfo.Copy(Foundation.NSZone) M:AppKit.NSGlyphInfo.EncodeTo(Foundation.NSCoder) M:AppKit.NSGlyphInfo.get_ClassHandle M:AppKit.NSGradient.#ctor @@ -28445,6 +29138,7 @@ M:AppKit.NSGradient.#ctor(AppKit.NSColor[],System.Single[],AppKit.NSColorSpace) M:AppKit.NSGradient.#ctor(AppKit.NSColor[],System.Single[]) M:AppKit.NSGradient.#ctor(Foundation.NSObjectFlag) M:AppKit.NSGradient.#ctor(ObjCRuntime.NativeHandle) +M:AppKit.NSGradient.Copy(Foundation.NSZone) M:AppKit.NSGradient.EncodeTo(Foundation.NSCoder) M:AppKit.NSGradient.get_ClassHandle M:AppKit.NSGraphics.BestDepth(Foundation.NSString,System.IntPtr,System.IntPtr,System.Boolean,System.Boolean@) @@ -28489,18 +29183,22 @@ M:AppKit.NSGraphicsContext.set_CurrentContext(AppKit.NSGraphicsContext) M:AppKit.NSGraphicsContext.set_ImageInterpolation(AppKit.NSImageInterpolation) M:AppKit.NSGraphicsContext.set_PatternPhase(CoreGraphics.CGPoint) M:AppKit.NSGraphicsContext.set_ShouldAntialias(System.Boolean) +M:AppKit.NSGridCell.#ctor(Foundation.NSCoder) M:AppKit.NSGridCell.#ctor(Foundation.NSObjectFlag) M:AppKit.NSGridCell.#ctor(ObjCRuntime.NativeHandle) M:AppKit.NSGridCell.Dispose(System.Boolean) +M:AppKit.NSGridCell.EncodeTo(Foundation.NSCoder) M:AppKit.NSGridCell.get_ClassHandle M:AppKit.NSGridCell.set_ContentView(AppKit.NSView) M:AppKit.NSGridCell.set_CustomPlacementConstraints(AppKit.NSLayoutConstraint[]) M:AppKit.NSGridCell.set_RowAlignment(AppKit.NSGridRowAlignment) M:AppKit.NSGridCell.set_X(AppKit.NSGridCellPlacement) M:AppKit.NSGridCell.set_Y(AppKit.NSGridCellPlacement) +M:AppKit.NSGridColumn.#ctor(Foundation.NSCoder) M:AppKit.NSGridColumn.#ctor(Foundation.NSObjectFlag) M:AppKit.NSGridColumn.#ctor(ObjCRuntime.NativeHandle) M:AppKit.NSGridColumn.Dispose(System.Boolean) +M:AppKit.NSGridColumn.EncodeTo(Foundation.NSCoder) M:AppKit.NSGridColumn.get_ClassHandle M:AppKit.NSGridColumn.get_Hidden M:AppKit.NSGridColumn.set_Hidden(System.Boolean) @@ -28508,9 +29206,11 @@ M:AppKit.NSGridColumn.set_LeadingPadding(System.Runtime.InteropServices.NFloat) M:AppKit.NSGridColumn.set_TrailingPadding(System.Runtime.InteropServices.NFloat) M:AppKit.NSGridColumn.set_Width(System.Runtime.InteropServices.NFloat) M:AppKit.NSGridColumn.set_X(AppKit.NSGridCellPlacement) +M:AppKit.NSGridRow.#ctor(Foundation.NSCoder) M:AppKit.NSGridRow.#ctor(Foundation.NSObjectFlag) M:AppKit.NSGridRow.#ctor(ObjCRuntime.NativeHandle) M:AppKit.NSGridRow.Dispose(System.Boolean) +M:AppKit.NSGridRow.EncodeTo(Foundation.NSCoder) M:AppKit.NSGridRow.get_ClassHandle M:AppKit.NSGridRow.get_Hidden M:AppKit.NSGridRow.set_BottomPadding(System.Runtime.InteropServices.NFloat) @@ -28609,6 +29309,7 @@ M:AppKit.NSImage.set_UsesEpsOnResolutionMismatch(System.Boolean) M:AppKit.NSImage.set_WeakDelegate(Foundation.NSObject) M:AppKit.NSImageCell.#ctor M:AppKit.NSImageCell.#ctor(AppKit.NSImage) +M:AppKit.NSImageCell.#ctor(Foundation.NSCoder) M:AppKit.NSImageCell.#ctor(Foundation.NSObjectFlag) M:AppKit.NSImageCell.#ctor(ObjCRuntime.NativeHandle) M:AppKit.NSImageCell.#ctor(System.String) @@ -28653,6 +29354,8 @@ M:AppKit.NSImageRect.EndInvoke(System.IAsyncResult) M:AppKit.NSImageRect.Invoke(Foundation.NSObject,CoreGraphics.CGRect) M:AppKit.NSImageRep.#ctor(Foundation.NSObjectFlag) M:AppKit.NSImageRep.#ctor(ObjCRuntime.NativeHandle) +M:AppKit.NSImageRep.Copy(Foundation.NSZone) +M:AppKit.NSImageRep.EncodeTo(Foundation.NSCoder) M:AppKit.NSImageRep.get_CGImage M:AppKit.NSImageRep.get_ClassHandle M:AppKit.NSImageRep.get_HasAlpha @@ -28673,6 +29376,7 @@ M:AppKit.NSImageResizingModeExtensions.ToNative(AppKit.NSImageResizingMode) M:AppKit.NSImageSymbolConfiguration.#ctor(Foundation.NSCoder) M:AppKit.NSImageSymbolConfiguration.#ctor(Foundation.NSObjectFlag) M:AppKit.NSImageSymbolConfiguration.#ctor(ObjCRuntime.NativeHandle) +M:AppKit.NSImageSymbolConfiguration.Copy(Foundation.NSZone) M:AppKit.NSImageSymbolConfiguration.EncodeTo(Foundation.NSCoder) M:AppKit.NSImageSymbolConfiguration.get_ClassHandle M:AppKit.NSImageView.#ctor @@ -28683,6 +29387,7 @@ M:AppKit.NSImageView.#ctor(ObjCRuntime.NativeHandle) M:AppKit.NSImageView.get_AccessibilityFocused M:AppKit.NSImageView.get_AccessibilityFrame M:AppKit.NSImageView.get_AccessibilityIdentifier +M:AppKit.NSImageView.get_AccessibilityLabel M:AppKit.NSImageView.get_AccessibilityParent M:AppKit.NSImageView.get_ClassHandle M:AppKit.NSImageView.get_Editable @@ -28697,6 +29402,7 @@ M:AppKit.NSImageView.set_ImageFrameStyle(AppKit.NSImageFrameStyle) M:AppKit.NSImageView.set_ImageScaling(AppKit.NSImageScale) M:AppKit.NSImageView.set_PreferredImageDynamicRange(AppKit.NSImageDynamicRange) M:AppKit.NSImageView.set_SymbolConfiguration(AppKit.NSImageSymbolConfiguration) +M:AppKit.NSImageView.ValidateMenuItem(AppKit.NSMenuItem) M:AppKit.NSLayerDelegateContentsScaleUpdating_Extensions.ShouldInheritContentsScale(AppKit.INSLayerDelegateContentsScaleUpdating,CoreAnimation.CALayer,System.Runtime.InteropServices.NFloat,AppKit.NSWindow) M:AppKit.NSLayoutAnchor`1.#ctor(Foundation.NSCoder) M:AppKit.NSLayoutAnchor`1.#ctor(Foundation.NSObjectFlag) @@ -28761,9 +29467,11 @@ M:AppKit.NSLayoutDimension.ConstraintLessThanOrEqualTo(AppKit.NSLayoutDimension, M:AppKit.NSLayoutDimension.ConstraintLessThanOrEqualTo(System.Runtime.InteropServices.NFloat) M:AppKit.NSLayoutDimension.get_ClassHandle M:AppKit.NSLayoutGuide.#ctor +M:AppKit.NSLayoutGuide.#ctor(Foundation.NSCoder) M:AppKit.NSLayoutGuide.#ctor(Foundation.NSObjectFlag) M:AppKit.NSLayoutGuide.#ctor(ObjCRuntime.NativeHandle) M:AppKit.NSLayoutGuide.Dispose(System.Boolean) +M:AppKit.NSLayoutGuide.EncodeTo(Foundation.NSCoder) M:AppKit.NSLayoutGuide.get_ClassHandle M:AppKit.NSLayoutGuide.set_Identifier(System.String) M:AppKit.NSLayoutGuide.set_OwningView(AppKit.NSView) @@ -29026,6 +29734,7 @@ M:AppKit.NSMatrix.get_ClassHandle M:AppKit.NSMatrix.get_Delegate M:AppKit.NSMatrix.get_Item(System.IntPtr,System.IntPtr) M:AppKit.NSMatrix.get_SelectionByRect +M:AppKit.NSMatrix.GetStringForToolTip(AppKit.NSView,System.IntPtr,CoreGraphics.CGPoint,System.IntPtr) M:AppKit.NSMatrix.remove_DoubleClick(System.EventHandler) M:AppKit.NSMatrix.set_AllowsEmptySelection(System.Boolean) M:AppKit.NSMatrix.set_AutoRecalculatesCellSize(System.Boolean) @@ -29046,6 +29755,7 @@ M:AppKit.NSMatrix.set_Prototype(AppKit.NSCell) M:AppKit.NSMatrix.set_SelectionByRect(System.Boolean) M:AppKit.NSMatrix.set_TabKeyTraversesCells(System.Boolean) M:AppKit.NSMatrix.set_WeakDelegate(Foundation.NSObject) +M:AppKit.NSMatrix.ValidateUserInterfaceItem(AppKit.INSValidatedUserInterfaceItem) M:AppKit.NSMatrixDelegate.#ctor M:AppKit.NSMatrixDelegate.#ctor(Foundation.NSObjectFlag) M:AppKit.NSMatrixDelegate.#ctor(ObjCRuntime.NativeHandle) @@ -29062,23 +29772,149 @@ M:AppKit.NSMatrixDelegate.TextShouldEndEditing(AppKit.NSControl,AppKit.NSText) M:AppKit.NSMenu.#ctor M:AppKit.NSMenu.#ctor(Foundation.NSObjectFlag) M:AppKit.NSMenu.#ctor(ObjCRuntime.NativeHandle) +M:AppKit.NSMenu.AccessibilityAddChildElement(AppKit.NSAccessibilityElement) +M:AppKit.NSMenu.AccessibilityPerformCancel +M:AppKit.NSMenu.AccessibilityPerformConfirm +M:AppKit.NSMenu.AccessibilityPerformDecrement +M:AppKit.NSMenu.AccessibilityPerformDelete +M:AppKit.NSMenu.AccessibilityPerformIncrement +M:AppKit.NSMenu.AccessibilityPerformPick +M:AppKit.NSMenu.AccessibilityPerformPress +M:AppKit.NSMenu.AccessibilityPerformRaise +M:AppKit.NSMenu.AccessibilityPerformShowAlternateUI +M:AppKit.NSMenu.AccessibilityPerformShowDefaultUI +M:AppKit.NSMenu.AccessibilityPerformShowMenu +M:AppKit.NSMenu.Copy(Foundation.NSZone) +M:AppKit.NSMenu.CreateElement(Foundation.NSString,CoreGraphics.CGRect,Foundation.NSString,Foundation.NSObject) M:AppKit.NSMenu.Dispose(System.Boolean) +M:AppKit.NSMenu.EncodeTo(Foundation.NSCoder) +M:AppKit.NSMenu.get_AccessibilityActivationPoint +M:AppKit.NSMenu.get_AccessibilityAllowedValues M:AppKit.NSMenu.get_AccessibilityAlternateUIVisible +M:AppKit.NSMenu.get_AccessibilityApplicationFocusedUIElement +M:AppKit.NSMenu.get_AccessibilityAttributedUserInputLabels +M:AppKit.NSMenu.get_AccessibilityCancelButton +M:AppKit.NSMenu.get_AccessibilityChildren +M:AppKit.NSMenu.get_AccessibilityChildrenInNavigationOrder +M:AppKit.NSMenu.get_AccessibilityClearButton +M:AppKit.NSMenu.get_AccessibilityCloseButton +M:AppKit.NSMenu.get_AccessibilityColumnCount +M:AppKit.NSMenu.get_AccessibilityColumnHeaderUIElements +M:AppKit.NSMenu.get_AccessibilityColumnIndexRange +M:AppKit.NSMenu.get_AccessibilityColumns +M:AppKit.NSMenu.get_AccessibilityColumnTitles +M:AppKit.NSMenu.get_AccessibilityContents +M:AppKit.NSMenu.get_AccessibilityCriticalValue +M:AppKit.NSMenu.get_AccessibilityCustomActions +M:AppKit.NSMenu.get_AccessibilityCustomRotors +M:AppKit.NSMenu.get_AccessibilityDecrementButton +M:AppKit.NSMenu.get_AccessibilityDefaultButton M:AppKit.NSMenu.get_AccessibilityDisclosed +M:AppKit.NSMenu.get_AccessibilityDisclosedByRow +M:AppKit.NSMenu.get_AccessibilityDisclosedRows +M:AppKit.NSMenu.get_AccessibilityDisclosureLevel +M:AppKit.NSMenu.get_AccessibilityDocument M:AppKit.NSMenu.get_AccessibilityEdited M:AppKit.NSMenu.get_AccessibilityElement M:AppKit.NSMenu.get_AccessibilityEnabled M:AppKit.NSMenu.get_AccessibilityExpanded +M:AppKit.NSMenu.get_AccessibilityExtrasMenuBar +M:AppKit.NSMenu.get_AccessibilityFilename +M:AppKit.NSMenu.get_AccessibilityFocused +M:AppKit.NSMenu.get_AccessibilityFocusedWindow +M:AppKit.NSMenu.get_AccessibilityFrame +M:AppKit.NSMenu.get_AccessibilityFrameInParentSpace M:AppKit.NSMenu.get_AccessibilityFrontmost +M:AppKit.NSMenu.get_AccessibilityFullScreenButton +M:AppKit.NSMenu.get_AccessibilityGrowArea +M:AppKit.NSMenu.get_AccessibilityHandles +M:AppKit.NSMenu.get_AccessibilityHeader +M:AppKit.NSMenu.get_AccessibilityHelp M:AppKit.NSMenu.get_AccessibilityHidden +M:AppKit.NSMenu.get_AccessibilityHorizontalScrollBar +M:AppKit.NSMenu.get_AccessibilityHorizontalUnitDescription +M:AppKit.NSMenu.get_AccessibilityHorizontalUnits +M:AppKit.NSMenu.get_AccessibilityIdentifier +M:AppKit.NSMenu.get_AccessibilityIncrementButton +M:AppKit.NSMenu.get_AccessibilityIndex +M:AppKit.NSMenu.get_AccessibilityInsertionPointLineNumber +M:AppKit.NSMenu.get_AccessibilityLabel +M:AppKit.NSMenu.get_AccessibilityLabelUIElements +M:AppKit.NSMenu.get_AccessibilityLabelValue +M:AppKit.NSMenu.get_AccessibilityLinkedUIElements M:AppKit.NSMenu.get_AccessibilityMain +M:AppKit.NSMenu.get_AccessibilityMainWindow +M:AppKit.NSMenu.get_AccessibilityMarkerGroupUIElement +M:AppKit.NSMenu.get_AccessibilityMarkerTypeDescription +M:AppKit.NSMenu.get_AccessibilityMarkerUIElements +M:AppKit.NSMenu.get_AccessibilityMarkerValues +M:AppKit.NSMenu.get_AccessibilityMaxValue +M:AppKit.NSMenu.get_AccessibilityMenuBar +M:AppKit.NSMenu.get_AccessibilityMinimizeButton M:AppKit.NSMenu.get_AccessibilityMinimized +M:AppKit.NSMenu.get_AccessibilityMinValue M:AppKit.NSMenu.get_AccessibilityModal +M:AppKit.NSMenu.get_AccessibilityNextContents +M:AppKit.NSMenu.get_AccessibilityNumberOfCharacters M:AppKit.NSMenu.get_AccessibilityOrderedByRow +M:AppKit.NSMenu.get_AccessibilityOrientation +M:AppKit.NSMenu.get_AccessibilityOverflowButton +M:AppKit.NSMenu.get_AccessibilityParent +M:AppKit.NSMenu.get_AccessibilityPlaceholderValue +M:AppKit.NSMenu.get_AccessibilityPreviousContents M:AppKit.NSMenu.get_AccessibilityProtectedContent +M:AppKit.NSMenu.get_AccessibilityProxy M:AppKit.NSMenu.get_AccessibilityRequired +M:AppKit.NSMenu.get_AccessibilityRole +M:AppKit.NSMenu.get_AccessibilityRoleDescription +M:AppKit.NSMenu.get_AccessibilityRowCount +M:AppKit.NSMenu.get_AccessibilityRowHeaderUIElements +M:AppKit.NSMenu.get_AccessibilityRowIndexRange +M:AppKit.NSMenu.get_AccessibilityRows +M:AppKit.NSMenu.get_AccessibilityRulerMarkerType +M:AppKit.NSMenu.get_AccessibilitySearchButton +M:AppKit.NSMenu.get_AccessibilitySearchMenu M:AppKit.NSMenu.get_AccessibilitySelected +M:AppKit.NSMenu.get_AccessibilitySelectedCells +M:AppKit.NSMenu.get_AccessibilitySelectedChildren +M:AppKit.NSMenu.get_AccessibilitySelectedColumns +M:AppKit.NSMenu.get_AccessibilitySelectedRows +M:AppKit.NSMenu.get_AccessibilitySelectedText +M:AppKit.NSMenu.get_AccessibilitySelectedTextRange +M:AppKit.NSMenu.get_AccessibilitySelectedTextRanges +M:AppKit.NSMenu.get_AccessibilityServesAsTitleForUIElements +M:AppKit.NSMenu.get_AccessibilitySharedCharacterRange +M:AppKit.NSMenu.get_AccessibilitySharedFocusElements +M:AppKit.NSMenu.get_AccessibilitySharedTextUIElements +M:AppKit.NSMenu.get_AccessibilityShownMenu +M:AppKit.NSMenu.get_AccessibilitySortDirection +M:AppKit.NSMenu.get_AccessibilitySplitters +M:AppKit.NSMenu.get_AccessibilitySubrole +M:AppKit.NSMenu.get_AccessibilityTabs +M:AppKit.NSMenu.get_AccessibilityTitle +M:AppKit.NSMenu.get_AccessibilityTitleUIElement +M:AppKit.NSMenu.get_AccessibilityToolbarButton +M:AppKit.NSMenu.get_AccessibilityTopLevelUIElement +M:AppKit.NSMenu.get_AccessibilityUnitDescription +M:AppKit.NSMenu.get_AccessibilityUnits +M:AppKit.NSMenu.get_AccessibilityUrl +M:AppKit.NSMenu.get_AccessibilityUserInputLabels +M:AppKit.NSMenu.get_AccessibilityValue +M:AppKit.NSMenu.get_AccessibilityValueDescription +M:AppKit.NSMenu.get_AccessibilityVerticalScrollBar +M:AppKit.NSMenu.get_AccessibilityVerticalUnitDescription +M:AppKit.NSMenu.get_AccessibilityVerticalUnits +M:AppKit.NSMenu.get_AccessibilityVisibleCells +M:AppKit.NSMenu.get_AccessibilityVisibleCharacterRange +M:AppKit.NSMenu.get_AccessibilityVisibleChildren +M:AppKit.NSMenu.get_AccessibilityVisibleColumns +M:AppKit.NSMenu.get_AccessibilityVisibleRows +M:AppKit.NSMenu.get_AccessibilityWarningValue +M:AppKit.NSMenu.get_AccessibilityWindow +M:AppKit.NSMenu.get_AccessibilityWindows +M:AppKit.NSMenu.get_AccessibilityZoomButton M:AppKit.NSMenu.get_AnnouncementRequestedNotification +M:AppKit.NSMenu.get_Appearance M:AppKit.NSMenu.get_ApplicationActivatedNotification M:AppKit.NSMenu.get_ApplicationDeactivatedNotification M:AppKit.NSMenu.get_ApplicationHiddenNotification @@ -29093,8 +29929,10 @@ M:AppKit.NSMenu.get_DidEndTrackingNotification M:AppKit.NSMenu.get_DidRemoveItemNotification M:AppKit.NSMenu.get_DidSendActionNotification M:AppKit.NSMenu.get_DrawerCreatedNotification +M:AppKit.NSMenu.get_EffectiveAppearance M:AppKit.NSMenu.get_FocusedWindowChangedNotification M:AppKit.NSMenu.get_HelpTagCreatedNotification +M:AppKit.NSMenu.get_Identifier M:AppKit.NSMenu.get_IsTornOff M:AppKit.NSMenu.get_LayoutChangedNotification M:AppKit.NSMenu.get_MainWindowChangedNotification @@ -29121,7 +29959,22 @@ M:AppKit.NSMenu.get_WindowDeminiaturizedNotification M:AppKit.NSMenu.get_WindowMiniaturizedNotification M:AppKit.NSMenu.get_WindowMovedNotification M:AppKit.NSMenu.get_WindowResizedNotification +M:AppKit.NSMenu.GetAccessibilityAttributedString(Foundation.NSRange) +M:AppKit.NSMenu.GetAccessibilityCellForColumn(System.IntPtr,System.IntPtr) +M:AppKit.NSMenu.GetAccessibilityFrame(Foundation.NSRange) +M:AppKit.NSMenu.GetAccessibilityLayoutForScreen(CoreGraphics.CGPoint) +M:AppKit.NSMenu.GetAccessibilityLayoutForScreen(CoreGraphics.CGSize) +M:AppKit.NSMenu.GetAccessibilityLine(System.IntPtr) +M:AppKit.NSMenu.GetAccessibilityRange(CoreGraphics.CGPoint) +M:AppKit.NSMenu.GetAccessibilityRange(System.IntPtr) +M:AppKit.NSMenu.GetAccessibilityRangeForLine(System.IntPtr) +M:AppKit.NSMenu.GetAccessibilityRtf(Foundation.NSRange) +M:AppKit.NSMenu.GetAccessibilityScreenForLayout(CoreGraphics.CGPoint) +M:AppKit.NSMenu.GetAccessibilityScreenForLayout(CoreGraphics.CGSize) +M:AppKit.NSMenu.GetAccessibilityString(Foundation.NSRange) +M:AppKit.NSMenu.GetAccessibilityStyleRange(System.IntPtr) M:AppKit.NSMenu.InsertItem(System.String,System.String,System.IntPtr) +M:AppKit.NSMenu.IsAccessibilitySelectorAllowed(ObjCRuntime.Selector) M:AppKit.NSMenu.Notifications.ObserveAnnouncementRequested(Foundation.NSObject,System.EventHandler{Foundation.NSNotificationEventArgs}) M:AppKit.NSMenu.Notifications.ObserveAnnouncementRequested(System.EventHandler{Foundation.NSNotificationEventArgs}) M:AppKit.NSMenu.Notifications.ObserveApplicationActivated(Foundation.NSObject,System.EventHandler{Foundation.NSNotificationEventArgs}) @@ -29371,23 +30224,148 @@ M:AppKit.NSMenuItem.#ctor(System.String,System.String,System.EventHandler,System M:AppKit.NSMenuItem.#ctor(System.String,System.String,System.EventHandler) M:AppKit.NSMenuItem.#ctor(System.String,System.String) M:AppKit.NSMenuItem.#ctor(System.String) +M:AppKit.NSMenuItem.AccessibilityAddChildElement(AppKit.NSAccessibilityElement) +M:AppKit.NSMenuItem.AccessibilityPerformCancel +M:AppKit.NSMenuItem.AccessibilityPerformConfirm +M:AppKit.NSMenuItem.AccessibilityPerformDecrement +M:AppKit.NSMenuItem.AccessibilityPerformDelete +M:AppKit.NSMenuItem.AccessibilityPerformIncrement +M:AppKit.NSMenuItem.AccessibilityPerformPick +M:AppKit.NSMenuItem.AccessibilityPerformPress +M:AppKit.NSMenuItem.AccessibilityPerformRaise +M:AppKit.NSMenuItem.AccessibilityPerformShowAlternateUI +M:AppKit.NSMenuItem.AccessibilityPerformShowDefaultUI +M:AppKit.NSMenuItem.AccessibilityPerformShowMenu M:AppKit.NSMenuItem.add_Activated(System.EventHandler) +M:AppKit.NSMenuItem.Copy(Foundation.NSZone) +M:AppKit.NSMenuItem.CreateElement(Foundation.NSString,CoreGraphics.CGRect,Foundation.NSString,Foundation.NSObject) M:AppKit.NSMenuItem.Dispose(System.Boolean) +M:AppKit.NSMenuItem.EncodeTo(Foundation.NSCoder) +M:AppKit.NSMenuItem.get_AccessibilityActivationPoint +M:AppKit.NSMenuItem.get_AccessibilityAllowedValues M:AppKit.NSMenuItem.get_AccessibilityAlternateUIVisible +M:AppKit.NSMenuItem.get_AccessibilityApplicationFocusedUIElement +M:AppKit.NSMenuItem.get_AccessibilityAttributedUserInputLabels +M:AppKit.NSMenuItem.get_AccessibilityCancelButton +M:AppKit.NSMenuItem.get_AccessibilityChildren +M:AppKit.NSMenuItem.get_AccessibilityChildrenInNavigationOrder +M:AppKit.NSMenuItem.get_AccessibilityClearButton +M:AppKit.NSMenuItem.get_AccessibilityCloseButton +M:AppKit.NSMenuItem.get_AccessibilityColumnCount +M:AppKit.NSMenuItem.get_AccessibilityColumnHeaderUIElements +M:AppKit.NSMenuItem.get_AccessibilityColumnIndexRange +M:AppKit.NSMenuItem.get_AccessibilityColumns +M:AppKit.NSMenuItem.get_AccessibilityColumnTitles +M:AppKit.NSMenuItem.get_AccessibilityContents +M:AppKit.NSMenuItem.get_AccessibilityCriticalValue +M:AppKit.NSMenuItem.get_AccessibilityCustomActions +M:AppKit.NSMenuItem.get_AccessibilityCustomRotors +M:AppKit.NSMenuItem.get_AccessibilityDecrementButton +M:AppKit.NSMenuItem.get_AccessibilityDefaultButton M:AppKit.NSMenuItem.get_AccessibilityDisclosed +M:AppKit.NSMenuItem.get_AccessibilityDisclosedByRow +M:AppKit.NSMenuItem.get_AccessibilityDisclosedRows +M:AppKit.NSMenuItem.get_AccessibilityDisclosureLevel +M:AppKit.NSMenuItem.get_AccessibilityDocument M:AppKit.NSMenuItem.get_AccessibilityEdited M:AppKit.NSMenuItem.get_AccessibilityElement M:AppKit.NSMenuItem.get_AccessibilityEnabled M:AppKit.NSMenuItem.get_AccessibilityExpanded +M:AppKit.NSMenuItem.get_AccessibilityExtrasMenuBar +M:AppKit.NSMenuItem.get_AccessibilityFilename +M:AppKit.NSMenuItem.get_AccessibilityFocused +M:AppKit.NSMenuItem.get_AccessibilityFocusedWindow +M:AppKit.NSMenuItem.get_AccessibilityFrame +M:AppKit.NSMenuItem.get_AccessibilityFrameInParentSpace M:AppKit.NSMenuItem.get_AccessibilityFrontmost +M:AppKit.NSMenuItem.get_AccessibilityFullScreenButton +M:AppKit.NSMenuItem.get_AccessibilityGrowArea +M:AppKit.NSMenuItem.get_AccessibilityHandles +M:AppKit.NSMenuItem.get_AccessibilityHeader +M:AppKit.NSMenuItem.get_AccessibilityHelp M:AppKit.NSMenuItem.get_AccessibilityHidden +M:AppKit.NSMenuItem.get_AccessibilityHorizontalScrollBar +M:AppKit.NSMenuItem.get_AccessibilityHorizontalUnitDescription +M:AppKit.NSMenuItem.get_AccessibilityHorizontalUnits +M:AppKit.NSMenuItem.get_AccessibilityIdentifier +M:AppKit.NSMenuItem.get_AccessibilityIncrementButton +M:AppKit.NSMenuItem.get_AccessibilityIndex +M:AppKit.NSMenuItem.get_AccessibilityInsertionPointLineNumber +M:AppKit.NSMenuItem.get_AccessibilityLabel +M:AppKit.NSMenuItem.get_AccessibilityLabelUIElements +M:AppKit.NSMenuItem.get_AccessibilityLabelValue +M:AppKit.NSMenuItem.get_AccessibilityLinkedUIElements M:AppKit.NSMenuItem.get_AccessibilityMain +M:AppKit.NSMenuItem.get_AccessibilityMainWindow +M:AppKit.NSMenuItem.get_AccessibilityMarkerGroupUIElement +M:AppKit.NSMenuItem.get_AccessibilityMarkerTypeDescription +M:AppKit.NSMenuItem.get_AccessibilityMarkerUIElements +M:AppKit.NSMenuItem.get_AccessibilityMarkerValues +M:AppKit.NSMenuItem.get_AccessibilityMaxValue +M:AppKit.NSMenuItem.get_AccessibilityMenuBar +M:AppKit.NSMenuItem.get_AccessibilityMinimizeButton M:AppKit.NSMenuItem.get_AccessibilityMinimized +M:AppKit.NSMenuItem.get_AccessibilityMinValue M:AppKit.NSMenuItem.get_AccessibilityModal +M:AppKit.NSMenuItem.get_AccessibilityNextContents +M:AppKit.NSMenuItem.get_AccessibilityNumberOfCharacters M:AppKit.NSMenuItem.get_AccessibilityOrderedByRow +M:AppKit.NSMenuItem.get_AccessibilityOrientation +M:AppKit.NSMenuItem.get_AccessibilityOverflowButton +M:AppKit.NSMenuItem.get_AccessibilityParent +M:AppKit.NSMenuItem.get_AccessibilityPlaceholderValue +M:AppKit.NSMenuItem.get_AccessibilityPreviousContents M:AppKit.NSMenuItem.get_AccessibilityProtectedContent +M:AppKit.NSMenuItem.get_AccessibilityProxy M:AppKit.NSMenuItem.get_AccessibilityRequired +M:AppKit.NSMenuItem.get_AccessibilityRole +M:AppKit.NSMenuItem.get_AccessibilityRoleDescription +M:AppKit.NSMenuItem.get_AccessibilityRowCount +M:AppKit.NSMenuItem.get_AccessibilityRowHeaderUIElements +M:AppKit.NSMenuItem.get_AccessibilityRowIndexRange +M:AppKit.NSMenuItem.get_AccessibilityRows +M:AppKit.NSMenuItem.get_AccessibilityRulerMarkerType +M:AppKit.NSMenuItem.get_AccessibilitySearchButton +M:AppKit.NSMenuItem.get_AccessibilitySearchMenu M:AppKit.NSMenuItem.get_AccessibilitySelected +M:AppKit.NSMenuItem.get_AccessibilitySelectedCells +M:AppKit.NSMenuItem.get_AccessibilitySelectedChildren +M:AppKit.NSMenuItem.get_AccessibilitySelectedColumns +M:AppKit.NSMenuItem.get_AccessibilitySelectedRows +M:AppKit.NSMenuItem.get_AccessibilitySelectedText +M:AppKit.NSMenuItem.get_AccessibilitySelectedTextRange +M:AppKit.NSMenuItem.get_AccessibilitySelectedTextRanges +M:AppKit.NSMenuItem.get_AccessibilityServesAsTitleForUIElements +M:AppKit.NSMenuItem.get_AccessibilitySharedCharacterRange +M:AppKit.NSMenuItem.get_AccessibilitySharedFocusElements +M:AppKit.NSMenuItem.get_AccessibilitySharedTextUIElements +M:AppKit.NSMenuItem.get_AccessibilityShownMenu +M:AppKit.NSMenuItem.get_AccessibilitySortDirection +M:AppKit.NSMenuItem.get_AccessibilitySplitters +M:AppKit.NSMenuItem.get_AccessibilitySubrole +M:AppKit.NSMenuItem.get_AccessibilityTabs +M:AppKit.NSMenuItem.get_AccessibilityTitle +M:AppKit.NSMenuItem.get_AccessibilityTitleUIElement +M:AppKit.NSMenuItem.get_AccessibilityToolbarButton +M:AppKit.NSMenuItem.get_AccessibilityTopLevelUIElement +M:AppKit.NSMenuItem.get_AccessibilityUnitDescription +M:AppKit.NSMenuItem.get_AccessibilityUnits +M:AppKit.NSMenuItem.get_AccessibilityUrl +M:AppKit.NSMenuItem.get_AccessibilityUserInputLabels +M:AppKit.NSMenuItem.get_AccessibilityValue +M:AppKit.NSMenuItem.get_AccessibilityValueDescription +M:AppKit.NSMenuItem.get_AccessibilityVerticalScrollBar +M:AppKit.NSMenuItem.get_AccessibilityVerticalUnitDescription +M:AppKit.NSMenuItem.get_AccessibilityVerticalUnits +M:AppKit.NSMenuItem.get_AccessibilityVisibleCells +M:AppKit.NSMenuItem.get_AccessibilityVisibleCharacterRange +M:AppKit.NSMenuItem.get_AccessibilityVisibleChildren +M:AppKit.NSMenuItem.get_AccessibilityVisibleColumns +M:AppKit.NSMenuItem.get_AccessibilityVisibleRows +M:AppKit.NSMenuItem.get_AccessibilityWarningValue +M:AppKit.NSMenuItem.get_AccessibilityWindow +M:AppKit.NSMenuItem.get_AccessibilityWindows +M:AppKit.NSMenuItem.get_AccessibilityZoomButton M:AppKit.NSMenuItem.get_Alternate M:AppKit.NSMenuItem.get_AnnouncementRequestedNotification M:AppKit.NSMenuItem.get_ApplicationActivatedNotification @@ -29402,6 +30380,7 @@ M:AppKit.NSMenuItem.get_FocusedWindowChangedNotification M:AppKit.NSMenuItem.get_HelpTagCreatedNotification M:AppKit.NSMenuItem.get_Hidden M:AppKit.NSMenuItem.get_Highlighted +M:AppKit.NSMenuItem.get_Identifier M:AppKit.NSMenuItem.get_IsHiddenOrHasHiddenAncestor M:AppKit.NSMenuItem.get_IsSectionHeader M:AppKit.NSMenuItem.get_IsSeparatorItem @@ -29430,6 +30409,21 @@ M:AppKit.NSMenuItem.get_WindowDeminiaturizedNotification M:AppKit.NSMenuItem.get_WindowMiniaturizedNotification M:AppKit.NSMenuItem.get_WindowMovedNotification M:AppKit.NSMenuItem.get_WindowResizedNotification +M:AppKit.NSMenuItem.GetAccessibilityAttributedString(Foundation.NSRange) +M:AppKit.NSMenuItem.GetAccessibilityCellForColumn(System.IntPtr,System.IntPtr) +M:AppKit.NSMenuItem.GetAccessibilityFrame(Foundation.NSRange) +M:AppKit.NSMenuItem.GetAccessibilityLayoutForScreen(CoreGraphics.CGPoint) +M:AppKit.NSMenuItem.GetAccessibilityLayoutForScreen(CoreGraphics.CGSize) +M:AppKit.NSMenuItem.GetAccessibilityLine(System.IntPtr) +M:AppKit.NSMenuItem.GetAccessibilityRange(CoreGraphics.CGPoint) +M:AppKit.NSMenuItem.GetAccessibilityRange(System.IntPtr) +M:AppKit.NSMenuItem.GetAccessibilityRangeForLine(System.IntPtr) +M:AppKit.NSMenuItem.GetAccessibilityRtf(Foundation.NSRange) +M:AppKit.NSMenuItem.GetAccessibilityScreenForLayout(CoreGraphics.CGPoint) +M:AppKit.NSMenuItem.GetAccessibilityScreenForLayout(CoreGraphics.CGSize) +M:AppKit.NSMenuItem.GetAccessibilityString(Foundation.NSRange) +M:AppKit.NSMenuItem.GetAccessibilityStyleRange(System.IntPtr) +M:AppKit.NSMenuItem.IsAccessibilitySelectorAllowed(ObjCRuntime.Selector) M:AppKit.NSMenuItem.Notifications.ObserveAnnouncementRequested(Foundation.NSObject,System.EventHandler{Foundation.NSNotificationEventArgs}) M:AppKit.NSMenuItem.Notifications.ObserveAnnouncementRequested(System.EventHandler{Foundation.NSNotificationEventArgs}) M:AppKit.NSMenuItem.Notifications.ObserveApplicationActivated(Foundation.NSObject,System.EventHandler{Foundation.NSNotificationEventArgs}) @@ -29652,6 +30646,7 @@ M:AppKit.NSMenuItem.set_ValidateMenuItem(System.Func{AppKit.NSMenuItem,System.Bo M:AppKit.NSMenuItem.set_View(AppKit.NSView) M:AppKit.NSMenuItemBadge.#ctor(Foundation.NSObjectFlag) M:AppKit.NSMenuItemBadge.#ctor(ObjCRuntime.NativeHandle) +M:AppKit.NSMenuItemBadge.Copy(Foundation.NSZone) M:AppKit.NSMenuItemBadge.get_ClassHandle M:AppKit.NSMenuItemCell.#ctor M:AppKit.NSMenuItemCell.#ctor(AppKit.NSImage) @@ -29748,13 +30743,17 @@ M:AppKit.NSMutableParagraphStyle.set_TighteningFactorForTruncation(System.Single M:AppKit.NSMutableParagraphStyle.set_UsesDefaultHyphenation(System.Boolean) M:AppKit.NSMutableParagraphStyle.SetParagraphStyle(AppKit.NSParagraphStyle) M:AppKit.NSNib.#ctor +M:AppKit.NSNib.#ctor(Foundation.NSCoder) M:AppKit.NSNib.#ctor(Foundation.NSObjectFlag) M:AppKit.NSNib.#ctor(ObjCRuntime.NativeHandle) +M:AppKit.NSNib.EncodeTo(Foundation.NSCoder) M:AppKit.NSNib.get_ClassHandle M:AppKit.NSNibConnector.#ctor +M:AppKit.NSNibConnector.#ctor(Foundation.NSCoder) M:AppKit.NSNibConnector.#ctor(Foundation.NSObjectFlag) M:AppKit.NSNibConnector.#ctor(ObjCRuntime.NativeHandle) M:AppKit.NSNibConnector.Dispose(System.Boolean) +M:AppKit.NSNibConnector.EncodeTo(Foundation.NSCoder) M:AppKit.NSNibConnector.get_ClassHandle M:AppKit.NSNibConnector.set_Destination(Foundation.NSObject) M:AppKit.NSNibConnector.set_Label(System.String) @@ -29824,10 +30823,12 @@ M:AppKit.NSOpenGLPixelBuffer.#ctor(ObjCRuntime.NativeHandle) M:AppKit.NSOpenGLPixelBuffer.get_ClassHandle M:AppKit.NSOpenGLPixelFormat.#ctor M:AppKit.NSOpenGLPixelFormat.#ctor(AppKit.NSOpenGLPixelFormatAttribute[]) +M:AppKit.NSOpenGLPixelFormat.#ctor(Foundation.NSCoder) M:AppKit.NSOpenGLPixelFormat.#ctor(Foundation.NSObjectFlag) M:AppKit.NSOpenGLPixelFormat.#ctor(ObjCRuntime.NativeHandle) M:AppKit.NSOpenGLPixelFormat.#ctor(System.Object[]) M:AppKit.NSOpenGLPixelFormat.#ctor(System.UInt32[]) +M:AppKit.NSOpenGLPixelFormat.EncodeTo(Foundation.NSCoder) M:AppKit.NSOpenGLPixelFormat.get_ClassHandle M:AppKit.NSOpenGLView.#ctor M:AppKit.NSOpenGLView.#ctor(CoreGraphics.CGRect) @@ -30083,6 +31084,7 @@ M:AppKit.NSOutlineViewDelegate.WillDisplayOutlineCell(AppKit.NSOutlineView,Found M:AppKit.NSOutlineViewItemEventArgs.#ctor(Foundation.NSNotification) M:AppKit.NSOutlineViewItemEventArgs.get_Item M:AppKit.NSPageController.#ctor +M:AppKit.NSPageController.#ctor(Foundation.NSCoder) M:AppKit.NSPageController.#ctor(Foundation.NSObjectFlag) M:AppKit.NSPageController.#ctor(ObjCRuntime.NativeHandle) M:AppKit.NSPageController.#ctor(System.String,Foundation.NSBundle) @@ -30090,7 +31092,11 @@ M:AppKit.NSPageController.add_DidEndLiveTransition(System.EventHandler) M:AppKit.NSPageController.add_DidTransition(System.EventHandler{AppKit.NSPageControllerTransitionEventArgs}) M:AppKit.NSPageController.add_PrepareViewController(System.EventHandler{AppKit.NSPageControllerPrepareViewControllerEventArgs}) M:AppKit.NSPageController.add_WillStartLiveTransition(System.EventHandler) +M:AppKit.NSPageController.AnimationFor(Foundation.NSString) +M:AppKit.NSPageController.DefaultAnimationFor(Foundation.NSString) M:AppKit.NSPageController.Dispose(System.Boolean) +M:AppKit.NSPageController.get_Animations +M:AppKit.NSPageController.get_Animator M:AppKit.NSPageController.get_ClassHandle M:AppKit.NSPageController.get_Delegate M:AppKit.NSPageController.get_GetFrame @@ -30164,11 +31170,13 @@ M:AppKit.NSPanel.set_BecomesKeyOnlyIfNeeded(System.Boolean) M:AppKit.NSPanel.set_FloatingPanel(System.Boolean) M:AppKit.NSPanel.set_WorksWhenModal(System.Boolean) M:AppKit.NSPanGestureRecognizer.#ctor +M:AppKit.NSPanGestureRecognizer.#ctor(Foundation.NSCoder) M:AppKit.NSPanGestureRecognizer.#ctor(Foundation.NSObject,ObjCRuntime.Selector) M:AppKit.NSPanGestureRecognizer.#ctor(Foundation.NSObjectFlag) M:AppKit.NSPanGestureRecognizer.#ctor(ObjCRuntime.NativeHandle) M:AppKit.NSPanGestureRecognizer.#ctor(System.Action) M:AppKit.NSPanGestureRecognizer.#ctor(System.Action{AppKit.NSPanGestureRecognizer}) +M:AppKit.NSPanGestureRecognizer.EncodeTo(Foundation.NSCoder) M:AppKit.NSPanGestureRecognizer.get_ClassHandle M:AppKit.NSPanGestureRecognizer.set_ButtonMask(System.UIntPtr) M:AppKit.NSPanGestureRecognizer.set_NumberOfTouchesRequired(System.IntPtr) @@ -30276,6 +31284,11 @@ M:AppKit.NSPasteboardItem.#ctor(Foundation.NSObjectFlag) M:AppKit.NSPasteboardItem.#ctor(ObjCRuntime.NativeHandle) M:AppKit.NSPasteboardItem.get_ClassHandle M:AppKit.NSPasteboardItem.get_CollaborationMetadata +M:AppKit.NSPasteboardItem.GetPasteboardPropertyListForType(System.String) +M:AppKit.NSPasteboardItem.GetReadableTypesForPasteboard(AppKit.NSPasteboard) +M:AppKit.NSPasteboardItem.GetReadingOptionsForType(System.String,AppKit.NSPasteboard) +M:AppKit.NSPasteboardItem.GetWritableTypesForPasteboard(AppKit.NSPasteboard) +M:AppKit.NSPasteboardItem.GetWritingOptionsForType(System.String,AppKit.NSPasteboard) M:AppKit.NSPasteboardItem.set_CollaborationMetadata(SharedWithYouCore.SWCollaborationMetadata) M:AppKit.NSPasteboardItemDataProvider_Extensions.FinishedWithDataProvider(AppKit.INSPasteboardItemDataProvider,AppKit.NSPasteboard) M:AppKit.NSPasteboardItemDataProvider.#ctor @@ -30311,6 +31324,7 @@ M:AppKit.NSPathCell.set_PlaceholderString(System.String) M:AppKit.NSPathCell.set_Url(Foundation.NSUrl) M:AppKit.NSPathCell.set_WeakDelegate(Foundation.NSObject) M:AppKit.NSPathCell.SetControlSize(AppKit.NSControlSize) +M:AppKit.NSPathCell.ValidateMenuItem(AppKit.NSMenuItem) M:AppKit.NSPathCellDelegate_Extensions.WillDisplayOpenPanel(AppKit.INSPathCellDelegate,AppKit.NSPathCell,AppKit.NSOpenPanel) M:AppKit.NSPathCellDelegate_Extensions.WillPopupMenu(AppKit.INSPathCellDelegate,AppKit.NSPathCell,AppKit.NSMenu) M:AppKit.NSPathCellDelegate.#ctor @@ -30402,22 +31416,142 @@ M:AppKit.NSPickerTouchBarItem.set_SelectionMode(AppKit.NSPickerTouchBarItemSelec M:AppKit.NSPickerTouchBarItem.set_Target(Foundation.NSObject) M:AppKit.NSPopover.#ctor(Foundation.NSObjectFlag) M:AppKit.NSPopover.#ctor(ObjCRuntime.NativeHandle) +M:AppKit.NSPopover.AccessibilityPerformCancel +M:AppKit.NSPopover.AccessibilityPerformConfirm +M:AppKit.NSPopover.AccessibilityPerformDecrement +M:AppKit.NSPopover.AccessibilityPerformDelete +M:AppKit.NSPopover.AccessibilityPerformIncrement +M:AppKit.NSPopover.AccessibilityPerformPick +M:AppKit.NSPopover.AccessibilityPerformPress +M:AppKit.NSPopover.AccessibilityPerformRaise +M:AppKit.NSPopover.AccessibilityPerformShowAlternateUI +M:AppKit.NSPopover.AccessibilityPerformShowDefaultUI +M:AppKit.NSPopover.AccessibilityPerformShowMenu M:AppKit.NSPopover.Dispose(System.Boolean) +M:AppKit.NSPopover.get_AccessibilityActivationPoint +M:AppKit.NSPopover.get_AccessibilityAllowedValues M:AppKit.NSPopover.get_AccessibilityAlternateUIVisible +M:AppKit.NSPopover.get_AccessibilityApplicationFocusedUIElement +M:AppKit.NSPopover.get_AccessibilityAttributedUserInputLabels +M:AppKit.NSPopover.get_AccessibilityCancelButton +M:AppKit.NSPopover.get_AccessibilityChildren +M:AppKit.NSPopover.get_AccessibilityChildrenInNavigationOrder +M:AppKit.NSPopover.get_AccessibilityClearButton +M:AppKit.NSPopover.get_AccessibilityCloseButton +M:AppKit.NSPopover.get_AccessibilityColumnCount +M:AppKit.NSPopover.get_AccessibilityColumnHeaderUIElements +M:AppKit.NSPopover.get_AccessibilityColumnIndexRange +M:AppKit.NSPopover.get_AccessibilityColumns +M:AppKit.NSPopover.get_AccessibilityColumnTitles +M:AppKit.NSPopover.get_AccessibilityContents +M:AppKit.NSPopover.get_AccessibilityCriticalValue +M:AppKit.NSPopover.get_AccessibilityCustomActions +M:AppKit.NSPopover.get_AccessibilityCustomRotors +M:AppKit.NSPopover.get_AccessibilityDecrementButton +M:AppKit.NSPopover.get_AccessibilityDefaultButton M:AppKit.NSPopover.get_AccessibilityDisclosed +M:AppKit.NSPopover.get_AccessibilityDisclosedByRow +M:AppKit.NSPopover.get_AccessibilityDisclosedRows +M:AppKit.NSPopover.get_AccessibilityDisclosureLevel +M:AppKit.NSPopover.get_AccessibilityDocument M:AppKit.NSPopover.get_AccessibilityEdited M:AppKit.NSPopover.get_AccessibilityElement M:AppKit.NSPopover.get_AccessibilityEnabled M:AppKit.NSPopover.get_AccessibilityExpanded +M:AppKit.NSPopover.get_AccessibilityExtrasMenuBar +M:AppKit.NSPopover.get_AccessibilityFilename +M:AppKit.NSPopover.get_AccessibilityFocused +M:AppKit.NSPopover.get_AccessibilityFocusedWindow +M:AppKit.NSPopover.get_AccessibilityFrame M:AppKit.NSPopover.get_AccessibilityFrontmost +M:AppKit.NSPopover.get_AccessibilityFullScreenButton +M:AppKit.NSPopover.get_AccessibilityGrowArea +M:AppKit.NSPopover.get_AccessibilityHandles +M:AppKit.NSPopover.get_AccessibilityHeader +M:AppKit.NSPopover.get_AccessibilityHelp M:AppKit.NSPopover.get_AccessibilityHidden +M:AppKit.NSPopover.get_AccessibilityHorizontalScrollBar +M:AppKit.NSPopover.get_AccessibilityHorizontalUnitDescription +M:AppKit.NSPopover.get_AccessibilityHorizontalUnits +M:AppKit.NSPopover.get_AccessibilityIdentifier +M:AppKit.NSPopover.get_AccessibilityIncrementButton +M:AppKit.NSPopover.get_AccessibilityIndex +M:AppKit.NSPopover.get_AccessibilityInsertionPointLineNumber +M:AppKit.NSPopover.get_AccessibilityLabel +M:AppKit.NSPopover.get_AccessibilityLabelUIElements +M:AppKit.NSPopover.get_AccessibilityLabelValue +M:AppKit.NSPopover.get_AccessibilityLinkedUIElements M:AppKit.NSPopover.get_AccessibilityMain +M:AppKit.NSPopover.get_AccessibilityMainWindow +M:AppKit.NSPopover.get_AccessibilityMarkerGroupUIElement +M:AppKit.NSPopover.get_AccessibilityMarkerTypeDescription +M:AppKit.NSPopover.get_AccessibilityMarkerUIElements +M:AppKit.NSPopover.get_AccessibilityMarkerValues +M:AppKit.NSPopover.get_AccessibilityMaxValue +M:AppKit.NSPopover.get_AccessibilityMenuBar +M:AppKit.NSPopover.get_AccessibilityMinimizeButton M:AppKit.NSPopover.get_AccessibilityMinimized +M:AppKit.NSPopover.get_AccessibilityMinValue M:AppKit.NSPopover.get_AccessibilityModal +M:AppKit.NSPopover.get_AccessibilityNextContents +M:AppKit.NSPopover.get_AccessibilityNumberOfCharacters M:AppKit.NSPopover.get_AccessibilityOrderedByRow +M:AppKit.NSPopover.get_AccessibilityOrientation +M:AppKit.NSPopover.get_AccessibilityOverflowButton +M:AppKit.NSPopover.get_AccessibilityParent +M:AppKit.NSPopover.get_AccessibilityPlaceholderValue +M:AppKit.NSPopover.get_AccessibilityPreviousContents M:AppKit.NSPopover.get_AccessibilityProtectedContent +M:AppKit.NSPopover.get_AccessibilityProxy M:AppKit.NSPopover.get_AccessibilityRequired +M:AppKit.NSPopover.get_AccessibilityRole +M:AppKit.NSPopover.get_AccessibilityRoleDescription +M:AppKit.NSPopover.get_AccessibilityRowCount +M:AppKit.NSPopover.get_AccessibilityRowHeaderUIElements +M:AppKit.NSPopover.get_AccessibilityRowIndexRange +M:AppKit.NSPopover.get_AccessibilityRows +M:AppKit.NSPopover.get_AccessibilityRulerMarkerType +M:AppKit.NSPopover.get_AccessibilitySearchButton +M:AppKit.NSPopover.get_AccessibilitySearchMenu M:AppKit.NSPopover.get_AccessibilitySelected +M:AppKit.NSPopover.get_AccessibilitySelectedCells +M:AppKit.NSPopover.get_AccessibilitySelectedChildren +M:AppKit.NSPopover.get_AccessibilitySelectedColumns +M:AppKit.NSPopover.get_AccessibilitySelectedRows +M:AppKit.NSPopover.get_AccessibilitySelectedText +M:AppKit.NSPopover.get_AccessibilitySelectedTextRange +M:AppKit.NSPopover.get_AccessibilitySelectedTextRanges +M:AppKit.NSPopover.get_AccessibilityServesAsTitleForUIElements +M:AppKit.NSPopover.get_AccessibilitySharedCharacterRange +M:AppKit.NSPopover.get_AccessibilitySharedFocusElements +M:AppKit.NSPopover.get_AccessibilitySharedTextUIElements +M:AppKit.NSPopover.get_AccessibilityShownMenu +M:AppKit.NSPopover.get_AccessibilitySortDirection +M:AppKit.NSPopover.get_AccessibilitySplitters +M:AppKit.NSPopover.get_AccessibilitySubrole +M:AppKit.NSPopover.get_AccessibilityTabs +M:AppKit.NSPopover.get_AccessibilityTitle +M:AppKit.NSPopover.get_AccessibilityTitleUIElement +M:AppKit.NSPopover.get_AccessibilityToolbarButton +M:AppKit.NSPopover.get_AccessibilityTopLevelUIElement +M:AppKit.NSPopover.get_AccessibilityUnitDescription +M:AppKit.NSPopover.get_AccessibilityUnits +M:AppKit.NSPopover.get_AccessibilityUrl +M:AppKit.NSPopover.get_AccessibilityUserInputLabels +M:AppKit.NSPopover.get_AccessibilityValue +M:AppKit.NSPopover.get_AccessibilityValueDescription +M:AppKit.NSPopover.get_AccessibilityVerticalScrollBar +M:AppKit.NSPopover.get_AccessibilityVerticalUnitDescription +M:AppKit.NSPopover.get_AccessibilityVerticalUnits +M:AppKit.NSPopover.get_AccessibilityVisibleCells +M:AppKit.NSPopover.get_AccessibilityVisibleCharacterRange +M:AppKit.NSPopover.get_AccessibilityVisibleChildren +M:AppKit.NSPopover.get_AccessibilityVisibleColumns +M:AppKit.NSPopover.get_AccessibilityVisibleRows +M:AppKit.NSPopover.get_AccessibilityWarningValue +M:AppKit.NSPopover.get_AccessibilityWindow +M:AppKit.NSPopover.get_AccessibilityWindows +M:AppKit.NSPopover.get_AccessibilityZoomButton M:AppKit.NSPopover.get_AnnouncementRequestedNotification M:AppKit.NSPopover.get_ApplicationActivatedNotification M:AppKit.NSPopover.get_ApplicationDeactivatedNotification @@ -30462,6 +31596,21 @@ M:AppKit.NSPopover.get_WindowDeminiaturizedNotification M:AppKit.NSPopover.get_WindowMiniaturizedNotification M:AppKit.NSPopover.get_WindowMovedNotification M:AppKit.NSPopover.get_WindowResizedNotification +M:AppKit.NSPopover.GetAccessibilityAttributedString(Foundation.NSRange) +M:AppKit.NSPopover.GetAccessibilityCellForColumn(System.IntPtr,System.IntPtr) +M:AppKit.NSPopover.GetAccessibilityFrame(Foundation.NSRange) +M:AppKit.NSPopover.GetAccessibilityLayoutForScreen(CoreGraphics.CGPoint) +M:AppKit.NSPopover.GetAccessibilityLayoutForScreen(CoreGraphics.CGSize) +M:AppKit.NSPopover.GetAccessibilityLine(System.IntPtr) +M:AppKit.NSPopover.GetAccessibilityRange(CoreGraphics.CGPoint) +M:AppKit.NSPopover.GetAccessibilityRange(System.IntPtr) +M:AppKit.NSPopover.GetAccessibilityRangeForLine(System.IntPtr) +M:AppKit.NSPopover.GetAccessibilityRtf(Foundation.NSRange) +M:AppKit.NSPopover.GetAccessibilityScreenForLayout(CoreGraphics.CGPoint) +M:AppKit.NSPopover.GetAccessibilityScreenForLayout(CoreGraphics.CGSize) +M:AppKit.NSPopover.GetAccessibilityString(Foundation.NSRange) +M:AppKit.NSPopover.GetAccessibilityStyleRange(System.IntPtr) +M:AppKit.NSPopover.IsAccessibilitySelectorAllowed(ObjCRuntime.Selector) M:AppKit.NSPopover.Notifications.ObserveAnnouncementRequested(Foundation.NSObject,System.EventHandler{Foundation.NSNotificationEventArgs}) M:AppKit.NSPopover.Notifications.ObserveAnnouncementRequested(System.EventHandler{Foundation.NSNotificationEventArgs}) M:AppKit.NSPopover.Notifications.ObserveApplicationActivated(Foundation.NSObject,System.EventHandler{Foundation.NSNotificationEventArgs}) @@ -30734,6 +31883,7 @@ M:AppKit.NSPopUpButtonCell.set_ObjectValue(Foundation.NSObject) M:AppKit.NSPopUpButtonCell.set_PreferredEdge(AppKit.NSRectEdge) M:AppKit.NSPopUpButtonCell.set_PullsDown(System.Boolean) M:AppKit.NSPopUpButtonCell.set_UsesItemFromMenu(System.Boolean) +M:AppKit.NSPopUpButtonCell.ValidateMenuItem(AppKit.NSMenuItem) M:AppKit.NSPredicateEditor.#ctor M:AppKit.NSPredicateEditor.#ctor(Foundation.NSCoder) M:AppKit.NSPredicateEditor.#ctor(Foundation.NSObjectFlag) @@ -30741,6 +31891,7 @@ M:AppKit.NSPredicateEditor.#ctor(ObjCRuntime.NativeHandle) M:AppKit.NSPredicateEditor.get_ClassHandle M:AppKit.NSPredicateEditor.set_RowTemplates(AppKit.NSPredicateEditorRowTemplate[]) M:AppKit.NSPredicateEditorRowTemplate.#ctor +M:AppKit.NSPredicateEditorRowTemplate.#ctor(Foundation.NSCoder) M:AppKit.NSPredicateEditorRowTemplate.#ctor(Foundation.NSCompoundPredicateType[]) M:AppKit.NSPredicateEditorRowTemplate.#ctor(Foundation.NSObjectFlag) M:AppKit.NSPredicateEditorRowTemplate.#ctor(ObjCRuntime.NativeHandle) @@ -30751,8 +31902,11 @@ M:AppKit.NSPredicateEditorRowTemplate.#ctor(System.Collections.Generic.IEnumerab M:AppKit.NSPredicateEditorRowTemplate.#ctor(System.String,CoreData.NSAttributeType,System.Collections.Generic.IEnumerable{Foundation.NSPredicateOperatorType},Foundation.NSComparisonPredicateModifier,Foundation.NSComparisonPredicateOptions) M:AppKit.NSPredicateEditorRowTemplate.#ctor(System.String,System.Collections.Generic.IEnumerable{System.String},System.Collections.Generic.IEnumerable{Foundation.NSPredicateOperatorType},Foundation.NSComparisonPredicateModifier,Foundation.NSComparisonPredicateOptions) M:AppKit.NSPredicateEditorRowTemplate.#ctor(System.String,System.String,System.Collections.Generic.IEnumerable{Foundation.NSPredicateOperatorType},Foundation.NSComparisonPredicateModifier,Foundation.NSComparisonPredicateOptions) +M:AppKit.NSPredicateEditorRowTemplate.Copy(Foundation.NSZone) +M:AppKit.NSPredicateEditorRowTemplate.EncodeTo(Foundation.NSCoder) M:AppKit.NSPredicateEditorRowTemplate.get_ClassHandle M:AppKit.NSPressGestureRecognizer.#ctor +M:AppKit.NSPressGestureRecognizer.#ctor(Foundation.NSCoder) M:AppKit.NSPressGestureRecognizer.#ctor(Foundation.NSObject,ObjCRuntime.Selector) M:AppKit.NSPressGestureRecognizer.#ctor(Foundation.NSObjectFlag) M:AppKit.NSPressGestureRecognizer.#ctor(ObjCRuntime.NativeHandle) @@ -30773,12 +31927,21 @@ M:AppKit.NSPreviewRepresentableActivityItem_Extensions.GetTitle(AppKit.INSPrevie M:AppKit.NSPreviewRepresentingActivityItem.#ctor(Foundation.NSObjectFlag) M:AppKit.NSPreviewRepresentingActivityItem.#ctor(ObjCRuntime.NativeHandle) M:AppKit.NSPreviewRepresentingActivityItem.get_ClassHandle +M:AppKit.NSPreviewRepresentingActivityItem.get_IconProvider +M:AppKit.NSPreviewRepresentingActivityItem.get_ImageProvider +M:AppKit.NSPreviewRepresentingActivityItem.get_Item +M:AppKit.NSPreviewRepresentingActivityItem.get_Title M:AppKit.NSPrinter.#ctor +M:AppKit.NSPrinter.#ctor(Foundation.NSCoder) M:AppKit.NSPrinter.#ctor(Foundation.NSObjectFlag) M:AppKit.NSPrinter.#ctor(ObjCRuntime.NativeHandle) +M:AppKit.NSPrinter.Copy(Foundation.NSZone) +M:AppKit.NSPrinter.EncodeTo(Foundation.NSCoder) M:AppKit.NSPrinter.get_ClassHandle M:AppKit.NSPrintInfo.#ctor(Foundation.NSObjectFlag) M:AppKit.NSPrintInfo.#ctor(ObjCRuntime.NativeHandle) +M:AppKit.NSPrintInfo.Copy(Foundation.NSZone) +M:AppKit.NSPrintInfo.EncodeTo(Foundation.NSCoder) M:AppKit.NSPrintInfo.get_ClassHandle M:AppKit.NSPrintInfo.get_HorizontallyCentered M:AppKit.NSPrintInfo.get_SelectionOnly @@ -30841,6 +32004,7 @@ M:AppKit.NSProgressIndicator.get_AccessibilityFocused M:AppKit.NSProgressIndicator.get_AccessibilityFrame M:AppKit.NSProgressIndicator.get_AccessibilityIdentifier M:AppKit.NSProgressIndicator.get_AccessibilityParent +M:AppKit.NSProgressIndicator.get_AccessibilityValue M:AppKit.NSProgressIndicator.get_Bezeled M:AppKit.NSProgressIndicator.get_ClassHandle M:AppKit.NSProgressIndicator.get_Indeterminate @@ -30861,6 +32025,7 @@ M:AppKit.NSResponder_NSTouchBarProvider.MakeTouchBar(AppKit.NSResponder) M:AppKit.NSResponder_NSTouchBarProvider.SetTouchBar(AppKit.NSResponder,AppKit.NSTouchBar) M:AppKit.NSResponder.#ctor(Foundation.NSObjectFlag) M:AppKit.NSResponder.#ctor(ObjCRuntime.NativeHandle) +M:AppKit.NSResponder.EncodeTo(Foundation.NSCoder) M:AppKit.NSResponder.get_ClassHandle M:AppKit.NSResponder.PresentError(Foundation.NSError,AppKit.NSWindow,Foundation.NSObject,ObjCRuntime.Selector,System.IntPtr) M:AppKit.NSResponder.RestoreUserActivityState(Foundation.NSUserActivity) @@ -30953,6 +32118,8 @@ M:AppKit.NSRulerEditorPredicateParts.Invoke(AppKit.NSRuleEditor,Foundation.NSObj M:AppKit.NSRulerMarker.#ctor M:AppKit.NSRulerMarker.#ctor(Foundation.NSObjectFlag) M:AppKit.NSRulerMarker.#ctor(ObjCRuntime.NativeHandle) +M:AppKit.NSRulerMarker.Copy(Foundation.NSZone) +M:AppKit.NSRulerMarker.EncodeTo(Foundation.NSCoder) M:AppKit.NSRulerMarker.get_ClassHandle M:AppKit.NSRulerMarker.get_IsDragging M:AppKit.NSRulerMarker.get_Movable @@ -31073,10 +32240,12 @@ M:AppKit.NSScroller.set_ScrollerStyle(AppKit.NSScrollerStyle) M:AppKit.NSScrollView.#ctor M:AppKit.NSScrollView.#ctor(Foundation.NSObjectFlag) M:AppKit.NSScrollView.#ctor(ObjCRuntime.NativeHandle) +M:AppKit.NSScrollView.FindBarViewDidChangeHeight M:AppKit.NSScrollView.get_ClassHandle M:AppKit.NSScrollView.get_DidEndLiveMagnifyNotification M:AppKit.NSScrollView.get_DidEndLiveScrollNotification M:AppKit.NSScrollView.get_DidLiveScrollNotification +M:AppKit.NSScrollView.get_FindBarView M:AppKit.NSScrollView.get_FindBarVisible M:AppKit.NSScrollView.get_WillStartLiveMagnifyNotification M:AppKit.NSScrollView.get_WillStartLiveScrollNotification @@ -31211,10 +32380,12 @@ M:AppKit.NSScrubberItemView.get_ClassHandle M:AppKit.NSScrubberLayout.#ctor(Foundation.NSObjectFlag) M:AppKit.NSScrubberLayout.#ctor(ObjCRuntime.NativeHandle) M:AppKit.NSScrubberLayout.Dispose(System.Boolean) +M:AppKit.NSScrubberLayout.EncodeTo(Foundation.NSCoder) M:AppKit.NSScrubberLayout.get_ClassHandle M:AppKit.NSScrubberLayoutAttributes.#ctor M:AppKit.NSScrubberLayoutAttributes.#ctor(Foundation.NSObjectFlag) M:AppKit.NSScrubberLayoutAttributes.#ctor(ObjCRuntime.NativeHandle) +M:AppKit.NSScrubberLayoutAttributes.Copy(Foundation.NSZone) M:AppKit.NSScrubberLayoutAttributes.get_ClassHandle M:AppKit.NSScrubberLayoutAttributes.set_Alpha(System.Runtime.InteropServices.NFloat) M:AppKit.NSScrubberLayoutAttributes.set_Frame(CoreGraphics.CGRect) @@ -31226,6 +32397,7 @@ M:AppKit.NSScrubberProportionalLayout.get_ClassHandle M:AppKit.NSScrubberProportionalLayout.set_NumberOfVisibleItems(System.IntPtr) M:AppKit.NSScrubberSelectionStyle.#ctor(Foundation.NSObjectFlag) M:AppKit.NSScrubberSelectionStyle.#ctor(ObjCRuntime.NativeHandle) +M:AppKit.NSScrubberSelectionStyle.EncodeTo(Foundation.NSCoder) M:AppKit.NSScrubberSelectionStyle.get_ClassHandle M:AppKit.NSScrubberSelectionView.#ctor M:AppKit.NSScrubberSelectionView.#ctor(Foundation.NSCoder) @@ -31525,12 +32697,16 @@ M:AppKit.NSSlider.#ctor(CoreGraphics.CGRect) M:AppKit.NSSlider.#ctor(Foundation.NSCoder) M:AppKit.NSSlider.#ctor(Foundation.NSObjectFlag) M:AppKit.NSSlider.#ctor(ObjCRuntime.NativeHandle) +M:AppKit.NSSlider.AccessibilityPerformDecrement +M:AppKit.NSSlider.AccessibilityPerformIncrement M:AppKit.NSSlider.FromTarget(System.Action) M:AppKit.NSSlider.FromValue(System.Double,System.Double,System.Double,System.Action) M:AppKit.NSSlider.get_AccessibilityFocused M:AppKit.NSSlider.get_AccessibilityFrame M:AppKit.NSSlider.get_AccessibilityIdentifier +M:AppKit.NSSlider.get_AccessibilityLabel M:AppKit.NSSlider.get_AccessibilityParent +M:AppKit.NSSlider.get_AccessibilityValue M:AppKit.NSSlider.get_ClassHandle M:AppKit.NSSlider.get_IsVertical M:AppKit.NSSlider.set_AllowsTickMarkValuesOnly(System.Boolean) @@ -31542,6 +32718,7 @@ M:AppKit.NSSlider.set_SliderType(AppKit.NSSliderType) M:AppKit.NSSlider.set_TickMarkPosition(AppKit.NSTickMarkPosition) M:AppKit.NSSlider.set_TickMarksCount(System.IntPtr) M:AppKit.NSSlider.set_TrackFillColor(AppKit.NSColor) +M:AppKit.NSSliderAccessory.#ctor(Foundation.NSCoder) M:AppKit.NSSliderAccessory.#ctor(Foundation.NSObjectFlag) M:AppKit.NSSliderAccessory.#ctor(ObjCRuntime.NativeHandle) M:AppKit.NSSliderAccessory.AccessibilityPerformCancel @@ -31556,6 +32733,7 @@ M:AppKit.NSSliderAccessory.AccessibilityPerformShowAlternateUI M:AppKit.NSSliderAccessory.AccessibilityPerformShowDefaultUI M:AppKit.NSSliderAccessory.AccessibilityPerformShowMenu M:AppKit.NSSliderAccessory.Dispose(System.Boolean) +M:AppKit.NSSliderAccessory.EncodeTo(Foundation.NSCoder) M:AppKit.NSSliderAccessory.get_AccessibilityActivationPoint M:AppKit.NSSliderAccessory.get_AccessibilityAllowedValues M:AppKit.NSSliderAccessory.get_AccessibilityAlternateUIVisible @@ -31925,8 +33103,11 @@ M:AppKit.NSSliderAccessory.set_AccessibilityZoomButton(Foundation.NSObject) M:AppKit.NSSliderAccessory.set_Behavior(AppKit.NSSliderAccessoryBehavior) M:AppKit.NSSliderAccessory.set_Enabled(System.Boolean) M:AppKit.NSSliderAccessoryBehavior.#ctor +M:AppKit.NSSliderAccessoryBehavior.#ctor(Foundation.NSCoder) M:AppKit.NSSliderAccessoryBehavior.#ctor(Foundation.NSObjectFlag) M:AppKit.NSSliderAccessoryBehavior.#ctor(ObjCRuntime.NativeHandle) +M:AppKit.NSSliderAccessoryBehavior.Copy(Foundation.NSZone) +M:AppKit.NSSliderAccessoryBehavior.EncodeTo(Foundation.NSCoder) M:AppKit.NSSliderAccessoryBehavior.get_ClassHandle M:AppKit.NSSliderCell.#ctor M:AppKit.NSSliderCell.#ctor(AppKit.NSImage) @@ -31967,11 +33148,17 @@ M:AppKit.NSSound.#ctor(Foundation.NSCoder) M:AppKit.NSSound.#ctor(Foundation.NSObjectFlag) M:AppKit.NSSound.#ctor(ObjCRuntime.NativeHandle) M:AppKit.NSSound.add_DidFinishPlaying(System.EventHandler{AppKit.NSSoundFinishedEventArgs}) +M:AppKit.NSSound.Copy(Foundation.NSZone) M:AppKit.NSSound.Dispose(System.Boolean) M:AppKit.NSSound.EncodeTo(Foundation.NSCoder) M:AppKit.NSSound.get_ClassHandle M:AppKit.NSSound.get_Delegate M:AppKit.NSSound.get_Name +M:AppKit.NSSound.GetPasteboardPropertyListForType(System.String) +M:AppKit.NSSound.GetReadableTypesForPasteboard(AppKit.NSPasteboard) +M:AppKit.NSSound.GetReadingOptionsForType(System.String,AppKit.NSPasteboard) +M:AppKit.NSSound.GetWritableTypesForPasteboard(AppKit.NSPasteboard) +M:AppKit.NSSound.GetWritingOptionsForType(System.String,AppKit.NSPasteboard) M:AppKit.NSSound.IsPlaying M:AppKit.NSSound.remove_DidFinishPlaying(System.EventHandler{AppKit.NSSoundFinishedEventArgs}) M:AppKit.NSSound.set_CurrentTime(System.Double) @@ -32119,11 +33306,18 @@ M:AppKit.NSSplitViewController.#ctor(Foundation.NSCoder) M:AppKit.NSSplitViewController.#ctor(Foundation.NSObjectFlag) M:AppKit.NSSplitViewController.#ctor(ObjCRuntime.NativeHandle) M:AppKit.NSSplitViewController.#ctor(System.String,Foundation.NSBundle) +M:AppKit.NSSplitViewController.ConstrainSplitPosition(AppKit.NSSplitView,System.Runtime.InteropServices.NFloat,System.IntPtr) +M:AppKit.NSSplitViewController.DidResizeSubviews(Foundation.NSNotification) M:AppKit.NSSplitViewController.get_AutomaticDimension M:AppKit.NSSplitViewController.get_ClassHandle +M:AppKit.NSSplitViewController.Resize(AppKit.NSSplitView,CoreGraphics.CGSize) M:AppKit.NSSplitViewController.set_MinimumThicknessForInlineSidebars(System.Runtime.InteropServices.NFloat) M:AppKit.NSSplitViewController.set_SplitView(AppKit.NSSplitView) M:AppKit.NSSplitViewController.set_SplitViewItems(AppKit.NSSplitViewItem[]) +M:AppKit.NSSplitViewController.SetMaxCoordinateOfSubview(AppKit.NSSplitView,System.Runtime.InteropServices.NFloat,System.IntPtr) +M:AppKit.NSSplitViewController.SetMinCoordinateOfSubview(AppKit.NSSplitView,System.Runtime.InteropServices.NFloat,System.IntPtr) +M:AppKit.NSSplitViewController.ShouldAdjustSize(AppKit.NSSplitView,AppKit.NSView) +M:AppKit.NSSplitViewController.SplitViewWillResizeSubviews(Foundation.NSNotification) M:AppKit.NSSplitViewDelegate_Extensions.CanCollapse(AppKit.INSSplitViewDelegate,AppKit.NSSplitView,AppKit.NSView) M:AppKit.NSSplitViewDelegate_Extensions.ConstrainSplitPosition(AppKit.INSSplitViewDelegate,AppKit.NSSplitView,System.Runtime.InteropServices.NFloat,System.IntPtr) M:AppKit.NSSplitViewDelegate_Extensions.DidResizeSubviews(AppKit.INSSplitViewDelegate,Foundation.NSNotification) @@ -32153,8 +33347,14 @@ M:AppKit.NSSplitViewDelegate.ShouldHideDivider(AppKit.NSSplitView,System.IntPtr) M:AppKit.NSSplitViewDelegate.SplitViewWillResizeSubviews(Foundation.NSNotification) M:AppKit.NSSplitViewDividerIndexEventArgs.#ctor(Foundation.NSNotification) M:AppKit.NSSplitViewItem.#ctor +M:AppKit.NSSplitViewItem.#ctor(Foundation.NSCoder) M:AppKit.NSSplitViewItem.#ctor(Foundation.NSObjectFlag) M:AppKit.NSSplitViewItem.#ctor(ObjCRuntime.NativeHandle) +M:AppKit.NSSplitViewItem.AnimationFor(Foundation.NSString) +M:AppKit.NSSplitViewItem.DefaultAnimationFor(Foundation.NSString) +M:AppKit.NSSplitViewItem.EncodeTo(Foundation.NSCoder) +M:AppKit.NSSplitViewItem.get_Animations +M:AppKit.NSSplitViewItem.get_Animator M:AppKit.NSSplitViewItem.get_ClassHandle M:AppKit.NSSplitViewItem.get_Collapsed M:AppKit.NSSplitViewItem.get_SpringLoaded @@ -32347,10 +33547,14 @@ M:AppKit.NSStepper.#ctor(CoreGraphics.CGRect) M:AppKit.NSStepper.#ctor(Foundation.NSCoder) M:AppKit.NSStepper.#ctor(Foundation.NSObjectFlag) M:AppKit.NSStepper.#ctor(ObjCRuntime.NativeHandle) +M:AppKit.NSStepper.AccessibilityPerformDecrement +M:AppKit.NSStepper.AccessibilityPerformIncrement M:AppKit.NSStepper.get_AccessibilityFocused M:AppKit.NSStepper.get_AccessibilityFrame M:AppKit.NSStepper.get_AccessibilityIdentifier +M:AppKit.NSStepper.get_AccessibilityLabel M:AppKit.NSStepper.get_AccessibilityParent +M:AppKit.NSStepper.get_AccessibilityValue M:AppKit.NSStepper.get_ClassHandle M:AppKit.NSStepper.set_Autorepeat(System.Boolean) M:AppKit.NSStepper.set_Increment(System.Double) @@ -32510,12 +33714,15 @@ M:AppKit.NSSwitch.#ctor M:AppKit.NSSwitch.#ctor(Foundation.NSCoder) M:AppKit.NSSwitch.#ctor(Foundation.NSObjectFlag) M:AppKit.NSSwitch.#ctor(ObjCRuntime.NativeHandle) +M:AppKit.NSSwitch.AccessibilityPerformDecrement +M:AppKit.NSSwitch.AccessibilityPerformIncrement M:AppKit.NSSwitch.AccessibilityPerformPress M:AppKit.NSSwitch.get_AccessibilityFocused M:AppKit.NSSwitch.get_AccessibilityFrame M:AppKit.NSSwitch.get_AccessibilityIdentifier M:AppKit.NSSwitch.get_AccessibilityLabel M:AppKit.NSSwitch.get_AccessibilityParent +M:AppKit.NSSwitch.get_AccessibilityValue M:AppKit.NSSwitch.get_ClassHandle M:AppKit.NSSwitch.set_State(System.IntPtr) M:AppKit.NSTableCellView.#ctor @@ -32534,6 +33741,7 @@ M:AppKit.NSTableColumn.#ctor M:AppKit.NSTableColumn.#ctor(Foundation.NSObjectFlag) M:AppKit.NSTableColumn.#ctor(ObjCRuntime.NativeHandle) M:AppKit.NSTableColumn.#ctor(System.String) +M:AppKit.NSTableColumn.EncodeTo(Foundation.NSCoder) M:AppKit.NSTableColumn.get_ClassHandle M:AppKit.NSTableColumn.get_Editable M:AppKit.NSTableColumn.get_Hidden @@ -32562,6 +33770,7 @@ M:AppKit.NSTableHeaderView.#ctor(Foundation.NSCoder) M:AppKit.NSTableHeaderView.#ctor(Foundation.NSObjectFlag) M:AppKit.NSTableHeaderView.#ctor(ObjCRuntime.NativeHandle) M:AppKit.NSTableHeaderView.get_ClassHandle +M:AppKit.NSTableHeaderView.GetStringForToolTip(AppKit.NSView,System.IntPtr,CoreGraphics.CGPoint,System.IntPtr) M:AppKit.NSTableHeaderView.set_TableView(AppKit.NSTableView) M:AppKit.NSTableReorder.#ctor(System.Object,System.IntPtr) M:AppKit.NSTableReorder.BeginInvoke(AppKit.NSTableView,System.IntPtr,System.IntPtr,System.AsyncCallback,System.Object) @@ -32572,9 +33781,11 @@ M:AppKit.NSTableRowView.#ctor(CoreGraphics.CGRect) M:AppKit.NSTableRowView.#ctor(Foundation.NSCoder) M:AppKit.NSTableRowView.#ctor(Foundation.NSObjectFlag) M:AppKit.NSTableRowView.#ctor(ObjCRuntime.NativeHandle) +M:AppKit.NSTableRowView.get_AccessibilityDisclosureLevel M:AppKit.NSTableRowView.get_AccessibilityFocused M:AppKit.NSTableRowView.get_AccessibilityFrame M:AppKit.NSTableRowView.get_AccessibilityIdentifier +M:AppKit.NSTableRowView.get_AccessibilityIndex M:AppKit.NSTableRowView.get_AccessibilityParent M:AppKit.NSTableRowView.get_ClassHandle M:AppKit.NSTableRowView.get_Emphasized @@ -32616,10 +33827,22 @@ M:AppKit.NSTableView.DraggedImageEndedAtDeposited(AppKit.NSImage,CoreGraphics.CG M:AppKit.NSTableView.DraggedImageEndedAtOperation(AppKit.NSImage,CoreGraphics.CGPoint,AppKit.NSDragOperation) M:AppKit.NSTableView.DraggedImageMovedTo(AppKit.NSImage,CoreGraphics.CGPoint) M:AppKit.NSTableView.DraggingSourceOperationMaskForLocal(System.Boolean) +M:AppKit.NSTableView.get_AccessibilityColumnHeaderUIElements +M:AppKit.NSTableView.get_AccessibilityColumns M:AppKit.NSTableView.get_AccessibilityFocused M:AppKit.NSTableView.get_AccessibilityFrame +M:AppKit.NSTableView.get_AccessibilityHeaderGroup M:AppKit.NSTableView.get_AccessibilityIdentifier +M:AppKit.NSTableView.get_AccessibilityLabel M:AppKit.NSTableView.get_AccessibilityParent +M:AppKit.NSTableView.get_AccessibilityRowHeaderUIElements +M:AppKit.NSTableView.get_AccessibilityRows +M:AppKit.NSTableView.get_AccessibilitySelectedCells +M:AppKit.NSTableView.get_AccessibilitySelectedColumns +M:AppKit.NSTableView.get_AccessibilitySelectedRows +M:AppKit.NSTableView.get_AccessibilityVisibleCells +M:AppKit.NSTableView.get_AccessibilityVisibleColumns +M:AppKit.NSTableView.get_AccessibilityVisibleRows M:AppKit.NSTableView.get_ClassHandle M:AppKit.NSTableView.get_ColumnDidMoveNotification M:AppKit.NSTableView.get_ColumnDidResizeNotification @@ -32673,6 +33896,7 @@ M:AppKit.NSTableView.remove_UserDidChangeVisibility(System.EventHandler{AppKit.N M:AppKit.NSTableView.remove_WillDisplayCell(System.EventHandler{AppKit.NSTableViewCellEventArgs}) M:AppKit.NSTableView.SelectColumn(System.IntPtr,System.Boolean) M:AppKit.NSTableView.SelectRow(System.IntPtr,System.Boolean) +M:AppKit.NSTableView.set_AccessibilitySelectedRows(AppKit.INSAccessibilityRow[]) M:AppKit.NSTableView.set_AllowsColumnReordering(System.Boolean) M:AppKit.NSTableView.set_AllowsColumnResizing(System.Boolean) M:AppKit.NSTableView.set_AllowsColumnSelection(System.Boolean) @@ -32728,6 +33952,7 @@ M:AppKit.NSTableView.set_UsesStaticContents(System.Boolean) M:AppKit.NSTableView.set_VerticalMotionCanBeginDrag(System.Boolean) M:AppKit.NSTableView.set_WeakDataSource(Foundation.NSObject) M:AppKit.NSTableView.set_WeakDelegate(Foundation.NSObject) +M:AppKit.NSTableView.ValidateUserInterfaceItem(AppKit.INSValidatedUserInterfaceItem) M:AppKit.NSTableViewCell.#ctor(System.Object,System.IntPtr) M:AppKit.NSTableViewCell.BeginInvoke(AppKit.NSTableView,AppKit.NSCell,AppKit.NSTableColumn,System.IntPtr,System.AsyncCallback,System.Object) M:AppKit.NSTableViewCell.EndInvoke(System.IAsyncResult) @@ -32853,11 +34078,23 @@ M:AppKit.NSTableViewDelegate.UserDidChangeVisibility(AppKit.NSTableView,AppKit.N M:AppKit.NSTableViewDelegate.WillDisplayCell(AppKit.NSTableView,Foundation.NSObject,AppKit.NSTableColumn,System.IntPtr) M:AppKit.NSTableViewDiffableDataSource`2.#ctor(Foundation.NSObjectFlag) M:AppKit.NSTableViewDiffableDataSource`2.#ctor(ObjCRuntime.NativeHandle) +M:AppKit.NSTableViewDiffableDataSource`2.AcceptDrop(AppKit.NSTableView,AppKit.INSDraggingInfo,System.IntPtr,AppKit.NSTableViewDropOperation) M:AppKit.NSTableViewDiffableDataSource`2.ApplySnapshotAsync(AppKit.NSDiffableDataSourceSnapshot{`0,`1},System.Boolean) +M:AppKit.NSTableViewDiffableDataSource`2.DraggingSessionEnded(AppKit.NSTableView,AppKit.NSDraggingSession,CoreGraphics.CGPoint,AppKit.NSDragOperation) +M:AppKit.NSTableViewDiffableDataSource`2.DraggingSessionWillBegin(AppKit.NSTableView,AppKit.NSDraggingSession,CoreGraphics.CGPoint,Foundation.NSIndexSet) +M:AppKit.NSTableViewDiffableDataSource`2.FilesDropped(AppKit.NSTableView,Foundation.NSUrl,Foundation.NSIndexSet) M:AppKit.NSTableViewDiffableDataSource`2.get_ClassHandle +M:AppKit.NSTableViewDiffableDataSource`2.GetObjectValue(AppKit.NSTableView,AppKit.NSTableColumn,System.IntPtr) +M:AppKit.NSTableViewDiffableDataSource`2.GetPasteboardWriterForRow(AppKit.NSTableView,System.IntPtr) +M:AppKit.NSTableViewDiffableDataSource`2.GetRowCount(AppKit.NSTableView) M:AppKit.NSTableViewDiffableDataSource`2.set_DefaultRowAnimation(AppKit.NSTableViewAnimationOptions) M:AppKit.NSTableViewDiffableDataSource`2.set_RowViewProvider(AppKit.NSTableViewDiffableDataSourceRowProvider) M:AppKit.NSTableViewDiffableDataSource`2.set_SectionHeaderViewProvider(AppKit.NSTableViewDiffableDataSourceSectionHeaderViewProvider) +M:AppKit.NSTableViewDiffableDataSource`2.SetObjectValue(AppKit.NSTableView,Foundation.NSObject,AppKit.NSTableColumn,System.IntPtr) +M:AppKit.NSTableViewDiffableDataSource`2.SortDescriptorsChanged(AppKit.NSTableView,Foundation.NSSortDescriptor[]) +M:AppKit.NSTableViewDiffableDataSource`2.UpdateDraggingItems(AppKit.NSTableView,AppKit.INSDraggingInfo) +M:AppKit.NSTableViewDiffableDataSource`2.ValidateDrop(AppKit.NSTableView,AppKit.INSDraggingInfo,System.IntPtr,AppKit.NSTableViewDropOperation) +M:AppKit.NSTableViewDiffableDataSource`2.WriteRows(AppKit.NSTableView,Foundation.NSIndexSet,AppKit.NSPasteboard) M:AppKit.NSTableViewDiffableDataSourceCellProvider.#ctor(System.Object,System.IntPtr) M:AppKit.NSTableViewDiffableDataSourceCellProvider.BeginInvoke(AppKit.NSTableView,AppKit.NSTableColumn,System.IntPtr,Foundation.NSObject,System.AsyncCallback,System.Object) M:AppKit.NSTableViewDiffableDataSourceCellProvider.EndInvoke(System.IAsyncResult) @@ -32885,6 +34122,7 @@ M:AppKit.NSTableViewPredicate.Invoke(AppKit.NSTableView) M:AppKit.NSTableViewRowAction.#ctor M:AppKit.NSTableViewRowAction.#ctor(Foundation.NSObjectFlag) M:AppKit.NSTableViewRowAction.#ctor(ObjCRuntime.NativeHandle) +M:AppKit.NSTableViewRowAction.Copy(Foundation.NSZone) M:AppKit.NSTableViewRowAction.get_ClassHandle M:AppKit.NSTableViewRowAction.set_BackgroundColor(AppKit.NSColor) M:AppKit.NSTableViewRowAction.set_Image(AppKit.NSImage) @@ -33010,13 +34248,18 @@ M:AppKit.NSTabViewController.#ctor(Foundation.NSCoder) M:AppKit.NSTabViewController.#ctor(Foundation.NSObjectFlag) M:AppKit.NSTabViewController.#ctor(ObjCRuntime.NativeHandle) M:AppKit.NSTabViewController.#ctor(System.String,Foundation.NSBundle) +M:AppKit.NSTabViewController.DidRemoveItem(Foundation.NSNotification) M:AppKit.NSTabViewController.get_ClassHandle +M:AppKit.NSTabViewController.GetItemCanBeInsertedAt(AppKit.NSToolbar,System.String,System.IntPtr) +M:AppKit.NSTabViewController.GetToolbarImmovableItemIdentifiers(AppKit.NSToolbar) +M:AppKit.NSTabViewController.NumberOfItemsChanged(AppKit.NSTabView) M:AppKit.NSTabViewController.set_CanPropagateSelectedChildViewControllerTitle(System.Boolean) M:AppKit.NSTabViewController.set_SelectedTabViewItemIndex(System.IntPtr) M:AppKit.NSTabViewController.set_TabStyle(AppKit.NSTabViewControllerTabStyle) M:AppKit.NSTabViewController.set_TabView(AppKit.NSTabView) M:AppKit.NSTabViewController.set_TabViewItems(AppKit.NSTabViewItem[]) M:AppKit.NSTabViewController.set_TransitionOptions(AppKit.NSViewControllerTransitionOptions) +M:AppKit.NSTabViewController.WillAddItem(Foundation.NSNotification) M:AppKit.NSTabViewDelegate_Extensions.DidSelect(AppKit.INSTabViewDelegate,AppKit.NSTabView,AppKit.NSTabViewItem) M:AppKit.NSTabViewDelegate_Extensions.NumberOfItemsChanged(AppKit.INSTabViewDelegate,AppKit.NSTabView) M:AppKit.NSTabViewDelegate_Extensions.ShouldSelectTabViewItem(AppKit.INSTabViewDelegate,AppKit.NSTabView,AppKit.NSTabViewItem) @@ -33029,8 +34272,10 @@ M:AppKit.NSTabViewDelegate.NumberOfItemsChanged(AppKit.NSTabView) M:AppKit.NSTabViewDelegate.ShouldSelectTabViewItem(AppKit.NSTabView,AppKit.NSTabViewItem) M:AppKit.NSTabViewDelegate.WillSelect(AppKit.NSTabView,AppKit.NSTabViewItem) M:AppKit.NSTabViewItem.#ctor +M:AppKit.NSTabViewItem.#ctor(Foundation.NSCoder) M:AppKit.NSTabViewItem.#ctor(Foundation.NSObjectFlag) M:AppKit.NSTabViewItem.#ctor(ObjCRuntime.NativeHandle) +M:AppKit.NSTabViewItem.EncodeTo(Foundation.NSCoder) M:AppKit.NSTabViewItem.get_ClassHandle M:AppKit.NSTabViewItem.set_Color(AppKit.NSColor) M:AppKit.NSTabViewItem.set_Identifier(Foundation.NSObject) @@ -33173,6 +34418,7 @@ M:AppKit.NSTextAttachmentViewProvider.set_View(AppKit.NSView) M:AppKit.NSTextBlock.#ctor(Foundation.NSCoder) M:AppKit.NSTextBlock.#ctor(Foundation.NSObjectFlag) M:AppKit.NSTextBlock.#ctor(ObjCRuntime.NativeHandle) +M:AppKit.NSTextBlock.Copy(Foundation.NSZone) M:AppKit.NSTextBlock.EncodeTo(Foundation.NSCoder) M:AppKit.NSTextBlock.get_ClassHandle M:AppKit.NSTextBlock.set_BackgroundColor(AppKit.NSColor) @@ -33375,6 +34621,11 @@ M:AppKit.NSTextField.get_ShouldSelectCandidate M:AppKit.NSTextField.get_TextShouldBeginEditing M:AppKit.NSTextField.get_TextShouldEndEditing M:AppKit.NSTextField.GetAccessibilityAttributedString(Foundation.NSRange) +M:AppKit.NSTextField.GetAccessibilityFrame(Foundation.NSRange) +M:AppKit.NSTextField.GetAccessibilityLine(System.IntPtr) +M:AppKit.NSTextField.GetAccessibilityRangeForLine(System.IntPtr) +M:AppKit.NSTextField.GetAccessibilityString(Foundation.NSRange) +M:AppKit.NSTextField.GetContentType M:AppKit.NSTextField.remove_Changed(System.EventHandler) M:AppKit.NSTextField.remove_DidFailToValidatePartialString(System.EventHandler{AppKit.NSControlTextErrorEventArgs}) M:AppKit.NSTextField.remove_EditingBegan(System.EventHandler) @@ -33409,6 +34660,7 @@ M:AppKit.NSTextField.set_TextShouldBeginEditing(AppKit.NSControlText) M:AppKit.NSTextField.set_TextShouldEndEditing(AppKit.NSControlText) M:AppKit.NSTextField.set_WeakDelegate(Foundation.NSObject) M:AppKit.NSTextField.SetContentType(Foundation.NSString) +M:AppKit.NSTextField.ValidateUserInterfaceItem(AppKit.INSValidatedUserInterfaceItem) M:AppKit.NSTextFieldCell.#ctor M:AppKit.NSTextFieldCell.#ctor(AppKit.NSImage) M:AppKit.NSTextFieldCell.#ctor(Foundation.NSObjectFlag) @@ -33466,6 +34718,7 @@ M:AppKit.NSTextFieldTextCheckingResults.Invoke(AppKit.NSTextField,AppKit.NSTextV M:AppKit.NSTextFinder.#ctor(Foundation.NSObjectFlag) M:AppKit.NSTextFinder.#ctor(ObjCRuntime.NativeHandle) M:AppKit.NSTextFinder.Dispose(System.Boolean) +M:AppKit.NSTextFinder.EncodeTo(Foundation.NSCoder) M:AppKit.NSTextFinder.get_ClassHandle M:AppKit.NSTextFinder.get_IncrementalSearchingEnabled M:AppKit.NSTextFinder.set_Client(AppKit.INSTextFinderClient) @@ -33926,6 +35179,7 @@ M:AppKit.NSTextView.DraggedImageEndedAtDeposited(AppKit.NSImage,CoreGraphics.CGP M:AppKit.NSTextView.DraggedImageEndedAtOperation(AppKit.NSImage,CoreGraphics.CGPoint,AppKit.NSDragOperation) M:AppKit.NSTextView.DraggedImageMovedTo(AppKit.NSImage,CoreGraphics.CGPoint) M:AppKit.NSTextView.DraggingSourceOperationMaskForLocal(System.Boolean) +M:AppKit.NSTextView.DrawsVertically(System.UIntPtr) M:AppKit.NSTextView.EndSelectingCandidate(AppKit.NSCandidateListTouchBarItem,System.IntPtr) M:AppKit.NSTextView.get_AccessibilityFocused M:AppKit.NSTextView.get_AccessibilityFrame @@ -33933,6 +35187,7 @@ M:AppKit.NSTextView.get_AccessibilityIdentifier M:AppKit.NSTextView.get_AccessibilityParent M:AppKit.NSTextView.get_AccessibilityValue M:AppKit.NSTextView.get_AccessibilityVisibleCharacterRange +M:AppKit.NSTextView.get_AttributedString M:AppKit.NSTextView.get_AutomaticDashSubstitutionEnabled M:AppKit.NSTextView.get_AutomaticDataDetectionEnabled M:AppKit.NSTextView.get_AutomaticLinkDetectionEnabled @@ -33943,12 +35198,14 @@ M:AppKit.NSTextView.get_AutomaticTextReplacementEnabled M:AppKit.NSTextView.get_ClassHandle M:AppKit.NSTextView.get_ContentType M:AppKit.NSTextView.get_ContinuousSpellCheckingEnabled +M:AppKit.NSTextView.get_ConversationIdentifier M:AppKit.NSTextView.get_Delegate M:AppKit.NSTextView.get_DidChangeSelectionNotification M:AppKit.NSTextView.get_DidChangeTypingAttributesNotification M:AppKit.NSTextView.get_DidCheckText M:AppKit.NSTextView.get_DidSwitchToNSLayoutManagerNotification M:AppKit.NSTextView.get_DoCommandBySelector +M:AppKit.NSTextView.get_DocumentVisibleRect M:AppKit.NSTextView.get_Editable M:AppKit.NSTextView.get_FieldEditor M:AppKit.NSTextView.get_GetCandidates @@ -33957,10 +35214,14 @@ M:AppKit.NSTextView.get_GetTextCheckingCandidates M:AppKit.NSTextView.get_GetUndoManager M:AppKit.NSTextView.get_GetWritablePasteboardTypes M:AppKit.NSTextView.get_GrammarCheckingEnabled +M:AppKit.NSTextView.get_HasMarkedText M:AppKit.NSTextView.get_IgnoreModifierKeysWhileDragging M:AppKit.NSTextView.get_IsIncrementalSearchingEnabled +M:AppKit.NSTextView.get_LayoutOrientation M:AppKit.NSTextView.get_LinkClicked +M:AppKit.NSTextView.get_MarkedRange M:AppKit.NSTextView.get_MenuForEvent +M:AppKit.NSTextView.get_PreferredTextAccessoryPlacement M:AppKit.NSTextView.get_RichText M:AppKit.NSTextView.get_RulerVisible M:AppKit.NSTextView.get_Selectable @@ -33970,14 +35231,30 @@ M:AppKit.NSTextView.get_ShouldChangeTypingAttributes M:AppKit.NSTextView.get_ShouldSelectCandidates M:AppKit.NSTextView.get_ShouldSetSpellingState M:AppKit.NSTextView.get_ShouldUpdateTouchBarItemIdentifiers +M:AppKit.NSTextView.get_UnionRectInVisibleSelectedRange +M:AppKit.NSTextView.get_ValidAttributesForMarkedText M:AppKit.NSTextView.get_WillChangeNotifyingTextViewNotification M:AppKit.NSTextView.get_WillChangeSelection M:AppKit.NSTextView.get_WillChangeSelectionFromRanges M:AppKit.NSTextView.get_WillCheckText M:AppKit.NSTextView.get_WillDisplayToolTip M:AppKit.NSTextView.get_WillSwitchToNSLayoutManagerNotification +M:AppKit.NSTextView.get_WindowLevel M:AppKit.NSTextView.get_WriteCell M:AppKit.NSTextView.GetAccessibilityAttributedString(Foundation.NSRange) +M:AppKit.NSTextView.GetAccessibilityFrame(Foundation.NSRange) +M:AppKit.NSTextView.GetAccessibilityLine(System.IntPtr) +M:AppKit.NSTextView.GetAccessibilityRangeForLine(System.IntPtr) +M:AppKit.NSTextView.GetAccessibilityString(Foundation.NSRange) +M:AppKit.NSTextView.GetAttributedSubstring(Foundation.NSRange,Foundation.NSRange@) +M:AppKit.NSTextView.GetAttributedSubstring(Foundation.NSRange) +M:AppKit.NSTextView.GetBaselineDelta(System.UIntPtr) +M:AppKit.NSTextView.GetCharacterIndex(CoreGraphics.CGPoint) +M:AppKit.NSTextView.GetContentType +M:AppKit.NSTextView.GetFirstRect(Foundation.NSRange,Foundation.NSRange@) +M:AppKit.NSTextView.GetFirstRectForCharacterRange(Foundation.NSRange) +M:AppKit.NSTextView.GetFractionOfDistanceThroughGlyph(CoreGraphics.CGPoint) +M:AppKit.NSTextView.InsertText(Foundation.NSObject,Foundation.NSRange) M:AppKit.NSTextView.IsCoalescingUndo M:AppKit.NSTextView.MakeItem(AppKit.NSTouchBar,System.String) M:AppKit.NSTextView.NamesOfPromisedFilesDroppedAtDestination(Foundation.NSUrl) @@ -34065,6 +35342,11 @@ M:AppKit.NSTextView.set_WillCheckText(AppKit.NSTextViewOnTextCheck) M:AppKit.NSTextView.set_WillDisplayToolTip(AppKit.NSTextViewTooltip) M:AppKit.NSTextView.set_WriteCell(AppKit.NSTextViewCellPasteboard) M:AppKit.NSTextView.SetContentType(Foundation.NSString) +M:AppKit.NSTextView.SetMarkedText(Foundation.NSObject,Foundation.NSRange,Foundation.NSRange) +M:AppKit.NSTextView.SetMarkedText(Foundation.NSObject,Foundation.NSRange) +M:AppKit.NSTextView.UnmarkText +M:AppKit.NSTextView.ValidateMenuItem(AppKit.NSMenuItem) +M:AppKit.NSTextView.ValidateUserInterfaceItem(AppKit.INSValidatedUserInterfaceItem) M:AppKit.NSTextViewCellPasteboard.#ctor(System.Object,System.IntPtr) M:AppKit.NSTextViewCellPasteboard.BeginInvoke(AppKit.NSTextView,AppKit.NSTextAttachmentCell,System.UIntPtr,AppKit.NSPasteboard,System.String,System.AsyncCallback,System.Object) M:AppKit.NSTextViewCellPasteboard.EndInvoke(System.IAsyncResult) @@ -34253,6 +35535,7 @@ M:AppKit.NSTextViewWillChangeNotifyingTextViewEventArgs.get_OldView M:AppKit.NSTintConfiguration.#ctor(Foundation.NSCoder) M:AppKit.NSTintConfiguration.#ctor(Foundation.NSObjectFlag) M:AppKit.NSTintConfiguration.#ctor(ObjCRuntime.NativeHandle) +M:AppKit.NSTintConfiguration.Copy(Foundation.NSZone) M:AppKit.NSTintConfiguration.EncodeTo(Foundation.NSCoder) M:AppKit.NSTintConfiguration.get_ClassHandle M:AppKit.NSTitlebarAccessoryViewController.#ctor @@ -34260,6 +35543,15 @@ M:AppKit.NSTitlebarAccessoryViewController.#ctor(Foundation.NSCoder) M:AppKit.NSTitlebarAccessoryViewController.#ctor(Foundation.NSObjectFlag) M:AppKit.NSTitlebarAccessoryViewController.#ctor(ObjCRuntime.NativeHandle) M:AppKit.NSTitlebarAccessoryViewController.#ctor(System.String,Foundation.NSBundle) +M:AppKit.NSTitlebarAccessoryViewController.AnimationDidEnd(AppKit.NSAnimation) +M:AppKit.NSTitlebarAccessoryViewController.AnimationDidReachProgressMark(AppKit.NSAnimation,System.Single) +M:AppKit.NSTitlebarAccessoryViewController.AnimationDidStop(AppKit.NSAnimation) +M:AppKit.NSTitlebarAccessoryViewController.AnimationFor(Foundation.NSString) +M:AppKit.NSTitlebarAccessoryViewController.AnimationShouldStart(AppKit.NSAnimation) +M:AppKit.NSTitlebarAccessoryViewController.ComputeAnimationCurve(AppKit.NSAnimation,System.Single) +M:AppKit.NSTitlebarAccessoryViewController.DefaultAnimationFor(Foundation.NSString) +M:AppKit.NSTitlebarAccessoryViewController.get_Animations +M:AppKit.NSTitlebarAccessoryViewController.get_Animator M:AppKit.NSTitlebarAccessoryViewController.get_ClassHandle M:AppKit.NSTitlebarAccessoryViewController.get_IsHidden M:AppKit.NSTitlebarAccessoryViewController.set_Animations(Foundation.NSDictionary) @@ -34428,6 +35720,7 @@ M:AppKit.NSToolbarItem.#ctor M:AppKit.NSToolbarItem.#ctor(Foundation.NSObjectFlag) M:AppKit.NSToolbarItem.#ctor(ObjCRuntime.NativeHandle) M:AppKit.NSToolbarItem.add_Activated(System.EventHandler) +M:AppKit.NSToolbarItem.Copy(Foundation.NSZone) M:AppKit.NSToolbarItem.Dispose(System.Boolean) M:AppKit.NSToolbarItem.get_Bordered M:AppKit.NSToolbarItem.get_ClassHandle @@ -34479,11 +35772,13 @@ M:AppKit.NSTouch_NSTouchBar.GetTouchType(AppKit.NSTouch) M:AppKit.NSTouch.#ctor M:AppKit.NSTouch.#ctor(Foundation.NSObjectFlag) M:AppKit.NSTouch.#ctor(ObjCRuntime.NativeHandle) +M:AppKit.NSTouch.Copy(Foundation.NSZone) M:AppKit.NSTouch.get_ClassHandle M:AppKit.NSTouch.get_IsResting M:AppKit.NSTouchBar.#ctor(Foundation.NSObjectFlag) M:AppKit.NSTouchBar.#ctor(ObjCRuntime.NativeHandle) M:AppKit.NSTouchBar.Dispose(System.Boolean) +M:AppKit.NSTouchBar.EncodeTo(Foundation.NSCoder) M:AppKit.NSTouchBar.get_AutomaticCustomizeTouchBarMenuItemEnabled M:AppKit.NSTouchBar.get_ClassHandle M:AppKit.NSTouchBar.get_MakeItem @@ -34506,6 +35801,7 @@ M:AppKit.NSTouchBarDelegate.MakeItem(AppKit.NSTouchBar,System.String) M:AppKit.NSTouchBarItem.#ctor(AppKit.NSTouchBarItemIdentifier) M:AppKit.NSTouchBarItem.#ctor(Foundation.NSObjectFlag) M:AppKit.NSTouchBarItem.#ctor(ObjCRuntime.NativeHandle) +M:AppKit.NSTouchBarItem.EncodeTo(Foundation.NSCoder) M:AppKit.NSTouchBarItem.get_ClassHandle M:AppKit.NSTouchBarItem.get_Visible M:AppKit.NSTouchBarItem.set_VisibilityPriority(System.Single) @@ -34520,8 +35816,11 @@ M:AppKit.NSTouchEvent.BeginInvoke(AppKit.NSGestureRecognizer,AppKit.NSTouch,Syst M:AppKit.NSTouchEvent.EndInvoke(System.IAsyncResult) M:AppKit.NSTouchEvent.Invoke(AppKit.NSGestureRecognizer,AppKit.NSTouch) M:AppKit.NSTrackingArea.#ctor +M:AppKit.NSTrackingArea.#ctor(Foundation.NSCoder) M:AppKit.NSTrackingArea.#ctor(Foundation.NSObjectFlag) M:AppKit.NSTrackingArea.#ctor(ObjCRuntime.NativeHandle) +M:AppKit.NSTrackingArea.Copy(Foundation.NSZone) +M:AppKit.NSTrackingArea.EncodeTo(Foundation.NSCoder) M:AppKit.NSTrackingArea.get_ClassHandle M:AppKit.NSTrackingSeparatorToolbarItem.#ctor(Foundation.NSObjectFlag) M:AppKit.NSTrackingSeparatorToolbarItem.#ctor(ObjCRuntime.NativeHandle) @@ -34570,6 +35869,8 @@ M:AppKit.NSUserDefaultsController.set_AppliesImmediately(System.Boolean) M:AppKit.NSUserDefaultsController.set_InitialValues(Foundation.NSDictionary) M:AppKit.NSUserInterfaceCompressionOptions.#ctor(Foundation.NSObjectFlag) M:AppKit.NSUserInterfaceCompressionOptions.#ctor(ObjCRuntime.NativeHandle) +M:AppKit.NSUserInterfaceCompressionOptions.Copy(Foundation.NSZone) +M:AppKit.NSUserInterfaceCompressionOptions.EncodeTo(Foundation.NSCoder) M:AppKit.NSUserInterfaceCompressionOptions.get_ClassHandle M:AppKit.NSUserInterfaceCompressionOptions.get_Empty M:AppKit.NSUserInterfaceItemSearching_Extensions.PerformAction(AppKit.INSUserInterfaceItemSearching,Foundation.NSObject) @@ -34581,31 +35882,161 @@ M:AppKit.NSView.#ctor M:AppKit.NSView.#ctor(Foundation.NSObjectFlag) M:AppKit.NSView.#ctor(ObjCRuntime.NativeHandle) M:AppKit.NSView.AccessibilityPerformAction(Foundation.NSString) +M:AppKit.NSView.AccessibilityPerformCancel +M:AppKit.NSView.AccessibilityPerformConfirm +M:AppKit.NSView.AccessibilityPerformDecrement +M:AppKit.NSView.AccessibilityPerformDelete +M:AppKit.NSView.AccessibilityPerformIncrement +M:AppKit.NSView.AccessibilityPerformPick +M:AppKit.NSView.AccessibilityPerformPress +M:AppKit.NSView.AccessibilityPerformRaise +M:AppKit.NSView.AccessibilityPerformShowAlternateUI +M:AppKit.NSView.AccessibilityPerformShowDefaultUI +M:AppKit.NSView.AccessibilityPerformShowMenu M:AppKit.NSView.AddToolTip(CoreGraphics.CGRect,AppKit.INSToolTipOwner) M:AppKit.NSView.AddToolTip(CoreGraphics.CGRect,Foundation.NSObject,System.IntPtr) M:AppKit.NSView.AddToolTip(CoreGraphics.CGRect,Foundation.NSObject) +M:AppKit.NSView.AnimationFor(Foundation.NSString) +M:AppKit.NSView.ConcludeDragOperation(AppKit.INSDraggingInfo) +M:AppKit.NSView.DefaultAnimationFor(Foundation.NSString) M:AppKit.NSView.Dispose(System.Boolean) +M:AppKit.NSView.DraggingEnded(AppKit.INSDraggingInfo) +M:AppKit.NSView.DraggingEntered(AppKit.INSDraggingInfo) +M:AppKit.NSView.DraggingExited(AppKit.INSDraggingInfo) +M:AppKit.NSView.DraggingUpdated(AppKit.INSDraggingInfo) M:AppKit.NSView.get_AccessibilityActionNames +M:AppKit.NSView.get_AccessibilityActivationPoint +M:AppKit.NSView.get_AccessibilityAllowedValues M:AppKit.NSView.get_AccessibilityAlternateUIVisible +M:AppKit.NSView.get_AccessibilityApplicationFocusedUIElement +M:AppKit.NSView.get_AccessibilityAttributedUserInputLabels M:AppKit.NSView.get_AccessibilityAttributeNames +M:AppKit.NSView.get_AccessibilityCancelButton +M:AppKit.NSView.get_AccessibilityChildren +M:AppKit.NSView.get_AccessibilityChildrenInNavigationOrder +M:AppKit.NSView.get_AccessibilityClearButton +M:AppKit.NSView.get_AccessibilityCloseButton +M:AppKit.NSView.get_AccessibilityColumnCount +M:AppKit.NSView.get_AccessibilityColumnHeaderUIElements +M:AppKit.NSView.get_AccessibilityColumnIndexRange +M:AppKit.NSView.get_AccessibilityColumns +M:AppKit.NSView.get_AccessibilityColumnTitles +M:AppKit.NSView.get_AccessibilityContents +M:AppKit.NSView.get_AccessibilityCriticalValue +M:AppKit.NSView.get_AccessibilityCustomActions +M:AppKit.NSView.get_AccessibilityCustomRotors +M:AppKit.NSView.get_AccessibilityDecrementButton +M:AppKit.NSView.get_AccessibilityDefaultButton M:AppKit.NSView.get_AccessibilityDisclosed +M:AppKit.NSView.get_AccessibilityDisclosedByRow +M:AppKit.NSView.get_AccessibilityDisclosedRows +M:AppKit.NSView.get_AccessibilityDisclosureLevel +M:AppKit.NSView.get_AccessibilityDocument M:AppKit.NSView.get_AccessibilityEdited M:AppKit.NSView.get_AccessibilityElement M:AppKit.NSView.get_AccessibilityEnabled M:AppKit.NSView.get_AccessibilityExpanded +M:AppKit.NSView.get_AccessibilityExtrasMenuBar +M:AppKit.NSView.get_AccessibilityFilename +M:AppKit.NSView.get_AccessibilityFocused +M:AppKit.NSView.get_AccessibilityFocusedWindow +M:AppKit.NSView.get_AccessibilityFrame M:AppKit.NSView.get_AccessibilityFrontmost +M:AppKit.NSView.get_AccessibilityFullScreenButton +M:AppKit.NSView.get_AccessibilityGrowArea +M:AppKit.NSView.get_AccessibilityHandles +M:AppKit.NSView.get_AccessibilityHeader +M:AppKit.NSView.get_AccessibilityHelp M:AppKit.NSView.get_AccessibilityHidden +M:AppKit.NSView.get_AccessibilityHorizontalScrollBar +M:AppKit.NSView.get_AccessibilityHorizontalUnitDescription +M:AppKit.NSView.get_AccessibilityHorizontalUnits +M:AppKit.NSView.get_AccessibilityIdentifier +M:AppKit.NSView.get_AccessibilityIncrementButton +M:AppKit.NSView.get_AccessibilityIndex +M:AppKit.NSView.get_AccessibilityInsertionPointLineNumber M:AppKit.NSView.get_AccessibilityIsIgnored +M:AppKit.NSView.get_AccessibilityLabel +M:AppKit.NSView.get_AccessibilityLabelUIElements +M:AppKit.NSView.get_AccessibilityLabelValue +M:AppKit.NSView.get_AccessibilityLinkedUIElements M:AppKit.NSView.get_AccessibilityMain +M:AppKit.NSView.get_AccessibilityMainWindow +M:AppKit.NSView.get_AccessibilityMarkerGroupUIElement +M:AppKit.NSView.get_AccessibilityMarkerTypeDescription +M:AppKit.NSView.get_AccessibilityMarkerUIElements +M:AppKit.NSView.get_AccessibilityMarkerValues +M:AppKit.NSView.get_AccessibilityMaxValue +M:AppKit.NSView.get_AccessibilityMenuBar +M:AppKit.NSView.get_AccessibilityMinimizeButton M:AppKit.NSView.get_AccessibilityMinimized +M:AppKit.NSView.get_AccessibilityMinValue M:AppKit.NSView.get_AccessibilityModal +M:AppKit.NSView.get_AccessibilityNextContents M:AppKit.NSView.get_AccessibilityNotifiesWhenDestroyed +M:AppKit.NSView.get_AccessibilityNumberOfCharacters M:AppKit.NSView.get_AccessibilityOrderedByRow +M:AppKit.NSView.get_AccessibilityOrientation +M:AppKit.NSView.get_AccessibilityOverflowButton M:AppKit.NSView.get_AccessibilityParameterizedAttributeNames +M:AppKit.NSView.get_AccessibilityParent +M:AppKit.NSView.get_AccessibilityPlaceholderValue +M:AppKit.NSView.get_AccessibilityPreviousContents M:AppKit.NSView.get_AccessibilityProtectedContent +M:AppKit.NSView.get_AccessibilityProxy M:AppKit.NSView.get_AccessibilityRequired +M:AppKit.NSView.get_AccessibilityRole +M:AppKit.NSView.get_AccessibilityRoleDescription +M:AppKit.NSView.get_AccessibilityRowCount +M:AppKit.NSView.get_AccessibilityRowHeaderUIElements +M:AppKit.NSView.get_AccessibilityRowIndexRange +M:AppKit.NSView.get_AccessibilityRows +M:AppKit.NSView.get_AccessibilityRulerMarkerType +M:AppKit.NSView.get_AccessibilitySearchButton +M:AppKit.NSView.get_AccessibilitySearchMenu M:AppKit.NSView.get_AccessibilitySelected +M:AppKit.NSView.get_AccessibilitySelectedCells +M:AppKit.NSView.get_AccessibilitySelectedChildren +M:AppKit.NSView.get_AccessibilitySelectedColumns +M:AppKit.NSView.get_AccessibilitySelectedRows +M:AppKit.NSView.get_AccessibilitySelectedText +M:AppKit.NSView.get_AccessibilitySelectedTextRange +M:AppKit.NSView.get_AccessibilitySelectedTextRanges +M:AppKit.NSView.get_AccessibilityServesAsTitleForUIElements +M:AppKit.NSView.get_AccessibilitySharedCharacterRange +M:AppKit.NSView.get_AccessibilitySharedFocusElements +M:AppKit.NSView.get_AccessibilitySharedTextUIElements +M:AppKit.NSView.get_AccessibilityShownMenu +M:AppKit.NSView.get_AccessibilitySortDirection +M:AppKit.NSView.get_AccessibilitySplitters +M:AppKit.NSView.get_AccessibilitySubrole +M:AppKit.NSView.get_AccessibilityTabs +M:AppKit.NSView.get_AccessibilityTitle +M:AppKit.NSView.get_AccessibilityTitleUIElement +M:AppKit.NSView.get_AccessibilityToolbarButton +M:AppKit.NSView.get_AccessibilityTopLevelUIElement +M:AppKit.NSView.get_AccessibilityUnitDescription +M:AppKit.NSView.get_AccessibilityUnits +M:AppKit.NSView.get_AccessibilityUrl +M:AppKit.NSView.get_AccessibilityUserInputLabels +M:AppKit.NSView.get_AccessibilityValue +M:AppKit.NSView.get_AccessibilityValueDescription +M:AppKit.NSView.get_AccessibilityVerticalScrollBar +M:AppKit.NSView.get_AccessibilityVerticalUnitDescription +M:AppKit.NSView.get_AccessibilityVerticalUnits +M:AppKit.NSView.get_AccessibilityVisibleCells +M:AppKit.NSView.get_AccessibilityVisibleCharacterRange +M:AppKit.NSView.get_AccessibilityVisibleChildren +M:AppKit.NSView.get_AccessibilityVisibleColumns +M:AppKit.NSView.get_AccessibilityVisibleRows +M:AppKit.NSView.get_AccessibilityWarningValue +M:AppKit.NSView.get_AccessibilityWindow +M:AppKit.NSView.get_AccessibilityWindows +M:AppKit.NSView.get_AccessibilityZoomButton +M:AppKit.NSView.get_Animations +M:AppKit.NSView.get_Animator M:AppKit.NSView.get_AnnouncementRequestedNotification +M:AppKit.NSView.get_Appearance M:AppKit.NSView.get_ApplicationActivatedNotification M:AppKit.NSView.get_ApplicationDeactivatedNotification M:AppKit.NSView.get_ApplicationHiddenNotification @@ -34614,6 +36045,7 @@ M:AppKit.NSView.get_BoundsChangedNotification M:AppKit.NSView.get_ClassHandle M:AppKit.NSView.get_CreatedNotification M:AppKit.NSView.get_DrawerCreatedNotification +M:AppKit.NSView.get_EffectiveAppearance M:AppKit.NSView.get_FocusChangedNotification M:AppKit.NSView.get_FocusedWindowChangedNotification M:AppKit.NSView.get_FrameChangedNotification @@ -34621,6 +36053,7 @@ M:AppKit.NSView.get_GlobalFrameChangedNotification M:AppKit.NSView.get_HelpTagCreatedNotification M:AppKit.NSView.get_Hidden M:AppKit.NSView.get_HorizontalContentSizeConstraintActive +M:AppKit.NSView.get_Identifier M:AppKit.NSView.get_IsCompatibleWithResponsiveScrolling M:AppKit.NSView.get_IsDrawingFindIndicator M:AppKit.NSView.get_IsFlipped @@ -34655,6 +36088,7 @@ M:AppKit.NSView.get_UnitsChangedNotification M:AppKit.NSView.get_UpdatedTrackingAreasNotification M:AppKit.NSView.get_ValueChangedNotification M:AppKit.NSView.get_VerticalContentSizeConstraintActive +M:AppKit.NSView.get_WantsPeriodicDraggingUpdates M:AppKit.NSView.get_WindowCreatedNotification M:AppKit.NSView.get_WindowDeminiaturizedNotification M:AppKit.NSView.get_WindowMiniaturizedNotification @@ -34663,12 +36097,27 @@ M:AppKit.NSView.get_WindowResizedNotification M:AppKit.NSView.GetAccessibilityActionDescription(Foundation.NSString) M:AppKit.NSView.GetAccessibilityArrayAttributeCount(Foundation.NSString) M:AppKit.NSView.GetAccessibilityArrayAttributeValues(Foundation.NSString,System.UIntPtr,System.UIntPtr) +M:AppKit.NSView.GetAccessibilityAttributedString(Foundation.NSRange) +M:AppKit.NSView.GetAccessibilityCellForColumn(System.IntPtr,System.IntPtr) M:AppKit.NSView.GetAccessibilityFocusedUIElement +M:AppKit.NSView.GetAccessibilityFrame(Foundation.NSRange) M:AppKit.NSView.GetAccessibilityHitTest(CoreGraphics.CGPoint) M:AppKit.NSView.GetAccessibilityIndexOfChild(Foundation.NSObject) +M:AppKit.NSView.GetAccessibilityLayoutForScreen(CoreGraphics.CGPoint) +M:AppKit.NSView.GetAccessibilityLayoutForScreen(CoreGraphics.CGSize) +M:AppKit.NSView.GetAccessibilityLine(System.IntPtr) +M:AppKit.NSView.GetAccessibilityRange(CoreGraphics.CGPoint) +M:AppKit.NSView.GetAccessibilityRange(System.IntPtr) +M:AppKit.NSView.GetAccessibilityRangeForLine(System.IntPtr) +M:AppKit.NSView.GetAccessibilityRtf(Foundation.NSRange) +M:AppKit.NSView.GetAccessibilityScreenForLayout(CoreGraphics.CGPoint) +M:AppKit.NSView.GetAccessibilityScreenForLayout(CoreGraphics.CGSize) +M:AppKit.NSView.GetAccessibilityString(Foundation.NSRange) +M:AppKit.NSView.GetAccessibilityStyleRange(System.IntPtr) M:AppKit.NSView.GetAccessibilityValue(Foundation.NSString,Foundation.NSObject) M:AppKit.NSView.GetAccessibilityValue(Foundation.NSString) M:AppKit.NSView.IsAccessibilityAttributeSettable(Foundation.NSString) +M:AppKit.NSView.IsAccessibilitySelectorAllowed(ObjCRuntime.Selector) M:AppKit.NSView.Notifications.ObserveAnnouncementRequested(Foundation.NSObject,System.EventHandler{Foundation.NSNotificationEventArgs}) M:AppKit.NSView.Notifications.ObserveAnnouncementRequested(System.EventHandler{Foundation.NSNotificationEventArgs}) M:AppKit.NSView.Notifications.ObserveApplicationActivated(Foundation.NSObject,System.EventHandler{Foundation.NSNotificationEventArgs}) @@ -34745,6 +36194,8 @@ M:AppKit.NSView.Notifications.ObserveWindowMoved(Foundation.NSObject,System.Even M:AppKit.NSView.Notifications.ObserveWindowMoved(System.EventHandler{Foundation.NSNotificationEventArgs}) M:AppKit.NSView.Notifications.ObserveWindowResized(Foundation.NSObject,System.EventHandler{Foundation.NSNotificationEventArgs}) M:AppKit.NSView.Notifications.ObserveWindowResized(System.EventHandler{Foundation.NSNotificationEventArgs}) +M:AppKit.NSView.PerformDragOperation(AppKit.INSDraggingInfo) +M:AppKit.NSView.PrepareForDragOperation(AppKit.INSDraggingInfo) M:AppKit.NSView.set_AcceptsTouchEvents(System.Boolean) M:AppKit.NSView.set_AccessibilityActivationPoint(CoreGraphics.CGPoint) M:AppKit.NSView.set_AccessibilityAllowedValues(Foundation.NSNumber[]) @@ -34947,6 +36398,7 @@ M:AppKit.NSViewController.BecomeFirstResponder M:AppKit.NSViewController.BeginGestureWithEvent(AppKit.NSEvent) M:AppKit.NSViewController.BeginRequestWithExtensionContext(Foundation.NSExtensionContext) M:AppKit.NSViewController.ChangeMode(AppKit.NSEvent) +M:AppKit.NSViewController.CommitEditing(Foundation.NSError@) M:AppKit.NSViewController.CursorUpdate(AppKit.NSEvent) M:AppKit.NSViewController.Dispose(System.Boolean) M:AppKit.NSViewController.EncodeRestorableState(Foundation.NSCoder,Foundation.NSOperationQueue) @@ -34956,6 +36408,7 @@ M:AppKit.NSViewController.EndGestureWithEvent(AppKit.NSEvent) M:AppKit.NSViewController.FlagsChanged(AppKit.NSEvent) M:AppKit.NSViewController.FlushBufferedKeyEvents M:AppKit.NSViewController.get_ClassHandle +M:AppKit.NSViewController.get_Identifier M:AppKit.NSViewController.get_Menu M:AppKit.NSViewController.get_NextResponder M:AppKit.NSViewController.get_TouchBar @@ -34980,6 +36433,8 @@ M:AppKit.NSViewController.OtherMouseDown(AppKit.NSEvent) M:AppKit.NSViewController.OtherMouseDragged(AppKit.NSEvent) M:AppKit.NSViewController.OtherMouseUp(AppKit.NSEvent) M:AppKit.NSViewController.PerformKeyEquivalent(AppKit.NSEvent) +M:AppKit.NSViewController.PerformSegue(System.String,Foundation.NSObject) +M:AppKit.NSViewController.PrepareForSegue(AppKit.NSStoryboardSegue,Foundation.NSObject) M:AppKit.NSViewController.PresentError(Foundation.NSError,AppKit.NSWindow,Foundation.NSObject,ObjCRuntime.Selector,System.IntPtr) M:AppKit.NSViewController.PresentError(Foundation.NSError) M:AppKit.NSViewController.PresentViewControllerInWidget(AppKit.NSViewController) @@ -35006,6 +36461,7 @@ M:AppKit.NSViewController.set_Title(System.String) M:AppKit.NSViewController.set_UserActivity(Foundation.NSUserActivity) M:AppKit.NSViewController.set_View(AppKit.NSView) M:AppKit.NSViewController.ShouldBeTreatedAsInkEvent(AppKit.NSEvent) +M:AppKit.NSViewController.ShouldPerformSegue(System.String,Foundation.NSObject) M:AppKit.NSViewController.ShowContextHelp(Foundation.NSObject) M:AppKit.NSViewController.SmartMagnify(AppKit.NSEvent) M:AppKit.NSViewController.SupplementalTargetForAction(ObjCRuntime.Selector,Foundation.NSObject) @@ -35044,6 +36500,17 @@ M:AppKit.NSWindow.#ctor M:AppKit.NSWindow.#ctor(Foundation.NSCoder) M:AppKit.NSWindow.#ctor(Foundation.NSObjectFlag) M:AppKit.NSWindow.#ctor(ObjCRuntime.NativeHandle) +M:AppKit.NSWindow.AccessibilityPerformCancel +M:AppKit.NSWindow.AccessibilityPerformConfirm +M:AppKit.NSWindow.AccessibilityPerformDecrement +M:AppKit.NSWindow.AccessibilityPerformDelete +M:AppKit.NSWindow.AccessibilityPerformIncrement +M:AppKit.NSWindow.AccessibilityPerformPick +M:AppKit.NSWindow.AccessibilityPerformPress +M:AppKit.NSWindow.AccessibilityPerformRaise +M:AppKit.NSWindow.AccessibilityPerformShowAlternateUI +M:AppKit.NSWindow.AccessibilityPerformShowDefaultUI +M:AppKit.NSWindow.AccessibilityPerformShowMenu M:AppKit.NSWindow.add_DidBecomeKey(System.EventHandler) M:AppKit.NSWindow.add_DidBecomeMain(System.EventHandler) M:AppKit.NSWindow.add_DidChangeBackingProperties(System.EventHandler) @@ -35078,26 +36545,140 @@ M:AppKit.NSWindow.add_WillExitVersionBrowser(System.EventHandler) M:AppKit.NSWindow.add_WillMiniaturize(System.EventHandler) M:AppKit.NSWindow.add_WillMove(System.EventHandler) M:AppKit.NSWindow.add_WillStartLiveResize(System.EventHandler) +M:AppKit.NSWindow.AnimationFor(Foundation.NSString) M:AppKit.NSWindow.Close +M:AppKit.NSWindow.DefaultAnimationFor(Foundation.NSString) M:AppKit.NSWindow.DiscardEventsMatchingMask(AppKit.NSEventMask,AppKit.NSEvent) M:AppKit.NSWindow.Dispose(System.Boolean) M:AppKit.NSWindow.FromWindowRef(System.IntPtr) +M:AppKit.NSWindow.get_AccessibilityActivationPoint +M:AppKit.NSWindow.get_AccessibilityAllowedValues M:AppKit.NSWindow.get_AccessibilityAlternateUIVisible +M:AppKit.NSWindow.get_AccessibilityApplicationFocusedUIElement +M:AppKit.NSWindow.get_AccessibilityAttributedUserInputLabels +M:AppKit.NSWindow.get_AccessibilityCancelButton +M:AppKit.NSWindow.get_AccessibilityChildren +M:AppKit.NSWindow.get_AccessibilityChildrenInNavigationOrder +M:AppKit.NSWindow.get_AccessibilityClearButton +M:AppKit.NSWindow.get_AccessibilityCloseButton +M:AppKit.NSWindow.get_AccessibilityColumnCount +M:AppKit.NSWindow.get_AccessibilityColumnHeaderUIElements +M:AppKit.NSWindow.get_AccessibilityColumnIndexRange +M:AppKit.NSWindow.get_AccessibilityColumns +M:AppKit.NSWindow.get_AccessibilityColumnTitles +M:AppKit.NSWindow.get_AccessibilityContents +M:AppKit.NSWindow.get_AccessibilityCriticalValue +M:AppKit.NSWindow.get_AccessibilityCustomActions +M:AppKit.NSWindow.get_AccessibilityCustomRotors +M:AppKit.NSWindow.get_AccessibilityDecrementButton +M:AppKit.NSWindow.get_AccessibilityDefaultButton M:AppKit.NSWindow.get_AccessibilityDisclosed +M:AppKit.NSWindow.get_AccessibilityDisclosedByRow +M:AppKit.NSWindow.get_AccessibilityDisclosedRows +M:AppKit.NSWindow.get_AccessibilityDisclosureLevel +M:AppKit.NSWindow.get_AccessibilityDocument M:AppKit.NSWindow.get_AccessibilityEdited M:AppKit.NSWindow.get_AccessibilityElement M:AppKit.NSWindow.get_AccessibilityEnabled M:AppKit.NSWindow.get_AccessibilityExpanded +M:AppKit.NSWindow.get_AccessibilityExtrasMenuBar +M:AppKit.NSWindow.get_AccessibilityFilename +M:AppKit.NSWindow.get_AccessibilityFocused +M:AppKit.NSWindow.get_AccessibilityFocusedWindow +M:AppKit.NSWindow.get_AccessibilityFrame M:AppKit.NSWindow.get_AccessibilityFrontmost +M:AppKit.NSWindow.get_AccessibilityFullScreenButton +M:AppKit.NSWindow.get_AccessibilityGrowArea +M:AppKit.NSWindow.get_AccessibilityHandles +M:AppKit.NSWindow.get_AccessibilityHeader +M:AppKit.NSWindow.get_AccessibilityHelp M:AppKit.NSWindow.get_AccessibilityHidden +M:AppKit.NSWindow.get_AccessibilityHorizontalScrollBar +M:AppKit.NSWindow.get_AccessibilityHorizontalUnitDescription +M:AppKit.NSWindow.get_AccessibilityHorizontalUnits +M:AppKit.NSWindow.get_AccessibilityIdentifier +M:AppKit.NSWindow.get_AccessibilityIncrementButton +M:AppKit.NSWindow.get_AccessibilityIndex +M:AppKit.NSWindow.get_AccessibilityInsertionPointLineNumber +M:AppKit.NSWindow.get_AccessibilityLabel +M:AppKit.NSWindow.get_AccessibilityLabelUIElements +M:AppKit.NSWindow.get_AccessibilityLabelValue +M:AppKit.NSWindow.get_AccessibilityLinkedUIElements M:AppKit.NSWindow.get_AccessibilityMain +M:AppKit.NSWindow.get_AccessibilityMainWindow +M:AppKit.NSWindow.get_AccessibilityMarkerGroupUIElement +M:AppKit.NSWindow.get_AccessibilityMarkerTypeDescription +M:AppKit.NSWindow.get_AccessibilityMarkerUIElements +M:AppKit.NSWindow.get_AccessibilityMarkerValues +M:AppKit.NSWindow.get_AccessibilityMaxValue +M:AppKit.NSWindow.get_AccessibilityMenuBar +M:AppKit.NSWindow.get_AccessibilityMinimizeButton M:AppKit.NSWindow.get_AccessibilityMinimized +M:AppKit.NSWindow.get_AccessibilityMinValue M:AppKit.NSWindow.get_AccessibilityModal +M:AppKit.NSWindow.get_AccessibilityNextContents +M:AppKit.NSWindow.get_AccessibilityNumberOfCharacters M:AppKit.NSWindow.get_AccessibilityOrderedByRow +M:AppKit.NSWindow.get_AccessibilityOrientation +M:AppKit.NSWindow.get_AccessibilityOverflowButton +M:AppKit.NSWindow.get_AccessibilityParent +M:AppKit.NSWindow.get_AccessibilityPlaceholderValue +M:AppKit.NSWindow.get_AccessibilityPreviousContents M:AppKit.NSWindow.get_AccessibilityProtectedContent +M:AppKit.NSWindow.get_AccessibilityProxy M:AppKit.NSWindow.get_AccessibilityRequired +M:AppKit.NSWindow.get_AccessibilityRole +M:AppKit.NSWindow.get_AccessibilityRoleDescription +M:AppKit.NSWindow.get_AccessibilityRowCount +M:AppKit.NSWindow.get_AccessibilityRowHeaderUIElements +M:AppKit.NSWindow.get_AccessibilityRowIndexRange +M:AppKit.NSWindow.get_AccessibilityRows +M:AppKit.NSWindow.get_AccessibilityRulerMarkerType +M:AppKit.NSWindow.get_AccessibilitySearchButton +M:AppKit.NSWindow.get_AccessibilitySearchMenu M:AppKit.NSWindow.get_AccessibilitySelected +M:AppKit.NSWindow.get_AccessibilitySelectedCells +M:AppKit.NSWindow.get_AccessibilitySelectedChildren +M:AppKit.NSWindow.get_AccessibilitySelectedColumns +M:AppKit.NSWindow.get_AccessibilitySelectedRows +M:AppKit.NSWindow.get_AccessibilitySelectedText +M:AppKit.NSWindow.get_AccessibilitySelectedTextRange +M:AppKit.NSWindow.get_AccessibilitySelectedTextRanges +M:AppKit.NSWindow.get_AccessibilityServesAsTitleForUIElements +M:AppKit.NSWindow.get_AccessibilitySharedCharacterRange +M:AppKit.NSWindow.get_AccessibilitySharedFocusElements +M:AppKit.NSWindow.get_AccessibilitySharedTextUIElements +M:AppKit.NSWindow.get_AccessibilityShownMenu +M:AppKit.NSWindow.get_AccessibilitySortDirection +M:AppKit.NSWindow.get_AccessibilitySplitters +M:AppKit.NSWindow.get_AccessibilitySubrole +M:AppKit.NSWindow.get_AccessibilityTabs +M:AppKit.NSWindow.get_AccessibilityTitle +M:AppKit.NSWindow.get_AccessibilityTitleUIElement +M:AppKit.NSWindow.get_AccessibilityToolbarButton +M:AppKit.NSWindow.get_AccessibilityTopLevelUIElement +M:AppKit.NSWindow.get_AccessibilityUnitDescription +M:AppKit.NSWindow.get_AccessibilityUnits +M:AppKit.NSWindow.get_AccessibilityUrl +M:AppKit.NSWindow.get_AccessibilityUserInputLabels +M:AppKit.NSWindow.get_AccessibilityValue +M:AppKit.NSWindow.get_AccessibilityValueDescription +M:AppKit.NSWindow.get_AccessibilityVerticalScrollBar +M:AppKit.NSWindow.get_AccessibilityVerticalUnitDescription +M:AppKit.NSWindow.get_AccessibilityVerticalUnits +M:AppKit.NSWindow.get_AccessibilityVisibleCells +M:AppKit.NSWindow.get_AccessibilityVisibleCharacterRange +M:AppKit.NSWindow.get_AccessibilityVisibleChildren +M:AppKit.NSWindow.get_AccessibilityVisibleColumns +M:AppKit.NSWindow.get_AccessibilityVisibleRows +M:AppKit.NSWindow.get_AccessibilityWarningValue +M:AppKit.NSWindow.get_AccessibilityWindow +M:AppKit.NSWindow.get_AccessibilityWindows +M:AppKit.NSWindow.get_AccessibilityZoomButton +M:AppKit.NSWindow.get_Animations +M:AppKit.NSWindow.get_Animator M:AppKit.NSWindow.get_AnnouncementRequestedNotification +M:AppKit.NSWindow.get_Appearance M:AppKit.NSWindow.get_ApplicationActivatedNotification M:AppKit.NSWindow.get_ApplicationDeactivatedNotification M:AppKit.NSWindow.get_ApplicationHiddenNotification @@ -35130,11 +36711,13 @@ M:AppKit.NSWindow.get_DidResizeNotification M:AppKit.NSWindow.get_DidUpdateNotification M:AppKit.NSWindow.get_DocumentEdited M:AppKit.NSWindow.get_DrawerCreatedNotification +M:AppKit.NSWindow.get_EffectiveAppearance M:AppKit.NSWindow.get_ExcludedFromWindowsMenu M:AppKit.NSWindow.get_FlushWindowDisabled M:AppKit.NSWindow.get_FocusedWindowChangedNotification M:AppKit.NSWindow.get_FrameAutosaveName M:AppKit.NSWindow.get_HelpTagCreatedNotification +M:AppKit.NSWindow.get_Identifier M:AppKit.NSWindow.get_IsKeyWindow M:AppKit.NSWindow.get_IsMainWindow M:AppKit.NSWindow.get_IsMiniaturized @@ -35194,6 +36777,21 @@ M:AppKit.NSWindow.get_WindowMiniaturizedNotification M:AppKit.NSWindow.get_WindowMovedNotification M:AppKit.NSWindow.get_WindowResizedNotification M:AppKit.NSWindow.get_WindowShouldClose +M:AppKit.NSWindow.GetAccessibilityAttributedString(Foundation.NSRange) +M:AppKit.NSWindow.GetAccessibilityCellForColumn(System.IntPtr,System.IntPtr) +M:AppKit.NSWindow.GetAccessibilityFrame(Foundation.NSRange) +M:AppKit.NSWindow.GetAccessibilityLayoutForScreen(CoreGraphics.CGPoint) +M:AppKit.NSWindow.GetAccessibilityLayoutForScreen(CoreGraphics.CGSize) +M:AppKit.NSWindow.GetAccessibilityLine(System.IntPtr) +M:AppKit.NSWindow.GetAccessibilityRange(CoreGraphics.CGPoint) +M:AppKit.NSWindow.GetAccessibilityRange(System.IntPtr) +M:AppKit.NSWindow.GetAccessibilityRangeForLine(System.IntPtr) +M:AppKit.NSWindow.GetAccessibilityRtf(Foundation.NSRange) +M:AppKit.NSWindow.GetAccessibilityScreenForLayout(CoreGraphics.CGPoint) +M:AppKit.NSWindow.GetAccessibilityScreenForLayout(CoreGraphics.CGSize) +M:AppKit.NSWindow.GetAccessibilityString(Foundation.NSRange) +M:AppKit.NSWindow.GetAccessibilityStyleRange(System.IntPtr) +M:AppKit.NSWindow.IsAccessibilitySelectorAllowed(ObjCRuntime.Selector) M:AppKit.NSWindow.NextEventMatchingMask(AppKit.NSEventMask,Foundation.NSDate,System.String,System.Boolean) M:AppKit.NSWindow.NextEventMatchingMask(AppKit.NSEventMask) M:AppKit.NSWindow.Notifications.ObserveAnnouncementRequested(Foundation.NSObject,System.EventHandler{Foundation.NSNotificationEventArgs}) @@ -35570,6 +37168,8 @@ M:AppKit.NSWindow.SetIsVisible(System.Boolean) M:AppKit.NSWindow.SetIsZoomed(System.Boolean) M:AppKit.NSWindow.SetOneShot(System.Boolean) M:AppKit.NSWindow.TransferWindowSharingAsync(AppKit.NSWindow) +M:AppKit.NSWindow.ValidateMenuItem(AppKit.NSMenuItem) +M:AppKit.NSWindow.ValidateUserInterfaceItem(AppKit.INSValidatedUserInterfaceItem) M:AppKit.NSWindowApplicationPresentationOptions.#ctor(System.Object,System.IntPtr) M:AppKit.NSWindowApplicationPresentationOptions.BeginInvoke(AppKit.NSWindow,AppKit.NSApplicationPresentationOptions,System.AsyncCallback,System.Object) M:AppKit.NSWindowApplicationPresentationOptions.EndInvoke(System.IAsyncResult) @@ -35594,6 +37194,8 @@ M:AppKit.NSWindowController.#ctor(ObjCRuntime.NativeHandle) M:AppKit.NSWindowController.EncodeTo(Foundation.NSCoder) M:AppKit.NSWindowController.get_ClassHandle M:AppKit.NSWindowController.get_IsWindowLoaded +M:AppKit.NSWindowController.PerformSegue(System.String,Foundation.NSObject) +M:AppKit.NSWindowController.PrepareForSegue(AppKit.NSStoryboardSegue,Foundation.NSObject) M:AppKit.NSWindowController.set_ContentViewController(AppKit.NSViewController) M:AppKit.NSWindowController.set_Document(AppKit.NSDocument) M:AppKit.NSWindowController.set_PreviewRepresentableActivityItems(AppKit.INSPreviewRepresentableActivityItem[]) @@ -35601,6 +37203,7 @@ M:AppKit.NSWindowController.set_ShouldCascadeWindows(System.Boolean) M:AppKit.NSWindowController.set_ShouldCloseDocument(System.Boolean) M:AppKit.NSWindowController.set_Window(AppKit.NSWindow) M:AppKit.NSWindowController.set_WindowFrameAutosaveName(System.String) +M:AppKit.NSWindowController.ShouldPerformSegue(System.String,Foundation.NSObject) M:AppKit.NSWindowDelegate_Extensions.CustomWindowsToEnterFullScreen(AppKit.INSWindowDelegate,AppKit.NSWindow) M:AppKit.NSWindowDelegate_Extensions.CustomWindowsToExitFullScreen(AppKit.INSWindowDelegate,AppKit.NSWindow) M:AppKit.NSWindowDelegate_Extensions.DidBecomeKey(AppKit.INSWindowDelegate,Foundation.NSNotification) @@ -35876,6 +37479,7 @@ M:AppKit.NSWorkspaceMountEventArgs.get_VolumeLocalizedName M:AppKit.NSWorkspaceMountEventArgs.get_VolumeUrl M:AppKit.NSWorkspaceOpenConfiguration.#ctor(Foundation.NSObjectFlag) M:AppKit.NSWorkspaceOpenConfiguration.#ctor(ObjCRuntime.NativeHandle) +M:AppKit.NSWorkspaceOpenConfiguration.Copy(Foundation.NSZone) M:AppKit.NSWorkspaceOpenConfiguration.get_ClassHandle M:AppKit.NSWorkspaceOpenConfiguration.get_ForPrinting M:AppKit.NSWorkspaceOpenConfiguration.get_LaunchArchitecture @@ -35911,6 +37515,7 @@ M:AppTrackingTransparency.ATTrackingManager.get_ClassHandle M:AppTrackingTransparency.ATTrackingManager.get_TrackingAuthorizationStatus M:AppTrackingTransparency.ATTrackingManager.RequestTrackingAuthorization(System.Action{AppTrackingTransparency.ATTrackingManagerAuthorizationStatus}) M:AppTrackingTransparency.ATTrackingManager.RequestTrackingAuthorizationAsync +M:ARKit.ARAnchor.#ctor(ARKit.ARAnchor) M:ARKit.ARAnchor.#ctor(Foundation.NSCoder) M:ARKit.ARAnchor.#ctor(Foundation.NSObjectFlag) M:ARKit.ARAnchor.#ctor(ObjCRuntime.NativeHandle) @@ -35922,6 +37527,7 @@ M:ARKit.ARAppClipCodeAnchor.#ctor(Foundation.NSCoder) M:ARKit.ARAppClipCodeAnchor.#ctor(Foundation.NSObjectFlag) M:ARKit.ARAppClipCodeAnchor.#ctor(ObjCRuntime.NativeHandle) M:ARKit.ARAppClipCodeAnchor.get_ClassHandle +M:ARKit.ARAppClipCodeAnchor.get_IsTracked M:ARKit.ARBlendShapeLocationOptions.#ctor M:ARKit.ARBlendShapeLocationOptions.#ctor(Foundation.NSDictionary) M:ARKit.ARBlendShapeLocationOptions.get_BrowDownLeft @@ -36036,6 +37642,7 @@ M:ARKit.ARBodyAnchor.#ctor(Foundation.NSCoder) M:ARKit.ARBodyAnchor.#ctor(Foundation.NSObjectFlag) M:ARKit.ARBodyAnchor.#ctor(ObjCRuntime.NativeHandle) M:ARKit.ARBodyAnchor.get_ClassHandle +M:ARKit.ARBodyAnchor.get_IsTracked M:ARKit.ARBodyTrackingConfiguration.#ctor(Foundation.NSObjectFlag) M:ARKit.ARBodyTrackingConfiguration.#ctor(ObjCRuntime.NativeHandle) M:ARKit.ARBodyTrackingConfiguration.get_AutoFocusEnabled @@ -36054,6 +37661,7 @@ M:ARKit.ARBodyTrackingConfiguration.set_WantsHdrEnvironmentTextures(System.Boole M:ARKit.ARBodyTrackingConfiguration.SupportsFrameSemantics(ARKit.ARFrameSemantics) M:ARKit.ARCamera.#ctor(Foundation.NSObjectFlag) M:ARKit.ARCamera.#ctor(ObjCRuntime.NativeHandle) +M:ARKit.ARCamera.Copy(Foundation.NSZone) M:ARKit.ARCamera.get_ClassHandle M:ARKit.ARCoachingOverlayView.#ctor M:ARKit.ARCoachingOverlayView.#ctor(CoreGraphics.CGRect) @@ -36093,6 +37701,7 @@ M:ARKit.ARCollaborationData.EncodeTo(Foundation.NSCoder) M:ARKit.ARCollaborationData.get_ClassHandle M:ARKit.ARConfiguration.#ctor(Foundation.NSObjectFlag) M:ARKit.ARConfiguration.#ctor(ObjCRuntime.NativeHandle) +M:ARKit.ARConfiguration.Copy(Foundation.NSZone) M:ARKit.ARConfiguration.get_ClassHandle M:ARKit.ARConfiguration.get_LightEstimationEnabled M:ARKit.ARConfiguration.set_FrameSemantics(ARKit.ARFrameSemantics) @@ -36120,10 +37729,12 @@ M:ARKit.ARFaceAnchor.#ctor(Foundation.NSObjectFlag) M:ARKit.ARFaceAnchor.#ctor(ObjCRuntime.NativeHandle) M:ARKit.ARFaceAnchor.get_BlendShapes M:ARKit.ARFaceAnchor.get_ClassHandle +M:ARKit.ARFaceAnchor.get_IsTracked M:ARKit.ARFaceGeometry.#ctor(ARKit.ARBlendShapeLocationOptions) M:ARKit.ARFaceGeometry.#ctor(Foundation.NSCoder) M:ARKit.ARFaceGeometry.#ctor(Foundation.NSObjectFlag) M:ARKit.ARFaceGeometry.#ctor(ObjCRuntime.NativeHandle) +M:ARKit.ARFaceGeometry.Copy(Foundation.NSZone) M:ARKit.ARFaceGeometry.EncodeTo(Foundation.NSCoder) M:ARKit.ARFaceGeometry.get_ClassHandle M:ARKit.ARFaceGeometry.GetTextureCoordinates @@ -36139,6 +37750,7 @@ M:ARKit.ARFaceTrackingConfiguration.set_WorldTrackingEnabled(System.Boolean) M:ARKit.ARFaceTrackingConfiguration.SupportsFrameSemantics(ARKit.ARFrameSemantics) M:ARKit.ARFrame.#ctor(Foundation.NSObjectFlag) M:ARKit.ARFrame.#ctor(ObjCRuntime.NativeHandle) +M:ARKit.ARFrame.Copy(Foundation.NSZone) M:ARKit.ARFrame.get_ClassHandle M:ARKit.ARGeoAnchor.#ctor M:ARKit.ARGeoAnchor.#ctor(ARKit.ARAnchor) @@ -36146,6 +37758,7 @@ M:ARKit.ARGeoAnchor.#ctor(Foundation.NSCoder) M:ARKit.ARGeoAnchor.#ctor(Foundation.NSObjectFlag) M:ARKit.ARGeoAnchor.#ctor(ObjCRuntime.NativeHandle) M:ARKit.ARGeoAnchor.get_ClassHandle +M:ARKit.ARGeoAnchor.get_IsTracked M:ARKit.ARGeometryElement.#ctor(Foundation.NSCoder) M:ARKit.ARGeometryElement.#ctor(Foundation.NSObjectFlag) M:ARKit.ARGeometryElement.#ctor(ObjCRuntime.NativeHandle) @@ -36174,6 +37787,7 @@ M:ARKit.ARGeoTrackingConfiguration.SupportsFrameSemantics(ARKit.ARFrameSemantics M:ARKit.ARGeoTrackingStatus.#ctor(Foundation.NSCoder) M:ARKit.ARGeoTrackingStatus.#ctor(Foundation.NSObjectFlag) M:ARKit.ARGeoTrackingStatus.#ctor(ObjCRuntime.NativeHandle) +M:ARKit.ARGeoTrackingStatus.Copy(Foundation.NSZone) M:ARKit.ARGeoTrackingStatus.EncodeTo(Foundation.NSCoder) M:ARKit.ARGeoTrackingStatus.get_ClassHandle M:ARKit.ARHitTestResult.#ctor(Foundation.NSObjectFlag) @@ -36184,6 +37798,7 @@ M:ARKit.ARImageAnchor.#ctor(Foundation.NSCoder) M:ARKit.ARImageAnchor.#ctor(Foundation.NSObjectFlag) M:ARKit.ARImageAnchor.#ctor(ObjCRuntime.NativeHandle) M:ARKit.ARImageAnchor.get_ClassHandle +M:ARKit.ARImageAnchor.get_IsTracked M:ARKit.ARImageTrackingConfiguration.#ctor(Foundation.NSObjectFlag) M:ARKit.ARImageTrackingConfiguration.#ctor(ObjCRuntime.NativeHandle) M:ARKit.ARImageTrackingConfiguration.get_AutoFocusEnabled @@ -36272,6 +37887,8 @@ M:ARKit.ARPositionalTrackingConfiguration.SupportsFrameSemantics(ARKit.ARFrameSe M:ARKit.ARQuickLookPreviewItem.#ctor(Foundation.NSObjectFlag) M:ARKit.ARQuickLookPreviewItem.#ctor(ObjCRuntime.NativeHandle) M:ARKit.ARQuickLookPreviewItem.get_ClassHandle +M:ARKit.ARQuickLookPreviewItem.get_PreviewItemTitle +M:ARKit.ARQuickLookPreviewItem.get_PreviewItemUrl M:ARKit.ARQuickLookPreviewItem.set_AllowsContentScaling(System.Boolean) M:ARKit.ARQuickLookPreviewItem.set_CanonicalWebPageUrl(Foundation.NSUrl) M:ARKit.ARRaycastQuery.#ctor(Foundation.NSObjectFlag) @@ -36455,11 +38072,13 @@ M:ARKit.ARTrackedRaycast.#ctor(ObjCRuntime.NativeHandle) M:ARKit.ARTrackedRaycast.get_ClassHandle M:ARKit.ARVideoFormat.#ctor(Foundation.NSObjectFlag) M:ARKit.ARVideoFormat.#ctor(ObjCRuntime.NativeHandle) +M:ARKit.ARVideoFormat.Copy(Foundation.NSZone) M:ARKit.ARVideoFormat.get_ClassHandle M:ARKit.ARVideoFormat.get_IsVideoHdrSupported M:ARKit.ARWorldMap.#ctor(Foundation.NSCoder) M:ARKit.ARWorldMap.#ctor(Foundation.NSObjectFlag) M:ARKit.ARWorldMap.#ctor(ObjCRuntime.NativeHandle) +M:ARKit.ARWorldMap.Copy(Foundation.NSZone) M:ARKit.ARWorldMap.EncodeTo(Foundation.NSCoder) M:ARKit.ARWorldMap.get_ClassHandle M:ARKit.ARWorldMap.set_Anchors(ARKit.ARAnchor[]) @@ -38709,6 +40328,7 @@ M:AVFoundation.AVAggregateAssetDownloadTask.#ctor(ObjCRuntime.NativeHandle) M:AVFoundation.AVAggregateAssetDownloadTask.get_ClassHandle M:AVFoundation.AVAsset.#ctor(Foundation.NSObjectFlag) M:AVFoundation.AVAsset.#ctor(ObjCRuntime.NativeHandle) +M:AVFoundation.AVAsset.Copy(Foundation.NSZone) M:AVFoundation.AVAsset.FindUnusedTrackIdAsync M:AVFoundation.AVAsset.get_ChapterMetadataGroupsDidChangeNotification M:AVFoundation.AVAsset.get_ClassHandle @@ -38733,6 +40353,7 @@ M:AVFoundation.AVAsset.LoadMetadataAsync(System.String) M:AVFoundation.AVAsset.LoadTrackAsync(System.Int32) M:AVFoundation.AVAsset.LoadTracksWithMediaTypeAsync(System.String) M:AVFoundation.AVAsset.LoadTrackWithMediaCharacteristicsAsync(System.String) +M:AVFoundation.AVAsset.LoadValuesAsynchronously(System.String[],System.Action) M:AVFoundation.AVAsset.LoadValuesTaskAsync(System.String[]) M:AVFoundation.AVAsset.Notifications.ObserveChapterMetadataGroupsDidChange(Foundation.NSObject,System.EventHandler{Foundation.NSNotificationEventArgs}) M:AVFoundation.AVAsset.Notifications.ObserveChapterMetadataGroupsDidChange(System.EventHandler{Foundation.NSNotificationEventArgs}) @@ -38744,6 +40365,7 @@ M:AVFoundation.AVAsset.Notifications.ObserveMediaSelectionGroupsDidChange(Founda M:AVFoundation.AVAsset.Notifications.ObserveMediaSelectionGroupsDidChange(System.EventHandler{Foundation.NSNotificationEventArgs}) M:AVFoundation.AVAsset.Notifications.ObserveWasDefragmented(Foundation.NSObject,System.EventHandler{Foundation.NSNotificationEventArgs}) M:AVFoundation.AVAsset.Notifications.ObserveWasDefragmented(System.EventHandler{Foundation.NSNotificationEventArgs}) +M:AVFoundation.AVAsset.StatusOfValue(System.String,Foundation.NSError@) M:AVFoundation.AVAssetCache.#ctor(Foundation.NSObjectFlag) M:AVFoundation.AVAssetCache.#ctor(ObjCRuntime.NativeHandle) M:AVFoundation.AVAssetCache.get_ClassHandle @@ -38757,6 +40379,7 @@ M:AVFoundation.AVAssetDownloadConfiguration.set_OptimizesAuxiliaryContentConfigu M:AVFoundation.AVAssetDownloadContentConfiguration.#ctor M:AVFoundation.AVAssetDownloadContentConfiguration.#ctor(Foundation.NSObjectFlag) M:AVFoundation.AVAssetDownloadContentConfiguration.#ctor(ObjCRuntime.NativeHandle) +M:AVFoundation.AVAssetDownloadContentConfiguration.Copy(Foundation.NSZone) M:AVFoundation.AVAssetDownloadContentConfiguration.get_ClassHandle M:AVFoundation.AVAssetDownloadContentConfiguration.set_MediaSelections(AVFoundation.AVMediaSelection[]) M:AVFoundation.AVAssetDownloadContentConfiguration.set_VariantQualifiers(AVFoundation.AVAssetVariantQualifier[]) @@ -38804,8 +40427,10 @@ M:AVFoundation.AVAssetDownloadOptions.set_MinimumRequiredPresentationSize(System M:AVFoundation.AVAssetDownloadOptions.set_PrefersHdr(System.Nullable{System.Boolean}) M:AVFoundation.AVAssetDownloadStorageManagementPolicy.#ctor(Foundation.NSObjectFlag) M:AVFoundation.AVAssetDownloadStorageManagementPolicy.#ctor(ObjCRuntime.NativeHandle) +M:AVFoundation.AVAssetDownloadStorageManagementPolicy.Copy(Foundation.NSZone) M:AVFoundation.AVAssetDownloadStorageManagementPolicy.get_ClassHandle M:AVFoundation.AVAssetDownloadStorageManagementPolicy.get_Priority +M:AVFoundation.AVAssetDownloadStorageManagementPolicy.MutableCopy(Foundation.NSZone) M:AVFoundation.AVAssetDownloadStorageManagementPolicy.set_ExpirationDate(Foundation.NSDate) M:AVFoundation.AVAssetDownloadStorageManagementPolicy.set_Priority(AVFoundation.AVAssetDownloadedAssetEvictionPriority) M:AVFoundation.AVAssetDownloadStorageManager.#ctor(Foundation.NSObjectFlag) @@ -39018,6 +40643,7 @@ M:AVFoundation.AVAssetSegmentTrackReport.#ctor(ObjCRuntime.NativeHandle) M:AVFoundation.AVAssetSegmentTrackReport.get_ClassHandle M:AVFoundation.AVAssetTrack.#ctor(Foundation.NSObjectFlag) M:AVFoundation.AVAssetTrack.#ctor(ObjCRuntime.NativeHandle) +M:AVFoundation.AVAssetTrack.Copy(Foundation.NSZone) M:AVFoundation.AVAssetTrack.Dispose(System.Boolean) M:AVFoundation.AVAssetTrack.get_ClassHandle M:AVFoundation.AVAssetTrack.get_Decodable @@ -39041,6 +40667,7 @@ M:AVFoundation.AVAssetTrack.Notifications.ObserveTrackAssociationsDidChange(Syst M:AVFoundation.AVAssetTrackGroup.#ctor M:AVFoundation.AVAssetTrackGroup.#ctor(Foundation.NSObjectFlag) M:AVFoundation.AVAssetTrackGroup.#ctor(ObjCRuntime.NativeHandle) +M:AVFoundation.AVAssetTrackGroup.Copy(Foundation.NSZone) M:AVFoundation.AVAssetTrackGroup.get_ClassHandle M:AVFoundation.AVAssetTrackSegment.#ctor M:AVFoundation.AVAssetTrackSegment.#ctor(Foundation.NSObjectFlag) @@ -39065,6 +40692,7 @@ M:AVFoundation.AVAssetVariantAudioRenditionSpecificAttributes.#ctor(ObjCRuntime. M:AVFoundation.AVAssetVariantAudioRenditionSpecificAttributes.get_ClassHandle M:AVFoundation.AVAssetVariantQualifier.#ctor(Foundation.NSObjectFlag) M:AVFoundation.AVAssetVariantQualifier.#ctor(ObjCRuntime.NativeHandle) +M:AVFoundation.AVAssetVariantQualifier.Copy(Foundation.NSZone) M:AVFoundation.AVAssetVariantQualifier.get_ClassHandle M:AVFoundation.AVAssetVariantVideoAttributes.#ctor(Foundation.NSObjectFlag) M:AVFoundation.AVAssetVariantVideoAttributes.#ctor(ObjCRuntime.NativeHandle) @@ -39149,6 +40777,7 @@ M:AVFoundation.AVAssetWriterInputPixelBufferAdaptor.get_ClassHandle M:AVFoundation.AVAsynchronousCIImageFilteringRequest.#ctor M:AVFoundation.AVAsynchronousCIImageFilteringRequest.#ctor(Foundation.NSObjectFlag) M:AVFoundation.AVAsynchronousCIImageFilteringRequest.#ctor(ObjCRuntime.NativeHandle) +M:AVFoundation.AVAsynchronousCIImageFilteringRequest.Copy(Foundation.NSZone) M:AVFoundation.AVAsynchronousCIImageFilteringRequest.get_ClassHandle M:AVFoundation.AVAsynchronousKeyValueLoading.#ctor M:AVFoundation.AVAsynchronousKeyValueLoading.#ctor(Foundation.NSObjectFlag) @@ -39158,6 +40787,7 @@ M:AVFoundation.AVAsynchronousKeyValueLoading.LoadValuesAsynchronously(System.Str M:AVFoundation.AVAsynchronousVideoCompositionRequest.#ctor M:AVFoundation.AVAsynchronousVideoCompositionRequest.#ctor(Foundation.NSObjectFlag) M:AVFoundation.AVAsynchronousVideoCompositionRequest.#ctor(ObjCRuntime.NativeHandle) +M:AVFoundation.AVAsynchronousVideoCompositionRequest.Copy(Foundation.NSZone) M:AVFoundation.AVAsynchronousVideoCompositionRequest.get_ClassHandle M:AVFoundation.AVAudio3DAngularOrientation.Equals(AVFoundation.AVAudio3DAngularOrientation) M:AVFoundation.AVAudio3DAngularOrientation.Equals(System.Object) @@ -39479,7 +41109,9 @@ M:AVFoundation.AVAudioIONodeInputBlock.Invoke(System.UInt32) M:AVFoundation.AVAudioMix.#ctor M:AVFoundation.AVAudioMix.#ctor(Foundation.NSObjectFlag) M:AVFoundation.AVAudioMix.#ctor(ObjCRuntime.NativeHandle) +M:AVFoundation.AVAudioMix.Copy(Foundation.NSZone) M:AVFoundation.AVAudioMix.get_ClassHandle +M:AVFoundation.AVAudioMix.MutableCopy(Foundation.NSZone) M:AVFoundation.AVAudioMixerNode.#ctor M:AVFoundation.AVAudioMixerNode.#ctor(Foundation.NSObjectFlag) M:AVFoundation.AVAudioMixerNode.#ctor(ObjCRuntime.NativeHandle) @@ -39536,7 +41168,9 @@ M:AVFoundation.AVAudioMixingDestination.set_Volume(System.Single) M:AVFoundation.AVAudioMixInputParameters.#ctor M:AVFoundation.AVAudioMixInputParameters.#ctor(Foundation.NSObjectFlag) M:AVFoundation.AVAudioMixInputParameters.#ctor(ObjCRuntime.NativeHandle) +M:AVFoundation.AVAudioMixInputParameters.Copy(Foundation.NSZone) M:AVFoundation.AVAudioMixInputParameters.get_ClassHandle +M:AVFoundation.AVAudioMixInputParameters.MutableCopy(Foundation.NSZone) M:AVFoundation.AVAudioMixInputParameters.set_AudioTapProcessor(MediaToolbox.MTAudioProcessingTap) M:AVFoundation.AVAudioMixInputParameters.set_AudioTimePitchAlgorithm(Foundation.NSString) M:AVFoundation.AVAudioNode.#ctor(Foundation.NSObjectFlag) @@ -40346,8 +41980,10 @@ M:AVFoundation.AVCameraCalibrationData.get_ClassHandle M:AVFoundation.AVCaption.#ctor(Foundation.NSCoder) M:AVFoundation.AVCaption.#ctor(Foundation.NSObjectFlag) M:AVFoundation.AVCaption.#ctor(ObjCRuntime.NativeHandle) +M:AVFoundation.AVCaption.Copy(Foundation.NSZone) M:AVFoundation.AVCaption.EncodeTo(Foundation.NSCoder) M:AVFoundation.AVCaption.get_ClassHandle +M:AVFoundation.AVCaption.MutableCopy(Foundation.NSZone) M:AVFoundation.AVCaptionConversionAdjustment.#ctor(Foundation.NSObjectFlag) M:AVFoundation.AVCaptionConversionAdjustment.#ctor(ObjCRuntime.NativeHandle) M:AVFoundation.AVCaptionConversionAdjustment.get_ClassHandle @@ -40385,6 +42021,7 @@ M:AVFoundation.AVCaptionRegion.#ctor M:AVFoundation.AVCaptionRegion.#ctor(Foundation.NSCoder) M:AVFoundation.AVCaptionRegion.#ctor(Foundation.NSObjectFlag) M:AVFoundation.AVCaptionRegion.#ctor(ObjCRuntime.NativeHandle) +M:AVFoundation.AVCaptionRegion.Copy(Foundation.NSZone) M:AVFoundation.AVCaptionRegion.get_ClassHandle M:AVFoundation.AVCaptionRenderer.#ctor M:AVFoundation.AVCaptionRenderer.#ctor(Foundation.NSObjectFlag) @@ -40394,10 +42031,12 @@ M:AVFoundation.AVCaptionRenderer.set_Bounds(CoreGraphics.CGRect) M:AVFoundation.AVCaptionRenderer.set_Captions(AVFoundation.AVCaption[]) M:AVFoundation.AVCaptionRendererScene.#ctor(Foundation.NSObjectFlag) M:AVFoundation.AVCaptionRendererScene.#ctor(ObjCRuntime.NativeHandle) +M:AVFoundation.AVCaptionRendererScene.Copy(Foundation.NSZone) M:AVFoundation.AVCaptionRendererScene.get_ClassHandle M:AVFoundation.AVCaptionRuby.#ctor(Foundation.NSCoder) M:AVFoundation.AVCaptionRuby.#ctor(Foundation.NSObjectFlag) M:AVFoundation.AVCaptionRuby.#ctor(ObjCRuntime.NativeHandle) +M:AVFoundation.AVCaptionRuby.Copy(Foundation.NSZone) M:AVFoundation.AVCaptionRuby.EncodeTo(Foundation.NSCoder) M:AVFoundation.AVCaptionRuby.get_ClassHandle M:AVFoundation.AVCaptionSettings.#ctor @@ -40785,6 +42424,7 @@ M:AVFoundation.AVCapturePhotoOutput.set_VirtualDeviceConstituentPhotoDeliveryEna M:AVFoundation.AVCapturePhotoOutput.SetPreparedPhotoSettingsAsync(AVFoundation.AVCapturePhotoSettings[]) M:AVFoundation.AVCapturePhotoSettings.#ctor(Foundation.NSObjectFlag) M:AVFoundation.AVCapturePhotoSettings.#ctor(ObjCRuntime.NativeHandle) +M:AVFoundation.AVCapturePhotoSettings.Copy(Foundation.NSZone) M:AVFoundation.AVCapturePhotoSettings.Dispose(System.Boolean) M:AVFoundation.AVCapturePhotoSettings.get_AutoContentAwareDistortionCorrectionEnabled M:AVFoundation.AVCapturePhotoSettings.get_AutoDualCameraFusionEnabled @@ -41044,6 +42684,7 @@ M:AVFoundation.AVComposition.#ctor(Foundation.NSObjectFlag) M:AVFoundation.AVComposition.#ctor(ObjCRuntime.NativeHandle) M:AVFoundation.AVComposition.Copy(Foundation.NSZone) M:AVFoundation.AVComposition.get_ClassHandle +M:AVFoundation.AVComposition.MutableCopy(Foundation.NSZone) M:AVFoundation.AVComposition.set_NaturalSize(CoreGraphics.CGSize) M:AVFoundation.AVCompositionTrack.#ctor(Foundation.NSObjectFlag) M:AVFoundation.AVCompositionTrack.#ctor(ObjCRuntime.NativeHandle) @@ -41157,7 +42798,9 @@ M:AVFoundation.AVCoordinatedPlaybackSuspensionReasonExtensions.GetValue(Foundati M:AVFoundation.AVDateRangeMetadataGroup.#ctor M:AVFoundation.AVDateRangeMetadataGroup.#ctor(Foundation.NSObjectFlag) M:AVFoundation.AVDateRangeMetadataGroup.#ctor(ObjCRuntime.NativeHandle) +M:AVFoundation.AVDateRangeMetadataGroup.Copy(Foundation.NSZone) M:AVFoundation.AVDateRangeMetadataGroup.get_ClassHandle +M:AVFoundation.AVDateRangeMetadataGroup.MutableCopy(Foundation.NSZone) M:AVFoundation.AVDateRangeMetadataGroup.set_EndDate(Foundation.NSDate) M:AVFoundation.AVDateRangeMetadataGroup.set_Items(AVFoundation.AVMetadataItem[]) M:AVFoundation.AVDateRangeMetadataGroup.set_StartDate(Foundation.NSDate) @@ -41190,6 +42833,7 @@ M:AVFoundation.AVDepthData.get_IsDepthDataFiltered M:AVFoundation.AVDisplayCriteria.#ctor M:AVFoundation.AVDisplayCriteria.#ctor(Foundation.NSObjectFlag) M:AVFoundation.AVDisplayCriteria.#ctor(ObjCRuntime.NativeHandle) +M:AVFoundation.AVDisplayCriteria.Copy(Foundation.NSZone) M:AVFoundation.AVDisplayCriteria.get_ClassHandle M:AVFoundation.AVEdgeWidths.#ctor(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat) M:AVFoundation.AVEdgeWidths.Equals(System.Object) @@ -41291,15 +42935,19 @@ M:AVFoundation.AVMediaDataStorage.get_ClassHandle M:AVFoundation.AVMediaSelection.#ctor M:AVFoundation.AVMediaSelection.#ctor(Foundation.NSObjectFlag) M:AVFoundation.AVMediaSelection.#ctor(ObjCRuntime.NativeHandle) +M:AVFoundation.AVMediaSelection.Copy(Foundation.NSZone) M:AVFoundation.AVMediaSelection.Dispose(System.Boolean) M:AVFoundation.AVMediaSelection.get_ClassHandle +M:AVFoundation.AVMediaSelection.MutableCopy(Foundation.NSZone) M:AVFoundation.AVMediaSelectionGroup.#ctor M:AVFoundation.AVMediaSelectionGroup.#ctor(Foundation.NSObjectFlag) M:AVFoundation.AVMediaSelectionGroup.#ctor(ObjCRuntime.NativeHandle) +M:AVFoundation.AVMediaSelectionGroup.Copy(Foundation.NSZone) M:AVFoundation.AVMediaSelectionGroup.get_ClassHandle M:AVFoundation.AVMediaSelectionOption.#ctor M:AVFoundation.AVMediaSelectionOption.#ctor(Foundation.NSObjectFlag) M:AVFoundation.AVMediaSelectionOption.#ctor(ObjCRuntime.NativeHandle) +M:AVFoundation.AVMediaSelectionOption.Copy(Foundation.NSZone) M:AVFoundation.AVMediaSelectionOption.get_ClassHandle M:AVFoundation.AVMediaSelectionOption.get_Playable M:AVFoundation.AVMediaTypesExtensions.GetConstant(AVFoundation.AVMediaTypes) @@ -41586,12 +43234,15 @@ M:AVFoundation.AVMetadata.get_QuickTimeUserDataKeyWarning M:AVFoundation.AVMetadata.get_QuickTimeUserDataKeyWriter M:AVFoundation.AVMetadataBodyObject.#ctor(Foundation.NSObjectFlag) M:AVFoundation.AVMetadataBodyObject.#ctor(ObjCRuntime.NativeHandle) +M:AVFoundation.AVMetadataBodyObject.Copy(Foundation.NSZone) M:AVFoundation.AVMetadataBodyObject.get_ClassHandle M:AVFoundation.AVMetadataCatBodyObject.#ctor(Foundation.NSObjectFlag) M:AVFoundation.AVMetadataCatBodyObject.#ctor(ObjCRuntime.NativeHandle) +M:AVFoundation.AVMetadataCatBodyObject.Copy(Foundation.NSZone) M:AVFoundation.AVMetadataCatBodyObject.get_ClassHandle M:AVFoundation.AVMetadataDogBodyObject.#ctor(Foundation.NSObjectFlag) M:AVFoundation.AVMetadataDogBodyObject.#ctor(ObjCRuntime.NativeHandle) +M:AVFoundation.AVMetadataDogBodyObject.Copy(Foundation.NSZone) M:AVFoundation.AVMetadataDogBodyObject.get_ClassHandle M:AVFoundation.AVMetadataExtraAttribute.get_BaseUriKey M:AVFoundation.AVMetadataExtraAttribute.get_InfoKey @@ -41599,6 +43250,7 @@ M:AVFoundation.AVMetadataExtraAttribute.get_ValueUriKey M:AVFoundation.AVMetadataFaceObject.#ctor M:AVFoundation.AVMetadataFaceObject.#ctor(Foundation.NSObjectFlag) M:AVFoundation.AVMetadataFaceObject.#ctor(ObjCRuntime.NativeHandle) +M:AVFoundation.AVMetadataFaceObject.Copy(Foundation.NSZone) M:AVFoundation.AVMetadataFaceObject.get_ClassHandle M:AVFoundation.AVMetadataFormatExtensions.GetConstant(AVFoundation.AVMetadataFormat) M:AVFoundation.AVMetadataFormatExtensions.GetValue(Foundation.NSString) @@ -41608,6 +43260,7 @@ M:AVFoundation.AVMetadataGroup.#ctor(ObjCRuntime.NativeHandle) M:AVFoundation.AVMetadataGroup.get_ClassHandle M:AVFoundation.AVMetadataHumanBodyObject.#ctor(Foundation.NSObjectFlag) M:AVFoundation.AVMetadataHumanBodyObject.#ctor(ObjCRuntime.NativeHandle) +M:AVFoundation.AVMetadataHumanBodyObject.Copy(Foundation.NSZone) M:AVFoundation.AVMetadataHumanBodyObject.get_ClassHandle M:AVFoundation.AVMetadataIdentifiers.CommonIdentifier.get_AccessibilityDescription M:AVFoundation.AVMetadataIdentifiers.CommonIdentifier.get_AlbumName @@ -41891,8 +43544,10 @@ M:AVFoundation.AVMetadataIdentifiers.ThreeGP.get_UserDataUserRating M:AVFoundation.AVMetadataItem.#ctor M:AVFoundation.AVMetadataItem.#ctor(Foundation.NSObjectFlag) M:AVFoundation.AVMetadataItem.#ctor(ObjCRuntime.NativeHandle) +M:AVFoundation.AVMetadataItem.Copy(Foundation.NSZone) M:AVFoundation.AVMetadataItem.get_ClassHandle M:AVFoundation.AVMetadataItem.LoadValuesTaskAsync(System.String[]) +M:AVFoundation.AVMetadataItem.MutableCopy(Foundation.NSZone) M:AVFoundation.AVMetadataItem.set_DataType(Foundation.NSString) M:AVFoundation.AVMetadataItem.set_Duration(CoreMedia.CMTime) M:AVFoundation.AVMetadataItem.set_ExtendedLanguageTag(System.String) @@ -41926,6 +43581,7 @@ M:AVFoundation.AVMetadataObjectTypeExtensions.ToArray(AVFoundation.AVMetadataObj M:AVFoundation.AVMetadataObjectTypeExtensions.ToFlags(System.Collections.Generic.IEnumerable{Foundation.NSString}) M:AVFoundation.AVMetadataSalientObject.#ctor(Foundation.NSObjectFlag) M:AVFoundation.AVMetadataSalientObject.#ctor(ObjCRuntime.NativeHandle) +M:AVFoundation.AVMetadataSalientObject.Copy(Foundation.NSZone) M:AVFoundation.AVMetadataSalientObject.get_ClassHandle M:AVFoundation.AVMidiPlayer.#ctor M:AVFoundation.AVMidiPlayer.#ctor(Foundation.NSData,Foundation.NSUrl,Foundation.NSError@) @@ -41959,9 +43615,11 @@ M:AVFoundation.AVMovie_AVMovieTrackInspection.LoadTracksWithMediaType(AVFoundati M:AVFoundation.AVMovie_AVMovieTrackInspection.LoadTracksWithMediaTypeAsync(AVFoundation.AVMovie,System.String) M:AVFoundation.AVMovie.#ctor(Foundation.NSObjectFlag) M:AVFoundation.AVMovie.#ctor(ObjCRuntime.NativeHandle) +M:AVFoundation.AVMovie.Copy(Foundation.NSZone) M:AVFoundation.AVMovie.get_ClassHandle M:AVFoundation.AVMovie.get_ReferenceRestrictionsKey M:AVFoundation.AVMovie.get_ShouldSupportAliasDataReferencesKey +M:AVFoundation.AVMovie.MutableCopy(Foundation.NSZone) M:AVFoundation.AVMovieTrack.#ctor(Foundation.NSObjectFlag) M:AVFoundation.AVMovieTrack.#ctor(ObjCRuntime.NativeHandle) M:AVFoundation.AVMovieTrack.get_ClassHandle @@ -42377,20 +44035,24 @@ M:AVFoundation.AVPlayerItem.set_WeakNowPlayingInfo(Foundation.NSDictionary) M:AVFoundation.AVPlayerItemAccessLog.#ctor M:AVFoundation.AVPlayerItemAccessLog.#ctor(Foundation.NSObjectFlag) M:AVFoundation.AVPlayerItemAccessLog.#ctor(ObjCRuntime.NativeHandle) +M:AVFoundation.AVPlayerItemAccessLog.Copy(Foundation.NSZone) M:AVFoundation.AVPlayerItemAccessLog.get_ClassHandle M:AVFoundation.AVPlayerItemAccessLogEvent.#ctor M:AVFoundation.AVPlayerItemAccessLogEvent.#ctor(Foundation.NSObjectFlag) M:AVFoundation.AVPlayerItemAccessLogEvent.#ctor(ObjCRuntime.NativeHandle) +M:AVFoundation.AVPlayerItemAccessLogEvent.Copy(Foundation.NSZone) M:AVFoundation.AVPlayerItemAccessLogEvent.get_ClassHandle M:AVFoundation.AVPlayerItemErrorEventArgs.#ctor(Foundation.NSNotification) M:AVFoundation.AVPlayerItemErrorEventArgs.get_Error M:AVFoundation.AVPlayerItemErrorLog.#ctor M:AVFoundation.AVPlayerItemErrorLog.#ctor(Foundation.NSObjectFlag) M:AVFoundation.AVPlayerItemErrorLog.#ctor(ObjCRuntime.NativeHandle) +M:AVFoundation.AVPlayerItemErrorLog.Copy(Foundation.NSZone) M:AVFoundation.AVPlayerItemErrorLog.get_ClassHandle M:AVFoundation.AVPlayerItemErrorLogEvent.#ctor M:AVFoundation.AVPlayerItemErrorLogEvent.#ctor(Foundation.NSObjectFlag) M:AVFoundation.AVPlayerItemErrorLogEvent.#ctor(ObjCRuntime.NativeHandle) +M:AVFoundation.AVPlayerItemErrorLogEvent.Copy(Foundation.NSZone) M:AVFoundation.AVPlayerItemErrorLogEvent.get_ClassHandle M:AVFoundation.AVPlayerItemLegibleOutput.#ctor M:AVFoundation.AVPlayerItemLegibleOutput.#ctor(Foundation.NSObjectFlag) @@ -42549,21 +44211,27 @@ M:AVFoundation.AVRouteDetector.set_RouteDetectionEnabled(System.Boolean) M:AVFoundation.AVSampleBufferAudioRenderer.#ctor M:AVFoundation.AVSampleBufferAudioRenderer.#ctor(Foundation.NSObjectFlag) M:AVFoundation.AVSampleBufferAudioRenderer.#ctor(ObjCRuntime.NativeHandle) +M:AVFoundation.AVSampleBufferAudioRenderer.Enqueue(CoreMedia.CMSampleBuffer) +M:AVFoundation.AVSampleBufferAudioRenderer.Flush M:AVFoundation.AVSampleBufferAudioRenderer.FlushAsync(CoreMedia.CMTime) M:AVFoundation.AVSampleBufferAudioRenderer.get_AudioRendererWasFlushedAutomaticallyNotification M:AVFoundation.AVSampleBufferAudioRenderer.get_ClassHandle M:AVFoundation.AVSampleBufferAudioRenderer.get_ConfigurationDidChangeNotification +M:AVFoundation.AVSampleBufferAudioRenderer.get_HasSufficientMediaDataForReliablePlaybackStart M:AVFoundation.AVSampleBufferAudioRenderer.get_Muted M:AVFoundation.AVSampleBufferAudioRenderer.get_ReadyForMoreMediaData +M:AVFoundation.AVSampleBufferAudioRenderer.get_Timebase M:AVFoundation.AVSampleBufferAudioRenderer.Notifications.ObserveAudioRendererWasFlushedAutomatically(Foundation.NSObject,System.EventHandler{AVFoundation.AudioRendererWasFlushedAutomaticallyEventArgs}) M:AVFoundation.AVSampleBufferAudioRenderer.Notifications.ObserveAudioRendererWasFlushedAutomatically(System.EventHandler{AVFoundation.AudioRendererWasFlushedAutomaticallyEventArgs}) M:AVFoundation.AVSampleBufferAudioRenderer.Notifications.ObserveConfigurationDidChange(Foundation.NSObject,System.EventHandler{Foundation.NSNotificationEventArgs}) M:AVFoundation.AVSampleBufferAudioRenderer.Notifications.ObserveConfigurationDidChange(System.EventHandler{Foundation.NSNotificationEventArgs}) +M:AVFoundation.AVSampleBufferAudioRenderer.RequestMediaData(CoreFoundation.DispatchQueue,System.Action) M:AVFoundation.AVSampleBufferAudioRenderer.set_AllowedAudioSpatializationFormats(AVFoundation.AVAudioSpatializationFormats) M:AVFoundation.AVSampleBufferAudioRenderer.set_AudioOutputDeviceUniqueId(System.String) M:AVFoundation.AVSampleBufferAudioRenderer.set_Muted(System.Boolean) M:AVFoundation.AVSampleBufferAudioRenderer.set_PitchAlgorithm(System.String) M:AVFoundation.AVSampleBufferAudioRenderer.set_Volume(System.Single) +M:AVFoundation.AVSampleBufferAudioRenderer.StopRequestingMediaData M:AVFoundation.AVSampleBufferDisplayLayer_ProtectedContent.GetOutputObscuredDueToInsufficientExternalProtection(AVFoundation.AVSampleBufferDisplayLayer) M:AVFoundation.AVSampleBufferDisplayLayer.#ctor M:AVFoundation.AVSampleBufferDisplayLayer.#ctor(Foundation.NSCoder) @@ -42610,6 +44278,7 @@ M:AVFoundation.AVSampleBufferRequest.set_OverrideTime(CoreMedia.CMTime) M:AVFoundation.AVSampleBufferRequest.set_PreferredMinSampleCount(System.IntPtr) M:AVFoundation.AVSampleCursor.#ctor(Foundation.NSObjectFlag) M:AVFoundation.AVSampleCursor.#ctor(ObjCRuntime.NativeHandle) +M:AVFoundation.AVSampleCursor.Copy(Foundation.NSZone) M:AVFoundation.AVSampleCursor.get_ClassHandle M:AVFoundation.AVSampleRateEventArgs.#ctor(System.Double) M:AVFoundation.AVSampleRateEventArgs.get_SampleRate @@ -42738,6 +44407,7 @@ M:AVFoundation.AVTextStyleRule.#ctor(CoreMedia.CMTextMarkupAttributes,System.Str M:AVFoundation.AVTextStyleRule.#ctor(CoreMedia.CMTextMarkupAttributes) M:AVFoundation.AVTextStyleRule.#ctor(Foundation.NSObjectFlag) M:AVFoundation.AVTextStyleRule.#ctor(ObjCRuntime.NativeHandle) +M:AVFoundation.AVTextStyleRule.Copy(Foundation.NSZone) M:AVFoundation.AVTextStyleRule.FromTextMarkupAttributes(CoreMedia.CMTextMarkupAttributes,System.String) M:AVFoundation.AVTextStyleRule.FromTextMarkupAttributes(CoreMedia.CMTextMarkupAttributes) M:AVFoundation.AVTextStyleRule.get_ClassHandle @@ -42745,7 +44415,9 @@ M:AVFoundation.AVTextStyleRule.get_TextMarkupAttributes M:AVFoundation.AVTimedMetadataGroup.#ctor M:AVFoundation.AVTimedMetadataGroup.#ctor(Foundation.NSObjectFlag) M:AVFoundation.AVTimedMetadataGroup.#ctor(ObjCRuntime.NativeHandle) +M:AVFoundation.AVTimedMetadataGroup.Copy(Foundation.NSZone) M:AVFoundation.AVTimedMetadataGroup.get_ClassHandle +M:AVFoundation.AVTimedMetadataGroup.MutableCopy(Foundation.NSZone) M:AVFoundation.AVTimedMetadataGroup.set_Items(AVFoundation.AVMetadataItem[]) M:AVFoundation.AVTimedMetadataGroup.set_TimeRange(CoreMedia.CMTimeRange) M:AVFoundation.AVUrlAsset.#ctor(Foundation.NSObjectFlag) @@ -42869,7 +44541,9 @@ M:AVFoundation.AVVideoCompositing.StartVideoCompositionRequest(AVFoundation.AVAs M:AVFoundation.AVVideoComposition.#ctor M:AVFoundation.AVVideoComposition.#ctor(Foundation.NSObjectFlag) M:AVFoundation.AVVideoComposition.#ctor(ObjCRuntime.NativeHandle) +M:AVFoundation.AVVideoComposition.Copy(Foundation.NSZone) M:AVFoundation.AVVideoComposition.get_ClassHandle +M:AVFoundation.AVVideoComposition.MutableCopy(Foundation.NSZone) M:AVFoundation.AVVideoComposition.set_CustomVideoCompositorClass(ObjCRuntime.Class) M:AVFoundation.AVVideoComposition.set_RenderScale(System.Single) M:AVFoundation.AVVideoCompositionCoreAnimationTool.#ctor @@ -42880,8 +44554,10 @@ M:AVFoundation.AVVideoCompositionInstruction.#ctor M:AVFoundation.AVVideoCompositionInstruction.#ctor(Foundation.NSCoder) M:AVFoundation.AVVideoCompositionInstruction.#ctor(Foundation.NSObjectFlag) M:AVFoundation.AVVideoCompositionInstruction.#ctor(ObjCRuntime.NativeHandle) +M:AVFoundation.AVVideoCompositionInstruction.Copy(Foundation.NSZone) M:AVFoundation.AVVideoCompositionInstruction.EncodeTo(Foundation.NSCoder) M:AVFoundation.AVVideoCompositionInstruction.get_ClassHandle +M:AVFoundation.AVVideoCompositionInstruction.MutableCopy(Foundation.NSZone) M:AVFoundation.AVVideoCompositionInstruction.set_BackgroundColor(CoreGraphics.CGColor) M:AVFoundation.AVVideoCompositionInstruction.set_EnablePostProcessing(System.Boolean) M:AVFoundation.AVVideoCompositionInstruction.set_LayerInstructions(AVFoundation.AVVideoCompositionLayerInstruction[]) @@ -42890,8 +44566,10 @@ M:AVFoundation.AVVideoCompositionLayerInstruction.#ctor M:AVFoundation.AVVideoCompositionLayerInstruction.#ctor(Foundation.NSCoder) M:AVFoundation.AVVideoCompositionLayerInstruction.#ctor(Foundation.NSObjectFlag) M:AVFoundation.AVVideoCompositionLayerInstruction.#ctor(ObjCRuntime.NativeHandle) +M:AVFoundation.AVVideoCompositionLayerInstruction.Copy(Foundation.NSZone) M:AVFoundation.AVVideoCompositionLayerInstruction.EncodeTo(Foundation.NSCoder) M:AVFoundation.AVVideoCompositionLayerInstruction.get_ClassHandle +M:AVFoundation.AVVideoCompositionLayerInstruction.MutableCopy(Foundation.NSZone) M:AVFoundation.AVVideoCompositionRenderContext.#ctor M:AVFoundation.AVVideoCompositionRenderContext.#ctor(Foundation.NSObjectFlag) M:AVFoundation.AVVideoCompositionRenderContext.#ctor(ObjCRuntime.NativeHandle) @@ -43058,6 +44736,7 @@ M:AVKit.AVInterstitialTimeRange.#ctor M:AVKit.AVInterstitialTimeRange.#ctor(Foundation.NSCoder) M:AVKit.AVInterstitialTimeRange.#ctor(Foundation.NSObjectFlag) M:AVKit.AVInterstitialTimeRange.#ctor(ObjCRuntime.NativeHandle) +M:AVKit.AVInterstitialTimeRange.Copy(Foundation.NSZone) M:AVKit.AVInterstitialTimeRange.EncodeTo(Foundation.NSCoder) M:AVKit.AVInterstitialTimeRange.get_ClassHandle M:AVKit.AVKitErrorExtensions.GetDomain(AVKit.AVKitError) @@ -43510,6 +45189,7 @@ M:BusinessChat.BCParameterNameExtensions.GetConstant(BusinessChat.BCParameterNam M:BusinessChat.BCParameterNameExtensions.GetValue(Foundation.NSString) M:CallKit.CXAction.#ctor(Foundation.NSObjectFlag) M:CallKit.CXAction.#ctor(ObjCRuntime.NativeHandle) +M:CallKit.CXAction.Copy(Foundation.NSZone) M:CallKit.CXAction.EncodeTo(Foundation.NSCoder) M:CallKit.CXAction.get_ClassHandle M:CallKit.CXAction.get_Complete @@ -43566,6 +45246,7 @@ M:CallKit.CXCallObserverDelegate.CallChanged(CallKit.CXCallObserver,CallKit.CXCa M:CallKit.CXCallUpdate.#ctor M:CallKit.CXCallUpdate.#ctor(Foundation.NSObjectFlag) M:CallKit.CXCallUpdate.#ctor(ObjCRuntime.NativeHandle) +M:CallKit.CXCallUpdate.Copy(Foundation.NSZone) M:CallKit.CXCallUpdate.get_ClassHandle M:CallKit.CXCallUpdate.set_HasVideo(System.Boolean) M:CallKit.CXCallUpdate.set_LocalizedCallerName(System.String) @@ -43587,6 +45268,7 @@ M:CallKit.CXErrorCodeRequestTransactionErrorExtensions.GetDomain(CallKit.CXError M:CallKit.CXHandle.#ctor(Foundation.NSCoder) M:CallKit.CXHandle.#ctor(Foundation.NSObjectFlag) M:CallKit.CXHandle.#ctor(ObjCRuntime.NativeHandle) +M:CallKit.CXHandle.Copy(Foundation.NSZone) M:CallKit.CXHandle.EncodeTo(Foundation.NSCoder) M:CallKit.CXHandle.get_ClassHandle M:CallKit.CXPlayDtmfCallAction.#ctor(Foundation.NSObjectFlag) @@ -43603,6 +45285,7 @@ M:CallKit.CXProvider.ReportNewIncomingVoIPPushPayloadAsync(Foundation.NSDictiona M:CallKit.CXProvider.set_Configuration(CallKit.CXProviderConfiguration) M:CallKit.CXProviderConfiguration.#ctor(Foundation.NSObjectFlag) M:CallKit.CXProviderConfiguration.#ctor(ObjCRuntime.NativeHandle) +M:CallKit.CXProviderConfiguration.Copy(Foundation.NSZone) M:CallKit.CXProviderConfiguration.get_ClassHandle M:CallKit.CXProviderConfiguration.set_IconTemplateImageData(Foundation.NSData) M:CallKit.CXProviderConfiguration.set_IncludesCallsInRecents(System.Boolean) @@ -43664,6 +45347,7 @@ M:CallKit.CXStartCallAction.set_Video(System.Boolean) M:CallKit.CXTransaction.#ctor(Foundation.NSCoder) M:CallKit.CXTransaction.#ctor(Foundation.NSObjectFlag) M:CallKit.CXTransaction.#ctor(ObjCRuntime.NativeHandle) +M:CallKit.CXTransaction.Copy(Foundation.NSZone) M:CallKit.CXTransaction.EncodeTo(Foundation.NSCoder) M:CallKit.CXTransaction.get_ClassHandle M:CallKit.CXTransaction.get_Complete @@ -43673,16 +45357,30 @@ M:CallKit.ICXProviderDelegate.DidReset(CallKit.CXProvider) M:CarPlay.CPActionSheetTemplate.#ctor(Foundation.NSCoder) M:CarPlay.CPActionSheetTemplate.#ctor(Foundation.NSObjectFlag) M:CarPlay.CPActionSheetTemplate.#ctor(ObjCRuntime.NativeHandle) +M:CarPlay.CPActionSheetTemplate.#ctor(System.String,System.String,CarPlay.CPAlertAction[]) +M:CarPlay.CPActionSheetTemplate.get_Actions M:CarPlay.CPActionSheetTemplate.get_ClassHandle +M:CarPlay.CPActionSheetTemplate.get_Message +M:CarPlay.CPActionSheetTemplate.get_Title M:CarPlay.CPAlertAction.#ctor(Foundation.NSCoder) M:CarPlay.CPAlertAction.#ctor(Foundation.NSObjectFlag) M:CarPlay.CPAlertAction.#ctor(ObjCRuntime.NativeHandle) +M:CarPlay.CPAlertAction.#ctor(System.String,CarPlay.CPAlertActionStyle,System.Action{CarPlay.CPAlertAction}) +M:CarPlay.CPAlertAction.#ctor(System.String,UIKit.UIColor,System.Action{CarPlay.CPAlertAction}) M:CarPlay.CPAlertAction.EncodeTo(Foundation.NSCoder) M:CarPlay.CPAlertAction.get_ClassHandle +M:CarPlay.CPAlertAction.get_Color +M:CarPlay.CPAlertAction.get_Handler +M:CarPlay.CPAlertAction.get_Style +M:CarPlay.CPAlertAction.get_Title M:CarPlay.CPAlertTemplate.#ctor(Foundation.NSCoder) M:CarPlay.CPAlertTemplate.#ctor(Foundation.NSObjectFlag) M:CarPlay.CPAlertTemplate.#ctor(ObjCRuntime.NativeHandle) +M:CarPlay.CPAlertTemplate.#ctor(System.String[],CarPlay.CPAlertAction[]) +M:CarPlay.CPAlertTemplate.get_Actions M:CarPlay.CPAlertTemplate.get_ClassHandle +M:CarPlay.CPAlertTemplate.get_MaximumActionCount +M:CarPlay.CPAlertTemplate.get_TitleVariants M:CarPlay.CPApplicationDelegate_Extensions.DidSelectManeuver(CarPlay.ICPApplicationDelegate,UIKit.UIApplication,CarPlay.CPManeuver) M:CarPlay.CPApplicationDelegate_Extensions.DidSelectNavigationAlert(CarPlay.ICPApplicationDelegate,UIKit.UIApplication,CarPlay.CPNavigationAlert) M:CarPlay.CPApplicationDelegate.#ctor @@ -43749,17 +45447,28 @@ M:CarPlay.CPApplicationDelegate.WillEncodeRestorableState(UIKit.UIApplication,Fo M:CarPlay.CPApplicationDelegate.WillEnterForeground(UIKit.UIApplication) M:CarPlay.CPApplicationDelegate.WillFinishLaunching(UIKit.UIApplication,Foundation.NSDictionary) M:CarPlay.CPApplicationDelegate.WillTerminate(UIKit.UIApplication) +M:CarPlay.CPAssistantCellConfiguration.#ctor(CarPlay.CPAssistantCellPosition,CarPlay.CPAssistantCellVisibility,CarPlay.CPAssistantCellActionType) M:CarPlay.CPAssistantCellConfiguration.#ctor(Foundation.NSCoder) M:CarPlay.CPAssistantCellConfiguration.#ctor(Foundation.NSObjectFlag) M:CarPlay.CPAssistantCellConfiguration.#ctor(ObjCRuntime.NativeHandle) M:CarPlay.CPAssistantCellConfiguration.EncodeTo(Foundation.NSCoder) +M:CarPlay.CPAssistantCellConfiguration.get_AssistantAction M:CarPlay.CPAssistantCellConfiguration.get_ClassHandle +M:CarPlay.CPAssistantCellConfiguration.get_Position +M:CarPlay.CPAssistantCellConfiguration.get_Visibility +M:CarPlay.CPBarButton.#ctor(CarPlay.CPBarButtonType,System.Action{CarPlay.CPBarButton}) M:CarPlay.CPBarButton.#ctor(Foundation.NSCoder) M:CarPlay.CPBarButton.#ctor(Foundation.NSObjectFlag) M:CarPlay.CPBarButton.#ctor(ObjCRuntime.NativeHandle) +M:CarPlay.CPBarButton.#ctor(System.String,CarPlay.CPBarButtonHandler) +M:CarPlay.CPBarButton.#ctor(UIKit.UIImage,CarPlay.CPBarButtonHandler) M:CarPlay.CPBarButton.EncodeTo(Foundation.NSCoder) +M:CarPlay.CPBarButton.get_ButtonStyle +M:CarPlay.CPBarButton.get_ButtonType M:CarPlay.CPBarButton.get_ClassHandle M:CarPlay.CPBarButton.get_Enabled +M:CarPlay.CPBarButton.get_Image +M:CarPlay.CPBarButton.get_Title M:CarPlay.CPBarButton.set_ButtonStyle(CarPlay.CPBarButtonStyle) M:CarPlay.CPBarButton.set_Enabled(System.Boolean) M:CarPlay.CPBarButton.set_Image(UIKit.UIImage) @@ -43770,17 +45479,26 @@ M:CarPlay.CPBarButtonHandler.EndInvoke(System.IAsyncResult) M:CarPlay.CPBarButtonHandler.Invoke(CarPlay.CPBarButton) M:CarPlay.CPButton.#ctor(Foundation.NSObjectFlag) M:CarPlay.CPButton.#ctor(ObjCRuntime.NativeHandle) +M:CarPlay.CPButton.#ctor(UIKit.UIImage,System.Action{CarPlay.CPButton}) M:CarPlay.CPButton.get_ClassHandle M:CarPlay.CPButton.get_Enabled +M:CarPlay.CPButton.get_Image M:CarPlay.CPButton.get_MaximumImageSize +M:CarPlay.CPButton.get_Title M:CarPlay.CPButton.set_Enabled(System.Boolean) M:CarPlay.CPButton.set_Title(System.String) M:CarPlay.CPContact.#ctor M:CarPlay.CPContact.#ctor(Foundation.NSCoder) M:CarPlay.CPContact.#ctor(Foundation.NSObjectFlag) M:CarPlay.CPContact.#ctor(ObjCRuntime.NativeHandle) +M:CarPlay.CPContact.#ctor(System.String,UIKit.UIImage) M:CarPlay.CPContact.EncodeTo(Foundation.NSCoder) +M:CarPlay.CPContact.get_Actions M:CarPlay.CPContact.get_ClassHandle +M:CarPlay.CPContact.get_Image +M:CarPlay.CPContact.get_InformativeText +M:CarPlay.CPContact.get_Name +M:CarPlay.CPContact.get_Subtitle M:CarPlay.CPContact.set_Actions(CarPlay.CPButton[]) M:CarPlay.CPContact.set_Image(UIKit.UIImage) M:CarPlay.CPContact.set_InformativeText(System.String) @@ -43788,20 +45506,29 @@ M:CarPlay.CPContact.set_Name(System.String) M:CarPlay.CPContact.set_Subtitle(System.String) M:CarPlay.CPContactCallButton.#ctor(Foundation.NSObjectFlag) M:CarPlay.CPContactCallButton.#ctor(ObjCRuntime.NativeHandle) +M:CarPlay.CPContactCallButton.#ctor(System.Action{CarPlay.CPButton}) M:CarPlay.CPContactCallButton.#ctor(UIKit.UIImage,System.Action{CarPlay.CPButton}) M:CarPlay.CPContactCallButton.get_ClassHandle M:CarPlay.CPContactDirectionsButton.#ctor(Foundation.NSObjectFlag) M:CarPlay.CPContactDirectionsButton.#ctor(ObjCRuntime.NativeHandle) +M:CarPlay.CPContactDirectionsButton.#ctor(System.Action{CarPlay.CPButton}) M:CarPlay.CPContactDirectionsButton.#ctor(UIKit.UIImage,System.Action{CarPlay.CPButton}) M:CarPlay.CPContactDirectionsButton.get_ClassHandle M:CarPlay.CPContactMessageButton.#ctor(Foundation.NSObjectFlag) M:CarPlay.CPContactMessageButton.#ctor(ObjCRuntime.NativeHandle) +M:CarPlay.CPContactMessageButton.#ctor(System.String) M:CarPlay.CPContactMessageButton.#ctor(UIKit.UIImage,System.Action{CarPlay.CPButton}) M:CarPlay.CPContactMessageButton.get_ClassHandle +M:CarPlay.CPContactMessageButton.get_PhoneOrEmail +M:CarPlay.CPContactTemplate.#ctor(CarPlay.CPContact) M:CarPlay.CPContactTemplate.#ctor(Foundation.NSCoder) M:CarPlay.CPContactTemplate.#ctor(Foundation.NSObjectFlag) M:CarPlay.CPContactTemplate.#ctor(ObjCRuntime.NativeHandle) +M:CarPlay.CPContactTemplate.get_BackButton M:CarPlay.CPContactTemplate.get_ClassHandle +M:CarPlay.CPContactTemplate.get_Contact +M:CarPlay.CPContactTemplate.get_LeadingNavigationBarButtons +M:CarPlay.CPContactTemplate.get_TrailingNavigationBarButtons M:CarPlay.CPContactTemplate.set_BackButton(CarPlay.CPBarButton) M:CarPlay.CPContactTemplate.set_Contact(CarPlay.CPContact) M:CarPlay.CPContactTemplate.set_LeadingNavigationBarButtons(CarPlay.CPBarButton[]) @@ -43809,45 +45536,78 @@ M:CarPlay.CPContactTemplate.set_TrailingNavigationBarButtons(CarPlay.CPBarButton M:CarPlay.CPDashboardButton.#ctor(Foundation.NSCoder) M:CarPlay.CPDashboardButton.#ctor(Foundation.NSObjectFlag) M:CarPlay.CPDashboardButton.#ctor(ObjCRuntime.NativeHandle) +M:CarPlay.CPDashboardButton.#ctor(System.String[],System.String[],UIKit.UIImage,System.Action{CarPlay.CPDashboardButton}) M:CarPlay.CPDashboardButton.EncodeTo(Foundation.NSCoder) M:CarPlay.CPDashboardButton.get_ClassHandle +M:CarPlay.CPDashboardButton.get_Image +M:CarPlay.CPDashboardButton.get_SubtitleVariants +M:CarPlay.CPDashboardButton.get_TitleVariants M:CarPlay.CPDashboardController.#ctor(Foundation.NSObjectFlag) M:CarPlay.CPDashboardController.#ctor(ObjCRuntime.NativeHandle) M:CarPlay.CPDashboardController.get_ClassHandle +M:CarPlay.CPDashboardController.get_ShortcutButtons M:CarPlay.CPDashboardController.set_ShortcutButtons(CarPlay.CPDashboardButton[]) M:CarPlay.CPGridButton.#ctor(Foundation.NSCoder) M:CarPlay.CPGridButton.#ctor(Foundation.NSObjectFlag) M:CarPlay.CPGridButton.#ctor(ObjCRuntime.NativeHandle) +M:CarPlay.CPGridButton.#ctor(System.String[],UIKit.UIImage,System.Action{CarPlay.CPGridButton}) M:CarPlay.CPGridButton.EncodeTo(Foundation.NSCoder) M:CarPlay.CPGridButton.get_ClassHandle M:CarPlay.CPGridButton.get_Enabled +M:CarPlay.CPGridButton.get_Image +M:CarPlay.CPGridButton.get_TitleVariants M:CarPlay.CPGridButton.set_Enabled(System.Boolean) M:CarPlay.CPGridTemplate.#ctor(Foundation.NSCoder) M:CarPlay.CPGridTemplate.#ctor(Foundation.NSObjectFlag) M:CarPlay.CPGridTemplate.#ctor(ObjCRuntime.NativeHandle) +M:CarPlay.CPGridTemplate.#ctor(System.String,CarPlay.CPGridButton[]) +M:CarPlay.CPGridTemplate.get_BackButton M:CarPlay.CPGridTemplate.get_ClassHandle +M:CarPlay.CPGridTemplate.get_GridButtons +M:CarPlay.CPGridTemplate.get_LeadingNavigationBarButtons M:CarPlay.CPGridTemplate.get_MaximumItems +M:CarPlay.CPGridTemplate.get_Title +M:CarPlay.CPGridTemplate.get_TrailingNavigationBarButtons M:CarPlay.CPGridTemplate.set_BackButton(CarPlay.CPBarButton) M:CarPlay.CPGridTemplate.set_LeadingNavigationBarButtons(CarPlay.CPBarButton[]) M:CarPlay.CPGridTemplate.set_TrailingNavigationBarButtons(CarPlay.CPBarButton[]) +M:CarPlay.CPGridTemplate.UpdateGridButtons(CarPlay.CPGridButton[]) +M:CarPlay.CPGridTemplate.UpdateTitle(System.String) M:CarPlay.CPImageSet.#ctor(Foundation.NSCoder) M:CarPlay.CPImageSet.#ctor(Foundation.NSObjectFlag) M:CarPlay.CPImageSet.#ctor(ObjCRuntime.NativeHandle) +M:CarPlay.CPImageSet.#ctor(UIKit.UIImage,UIKit.UIImage) M:CarPlay.CPImageSet.EncodeTo(Foundation.NSCoder) M:CarPlay.CPImageSet.get_ClassHandle +M:CarPlay.CPImageSet.get_DarkContentImage +M:CarPlay.CPImageSet.get_LightContentImage M:CarPlay.CPInformationItem.#ctor(Foundation.NSCoder) M:CarPlay.CPInformationItem.#ctor(Foundation.NSObjectFlag) M:CarPlay.CPInformationItem.#ctor(ObjCRuntime.NativeHandle) +M:CarPlay.CPInformationItem.#ctor(System.String,System.String) M:CarPlay.CPInformationItem.EncodeTo(Foundation.NSCoder) M:CarPlay.CPInformationItem.get_ClassHandle +M:CarPlay.CPInformationItem.get_Detail +M:CarPlay.CPInformationItem.get_Title M:CarPlay.CPInformationRatingItem.#ctor(Foundation.NSCoder) +M:CarPlay.CPInformationRatingItem.#ctor(Foundation.NSNumber,Foundation.NSNumber,System.String,System.String) M:CarPlay.CPInformationRatingItem.#ctor(Foundation.NSObjectFlag) M:CarPlay.CPInformationRatingItem.#ctor(ObjCRuntime.NativeHandle) M:CarPlay.CPInformationRatingItem.get_ClassHandle +M:CarPlay.CPInformationRatingItem.get_MaximumRating +M:CarPlay.CPInformationRatingItem.get_Rating M:CarPlay.CPInformationTemplate.#ctor(Foundation.NSCoder) M:CarPlay.CPInformationTemplate.#ctor(Foundation.NSObjectFlag) M:CarPlay.CPInformationTemplate.#ctor(ObjCRuntime.NativeHandle) +M:CarPlay.CPInformationTemplate.#ctor(System.String,CarPlay.CPInformationTemplateLayout,CarPlay.CPInformationItem[],CarPlay.CPTextButton[]) +M:CarPlay.CPInformationTemplate.get_Actions +M:CarPlay.CPInformationTemplate.get_BackButton M:CarPlay.CPInformationTemplate.get_ClassHandle +M:CarPlay.CPInformationTemplate.get_Items +M:CarPlay.CPInformationTemplate.get_Layout +M:CarPlay.CPInformationTemplate.get_LeadingNavigationBarButtons +M:CarPlay.CPInformationTemplate.get_Title +M:CarPlay.CPInformationTemplate.get_TrailingNavigationBarButtons M:CarPlay.CPInformationTemplate.set_Actions(CarPlay.CPTextButton[]) M:CarPlay.CPInformationTemplate.set_BackButton(CarPlay.CPBarButton) M:CarPlay.CPInformationTemplate.set_Items(CarPlay.CPInformationItem[]) @@ -43857,8 +45617,14 @@ M:CarPlay.CPInformationTemplate.set_TrailingNavigationBarButtons(CarPlay.CPBarBu M:CarPlay.CPInstrumentClusterController.#ctor(Foundation.NSObjectFlag) M:CarPlay.CPInstrumentClusterController.#ctor(ObjCRuntime.NativeHandle) M:CarPlay.CPInstrumentClusterController.Dispose(System.Boolean) +M:CarPlay.CPInstrumentClusterController.get_AttributedInactiveDescriptionVariants M:CarPlay.CPInstrumentClusterController.get_ClassHandle +M:CarPlay.CPInstrumentClusterController.get_CompassSetting M:CarPlay.CPInstrumentClusterController.get_Delegate +M:CarPlay.CPInstrumentClusterController.get_InactiveDescriptionVariants +M:CarPlay.CPInstrumentClusterController.get_InstrumentClusterWindow +M:CarPlay.CPInstrumentClusterController.get_SpeedLimitSetting +M:CarPlay.CPInstrumentClusterController.get_WeakDelegate M:CarPlay.CPInstrumentClusterController.set_AttributedInactiveDescriptionVariants(Foundation.NSAttributedString[]) M:CarPlay.CPInstrumentClusterController.set_Delegate(CarPlay.ICPInstrumentClusterControllerDelegate) M:CarPlay.CPInstrumentClusterController.set_InactiveDescriptionVariants(System.String[]) @@ -43878,18 +45644,39 @@ M:CarPlay.CPInstrumentClusterControllerDelegate.DidZoomIn(CarPlay.CPInstrumentCl M:CarPlay.CPInstrumentClusterControllerDelegate.DidZoomOut(CarPlay.CPInstrumentClusterController) M:CarPlay.CPInterfaceController.#ctor(Foundation.NSObjectFlag) M:CarPlay.CPInterfaceController.#ctor(ObjCRuntime.NativeHandle) +M:CarPlay.CPInterfaceController.DismissTemplate(System.Boolean,System.Action{System.Boolean,Foundation.NSError}) +M:CarPlay.CPInterfaceController.DismissTemplate(System.Boolean) M:CarPlay.CPInterfaceController.DismissTemplateAsync(System.Boolean) M:CarPlay.CPInterfaceController.Dispose(System.Boolean) +M:CarPlay.CPInterfaceController.get_CarTraitCollection M:CarPlay.CPInterfaceController.get_ClassHandle M:CarPlay.CPInterfaceController.get_Delegate +M:CarPlay.CPInterfaceController.get_PrefersDarkUserInterfaceStyle +M:CarPlay.CPInterfaceController.get_PresentedTemplate +M:CarPlay.CPInterfaceController.get_RootTemplate +M:CarPlay.CPInterfaceController.get_Templates +M:CarPlay.CPInterfaceController.get_TopTemplate +M:CarPlay.CPInterfaceController.get_WeakDelegate +M:CarPlay.CPInterfaceController.PopTemplate(System.Boolean,System.Action{System.Boolean,Foundation.NSError}) +M:CarPlay.CPInterfaceController.PopTemplate(System.Boolean) M:CarPlay.CPInterfaceController.PopTemplateAsync(System.Boolean) +M:CarPlay.CPInterfaceController.PopToRootTemplate(System.Boolean,System.Action{System.Boolean,Foundation.NSError}) +M:CarPlay.CPInterfaceController.PopToRootTemplate(System.Boolean) M:CarPlay.CPInterfaceController.PopToRootTemplateAsync(System.Boolean) +M:CarPlay.CPInterfaceController.PopToTemplate(CarPlay.CPTemplate,System.Boolean,System.Action{System.Boolean,Foundation.NSError}) +M:CarPlay.CPInterfaceController.PopToTemplate(CarPlay.CPTemplate,System.Boolean) M:CarPlay.CPInterfaceController.PopToTemplateAsync(CarPlay.CPTemplate,System.Boolean) +M:CarPlay.CPInterfaceController.PresentTemplate(CarPlay.CPTemplate,System.Boolean,System.Action{System.Boolean,Foundation.NSError}) +M:CarPlay.CPInterfaceController.PresentTemplate(CarPlay.CPTemplate,System.Boolean) M:CarPlay.CPInterfaceController.PresentTemplateAsync(CarPlay.CPTemplate,System.Boolean) +M:CarPlay.CPInterfaceController.PushTemplate(CarPlay.CPTemplate,System.Boolean,System.Action{System.Boolean,Foundation.NSError}) +M:CarPlay.CPInterfaceController.PushTemplate(CarPlay.CPTemplate,System.Boolean) M:CarPlay.CPInterfaceController.PushTemplateAsync(CarPlay.CPTemplate,System.Boolean) M:CarPlay.CPInterfaceController.set_Delegate(CarPlay.ICPInterfaceControllerDelegate) M:CarPlay.CPInterfaceController.set_PrefersDarkUserInterfaceStyle(System.Boolean) M:CarPlay.CPInterfaceController.set_WeakDelegate(Foundation.NSObject) +M:CarPlay.CPInterfaceController.SetRootTemplate(CarPlay.CPTemplate,System.Boolean,System.Action{System.Boolean,Foundation.NSError}) +M:CarPlay.CPInterfaceController.SetRootTemplate(CarPlay.CPTemplate,System.Boolean) M:CarPlay.CPInterfaceController.SetRootTemplateAsync(CarPlay.CPTemplate,System.Boolean) M:CarPlay.CPInterfaceControllerDelegate_Extensions.TemplateDidAppear(CarPlay.ICPInterfaceControllerDelegate,CarPlay.CPTemplate,System.Boolean) M:CarPlay.CPInterfaceControllerDelegate_Extensions.TemplateDidDisappear(CarPlay.ICPInterfaceControllerDelegate,CarPlay.CPTemplate,System.Boolean) @@ -43904,14 +45691,22 @@ M:CarPlay.CPInterfaceControllerDelegate.TemplateWillAppear(CarPlay.CPTemplate,Sy M:CarPlay.CPInterfaceControllerDelegate.TemplateWillDisappear(CarPlay.CPTemplate,System.Boolean) M:CarPlay.CPListImageRowItem.#ctor(Foundation.NSObjectFlag) M:CarPlay.CPListImageRowItem.#ctor(ObjCRuntime.NativeHandle) +M:CarPlay.CPListImageRowItem.#ctor(System.String,UIKit.UIImage[]) M:CarPlay.CPListImageRowItem.get_ClassHandle M:CarPlay.CPListImageRowItem.get_Enabled +M:CarPlay.CPListImageRowItem.get_GridImages +M:CarPlay.CPListImageRowItem.get_Handler +M:CarPlay.CPListImageRowItem.get_ListImageRowHandler +M:CarPlay.CPListImageRowItem.get_MaximumImageSize M:CarPlay.CPListImageRowItem.get_MaximumNumberOfGridImages +M:CarPlay.CPListImageRowItem.get_Text +M:CarPlay.CPListImageRowItem.get_UserInfo M:CarPlay.CPListImageRowItem.set_Enabled(System.Boolean) M:CarPlay.CPListImageRowItem.set_Handler(CarPlay.CPSelectableListItemHandler) M:CarPlay.CPListImageRowItem.set_ListImageRowHandler(CarPlay.CPListImageRowItemHandler) M:CarPlay.CPListImageRowItem.set_Text(System.String) M:CarPlay.CPListImageRowItem.set_UserInfo(Foundation.NSObject) +M:CarPlay.CPListImageRowItem.UpdateImages(UIKit.UIImage[]) M:CarPlay.CPListImageRowItemHandler.#ctor(System.Object,System.IntPtr) M:CarPlay.CPListImageRowItemHandler.BeginInvoke(CarPlay.CPListImageRowItem,System.IntPtr,System.Action,System.AsyncCallback,System.Object) M:CarPlay.CPListImageRowItemHandler.EndInvoke(System.IAsyncResult) @@ -43919,12 +45714,27 @@ M:CarPlay.CPListImageRowItemHandler.Invoke(CarPlay.CPListImageRowItem,System.Int M:CarPlay.CPListItem.#ctor(Foundation.NSCoder) M:CarPlay.CPListItem.#ctor(Foundation.NSObjectFlag) M:CarPlay.CPListItem.#ctor(ObjCRuntime.NativeHandle) +M:CarPlay.CPListItem.#ctor(System.String,System.String,UIKit.UIImage,System.Boolean) +M:CarPlay.CPListItem.#ctor(System.String,System.String,UIKit.UIImage,UIKit.UIImage,CarPlay.CPListItemAccessoryType) +M:CarPlay.CPListItem.#ctor(System.String,System.String,UIKit.UIImage) +M:CarPlay.CPListItem.#ctor(System.String,System.String) M:CarPlay.CPListItem.EncodeTo(Foundation.NSCoder) +M:CarPlay.CPListItem.get_AccessoryImage +M:CarPlay.CPListItem.get_AccessoryType M:CarPlay.CPListItem.get_ClassHandle +M:CarPlay.CPListItem.get_DetailText M:CarPlay.CPListItem.get_Enabled +M:CarPlay.CPListItem.get_Handler +M:CarPlay.CPListItem.get_Image M:CarPlay.CPListItem.get_IsExplicitContent M:CarPlay.CPListItem.get_IsPlaying +M:CarPlay.CPListItem.get_MaximumImageSize M:CarPlay.CPListItem.get_MaximumListItemImageSize +M:CarPlay.CPListItem.get_PlaybackProgress +M:CarPlay.CPListItem.get_PlayingIndicatorLocation +M:CarPlay.CPListItem.get_ShowsDisclosureIndicator +M:CarPlay.CPListItem.get_Text +M:CarPlay.CPListItem.get_UserInfo M:CarPlay.CPListItem.set_AccessoryType(CarPlay.CPListItemAccessoryType) M:CarPlay.CPListItem.set_Enabled(System.Boolean) M:CarPlay.CPListItem.set_Handler(CarPlay.CPSelectableListItemHandler) @@ -43933,22 +45743,53 @@ M:CarPlay.CPListItem.set_IsPlaying(System.Boolean) M:CarPlay.CPListItem.set_PlaybackProgress(System.Runtime.InteropServices.NFloat) M:CarPlay.CPListItem.set_PlayingIndicatorLocation(CarPlay.CPListItemPlayingIndicatorLocation) M:CarPlay.CPListItem.set_UserInfo(Foundation.NSObject) +M:CarPlay.CPListItem.SetAccessoryImage(UIKit.UIImage) +M:CarPlay.CPListItem.SetDetailText(System.String) +M:CarPlay.CPListItem.SetImage(UIKit.UIImage) +M:CarPlay.CPListItem.SetText(System.String) M:CarPlay.CPListSection.#ctor(CarPlay.CPListItem[],System.String,System.String) M:CarPlay.CPListSection.#ctor(CarPlay.CPListItem[]) +M:CarPlay.CPListSection.#ctor(CarPlay.ICPListTemplateItem[],System.String,System.String,UIKit.UIImage,CarPlay.CPButton,System.String) +M:CarPlay.CPListSection.#ctor(CarPlay.ICPListTemplateItem[],System.String,System.String) +M:CarPlay.CPListSection.#ctor(CarPlay.ICPListTemplateItem[]) M:CarPlay.CPListSection.#ctor(Foundation.NSCoder) M:CarPlay.CPListSection.#ctor(Foundation.NSObjectFlag) M:CarPlay.CPListSection.#ctor(ObjCRuntime.NativeHandle) M:CarPlay.CPListSection.EncodeTo(Foundation.NSCoder) M:CarPlay.CPListSection.get_ClassHandle +M:CarPlay.CPListSection.get_Header +M:CarPlay.CPListSection.get_HeaderButton +M:CarPlay.CPListSection.get_HeaderImage +M:CarPlay.CPListSection.get_HeaderSubtitle M:CarPlay.CPListSection.get_Items +M:CarPlay.CPListSection.get_Items2 M:CarPlay.CPListSection.get_MaximumImageSize +M:CarPlay.CPListSection.get_SectionIndexTitle +M:CarPlay.CPListSection.GetIndex(CarPlay.ICPListTemplateItem) +M:CarPlay.CPListSection.GetItem(System.UIntPtr) M:CarPlay.CPListSection.set_HeaderImage(UIKit.UIImage) M:CarPlay.CPListTemplate.#ctor(Foundation.NSCoder) M:CarPlay.CPListTemplate.#ctor(Foundation.NSObjectFlag) M:CarPlay.CPListTemplate.#ctor(ObjCRuntime.NativeHandle) +M:CarPlay.CPListTemplate.#ctor(System.String,CarPlay.CPListSection[],CarPlay.CPAssistantCellConfiguration) +M:CarPlay.CPListTemplate.#ctor(System.String,CarPlay.CPListSection[]) M:CarPlay.CPListTemplate.Dispose(System.Boolean) +M:CarPlay.CPListTemplate.get_AssistantCellConfiguration +M:CarPlay.CPListTemplate.get_BackButton M:CarPlay.CPListTemplate.get_ClassHandle M:CarPlay.CPListTemplate.get_Delegate +M:CarPlay.CPListTemplate.get_EmptyViewSubtitleVariants +M:CarPlay.CPListTemplate.get_EmptyViewTitleVariants +M:CarPlay.CPListTemplate.get_ItemCount +M:CarPlay.CPListTemplate.get_LeadingNavigationBarButtons +M:CarPlay.CPListTemplate.get_MaximumItemCount +M:CarPlay.CPListTemplate.get_MaximumSectionCount +M:CarPlay.CPListTemplate.get_SectionCount +M:CarPlay.CPListTemplate.get_Sections +M:CarPlay.CPListTemplate.get_Title +M:CarPlay.CPListTemplate.get_TrailingNavigationBarButtons +M:CarPlay.CPListTemplate.get_WeakDelegate +M:CarPlay.CPListTemplate.GetIndexPath(CarPlay.ICPListTemplateItem) M:CarPlay.CPListTemplate.set_AssistantCellConfiguration(CarPlay.CPAssistantCellConfiguration) M:CarPlay.CPListTemplate.set_BackButton(CarPlay.CPBarButton) M:CarPlay.CPListTemplate.set_Delegate(CarPlay.ICPListTemplateDelegate) @@ -43957,6 +45798,7 @@ M:CarPlay.CPListTemplate.set_EmptyViewTitleVariants(System.String[]) M:CarPlay.CPListTemplate.set_LeadingNavigationBarButtons(CarPlay.CPBarButton[]) M:CarPlay.CPListTemplate.set_TrailingNavigationBarButtons(CarPlay.CPBarButton[]) M:CarPlay.CPListTemplate.set_WeakDelegate(Foundation.NSObject) +M:CarPlay.CPListTemplate.UpdateSections(CarPlay.CPListSection[]) M:CarPlay.CPListTemplateDelegate.#ctor M:CarPlay.CPListTemplateDelegate.#ctor(Foundation.NSObjectFlag) M:CarPlay.CPListTemplateDelegate.#ctor(ObjCRuntime.NativeHandle) @@ -43965,8 +45807,24 @@ M:CarPlay.CPManeuver.#ctor M:CarPlay.CPManeuver.#ctor(Foundation.NSCoder) M:CarPlay.CPManeuver.#ctor(Foundation.NSObjectFlag) M:CarPlay.CPManeuver.#ctor(ObjCRuntime.NativeHandle) +M:CarPlay.CPManeuver.Copy(Foundation.NSZone) M:CarPlay.CPManeuver.EncodeTo(Foundation.NSCoder) +M:CarPlay.CPManeuver.get_AttributedInstructionVariants +M:CarPlay.CPManeuver.get_CardBackgroundColor M:CarPlay.CPManeuver.get_ClassHandle +M:CarPlay.CPManeuver.get_DashboardAttributedInstructionVariants +M:CarPlay.CPManeuver.get_DashboardInstructionVariants +M:CarPlay.CPManeuver.get_DashboardJunctionImage +M:CarPlay.CPManeuver.get_DashboardSymbolImage +M:CarPlay.CPManeuver.get_InitialTravelEstimates +M:CarPlay.CPManeuver.get_InstructionVariants +M:CarPlay.CPManeuver.get_JunctionImage +M:CarPlay.CPManeuver.get_NotificationAttributedInstructionVariants +M:CarPlay.CPManeuver.get_NotificationInstructionVariants +M:CarPlay.CPManeuver.get_NotificationSymbolImage +M:CarPlay.CPManeuver.get_SymbolImage +M:CarPlay.CPManeuver.get_SymbolSet +M:CarPlay.CPManeuver.get_UserInfo M:CarPlay.CPManeuver.set_AttributedInstructionVariants(Foundation.NSAttributedString[]) M:CarPlay.CPManeuver.set_CardBackgroundColor(UIKit.UIColor) M:CarPlay.CPManeuver.set_DashboardAttributedInstructionVariants(Foundation.NSAttributedString[]) @@ -43985,10 +45843,13 @@ M:CarPlay.CPManeuver.set_UserInfo(Foundation.NSObject) M:CarPlay.CPMapButton.#ctor(Foundation.NSCoder) M:CarPlay.CPMapButton.#ctor(Foundation.NSObjectFlag) M:CarPlay.CPMapButton.#ctor(ObjCRuntime.NativeHandle) +M:CarPlay.CPMapButton.#ctor(System.Action{CarPlay.CPMapButton}) M:CarPlay.CPMapButton.EncodeTo(Foundation.NSCoder) M:CarPlay.CPMapButton.get_ClassHandle M:CarPlay.CPMapButton.get_Enabled +M:CarPlay.CPMapButton.get_FocusedImage M:CarPlay.CPMapButton.get_Hidden +M:CarPlay.CPMapButton.get_Image M:CarPlay.CPMapButton.set_Enabled(System.Boolean) M:CarPlay.CPMapButton.set_FocusedImage(UIKit.UIImage) M:CarPlay.CPMapButton.set_Hidden(System.Boolean) @@ -43996,11 +45857,25 @@ M:CarPlay.CPMapButton.set_Image(UIKit.UIImage) M:CarPlay.CPMapTemplate.#ctor(Foundation.NSCoder) M:CarPlay.CPMapTemplate.#ctor(Foundation.NSObjectFlag) M:CarPlay.CPMapTemplate.#ctor(ObjCRuntime.NativeHandle) +M:CarPlay.CPMapTemplate.DismissNavigationAlert(System.Boolean,System.Action{System.Boolean}) M:CarPlay.CPMapTemplate.DismissNavigationAlertAsync(System.Boolean) +M:CarPlay.CPMapTemplate.DismissPanningInterface(System.Boolean) M:CarPlay.CPMapTemplate.Dispose(System.Boolean) +M:CarPlay.CPMapTemplate.get_AutomaticallyHidesNavigationBar +M:CarPlay.CPMapTemplate.get_BackButton M:CarPlay.CPMapTemplate.get_ClassHandle +M:CarPlay.CPMapTemplate.get_CurrentNavigationAlert +M:CarPlay.CPMapTemplate.get_GuidanceBackgroundColor +M:CarPlay.CPMapTemplate.get_HidesButtonsWithNavigationBar +M:CarPlay.CPMapTemplate.get_LeadingNavigationBarButtons +M:CarPlay.CPMapTemplate.get_MapButtons M:CarPlay.CPMapTemplate.get_MapDelegate M:CarPlay.CPMapTemplate.get_PanningInterfaceVisible +M:CarPlay.CPMapTemplate.get_TrailingNavigationBarButtons +M:CarPlay.CPMapTemplate.get_TripEstimateStyle +M:CarPlay.CPMapTemplate.get_WeakMapDelegate +M:CarPlay.CPMapTemplate.HideTripPreviews +M:CarPlay.CPMapTemplate.PresentNavigationAlert(CarPlay.CPNavigationAlert,System.Boolean) M:CarPlay.CPMapTemplate.set_AutomaticallyHidesNavigationBar(System.Boolean) M:CarPlay.CPMapTemplate.set_BackButton(CarPlay.CPBarButton) M:CarPlay.CPMapTemplate.set_GuidanceBackgroundColor(UIKit.UIColor) @@ -44011,6 +45886,13 @@ M:CarPlay.CPMapTemplate.set_MapDelegate(CarPlay.ICPMapTemplateDelegate) M:CarPlay.CPMapTemplate.set_TrailingNavigationBarButtons(CarPlay.CPBarButton[]) M:CarPlay.CPMapTemplate.set_TripEstimateStyle(CarPlay.CPTripEstimateStyle) M:CarPlay.CPMapTemplate.set_WeakMapDelegate(Foundation.NSObject) +M:CarPlay.CPMapTemplate.ShowPanningInterface(System.Boolean) +M:CarPlay.CPMapTemplate.ShowRouteChoicesPreview(CarPlay.CPTrip,CarPlay.CPTripPreviewTextConfiguration) +M:CarPlay.CPMapTemplate.ShowTripPreviews(CarPlay.CPTrip[],CarPlay.CPTrip,CarPlay.CPTripPreviewTextConfiguration) +M:CarPlay.CPMapTemplate.ShowTripPreviews(CarPlay.CPTrip[],CarPlay.CPTripPreviewTextConfiguration) +M:CarPlay.CPMapTemplate.StartNavigationSession(CarPlay.CPTrip) +M:CarPlay.CPMapTemplate.UpdateTravelEstimates(CarPlay.CPTravelEstimates,CarPlay.CPTrip,CarPlay.CPTimeRemainingColor) +M:CarPlay.CPMapTemplate.UpdateTravelEstimates(CarPlay.CPTravelEstimates,CarPlay.CPTrip) M:CarPlay.CPMapTemplateDelegate_Extensions.DidBeginPanGesture(CarPlay.ICPMapTemplateDelegate,CarPlay.CPMapTemplate) M:CarPlay.CPMapTemplateDelegate_Extensions.DidCancelNavigation(CarPlay.ICPMapTemplateDelegate,CarPlay.CPMapTemplate) M:CarPlay.CPMapTemplateDelegate_Extensions.DidDismissNavigationAlert(CarPlay.ICPMapTemplateDelegate,CarPlay.CPMapTemplate,CarPlay.CPNavigationAlert,CarPlay.CPNavigationAlertDismissalContext) @@ -44054,9 +45936,12 @@ M:CarPlay.CPMapTemplateDelegate.StartedTrip(CarPlay.CPMapTemplate,CarPlay.CPTrip M:CarPlay.CPMapTemplateDelegate.WillDismissNavigationAlert(CarPlay.CPMapTemplate,CarPlay.CPNavigationAlert,CarPlay.CPNavigationAlertDismissalContext) M:CarPlay.CPMapTemplateDelegate.WillDismissPanningInterface(CarPlay.CPMapTemplate) M:CarPlay.CPMapTemplateDelegate.WillShowNavigationAlert(CarPlay.CPMapTemplate,CarPlay.CPNavigationAlert) +M:CarPlay.CPMessageComposeBarButton.#ctor M:CarPlay.CPMessageComposeBarButton.#ctor(Foundation.NSCoder) M:CarPlay.CPMessageComposeBarButton.#ctor(Foundation.NSObjectFlag) M:CarPlay.CPMessageComposeBarButton.#ctor(ObjCRuntime.NativeHandle) +M:CarPlay.CPMessageComposeBarButton.#ctor(UIKit.UIImage) +M:CarPlay.CPMessageComposeBarButton.Create M:CarPlay.CPMessageComposeBarButton.get_ClassHandle M:CarPlay.CPMessageListItem.#ctor M:CarPlay.CPMessageListItem.#ctor(Foundation.NSObjectFlag) @@ -44064,8 +45949,16 @@ M:CarPlay.CPMessageListItem.#ctor(ObjCRuntime.NativeHandle) M:CarPlay.CPMessageListItem.#ctor(System.String,System.String,CarPlay.CPMessageListItemLeadingConfiguration,CarPlay.CPMessageListItemTrailingConfiguration,System.String,System.String,CarPlay.CPMessageListItemType) M:CarPlay.CPMessageListItem.#ctor(System.String,System.String,CarPlay.CPMessageListItemLeadingConfiguration,CarPlay.CPMessageListItemTrailingConfiguration,System.String,System.String) M:CarPlay.CPMessageListItem.get_ClassHandle +M:CarPlay.CPMessageListItem.get_ConversationIdentifier +M:CarPlay.CPMessageListItem.get_DetailText M:CarPlay.CPMessageListItem.get_Enabled +M:CarPlay.CPMessageListItem.get_LeadingConfiguration M:CarPlay.CPMessageListItem.get_MaximumMessageItemImageSize +M:CarPlay.CPMessageListItem.get_PhoneOrEmailAddress +M:CarPlay.CPMessageListItem.get_Text +M:CarPlay.CPMessageListItem.get_TrailingConfiguration +M:CarPlay.CPMessageListItem.get_TrailingText +M:CarPlay.CPMessageListItem.get_UserInfo M:CarPlay.CPMessageListItem.set_ConversationIdentifier(System.String) M:CarPlay.CPMessageListItem.set_DetailText(System.String) M:CarPlay.CPMessageListItem.set_Enabled(System.Boolean) @@ -44075,22 +45968,45 @@ M:CarPlay.CPMessageListItem.set_Text(System.String) M:CarPlay.CPMessageListItem.set_TrailingConfiguration(CarPlay.CPMessageListItemTrailingConfiguration) M:CarPlay.CPMessageListItem.set_TrailingText(System.String) M:CarPlay.CPMessageListItem.set_UserInfo(Foundation.NSObject) +M:CarPlay.CPMessageListItemLeadingConfiguration.#ctor(CarPlay.CPMessageLeadingItem,UIKit.UIImage,System.Boolean) M:CarPlay.CPMessageListItemLeadingConfiguration.#ctor(Foundation.NSObjectFlag) M:CarPlay.CPMessageListItemLeadingConfiguration.#ctor(ObjCRuntime.NativeHandle) M:CarPlay.CPMessageListItemLeadingConfiguration.get_ClassHandle +M:CarPlay.CPMessageListItemLeadingConfiguration.get_LeadingImage +M:CarPlay.CPMessageListItemLeadingConfiguration.get_LeadingItem M:CarPlay.CPMessageListItemLeadingConfiguration.get_Unread +M:CarPlay.CPMessageListItemTrailingConfiguration.#ctor(CarPlay.CPMessageTrailingItem,UIKit.UIImage) M:CarPlay.CPMessageListItemTrailingConfiguration.#ctor(Foundation.NSObjectFlag) M:CarPlay.CPMessageListItemTrailingConfiguration.#ctor(ObjCRuntime.NativeHandle) M:CarPlay.CPMessageListItemTrailingConfiguration.get_ClassHandle +M:CarPlay.CPMessageListItemTrailingConfiguration.get_TrailingImage +M:CarPlay.CPMessageListItemTrailingConfiguration.get_TrailingItem M:CarPlay.CPNavigationAlert.#ctor(Foundation.NSCoder) M:CarPlay.CPNavigationAlert.#ctor(Foundation.NSObjectFlag) M:CarPlay.CPNavigationAlert.#ctor(ObjCRuntime.NativeHandle) +M:CarPlay.CPNavigationAlert.#ctor(System.String[],System.String[],CarPlay.CPImageSet,CarPlay.CPAlertAction,CarPlay.CPAlertAction,System.Double) +M:CarPlay.CPNavigationAlert.#ctor(System.String[],System.String[],UIKit.UIImage,CarPlay.CPAlertAction,CarPlay.CPAlertAction,System.Double) M:CarPlay.CPNavigationAlert.EncodeTo(Foundation.NSCoder) M:CarPlay.CPNavigationAlert.get_ClassHandle +M:CarPlay.CPNavigationAlert.get_Duration +M:CarPlay.CPNavigationAlert.get_Image +M:CarPlay.CPNavigationAlert.get_ImageSet +M:CarPlay.CPNavigationAlert.get_PrimaryAction +M:CarPlay.CPNavigationAlert.get_SecondaryAction +M:CarPlay.CPNavigationAlert.get_SubtitleVariants +M:CarPlay.CPNavigationAlert.get_TitleVariants +M:CarPlay.CPNavigationAlert.UpdateTitleVariants(System.String[],System.String[]) M:CarPlay.CPNavigationSession.#ctor(Foundation.NSObjectFlag) M:CarPlay.CPNavigationSession.#ctor(ObjCRuntime.NativeHandle) +M:CarPlay.CPNavigationSession.CancelTrip +M:CarPlay.CPNavigationSession.FinishTrip M:CarPlay.CPNavigationSession.get_ClassHandle +M:CarPlay.CPNavigationSession.get_Trip +M:CarPlay.CPNavigationSession.get_UpcomingManeuvers +M:CarPlay.CPNavigationSession.PauseTrip(CarPlay.CPTripPauseReason,System.String,UIKit.UIColor) +M:CarPlay.CPNavigationSession.PauseTrip(CarPlay.CPTripPauseReason,System.String) M:CarPlay.CPNavigationSession.set_UpcomingManeuvers(CarPlay.CPManeuver[]) +M:CarPlay.CPNavigationSession.UpdateTravelEstimates(CarPlay.CPTravelEstimates,CarPlay.CPManeuver) M:CarPlay.CPNowPlayingAddToLibraryButton.#ctor M:CarPlay.CPNowPlayingAddToLibraryButton.#ctor(Foundation.NSCoder) M:CarPlay.CPNowPlayingAddToLibraryButton.#ctor(Foundation.NSObjectFlag) @@ -44100,6 +46016,7 @@ M:CarPlay.CPNowPlayingAddToLibraryButton.get_ClassHandle M:CarPlay.CPNowPlayingButton.#ctor(Foundation.NSCoder) M:CarPlay.CPNowPlayingButton.#ctor(Foundation.NSObjectFlag) M:CarPlay.CPNowPlayingButton.#ctor(ObjCRuntime.NativeHandle) +M:CarPlay.CPNowPlayingButton.#ctor(System.Action{CarPlay.CPNowPlayingButton}) M:CarPlay.CPNowPlayingButton.EncodeTo(Foundation.NSCoder) M:CarPlay.CPNowPlayingButton.get_ClassHandle M:CarPlay.CPNowPlayingButton.get_Enabled @@ -44111,7 +46028,9 @@ M:CarPlay.CPNowPlayingImageButton.#ctor(Foundation.NSCoder) M:CarPlay.CPNowPlayingImageButton.#ctor(Foundation.NSObjectFlag) M:CarPlay.CPNowPlayingImageButton.#ctor(ObjCRuntime.NativeHandle) M:CarPlay.CPNowPlayingImageButton.#ctor(System.Action{CarPlay.CPNowPlayingButton}) +M:CarPlay.CPNowPlayingImageButton.#ctor(UIKit.UIImage,System.Action{CarPlay.CPNowPlayingButton}) M:CarPlay.CPNowPlayingImageButton.get_ClassHandle +M:CarPlay.CPNowPlayingImageButton.get_Image M:CarPlay.CPNowPlayingMoreButton.#ctor M:CarPlay.CPNowPlayingMoreButton.#ctor(Foundation.NSCoder) M:CarPlay.CPNowPlayingMoreButton.#ctor(Foundation.NSObjectFlag) @@ -44139,19 +46058,41 @@ M:CarPlay.CPNowPlayingShuffleButton.get_ClassHandle M:CarPlay.CPNowPlayingTemplate.#ctor(Foundation.NSCoder) M:CarPlay.CPNowPlayingTemplate.#ctor(Foundation.NSObjectFlag) M:CarPlay.CPNowPlayingTemplate.#ctor(ObjCRuntime.NativeHandle) +M:CarPlay.CPNowPlayingTemplate.AddObserver(CarPlay.ICPNowPlayingTemplateObserver) M:CarPlay.CPNowPlayingTemplate.get_ClassHandle M:CarPlay.CPNowPlayingTemplate.get_IsAlbumArtistButtonEnabled M:CarPlay.CPNowPlayingTemplate.get_IsUpNextButtonEnabled +M:CarPlay.CPNowPlayingTemplate.get_NowPlayingButtons +M:CarPlay.CPNowPlayingTemplate.get_SharedTemplate +M:CarPlay.CPNowPlayingTemplate.get_UpNextTitle +M:CarPlay.CPNowPlayingTemplate.RemoveObserver(CarPlay.ICPNowPlayingTemplateObserver) M:CarPlay.CPNowPlayingTemplate.set_IsAlbumArtistButtonEnabled(System.Boolean) M:CarPlay.CPNowPlayingTemplate.set_IsUpNextButtonEnabled(System.Boolean) M:CarPlay.CPNowPlayingTemplate.set_UpNextTitle(System.String) +M:CarPlay.CPNowPlayingTemplate.UpdateNowPlayingButtons(CarPlay.CPNowPlayingButton[]) M:CarPlay.CPNowPlayingTemplateObserver_Extensions.AlbumArtistButtonTapped(CarPlay.ICPNowPlayingTemplateObserver,CarPlay.CPNowPlayingTemplate) M:CarPlay.CPNowPlayingTemplateObserver_Extensions.UpNextButtonTapped(CarPlay.ICPNowPlayingTemplateObserver,CarPlay.CPNowPlayingTemplate) M:CarPlay.CPPointOfInterest.#ctor(Foundation.NSCoder) M:CarPlay.CPPointOfInterest.#ctor(Foundation.NSObjectFlag) +M:CarPlay.CPPointOfInterest.#ctor(MapKit.MKMapItem,System.String,System.String,System.String,System.String,System.String,System.String,UIKit.UIImage,UIKit.UIImage) +M:CarPlay.CPPointOfInterest.#ctor(MapKit.MKMapItem,System.String,System.String,System.String,System.String,System.String,System.String,UIKit.UIImage) M:CarPlay.CPPointOfInterest.#ctor(ObjCRuntime.NativeHandle) M:CarPlay.CPPointOfInterest.EncodeTo(Foundation.NSCoder) M:CarPlay.CPPointOfInterest.get_ClassHandle +M:CarPlay.CPPointOfInterest.get_DetailSubtitle +M:CarPlay.CPPointOfInterest.get_DetailSummary +M:CarPlay.CPPointOfInterest.get_DetailTitle +M:CarPlay.CPPointOfInterest.get_Location +M:CarPlay.CPPointOfInterest.get_PinImage +M:CarPlay.CPPointOfInterest.get_PinImageSize +M:CarPlay.CPPointOfInterest.get_PrimaryButton +M:CarPlay.CPPointOfInterest.get_SecondaryButton +M:CarPlay.CPPointOfInterest.get_SelectedPinImage +M:CarPlay.CPPointOfInterest.get_SelectedPinImageSize +M:CarPlay.CPPointOfInterest.get_Subtitle +M:CarPlay.CPPointOfInterest.get_Summary +M:CarPlay.CPPointOfInterest.get_Title +M:CarPlay.CPPointOfInterest.get_UserInfo M:CarPlay.CPPointOfInterest.set_DetailSubtitle(System.String) M:CarPlay.CPPointOfInterest.set_DetailSummary(System.String) M:CarPlay.CPPointOfInterest.set_DetailTitle(System.String) @@ -44167,9 +46108,17 @@ M:CarPlay.CPPointOfInterest.set_UserInfo(Foundation.NSObject) M:CarPlay.CPPointOfInterestTemplate.#ctor(Foundation.NSCoder) M:CarPlay.CPPointOfInterestTemplate.#ctor(Foundation.NSObjectFlag) M:CarPlay.CPPointOfInterestTemplate.#ctor(ObjCRuntime.NativeHandle) +M:CarPlay.CPPointOfInterestTemplate.#ctor(System.String,CarPlay.CPPointOfInterest[],System.IntPtr) M:CarPlay.CPPointOfInterestTemplate.Dispose(System.Boolean) +M:CarPlay.CPPointOfInterestTemplate.get_BackButton M:CarPlay.CPPointOfInterestTemplate.get_ClassHandle +M:CarPlay.CPPointOfInterestTemplate.get_LeadingNavigationBarButtons M:CarPlay.CPPointOfInterestTemplate.get_PointOfInterestDelegate +M:CarPlay.CPPointOfInterestTemplate.get_PointsOfInterest +M:CarPlay.CPPointOfInterestTemplate.get_SelectedIndex +M:CarPlay.CPPointOfInterestTemplate.get_Title +M:CarPlay.CPPointOfInterestTemplate.get_TrailingNavigationBarButtons +M:CarPlay.CPPointOfInterestTemplate.get_WeakPointOfInterestDelegate M:CarPlay.CPPointOfInterestTemplate.set_BackButton(CarPlay.CPBarButton) M:CarPlay.CPPointOfInterestTemplate.set_LeadingNavigationBarButtons(CarPlay.CPBarButton[]) M:CarPlay.CPPointOfInterestTemplate.set_PointOfInterestDelegate(CarPlay.ICPPointOfInterestTemplateDelegate) @@ -44177,6 +46126,7 @@ M:CarPlay.CPPointOfInterestTemplate.set_SelectedIndex(System.IntPtr) M:CarPlay.CPPointOfInterestTemplate.set_Title(System.String) M:CarPlay.CPPointOfInterestTemplate.set_TrailingNavigationBarButtons(CarPlay.CPBarButton[]) M:CarPlay.CPPointOfInterestTemplate.set_WeakPointOfInterestDelegate(Foundation.NSObject) +M:CarPlay.CPPointOfInterestTemplate.SetPointsOfInterest(CarPlay.CPPointOfInterest[],System.IntPtr) M:CarPlay.CPPointOfInterestTemplateDelegate_Extensions.DidSelectPointOfInterest(CarPlay.ICPPointOfInterestTemplateDelegate,CarPlay.CPPointOfInterestTemplate,CarPlay.CPPointOfInterest) M:CarPlay.CPPointOfInterestTemplateDelegate.#ctor M:CarPlay.CPPointOfInterestTemplateDelegate.#ctor(Foundation.NSObjectFlag) @@ -44186,8 +46136,14 @@ M:CarPlay.CPPointOfInterestTemplateDelegate.DidSelectPointOfInterest(CarPlay.CPP M:CarPlay.CPRouteChoice.#ctor(Foundation.NSCoder) M:CarPlay.CPRouteChoice.#ctor(Foundation.NSObjectFlag) M:CarPlay.CPRouteChoice.#ctor(ObjCRuntime.NativeHandle) +M:CarPlay.CPRouteChoice.#ctor(System.String[],System.String[],System.String[]) +M:CarPlay.CPRouteChoice.Copy(Foundation.NSZone) M:CarPlay.CPRouteChoice.EncodeTo(Foundation.NSCoder) +M:CarPlay.CPRouteChoice.get_AdditionalInformationVariants M:CarPlay.CPRouteChoice.get_ClassHandle +M:CarPlay.CPRouteChoice.get_SelectionSummaryVariants +M:CarPlay.CPRouteChoice.get_SummaryVariants +M:CarPlay.CPRouteChoice.get_UserInfo M:CarPlay.CPRouteChoice.set_UserInfo(Foundation.NSObject) M:CarPlay.CPSearchTemplate.#ctor M:CarPlay.CPSearchTemplate.#ctor(Foundation.NSCoder) @@ -44196,6 +46152,7 @@ M:CarPlay.CPSearchTemplate.#ctor(ObjCRuntime.NativeHandle) M:CarPlay.CPSearchTemplate.Dispose(System.Boolean) M:CarPlay.CPSearchTemplate.get_ClassHandle M:CarPlay.CPSearchTemplate.get_Delegate +M:CarPlay.CPSearchTemplate.get_WeakDelegate M:CarPlay.CPSearchTemplate.set_Delegate(CarPlay.ICPSearchTemplateDelegate) M:CarPlay.CPSearchTemplate.set_WeakDelegate(Foundation.NSObject) M:CarPlay.CPSearchTemplateDelegate_Extensions.SearchButtonPressed(CarPlay.ICPSearchTemplateDelegate,CarPlay.CPSearchTemplate) @@ -44213,11 +46170,15 @@ M:CarPlay.CPSelectableListItemHandler.#ctor(System.Object,System.IntPtr) M:CarPlay.CPSelectableListItemHandler.BeginInvoke(CarPlay.ICPSelectableListItem,System.Action,System.AsyncCallback,System.Object) M:CarPlay.CPSelectableListItemHandler.EndInvoke(System.IAsyncResult) M:CarPlay.CPSelectableListItemHandler.Invoke(CarPlay.ICPSelectableListItem,System.Action) +M:CarPlay.CPSessionConfiguration.#ctor(CarPlay.ICPSessionConfigurationDelegate) M:CarPlay.CPSessionConfiguration.#ctor(Foundation.NSObjectFlag) M:CarPlay.CPSessionConfiguration.#ctor(ObjCRuntime.NativeHandle) M:CarPlay.CPSessionConfiguration.Dispose(System.Boolean) M:CarPlay.CPSessionConfiguration.get_ClassHandle +M:CarPlay.CPSessionConfiguration.get_ContentStyle M:CarPlay.CPSessionConfiguration.get_Delegate +M:CarPlay.CPSessionConfiguration.get_LimitedUserInterfaces +M:CarPlay.CPSessionConfiguration.get_WeakDelegate M:CarPlay.CPSessionConfiguration.set_Delegate(CarPlay.ICPSessionConfigurationDelegate) M:CarPlay.CPSessionConfiguration.set_WeakDelegate(Foundation.NSObject) M:CarPlay.CPSessionConfigurationDelegate_Extensions.ContentStyleChanged(CarPlay.ICPSessionConfigurationDelegate,CarPlay.CPSessionConfiguration,CarPlay.CPContentStyle) @@ -44227,14 +46188,22 @@ M:CarPlay.CPSessionConfigurationDelegate.#ctor(Foundation.NSObjectFlag) M:CarPlay.CPSessionConfigurationDelegate.#ctor(ObjCRuntime.NativeHandle) M:CarPlay.CPSessionConfigurationDelegate.ContentStyleChanged(CarPlay.CPSessionConfiguration,CarPlay.CPContentStyle) M:CarPlay.CPSessionConfigurationDelegate.LimitedUserInterfacesChanged(CarPlay.CPSessionConfiguration,CarPlay.CPLimitableUserInterface) +M:CarPlay.CPTabBarTemplate.#ctor(CarPlay.CPTemplate[]) M:CarPlay.CPTabBarTemplate.#ctor(Foundation.NSCoder) M:CarPlay.CPTabBarTemplate.#ctor(Foundation.NSObjectFlag) M:CarPlay.CPTabBarTemplate.#ctor(ObjCRuntime.NativeHandle) M:CarPlay.CPTabBarTemplate.Dispose(System.Boolean) M:CarPlay.CPTabBarTemplate.get_ClassHandle M:CarPlay.CPTabBarTemplate.get_Delegate +M:CarPlay.CPTabBarTemplate.get_MaximumTabCount +M:CarPlay.CPTabBarTemplate.get_SelectedTemplate +M:CarPlay.CPTabBarTemplate.get_Templates +M:CarPlay.CPTabBarTemplate.get_WeakDelegate +M:CarPlay.CPTabBarTemplate.SelectTemplate(CarPlay.CPTemplate) +M:CarPlay.CPTabBarTemplate.SelectTemplate(System.IntPtr) M:CarPlay.CPTabBarTemplate.set_Delegate(CarPlay.ICPTabBarTemplateDelegate) M:CarPlay.CPTabBarTemplate.set_WeakDelegate(Foundation.NSObject) +M:CarPlay.CPTabBarTemplate.UpdateTemplates(CarPlay.CPTemplate[]) M:CarPlay.CPTabBarTemplateDelegate.#ctor M:CarPlay.CPTabBarTemplateDelegate.#ctor(Foundation.NSObjectFlag) M:CarPlay.CPTabBarTemplateDelegate.#ctor(ObjCRuntime.NativeHandle) @@ -44245,6 +46214,11 @@ M:CarPlay.CPTemplate.#ctor(Foundation.NSObjectFlag) M:CarPlay.CPTemplate.#ctor(ObjCRuntime.NativeHandle) M:CarPlay.CPTemplate.EncodeTo(Foundation.NSCoder) M:CarPlay.CPTemplate.get_ClassHandle +M:CarPlay.CPTemplate.get_ShowsTabBadge +M:CarPlay.CPTemplate.get_TabImage +M:CarPlay.CPTemplate.get_TabSystemItem +M:CarPlay.CPTemplate.get_TabTitle +M:CarPlay.CPTemplate.get_UserInfo M:CarPlay.CPTemplate.set_ShowsTabBadge(System.Boolean) M:CarPlay.CPTemplate.set_TabImage(UIKit.UIImage) M:CarPlay.CPTemplate.set_TabSystemItem(UIKit.UITabBarSystemItem) @@ -44255,8 +46229,11 @@ M:CarPlay.CPTemplateApplicationDashboardScene.#ctor(Foundation.NSObjectFlag) M:CarPlay.CPTemplateApplicationDashboardScene.#ctor(ObjCRuntime.NativeHandle) M:CarPlay.CPTemplateApplicationDashboardScene.#ctor(UIKit.UISceneSession,UIKit.UISceneConnectionOptions) M:CarPlay.CPTemplateApplicationDashboardScene.get_ClassHandle +M:CarPlay.CPTemplateApplicationDashboardScene.get_DashboardController +M:CarPlay.CPTemplateApplicationDashboardScene.get_DashboardWindow M:CarPlay.CPTemplateApplicationDashboardScene.get_Delegate M:CarPlay.CPTemplateApplicationDashboardScene.get_SessionRoleApplication +M:CarPlay.CPTemplateApplicationDashboardScene.get_WeakDelegate M:CarPlay.CPTemplateApplicationDashboardScene.set_Delegate(CarPlay.ICPTemplateApplicationDashboardSceneDelegate) M:CarPlay.CPTemplateApplicationDashboardScene.set_WeakDelegate(Foundation.NSObject) M:CarPlay.CPTemplateApplicationDashboardSceneDelegate_Extensions.DidConnectDashboardController(CarPlay.ICPTemplateApplicationDashboardSceneDelegate,CarPlay.CPTemplateApplicationDashboardScene,CarPlay.CPDashboardController,UIKit.UIWindow) @@ -44283,8 +46260,11 @@ M:CarPlay.CPTemplateApplicationInstrumentClusterScene.#ctor(Foundation.NSObjectF M:CarPlay.CPTemplateApplicationInstrumentClusterScene.#ctor(ObjCRuntime.NativeHandle) M:CarPlay.CPTemplateApplicationInstrumentClusterScene.#ctor(UIKit.UISceneSession,UIKit.UISceneConnectionOptions) M:CarPlay.CPTemplateApplicationInstrumentClusterScene.get_ClassHandle +M:CarPlay.CPTemplateApplicationInstrumentClusterScene.get_ContentStyle M:CarPlay.CPTemplateApplicationInstrumentClusterScene.get_Delegate +M:CarPlay.CPTemplateApplicationInstrumentClusterScene.get_InstrumentClusterController M:CarPlay.CPTemplateApplicationInstrumentClusterScene.get_SessionRoleApplication +M:CarPlay.CPTemplateApplicationInstrumentClusterScene.get_WeakDelegate M:CarPlay.CPTemplateApplicationInstrumentClusterScene.set_Delegate(CarPlay.ICPTemplateApplicationInstrumentClusterSceneDelegate) M:CarPlay.CPTemplateApplicationInstrumentClusterScene.set_WeakDelegate(Foundation.NSObject) M:CarPlay.CPTemplateApplicationInstrumentClusterSceneDelegate_Extensions.ContentStyleDidChange(CarPlay.ICPTemplateApplicationInstrumentClusterSceneDelegate,UIKit.UIUserInterfaceStyle) @@ -44313,9 +46293,13 @@ M:CarPlay.CPTemplateApplicationScene.#ctor M:CarPlay.CPTemplateApplicationScene.#ctor(Foundation.NSObjectFlag) M:CarPlay.CPTemplateApplicationScene.#ctor(ObjCRuntime.NativeHandle) M:CarPlay.CPTemplateApplicationScene.#ctor(UIKit.UISceneSession,UIKit.UISceneConnectionOptions) +M:CarPlay.CPTemplateApplicationScene.get_CarWindow M:CarPlay.CPTemplateApplicationScene.get_ClassHandle +M:CarPlay.CPTemplateApplicationScene.get_ContentStyle M:CarPlay.CPTemplateApplicationScene.get_Delegate +M:CarPlay.CPTemplateApplicationScene.get_InterfaceController M:CarPlay.CPTemplateApplicationScene.get_SessionRoleApplication +M:CarPlay.CPTemplateApplicationScene.get_WeakDelegate M:CarPlay.CPTemplateApplicationScene.set_Delegate(CarPlay.ICPTemplateApplicationSceneDelegate) M:CarPlay.CPTemplateApplicationScene.set_WeakDelegate(Foundation.NSObject) M:CarPlay.CPTemplateApplicationSceneDelegate_Extensions.ContentStyleDidChange(CarPlay.ICPTemplateApplicationSceneDelegate,UIKit.UIUserInterfaceStyle) @@ -44350,36 +46334,60 @@ M:CarPlay.CPTemplateApplicationSceneDelegate.WillEnterForeground(UIKit.UIScene) M:CarPlay.CPTemplateApplicationSceneDelegate.WillResignActive(UIKit.UIScene) M:CarPlay.CPTextButton.#ctor(Foundation.NSObjectFlag) M:CarPlay.CPTextButton.#ctor(ObjCRuntime.NativeHandle) +M:CarPlay.CPTextButton.#ctor(System.String,CarPlay.CPTextButtonStyle,System.Action{CarPlay.CPTextButton}) M:CarPlay.CPTextButton.get_ClassHandle +M:CarPlay.CPTextButton.get_TextStyle +M:CarPlay.CPTextButton.get_Title M:CarPlay.CPTextButton.set_TextStyle(CarPlay.CPTextButtonStyle) M:CarPlay.CPTextButton.set_Title(System.String) M:CarPlay.CPTravelEstimates.#ctor(Foundation.NSCoder) +M:CarPlay.CPTravelEstimates.#ctor(Foundation.NSMeasurement{Foundation.NSUnitLength},System.Double) M:CarPlay.CPTravelEstimates.#ctor(Foundation.NSObjectFlag) M:CarPlay.CPTravelEstimates.#ctor(ObjCRuntime.NativeHandle) M:CarPlay.CPTravelEstimates.EncodeTo(Foundation.NSCoder) M:CarPlay.CPTravelEstimates.get_ClassHandle +M:CarPlay.CPTravelEstimates.get_DistanceRemaining +M:CarPlay.CPTravelEstimates.get_TimeRemaining M:CarPlay.CPTrip.#ctor(Foundation.NSCoder) M:CarPlay.CPTrip.#ctor(Foundation.NSObjectFlag) +M:CarPlay.CPTrip.#ctor(MapKit.MKMapItem,MapKit.MKMapItem,CarPlay.CPRouteChoice[]) M:CarPlay.CPTrip.#ctor(ObjCRuntime.NativeHandle) M:CarPlay.CPTrip.EncodeTo(Foundation.NSCoder) M:CarPlay.CPTrip.get_ClassHandle +M:CarPlay.CPTrip.get_Destination +M:CarPlay.CPTrip.get_Origin +M:CarPlay.CPTrip.get_RouteChoices +M:CarPlay.CPTrip.get_UserInfo M:CarPlay.CPTrip.set_UserInfo(Foundation.NSObject) M:CarPlay.CPTripPreviewTextConfiguration.#ctor M:CarPlay.CPTripPreviewTextConfiguration.#ctor(Foundation.NSCoder) M:CarPlay.CPTripPreviewTextConfiguration.#ctor(Foundation.NSObjectFlag) M:CarPlay.CPTripPreviewTextConfiguration.#ctor(ObjCRuntime.NativeHandle) +M:CarPlay.CPTripPreviewTextConfiguration.#ctor(System.String,System.String,System.String) M:CarPlay.CPTripPreviewTextConfiguration.EncodeTo(Foundation.NSCoder) +M:CarPlay.CPTripPreviewTextConfiguration.get_AdditionalRoutesButtonTitle M:CarPlay.CPTripPreviewTextConfiguration.get_ClassHandle +M:CarPlay.CPTripPreviewTextConfiguration.get_OverviewButtonTitle +M:CarPlay.CPTripPreviewTextConfiguration.get_StartButtonTitle M:CarPlay.CPVoiceControlState.#ctor M:CarPlay.CPVoiceControlState.#ctor(Foundation.NSCoder) M:CarPlay.CPVoiceControlState.#ctor(Foundation.NSObjectFlag) M:CarPlay.CPVoiceControlState.#ctor(ObjCRuntime.NativeHandle) +M:CarPlay.CPVoiceControlState.#ctor(System.String,System.String[],UIKit.UIImage,System.Boolean) M:CarPlay.CPVoiceControlState.EncodeTo(Foundation.NSCoder) M:CarPlay.CPVoiceControlState.get_ClassHandle +M:CarPlay.CPVoiceControlState.get_Identifier +M:CarPlay.CPVoiceControlState.get_Image +M:CarPlay.CPVoiceControlState.get_Repeats +M:CarPlay.CPVoiceControlState.get_TitleVariants +M:CarPlay.CPVoiceControlTemplate.#ctor(CarPlay.CPVoiceControlState[]) M:CarPlay.CPVoiceControlTemplate.#ctor(Foundation.NSCoder) M:CarPlay.CPVoiceControlTemplate.#ctor(Foundation.NSObjectFlag) M:CarPlay.CPVoiceControlTemplate.#ctor(ObjCRuntime.NativeHandle) +M:CarPlay.CPVoiceControlTemplate.ActivateVoiceControlState(System.String) +M:CarPlay.CPVoiceControlTemplate.get_ActiveStateIdentifier M:CarPlay.CPVoiceControlTemplate.get_ClassHandle +M:CarPlay.CPVoiceControlTemplate.get_VoiceControlStates M:CarPlay.CPWindow.#ctor M:CarPlay.CPWindow.#ctor(CoreGraphics.CGRect) M:CarPlay.CPWindow.#ctor(Foundation.NSCoder) @@ -44390,6 +46398,8 @@ M:CarPlay.CPWindow.CPWindowAppearance.#ctor(System.IntPtr) M:CarPlay.CPWindow.Dispose(System.Boolean) M:CarPlay.CPWindow.get_Appearance M:CarPlay.CPWindow.get_ClassHandle +M:CarPlay.CPWindow.get_MapButtonSafeAreaLayoutGuide +M:CarPlay.CPWindow.get_TemplateApplicationScene M:CarPlay.CPWindow.GetAppearance(UIKit.UITraitCollection,System.Type[]) M:CarPlay.CPWindow.GetAppearance(UIKit.UITraitCollection) M:CarPlay.CPWindow.GetAppearance``1 @@ -44461,7 +46471,9 @@ M:Cinematic.CNAssetInfo.LoadFromAssetAsync(AVFoundation.AVAsset) M:Cinematic.CNBoundsPrediction.#ctor M:Cinematic.CNBoundsPrediction.#ctor(Foundation.NSObjectFlag) M:Cinematic.CNBoundsPrediction.#ctor(ObjCRuntime.NativeHandle) +M:Cinematic.CNBoundsPrediction.Copy(Foundation.NSZone) M:Cinematic.CNBoundsPrediction.get_ClassHandle +M:Cinematic.CNBoundsPrediction.MutableCopy(Foundation.NSZone) M:Cinematic.CNBoundsPrediction.set_Confidence(System.Single) M:Cinematic.CNBoundsPrediction.set_NormalizedBounds(CoreGraphics.CGRect) M:Cinematic.CNCinematicErrorCodeExtensions.GetDomain(Cinematic.CNCinematicErrorCode) @@ -44476,15 +46488,18 @@ M:Cinematic.CNCustomDetectionTrack.get_ClassHandle M:Cinematic.CNDecision.#ctor(CoreMedia.CMTime,System.Int64,System.Boolean,Cinematic.CNDecisionIdentifierType) M:Cinematic.CNDecision.#ctor(Foundation.NSObjectFlag) M:Cinematic.CNDecision.#ctor(ObjCRuntime.NativeHandle) +M:Cinematic.CNDecision.Copy(Foundation.NSZone) M:Cinematic.CNDecision.get_ClassHandle M:Cinematic.CNDecision.get_GroupDecision M:Cinematic.CNDecision.get_StrongDecision M:Cinematic.CNDecision.get_UserDecision M:Cinematic.CNDetection.#ctor(Foundation.NSObjectFlag) M:Cinematic.CNDetection.#ctor(ObjCRuntime.NativeHandle) +M:Cinematic.CNDetection.Copy(Foundation.NSZone) M:Cinematic.CNDetection.get_ClassHandle M:Cinematic.CNDetectionTrack.#ctor(Foundation.NSObjectFlag) M:Cinematic.CNDetectionTrack.#ctor(ObjCRuntime.NativeHandle) +M:Cinematic.CNDetectionTrack.Copy(Foundation.NSZone) M:Cinematic.CNDetectionTrack.get_ClassHandle M:Cinematic.CNDetectionTrack.get_Discrete M:Cinematic.CNDetectionTrack.get_UserCreated @@ -44504,7 +46519,9 @@ M:Cinematic.CNRenderingSessionAttributes.get_ClassHandle M:Cinematic.CNRenderingSessionAttributes.LoadAsync(AVFoundation.AVAsset) M:Cinematic.CNRenderingSessionFrameAttributes.#ctor(Foundation.NSObjectFlag) M:Cinematic.CNRenderingSessionFrameAttributes.#ctor(ObjCRuntime.NativeHandle) +M:Cinematic.CNRenderingSessionFrameAttributes.Copy(Foundation.NSZone) M:Cinematic.CNRenderingSessionFrameAttributes.get_ClassHandle +M:Cinematic.CNRenderingSessionFrameAttributes.MutableCopy(Foundation.NSZone) M:Cinematic.CNRenderingSessionFrameAttributes.set_FNumber(System.Single) M:Cinematic.CNRenderingSessionFrameAttributes.set_FocusDisparity(System.Single) M:Cinematic.CNScript.#ctor(Foundation.NSObjectFlag) @@ -44517,6 +46534,7 @@ M:Cinematic.CNScriptChanges.#ctor(ObjCRuntime.NativeHandle) M:Cinematic.CNScriptChanges.get_ClassHandle M:Cinematic.CNScriptFrame.#ctor(Foundation.NSObjectFlag) M:Cinematic.CNScriptFrame.#ctor(ObjCRuntime.NativeHandle) +M:Cinematic.CNScriptFrame.Copy(Foundation.NSZone) M:Cinematic.CNScriptFrame.get_ClassHandle M:ClassKit.CLSActivity.#ctor(Foundation.NSCoder) M:ClassKit.CLSActivity.#ctor(Foundation.NSObjectFlag) @@ -44616,6 +46634,7 @@ M:CloudKit.CKAcceptSharesOperation.set_ShareMetadatas(CloudKit.CKShareMetadata[] M:CloudKit.CKAllowedSharingOptions.#ctor(Foundation.NSCoder) M:CloudKit.CKAllowedSharingOptions.#ctor(Foundation.NSObjectFlag) M:CloudKit.CKAllowedSharingOptions.#ctor(ObjCRuntime.NativeHandle) +M:CloudKit.CKAllowedSharingOptions.Copy(Foundation.NSZone) M:CloudKit.CKAllowedSharingOptions.EncodeTo(Foundation.NSCoder) M:CloudKit.CKAllowedSharingOptions.get_ClassHandle M:CloudKit.CKAllowedSharingOptions.set_AllowedParticipantAccessOptions(CloudKit.CKSharingParticipantAccessOption) @@ -44677,6 +46696,7 @@ M:CloudKit.CKDatabaseOperation.get_ClassHandle M:CloudKit.CKDatabaseOperation.set_Database(CloudKit.CKDatabase) M:CloudKit.CKDatabaseSubscription.#ctor(Foundation.NSObjectFlag) M:CloudKit.CKDatabaseSubscription.#ctor(ObjCRuntime.NativeHandle) +M:CloudKit.CKDatabaseSubscription.Copy(Foundation.NSZone) M:CloudKit.CKDatabaseSubscription.EncodeTo(Foundation.NSCoder) M:CloudKit.CKDatabaseSubscription.get_ClassHandle M:CloudKit.CKDatabaseSubscription.set_RecordType(System.String) @@ -44755,6 +46775,7 @@ M:CloudKit.CKFetchRecordZoneChangesConfiguration.#ctor M:CloudKit.CKFetchRecordZoneChangesConfiguration.#ctor(Foundation.NSCoder) M:CloudKit.CKFetchRecordZoneChangesConfiguration.#ctor(Foundation.NSObjectFlag) M:CloudKit.CKFetchRecordZoneChangesConfiguration.#ctor(ObjCRuntime.NativeHandle) +M:CloudKit.CKFetchRecordZoneChangesConfiguration.Copy(Foundation.NSZone) M:CloudKit.CKFetchRecordZoneChangesConfiguration.EncodeTo(Foundation.NSCoder) M:CloudKit.CKFetchRecordZoneChangesConfiguration.get_ClassHandle M:CloudKit.CKFetchRecordZoneChangesConfiguration.set_DesiredKeys(System.String[]) @@ -44781,6 +46802,7 @@ M:CloudKit.CKFetchRecordZoneChangesOptions.#ctor M:CloudKit.CKFetchRecordZoneChangesOptions.#ctor(Foundation.NSCoder) M:CloudKit.CKFetchRecordZoneChangesOptions.#ctor(Foundation.NSObjectFlag) M:CloudKit.CKFetchRecordZoneChangesOptions.#ctor(ObjCRuntime.NativeHandle) +M:CloudKit.CKFetchRecordZoneChangesOptions.Copy(Foundation.NSZone) M:CloudKit.CKFetchRecordZoneChangesOptions.EncodeTo(Foundation.NSCoder) M:CloudKit.CKFetchRecordZoneChangesOptions.get_ClassHandle M:CloudKit.CKFetchRecordZoneChangesOptions.set_DesiredKeys(System.String[]) @@ -44937,12 +46959,14 @@ M:CloudKit.CKNotification.get_ClassHandle M:CloudKit.CKNotificationID.#ctor(Foundation.NSCoder) M:CloudKit.CKNotificationID.#ctor(Foundation.NSObjectFlag) M:CloudKit.CKNotificationID.#ctor(ObjCRuntime.NativeHandle) +M:CloudKit.CKNotificationID.Copy(Foundation.NSZone) M:CloudKit.CKNotificationID.EncodeTo(Foundation.NSCoder) M:CloudKit.CKNotificationID.get_ClassHandle M:CloudKit.CKNotificationInfo.#ctor M:CloudKit.CKNotificationInfo.#ctor(Foundation.NSCoder) M:CloudKit.CKNotificationInfo.#ctor(Foundation.NSObjectFlag) M:CloudKit.CKNotificationInfo.#ctor(ObjCRuntime.NativeHandle) +M:CloudKit.CKNotificationInfo.Copy(Foundation.NSZone) M:CloudKit.CKNotificationInfo.EncodeTo(Foundation.NSCoder) M:CloudKit.CKNotificationInfo.get_ClassHandle M:CloudKit.CKNotificationInfo.set_AlertActionLocalizationKey(System.String) @@ -45000,12 +47024,14 @@ M:CloudKit.CKOperationGroup.set_Name(System.String) M:CloudKit.CKOperationGroup.set_Quantity(System.UIntPtr) M:CloudKit.CKQuery.#ctor(Foundation.NSObjectFlag) M:CloudKit.CKQuery.#ctor(ObjCRuntime.NativeHandle) +M:CloudKit.CKQuery.Copy(Foundation.NSZone) M:CloudKit.CKQuery.EncodeTo(Foundation.NSCoder) M:CloudKit.CKQuery.get_ClassHandle M:CloudKit.CKQuery.set_SortDescriptors(Foundation.NSSortDescriptor[]) M:CloudKit.CKQueryCursor.#ctor(Foundation.NSCoder) M:CloudKit.CKQueryCursor.#ctor(Foundation.NSObjectFlag) M:CloudKit.CKQueryCursor.#ctor(ObjCRuntime.NativeHandle) +M:CloudKit.CKQueryCursor.Copy(Foundation.NSZone) M:CloudKit.CKQueryCursor.EncodeTo(Foundation.NSCoder) M:CloudKit.CKQueryCursor.get_ClassHandle M:CloudKit.CKQueryNotification.#ctor(Foundation.NSCoder) @@ -45031,12 +47057,14 @@ M:CloudKit.CKQueryOperationRecordMatchedHandler.EndInvoke(System.IAsyncResult) M:CloudKit.CKQueryOperationRecordMatchedHandler.Invoke(CloudKit.CKRecordID,CloudKit.CKRecord,Foundation.NSError) M:CloudKit.CKQuerySubscription.#ctor(Foundation.NSObjectFlag) M:CloudKit.CKQuerySubscription.#ctor(ObjCRuntime.NativeHandle) +M:CloudKit.CKQuerySubscription.Copy(Foundation.NSZone) M:CloudKit.CKQuerySubscription.EncodeTo(Foundation.NSCoder) M:CloudKit.CKQuerySubscription.get_ClassHandle M:CloudKit.CKQuerySubscription.set_ZoneID(CloudKit.CKRecordZoneID) M:CloudKit.CKRecord.#ctor(Foundation.NSCoder) M:CloudKit.CKRecord.#ctor(Foundation.NSObjectFlag) M:CloudKit.CKRecord.#ctor(ObjCRuntime.NativeHandle) +M:CloudKit.CKRecord.Copy(Foundation.NSZone) M:CloudKit.CKRecord.EncodeTo(Foundation.NSCoder) M:CloudKit.CKRecord.get_ClassHandle M:CloudKit.CKRecord.get_CreationDateKey @@ -45055,6 +47083,7 @@ M:CloudKit.CKRecord.set_Parent(CloudKit.CKReference) M:CloudKit.CKRecordID.#ctor(Foundation.NSCoder) M:CloudKit.CKRecordID.#ctor(Foundation.NSObjectFlag) M:CloudKit.CKRecordID.#ctor(ObjCRuntime.NativeHandle) +M:CloudKit.CKRecordID.Copy(Foundation.NSZone) M:CloudKit.CKRecordID.EncodeTo(Foundation.NSCoder) M:CloudKit.CKRecordID.get_ClassHandle M:CloudKit.CKRecordValue.#ctor @@ -45063,6 +47092,7 @@ M:CloudKit.CKRecordValue.#ctor(ObjCRuntime.NativeHandle) M:CloudKit.CKRecordZone.#ctor(Foundation.NSCoder) M:CloudKit.CKRecordZone.#ctor(Foundation.NSObjectFlag) M:CloudKit.CKRecordZone.#ctor(ObjCRuntime.NativeHandle) +M:CloudKit.CKRecordZone.Copy(Foundation.NSZone) M:CloudKit.CKRecordZone.EncodeTo(Foundation.NSCoder) M:CloudKit.CKRecordZone.get_ClassHandle M:CloudKit.CKRecordZone.get_DefaultName @@ -45073,6 +47103,7 @@ M:CloudKit.CKRecordZoneCompleteHandler.Invoke(Foundation.NSDictionary,Foundation M:CloudKit.CKRecordZoneID.#ctor(Foundation.NSCoder) M:CloudKit.CKRecordZoneID.#ctor(Foundation.NSObjectFlag) M:CloudKit.CKRecordZoneID.#ctor(ObjCRuntime.NativeHandle) +M:CloudKit.CKRecordZoneID.Copy(Foundation.NSZone) M:CloudKit.CKRecordZoneID.EncodeTo(Foundation.NSCoder) M:CloudKit.CKRecordZoneID.get_ClassHandle M:CloudKit.CKRecordZoneNotification.#ctor(Foundation.NSCoder) @@ -45086,6 +47117,7 @@ M:CloudKit.CKRecordZonePerRecordZoneCompletionHandler.EndInvoke(System.IAsyncRes M:CloudKit.CKRecordZonePerRecordZoneCompletionHandler.Invoke(CloudKit.CKRecordZoneID,CloudKit.CKRecordZone,Foundation.NSError) M:CloudKit.CKRecordZoneSubscription.#ctor(Foundation.NSObjectFlag) M:CloudKit.CKRecordZoneSubscription.#ctor(ObjCRuntime.NativeHandle) +M:CloudKit.CKRecordZoneSubscription.Copy(Foundation.NSZone) M:CloudKit.CKRecordZoneSubscription.EncodeTo(Foundation.NSCoder) M:CloudKit.CKRecordZoneSubscription.get_ClassHandle M:CloudKit.CKRecordZoneSubscription.set_RecordType(System.String) @@ -45093,11 +47125,13 @@ M:CloudKit.CKRecordZoneSubscription.set_ZoneID(CloudKit.CKRecordZoneID) M:CloudKit.CKReference.#ctor(Foundation.NSCoder) M:CloudKit.CKReference.#ctor(Foundation.NSObjectFlag) M:CloudKit.CKReference.#ctor(ObjCRuntime.NativeHandle) +M:CloudKit.CKReference.Copy(Foundation.NSZone) M:CloudKit.CKReference.EncodeTo(Foundation.NSCoder) M:CloudKit.CKReference.get_ClassHandle M:CloudKit.CKServerChangeToken.#ctor(Foundation.NSCoder) M:CloudKit.CKServerChangeToken.#ctor(Foundation.NSObjectFlag) M:CloudKit.CKServerChangeToken.#ctor(ObjCRuntime.NativeHandle) +M:CloudKit.CKServerChangeToken.Copy(Foundation.NSZone) M:CloudKit.CKServerChangeToken.EncodeTo(Foundation.NSCoder) M:CloudKit.CKServerChangeToken.get_ClassHandle M:CloudKit.CKShare.#ctor(Foundation.NSObjectFlag) @@ -45111,11 +47145,13 @@ M:CloudKit.CKShareMetadata.#ctor M:CloudKit.CKShareMetadata.#ctor(Foundation.NSCoder) M:CloudKit.CKShareMetadata.#ctor(Foundation.NSObjectFlag) M:CloudKit.CKShareMetadata.#ctor(ObjCRuntime.NativeHandle) +M:CloudKit.CKShareMetadata.Copy(Foundation.NSZone) M:CloudKit.CKShareMetadata.EncodeTo(Foundation.NSCoder) M:CloudKit.CKShareMetadata.get_ClassHandle M:CloudKit.CKShareParticipant.#ctor(Foundation.NSCoder) M:CloudKit.CKShareParticipant.#ctor(Foundation.NSObjectFlag) M:CloudKit.CKShareParticipant.#ctor(ObjCRuntime.NativeHandle) +M:CloudKit.CKShareParticipant.Copy(Foundation.NSZone) M:CloudKit.CKShareParticipant.EncodeTo(Foundation.NSCoder) M:CloudKit.CKShareParticipant.get_ClassHandle M:CloudKit.CKShareParticipant.set_Permission(CloudKit.CKShareParticipantPermission) @@ -45124,6 +47160,7 @@ M:CloudKit.CKShareParticipant.set_Type(CloudKit.CKShareParticipantType) M:CloudKit.CKSubscription.#ctor(Foundation.NSCoder) M:CloudKit.CKSubscription.#ctor(Foundation.NSObjectFlag) M:CloudKit.CKSubscription.#ctor(ObjCRuntime.NativeHandle) +M:CloudKit.CKSubscription.Copy(Foundation.NSZone) M:CloudKit.CKSubscription.EncodeTo(Foundation.NSCoder) M:CloudKit.CKSubscription.get_ClassHandle M:CloudKit.CKSubscription.get_Predicate @@ -45188,6 +47225,7 @@ M:CloudKit.CKSyncEngineFetchChangesContext.get_ClassHandle M:CloudKit.CKSyncEngineFetchChangesOptions.#ctor M:CloudKit.CKSyncEngineFetchChangesOptions.#ctor(Foundation.NSObjectFlag) M:CloudKit.CKSyncEngineFetchChangesOptions.#ctor(ObjCRuntime.NativeHandle) +M:CloudKit.CKSyncEngineFetchChangesOptions.Copy(Foundation.NSZone) M:CloudKit.CKSyncEngineFetchChangesOptions.get_ClassHandle M:CloudKit.CKSyncEngineFetchChangesOptions.set_OperationGroup(CloudKit.CKOperationGroup) M:CloudKit.CKSyncEngineFetchChangesOptions.set_PrioritizedZoneIds(CloudKit.CKRecordZoneID[]) @@ -45196,6 +47234,7 @@ M:CloudKit.CKSyncEngineFetchChangesScope.#ctor M:CloudKit.CKSyncEngineFetchChangesScope.#ctor(Foundation.NSObjectFlag) M:CloudKit.CKSyncEngineFetchChangesScope.#ctor(Foundation.NSSet{CloudKit.CKRecordZoneID},System.Boolean) M:CloudKit.CKSyncEngineFetchChangesScope.#ctor(ObjCRuntime.NativeHandle) +M:CloudKit.CKSyncEngineFetchChangesScope.Copy(Foundation.NSZone) M:CloudKit.CKSyncEngineFetchChangesScope.get_ClassHandle M:CloudKit.CKSyncEngineFetchedDatabaseChangesEvent.#ctor M:CloudKit.CKSyncEngineFetchedDatabaseChangesEvent.#ctor(Foundation.NSObjectFlag) @@ -45235,6 +47274,7 @@ M:CloudKit.CKSyncEngineSendChangesContext.get_ClassHandle M:CloudKit.CKSyncEngineSendChangesOptions.#ctor M:CloudKit.CKSyncEngineSendChangesOptions.#ctor(Foundation.NSObjectFlag) M:CloudKit.CKSyncEngineSendChangesOptions.#ctor(ObjCRuntime.NativeHandle) +M:CloudKit.CKSyncEngineSendChangesOptions.Copy(Foundation.NSZone) M:CloudKit.CKSyncEngineSendChangesOptions.get_ClassHandle M:CloudKit.CKSyncEngineSendChangesOptions.set_OperationGroup(CloudKit.CKOperationGroup) M:CloudKit.CKSyncEngineSendChangesOptions.set_Scope(CloudKit.CKSyncEngineSendChangesScope) @@ -45242,6 +47282,7 @@ M:CloudKit.CKSyncEngineSendChangesScope.#ctor M:CloudKit.CKSyncEngineSendChangesScope.#ctor(Foundation.NSObjectFlag) M:CloudKit.CKSyncEngineSendChangesScope.#ctor(Foundation.NSSet{CloudKit.CKRecordZoneID},System.Boolean) M:CloudKit.CKSyncEngineSendChangesScope.#ctor(ObjCRuntime.NativeHandle) +M:CloudKit.CKSyncEngineSendChangesScope.Copy(Foundation.NSZone) M:CloudKit.CKSyncEngineSendChangesScope.get_ClassHandle M:CloudKit.CKSyncEngineSentDatabaseChangesEvent.#ctor M:CloudKit.CKSyncEngineSentDatabaseChangesEvent.#ctor(Foundation.NSObjectFlag) @@ -45284,11 +47325,13 @@ M:CloudKit.CKSystemSharingUIObserver.set_SystemSharingUIDidStopSharingHandler(Sy M:CloudKit.CKUserIdentity.#ctor(Foundation.NSCoder) M:CloudKit.CKUserIdentity.#ctor(Foundation.NSObjectFlag) M:CloudKit.CKUserIdentity.#ctor(ObjCRuntime.NativeHandle) +M:CloudKit.CKUserIdentity.Copy(Foundation.NSZone) M:CloudKit.CKUserIdentity.EncodeTo(Foundation.NSCoder) M:CloudKit.CKUserIdentity.get_ClassHandle M:CloudKit.CKUserIdentityLookupInfo.#ctor(Foundation.NSCoder) M:CloudKit.CKUserIdentityLookupInfo.#ctor(Foundation.NSObjectFlag) M:CloudKit.CKUserIdentityLookupInfo.#ctor(ObjCRuntime.NativeHandle) +M:CloudKit.CKUserIdentityLookupInfo.Copy(Foundation.NSZone) M:CloudKit.CKUserIdentityLookupInfo.EncodeTo(Foundation.NSCoder) M:CloudKit.CKUserIdentityLookupInfo.FromEmail(System.String) M:CloudKit.CKUserIdentityLookupInfo.FromPhoneNumber(System.String) @@ -45328,26 +47371,36 @@ M:Contacts.CNChangeHistoryAddContactEvent.#ctor(Foundation.NSCoder) M:Contacts.CNChangeHistoryAddContactEvent.#ctor(Foundation.NSObjectFlag) M:Contacts.CNChangeHistoryAddContactEvent.#ctor(ObjCRuntime.NativeHandle) M:Contacts.CNChangeHistoryAddContactEvent.get_ClassHandle +M:Contacts.CNChangeHistoryAddContactEvent.get_Contact +M:Contacts.CNChangeHistoryAddContactEvent.get_ContainerIdentifier M:Contacts.CNChangeHistoryAddGroupEvent.#ctor(Foundation.NSCoder) M:Contacts.CNChangeHistoryAddGroupEvent.#ctor(Foundation.NSObjectFlag) M:Contacts.CNChangeHistoryAddGroupEvent.#ctor(ObjCRuntime.NativeHandle) M:Contacts.CNChangeHistoryAddGroupEvent.get_ClassHandle +M:Contacts.CNChangeHistoryAddGroupEvent.get_ContainerIdentifier +M:Contacts.CNChangeHistoryAddGroupEvent.get_Group M:Contacts.CNChangeHistoryAddMemberToGroupEvent.#ctor(Foundation.NSCoder) M:Contacts.CNChangeHistoryAddMemberToGroupEvent.#ctor(Foundation.NSObjectFlag) M:Contacts.CNChangeHistoryAddMemberToGroupEvent.#ctor(ObjCRuntime.NativeHandle) M:Contacts.CNChangeHistoryAddMemberToGroupEvent.get_ClassHandle +M:Contacts.CNChangeHistoryAddMemberToGroupEvent.get_Group +M:Contacts.CNChangeHistoryAddMemberToGroupEvent.get_Member M:Contacts.CNChangeHistoryAddSubgroupToGroupEvent.#ctor(Foundation.NSCoder) M:Contacts.CNChangeHistoryAddSubgroupToGroupEvent.#ctor(Foundation.NSObjectFlag) M:Contacts.CNChangeHistoryAddSubgroupToGroupEvent.#ctor(ObjCRuntime.NativeHandle) M:Contacts.CNChangeHistoryAddSubgroupToGroupEvent.get_ClassHandle +M:Contacts.CNChangeHistoryAddSubgroupToGroupEvent.get_Group +M:Contacts.CNChangeHistoryAddSubgroupToGroupEvent.get_Subgroup M:Contacts.CNChangeHistoryDeleteContactEvent.#ctor(Foundation.NSCoder) M:Contacts.CNChangeHistoryDeleteContactEvent.#ctor(Foundation.NSObjectFlag) M:Contacts.CNChangeHistoryDeleteContactEvent.#ctor(ObjCRuntime.NativeHandle) M:Contacts.CNChangeHistoryDeleteContactEvent.get_ClassHandle +M:Contacts.CNChangeHistoryDeleteContactEvent.get_ContactIdentifier M:Contacts.CNChangeHistoryDeleteGroupEvent.#ctor(Foundation.NSCoder) M:Contacts.CNChangeHistoryDeleteGroupEvent.#ctor(Foundation.NSObjectFlag) M:Contacts.CNChangeHistoryDeleteGroupEvent.#ctor(ObjCRuntime.NativeHandle) M:Contacts.CNChangeHistoryDeleteGroupEvent.get_ClassHandle +M:Contacts.CNChangeHistoryDeleteGroupEvent.get_GroupIdentifier M:Contacts.CNChangeHistoryDropEverythingEvent.#ctor M:Contacts.CNChangeHistoryDropEverythingEvent.#ctor(Foundation.NSCoder) M:Contacts.CNChangeHistoryDropEverythingEvent.#ctor(Foundation.NSObjectFlag) @@ -45356,6 +47409,8 @@ M:Contacts.CNChangeHistoryDropEverythingEvent.get_ClassHandle M:Contacts.CNChangeHistoryEvent.#ctor(Foundation.NSCoder) M:Contacts.CNChangeHistoryEvent.#ctor(Foundation.NSObjectFlag) M:Contacts.CNChangeHistoryEvent.#ctor(ObjCRuntime.NativeHandle) +M:Contacts.CNChangeHistoryEvent.AcceptEventVisitor(Contacts.ICNChangeHistoryEventVisitor) +M:Contacts.CNChangeHistoryEvent.Copy(Foundation.NSZone) M:Contacts.CNChangeHistoryEvent.EncodeTo(Foundation.NSCoder) M:Contacts.CNChangeHistoryEvent.get_ClassHandle M:Contacts.CNChangeHistoryEventVisitor_Extensions.AddGroup(Contacts.ICNChangeHistoryEventVisitor,Contacts.CNChangeHistoryAddGroupEvent) @@ -45370,7 +47425,13 @@ M:Contacts.CNChangeHistoryFetchRequest.#ctor(Foundation.NSCoder) M:Contacts.CNChangeHistoryFetchRequest.#ctor(Foundation.NSObjectFlag) M:Contacts.CNChangeHistoryFetchRequest.#ctor(ObjCRuntime.NativeHandle) M:Contacts.CNChangeHistoryFetchRequest.EncodeTo(Foundation.NSCoder) +M:Contacts.CNChangeHistoryFetchRequest.get_AdditionalContactKeyDescriptors M:Contacts.CNChangeHistoryFetchRequest.get_ClassHandle +M:Contacts.CNChangeHistoryFetchRequest.get_ExcludedTransactionAuthors +M:Contacts.CNChangeHistoryFetchRequest.get_IncludeGroupChanges +M:Contacts.CNChangeHistoryFetchRequest.get_MutableObjects +M:Contacts.CNChangeHistoryFetchRequest.get_ShouldUnifyResults +M:Contacts.CNChangeHistoryFetchRequest.get_StartingToken M:Contacts.CNChangeHistoryFetchRequest.set_AdditionalContactKeyDescriptors(Contacts.ICNKeyDescriptor[]) M:Contacts.CNChangeHistoryFetchRequest.set_ExcludedTransactionAuthors(System.String[]) M:Contacts.CNChangeHistoryFetchRequest.set_IncludeGroupChanges(System.Boolean) @@ -45381,38 +47442,89 @@ M:Contacts.CNChangeHistoryRemoveMemberFromGroupEvent.#ctor(Foundation.NSCoder) M:Contacts.CNChangeHistoryRemoveMemberFromGroupEvent.#ctor(Foundation.NSObjectFlag) M:Contacts.CNChangeHistoryRemoveMemberFromGroupEvent.#ctor(ObjCRuntime.NativeHandle) M:Contacts.CNChangeHistoryRemoveMemberFromGroupEvent.get_ClassHandle +M:Contacts.CNChangeHistoryRemoveMemberFromGroupEvent.get_Group +M:Contacts.CNChangeHistoryRemoveMemberFromGroupEvent.get_Member M:Contacts.CNChangeHistoryRemoveSubgroupFromGroupEvent.#ctor(Foundation.NSCoder) M:Contacts.CNChangeHistoryRemoveSubgroupFromGroupEvent.#ctor(Foundation.NSObjectFlag) M:Contacts.CNChangeHistoryRemoveSubgroupFromGroupEvent.#ctor(ObjCRuntime.NativeHandle) M:Contacts.CNChangeHistoryRemoveSubgroupFromGroupEvent.get_ClassHandle +M:Contacts.CNChangeHistoryRemoveSubgroupFromGroupEvent.get_Group +M:Contacts.CNChangeHistoryRemoveSubgroupFromGroupEvent.get_Subgroup M:Contacts.CNChangeHistoryUpdateContactEvent.#ctor(Foundation.NSCoder) M:Contacts.CNChangeHistoryUpdateContactEvent.#ctor(Foundation.NSObjectFlag) M:Contacts.CNChangeHistoryUpdateContactEvent.#ctor(ObjCRuntime.NativeHandle) M:Contacts.CNChangeHistoryUpdateContactEvent.get_ClassHandle +M:Contacts.CNChangeHistoryUpdateContactEvent.get_Contact M:Contacts.CNChangeHistoryUpdateGroupEvent.#ctor(Foundation.NSCoder) M:Contacts.CNChangeHistoryUpdateGroupEvent.#ctor(Foundation.NSObjectFlag) M:Contacts.CNChangeHistoryUpdateGroupEvent.#ctor(ObjCRuntime.NativeHandle) M:Contacts.CNChangeHistoryUpdateGroupEvent.get_ClassHandle +M:Contacts.CNChangeHistoryUpdateGroupEvent.get_Group M:Contacts.CNContact.#ctor M:Contacts.CNContact.#ctor(Foundation.NSCoder) M:Contacts.CNContact.#ctor(Foundation.NSObjectFlag) M:Contacts.CNContact.#ctor(ObjCRuntime.NativeHandle) M:Contacts.CNContact.AreKeysAvailable(Contacts.CNContactOptions) +M:Contacts.CNContact.AreKeysAvailable(Foundation.NSArray) M:Contacts.CNContact.AreKeysAvailable``1(`0[]) +M:Contacts.CNContact.ComparatorForName(Contacts.CNContactSortOrder) +M:Contacts.CNContact.Copy(Foundation.NSZone) M:Contacts.CNContact.EncodeTo(Foundation.NSCoder) +M:Contacts.CNContact.get_Birthday M:Contacts.CNContact.get_ClassHandle +M:Contacts.CNContact.get_ContactRelations +M:Contacts.CNContact.get_ContactType +M:Contacts.CNContact.get_Dates +M:Contacts.CNContact.get_DepartmentName +M:Contacts.CNContact.get_EmailAddresses +M:Contacts.CNContact.get_FamilyName +M:Contacts.CNContact.get_GivenName +M:Contacts.CNContact.get_Identifier +M:Contacts.CNContact.get_ImageData +M:Contacts.CNContact.get_ImageDataAvailable +M:Contacts.CNContact.get_InstantMessageAddresses +M:Contacts.CNContact.get_JobTitle +M:Contacts.CNContact.get_MiddleName +M:Contacts.CNContact.get_NamePrefix +M:Contacts.CNContact.get_NameSuffix +M:Contacts.CNContact.get_Nickname +M:Contacts.CNContact.get_NonGregorianBirthday +M:Contacts.CNContact.get_Note +M:Contacts.CNContact.get_OrganizationName +M:Contacts.CNContact.get_PhoneNumbers +M:Contacts.CNContact.get_PhoneticFamilyName +M:Contacts.CNContact.get_PhoneticGivenName +M:Contacts.CNContact.get_PhoneticMiddleName +M:Contacts.CNContact.get_PhoneticOrganizationName +M:Contacts.CNContact.get_PostalAddresses +M:Contacts.CNContact.get_PreviousFamilyName M:Contacts.CNContact.get_PropertyNotFetchedExceptionName M:Contacts.CNContact.get_ReadableTypeIdentifiers +M:Contacts.CNContact.get_SocialProfiles +M:Contacts.CNContact.get_ThumbnailImageData +M:Contacts.CNContact.get_UrlAddresses M:Contacts.CNContact.get_WritableTypeIdentifiers M:Contacts.CNContact.get_WritableTypeIdentifiersForItemProvider +M:Contacts.CNContact.GetDescriptorForAllComparatorKeys M:Contacts.CNContact.GetItemProviderVisibilityForTypeIdentifier(System.String) M:Contacts.CNContact.GetObject(Foundation.NSData,System.String,Foundation.NSError@) +M:Contacts.CNContact.GetPredicateForContacts(Contacts.CNPhoneNumber) +M:Contacts.CNContact.GetPredicateForContacts(System.String) +M:Contacts.CNContact.GetPredicateForContacts(System.String[]) +M:Contacts.CNContact.GetPredicateForContactsInContainer(System.String) +M:Contacts.CNContact.GetPredicateForContactsInGroup(System.String) +M:Contacts.CNContact.GetPredicateForContactsMatchingEmailAddress(System.String) M:Contacts.CNContact.IsKeyAvailable(Contacts.CNContactOptions) +M:Contacts.CNContact.IsKeyAvailable(Foundation.NSString) +M:Contacts.CNContact.IsUnifiedWithContact(System.String) M:Contacts.CNContact.LoadData(System.String,System.Action{Foundation.NSData,Foundation.NSError}) M:Contacts.CNContact.LoadDataAsync(System.String,Foundation.NSProgress@) M:Contacts.CNContact.LoadDataAsync(System.String) M:Contacts.CNContact.LocalizeProperty(Contacts.CNContactOptions) +M:Contacts.CNContact.LocalizeProperty(Foundation.NSString) +M:Contacts.CNContact.MutableCopy(Foundation.NSZone) M:Contacts.CNContactFetchRequest.#ctor(Contacts.ICNKeyDescriptor[]) +M:Contacts.CNContactFetchRequest.#ctor(Foundation.NSArray) M:Contacts.CNContactFetchRequest.#ctor(Foundation.NSCoder) M:Contacts.CNContactFetchRequest.#ctor(Foundation.NSObjectFlag) M:Contacts.CNContactFetchRequest.#ctor(Foundation.NSString[]) @@ -45420,6 +47532,11 @@ M:Contacts.CNContactFetchRequest.#ctor(ObjCRuntime.INativeObject[]) M:Contacts.CNContactFetchRequest.#ctor(ObjCRuntime.NativeHandle) M:Contacts.CNContactFetchRequest.EncodeTo(Foundation.NSCoder) M:Contacts.CNContactFetchRequest.get_ClassHandle +M:Contacts.CNContactFetchRequest.get_KeysToFetch +M:Contacts.CNContactFetchRequest.get_MutableObjects +M:Contacts.CNContactFetchRequest.get_Predicate +M:Contacts.CNContactFetchRequest.get_SortOrder +M:Contacts.CNContactFetchRequest.get_UnifyResults M:Contacts.CNContactFetchRequest.set_KeysToFetch(Foundation.NSArray) M:Contacts.CNContactFetchRequest.set_MutableObjects(System.Boolean) M:Contacts.CNContactFetchRequest.set_Predicate(Foundation.NSPredicate) @@ -45432,6 +47549,16 @@ M:Contacts.CNContactFormatter.#ctor(ObjCRuntime.NativeHandle) M:Contacts.CNContactFormatter.EncodeTo(Foundation.NSCoder) M:Contacts.CNContactFormatter.get_ClassHandle M:Contacts.CNContactFormatter.get_ContactPropertyAttribute +M:Contacts.CNContactFormatter.get_RequiredKeysForDelimiter +M:Contacts.CNContactFormatter.get_RequiredKeysForNameOrder +M:Contacts.CNContactFormatter.get_Style +M:Contacts.CNContactFormatter.GetAttributedString(Contacts.CNContact,Foundation.NSDictionary) +M:Contacts.CNContactFormatter.GetAttributedStringFrom(Contacts.CNContact,Contacts.CNContactFormatterStyle,Foundation.NSDictionary) +M:Contacts.CNContactFormatter.GetDelimiterFor(Contacts.CNContact) +M:Contacts.CNContactFormatter.GetDescriptorForRequiredKeys(Contacts.CNContactFormatterStyle) +M:Contacts.CNContactFormatter.GetNameOrderFor(Contacts.CNContact) +M:Contacts.CNContactFormatter.GetString(Contacts.CNContact) +M:Contacts.CNContactFormatter.GetStringFrom(Contacts.CNContact,Contacts.CNContactFormatterStyle) M:Contacts.CNContactFormatter.set_Style(Contacts.CNContactFormatterStyle) M:Contacts.CNContactKey.get_Birthday M:Contacts.CNContactKey.get_Dates @@ -45467,24 +47594,47 @@ M:Contacts.CNContactProperty.#ctor M:Contacts.CNContactProperty.#ctor(Foundation.NSCoder) M:Contacts.CNContactProperty.#ctor(Foundation.NSObjectFlag) M:Contacts.CNContactProperty.#ctor(ObjCRuntime.NativeHandle) +M:Contacts.CNContactProperty.Copy(Foundation.NSZone) M:Contacts.CNContactProperty.EncodeTo(Foundation.NSCoder) M:Contacts.CNContactProperty.get_ClassHandle +M:Contacts.CNContactProperty.get_Contact +M:Contacts.CNContactProperty.get_Identifier +M:Contacts.CNContactProperty.get_Key +M:Contacts.CNContactProperty.get_Label +M:Contacts.CNContactProperty.get_Value M:Contacts.CNContactRelation.#ctor M:Contacts.CNContactRelation.#ctor(Foundation.NSCoder) M:Contacts.CNContactRelation.#ctor(Foundation.NSObjectFlag) M:Contacts.CNContactRelation.#ctor(ObjCRuntime.NativeHandle) +M:Contacts.CNContactRelation.#ctor(System.String) +M:Contacts.CNContactRelation.Copy(Foundation.NSZone) M:Contacts.CNContactRelation.EncodeTo(Foundation.NSCoder) +M:Contacts.CNContactRelation.FromName(System.String) M:Contacts.CNContactRelation.get_ClassHandle +M:Contacts.CNContactRelation.get_Name M:Contacts.CNContactStore.#ctor M:Contacts.CNContactStore.#ctor(Foundation.NSObjectFlag) M:Contacts.CNContactStore.#ctor(ObjCRuntime.NativeHandle) +M:Contacts.CNContactStore.EnumerateContacts(Contacts.CNContactFetchRequest,Foundation.NSError@,Contacts.CNContactStoreListContactsHandler) +M:Contacts.CNContactStore.ExecuteSaveRequest(Contacts.CNSaveRequest,Foundation.NSError@) M:Contacts.CNContactStore.get_ClassHandle +M:Contacts.CNContactStore.get_CurrentHistoryToken +M:Contacts.CNContactStore.get_DefaultContainerIdentifier M:Contacts.CNContactStore.get_NotificationDidChange +M:Contacts.CNContactStore.GetAuthorizationStatus(Contacts.CNEntityType) +M:Contacts.CNContactStore.GetContainers(Foundation.NSPredicate,Foundation.NSError@) +M:Contacts.CNContactStore.GetEnumeratorForChangeHistory(Contacts.CNChangeHistoryFetchRequest,Foundation.NSError@) +M:Contacts.CNContactStore.GetEnumeratorForContact(Contacts.CNContactFetchRequest,Foundation.NSError@) +M:Contacts.CNContactStore.GetGroups(Foundation.NSPredicate,Foundation.NSError@) +M:Contacts.CNContactStore.GetUnifiedContact(System.String,Foundation.NSArray,Foundation.NSError@) M:Contacts.CNContactStore.GetUnifiedContact``1(System.String,`0[],Foundation.NSError@) +M:Contacts.CNContactStore.GetUnifiedContacts(Foundation.NSPredicate,Foundation.NSArray,Foundation.NSError@) M:Contacts.CNContactStore.GetUnifiedContacts``1(Foundation.NSPredicate,`0[],Foundation.NSError@) +M:Contacts.CNContactStore.GetUnifiedMeContact(Foundation.NSArray,Foundation.NSError@) M:Contacts.CNContactStore.GetUnifiedMeContact``1(`0[],Foundation.NSError@) M:Contacts.CNContactStore.Notifications.ObserveNotificationDidChange(Foundation.NSObject,System.EventHandler{Foundation.NSNotificationEventArgs}) M:Contacts.CNContactStore.Notifications.ObserveNotificationDidChange(System.EventHandler{Foundation.NSNotificationEventArgs}) +M:Contacts.CNContactStore.RequestAccess(Contacts.CNEntityType,Contacts.CNContactStoreRequestAccessHandler) M:Contacts.CNContactStore.RequestAccessAsync(Contacts.CNEntityType) M:Contacts.CNContactStoreListContactsHandler.#ctor(System.Object,System.IntPtr) M:Contacts.CNContactStoreListContactsHandler.BeginInvoke(Contacts.CNContact,System.Boolean@,System.AsyncCallback,System.Object) @@ -45498,16 +47648,29 @@ M:Contacts.CNContactsUserDefaults.#ctor M:Contacts.CNContactsUserDefaults.#ctor(Foundation.NSObjectFlag) M:Contacts.CNContactsUserDefaults.#ctor(ObjCRuntime.NativeHandle) M:Contacts.CNContactsUserDefaults.get_ClassHandle +M:Contacts.CNContactsUserDefaults.get_CountryCode +M:Contacts.CNContactsUserDefaults.get_SortOrder +M:Contacts.CNContactsUserDefaults.GetSharedDefaults M:Contacts.CNContactVCardSerialization.#ctor M:Contacts.CNContactVCardSerialization.#ctor(Foundation.NSObjectFlag) M:Contacts.CNContactVCardSerialization.#ctor(ObjCRuntime.NativeHandle) M:Contacts.CNContactVCardSerialization.get_ClassHandle +M:Contacts.CNContactVCardSerialization.GetContactsFromData(Foundation.NSData,Foundation.NSError@) +M:Contacts.CNContactVCardSerialization.GetDataFromContacts(Contacts.CNContact[],Foundation.NSError@) +M:Contacts.CNContactVCardSerialization.GetDescriptorFromRequiredKeys M:Contacts.CNContainer.#ctor M:Contacts.CNContainer.#ctor(Foundation.NSCoder) M:Contacts.CNContainer.#ctor(Foundation.NSObjectFlag) M:Contacts.CNContainer.#ctor(ObjCRuntime.NativeHandle) +M:Contacts.CNContainer.Copy(Foundation.NSZone) +M:Contacts.CNContainer.CreatePredicateForContainerOfContact(System.String) +M:Contacts.CNContainer.CreatePredicateForContainerOfGroup(System.String) +M:Contacts.CNContainer.CreatePredicateForContainers(System.String[]) M:Contacts.CNContainer.EncodeTo(Foundation.NSCoder) M:Contacts.CNContainer.get_ClassHandle +M:Contacts.CNContainer.get_ContainerType +M:Contacts.CNContainer.get_Identifier +M:Contacts.CNContainer.get_Name M:Contacts.CNContainerKey.get_Identifier M:Contacts.CNContainerKey.get_Name M:Contacts.CNContainerKey.get_Type @@ -45522,22 +47685,37 @@ M:Contacts.CNFetchRequest.get_ClassHandle M:Contacts.CNFetchResult`1.#ctor(Foundation.NSObjectFlag) M:Contacts.CNFetchResult`1.#ctor(ObjCRuntime.NativeHandle) M:Contacts.CNFetchResult`1.get_ClassHandle +M:Contacts.CNFetchResult`1.get_CurrentHistoryToken +M:Contacts.CNFetchResult`1.get_Value M:Contacts.CNGroup.#ctor M:Contacts.CNGroup.#ctor(Foundation.NSCoder) M:Contacts.CNGroup.#ctor(Foundation.NSObjectFlag) M:Contacts.CNGroup.#ctor(ObjCRuntime.NativeHandle) +M:Contacts.CNGroup.Copy(Foundation.NSZone) +M:Contacts.CNGroup.CreatePredicateForGroups(System.String[]) +M:Contacts.CNGroup.CreatePredicateForGroupsInContainer(System.String) +M:Contacts.CNGroup.CreatePredicateForSubgroupsInGroup(System.String) M:Contacts.CNGroup.EncodeTo(Foundation.NSCoder) M:Contacts.CNGroup.get_ClassHandle +M:Contacts.CNGroup.get_Identifier +M:Contacts.CNGroup.get_Name +M:Contacts.CNGroup.MutableCopy(Foundation.NSZone) M:Contacts.CNGroupKey.get_Identifier M:Contacts.CNGroupKey.get_Name M:Contacts.CNInstantMessageAddress.#ctor M:Contacts.CNInstantMessageAddress.#ctor(Foundation.NSCoder) M:Contacts.CNInstantMessageAddress.#ctor(Foundation.NSObjectFlag) M:Contacts.CNInstantMessageAddress.#ctor(ObjCRuntime.NativeHandle) +M:Contacts.CNInstantMessageAddress.#ctor(System.String,System.String) +M:Contacts.CNInstantMessageAddress.Copy(Foundation.NSZone) M:Contacts.CNInstantMessageAddress.EncodeTo(Foundation.NSCoder) M:Contacts.CNInstantMessageAddress.get_ClassHandle +M:Contacts.CNInstantMessageAddress.get_Service +M:Contacts.CNInstantMessageAddress.get_Username M:Contacts.CNInstantMessageAddress.LocalizeProperty(Contacts.CNInstantMessageAddressOption) +M:Contacts.CNInstantMessageAddress.LocalizeProperty(Foundation.NSString) M:Contacts.CNInstantMessageAddress.LocalizeService(Contacts.CNInstantMessageServiceOption) +M:Contacts.CNInstantMessageAddress.LocalizeService(Foundation.NSString) M:Contacts.CNInstantMessageAddressKey.get_Service M:Contacts.CNInstantMessageAddressKey.get_Username M:Contacts.CNInstantMessageServiceKey.get_Aim @@ -45770,8 +47948,18 @@ M:Contacts.CNLabeledValue`1.#ctor M:Contacts.CNLabeledValue`1.#ctor(Foundation.NSCoder) M:Contacts.CNLabeledValue`1.#ctor(Foundation.NSObjectFlag) M:Contacts.CNLabeledValue`1.#ctor(ObjCRuntime.NativeHandle) +M:Contacts.CNLabeledValue`1.#ctor(System.String,`0) +M:Contacts.CNLabeledValue`1.Copy(Foundation.NSZone) M:Contacts.CNLabeledValue`1.EncodeTo(Foundation.NSCoder) +M:Contacts.CNLabeledValue`1.FromLabel(System.String,`0) M:Contacts.CNLabeledValue`1.get_ClassHandle +M:Contacts.CNLabeledValue`1.get_Identifier +M:Contacts.CNLabeledValue`1.get_Label +M:Contacts.CNLabeledValue`1.get_Value +M:Contacts.CNLabeledValue`1.GetLabeledValue(`0) +M:Contacts.CNLabeledValue`1.GetLabeledValue(System.String,`0) +M:Contacts.CNLabeledValue`1.GetLabeledValue(System.String) +M:Contacts.CNLabeledValue`1.LocalizeLabel(Foundation.NSString) M:Contacts.CNLabelKey.get_DateAnniversary M:Contacts.CNLabelKey.get_EmailiCloud M:Contacts.CNLabelKey.get_Home @@ -45791,7 +47979,34 @@ M:Contacts.CNMutableContact.#ctor M:Contacts.CNMutableContact.#ctor(Foundation.NSCoder) M:Contacts.CNMutableContact.#ctor(Foundation.NSObjectFlag) M:Contacts.CNMutableContact.#ctor(ObjCRuntime.NativeHandle) +M:Contacts.CNMutableContact.get_Birthday M:Contacts.CNMutableContact.get_ClassHandle +M:Contacts.CNMutableContact.get_ContactRelations +M:Contacts.CNMutableContact.get_ContactType +M:Contacts.CNMutableContact.get_Dates +M:Contacts.CNMutableContact.get_DepartmentName +M:Contacts.CNMutableContact.get_EmailAddresses +M:Contacts.CNMutableContact.get_FamilyName +M:Contacts.CNMutableContact.get_GivenName +M:Contacts.CNMutableContact.get_ImageData +M:Contacts.CNMutableContact.get_InstantMessageAddresses +M:Contacts.CNMutableContact.get_JobTitle +M:Contacts.CNMutableContact.get_MiddleName +M:Contacts.CNMutableContact.get_NamePrefix +M:Contacts.CNMutableContact.get_NameSuffix +M:Contacts.CNMutableContact.get_Nickname +M:Contacts.CNMutableContact.get_NonGregorianBirthday +M:Contacts.CNMutableContact.get_Note +M:Contacts.CNMutableContact.get_OrganizationName +M:Contacts.CNMutableContact.get_PhoneNumbers +M:Contacts.CNMutableContact.get_PhoneticFamilyName +M:Contacts.CNMutableContact.get_PhoneticGivenName +M:Contacts.CNMutableContact.get_PhoneticMiddleName +M:Contacts.CNMutableContact.get_PhoneticOrganizationName +M:Contacts.CNMutableContact.get_PostalAddresses +M:Contacts.CNMutableContact.get_PreviousFamilyName +M:Contacts.CNMutableContact.get_SocialProfiles +M:Contacts.CNMutableContact.get_UrlAddresses M:Contacts.CNMutableContact.set_Birthday(Foundation.NSDateComponents) M:Contacts.CNMutableContact.set_ContactRelations(Contacts.CNLabeledValue{Contacts.CNContactRelation}[]) M:Contacts.CNMutableContact.set_ContactType(Contacts.CNContactType) @@ -45824,12 +48039,21 @@ M:Contacts.CNMutableGroup.#ctor(Foundation.NSCoder) M:Contacts.CNMutableGroup.#ctor(Foundation.NSObjectFlag) M:Contacts.CNMutableGroup.#ctor(ObjCRuntime.NativeHandle) M:Contacts.CNMutableGroup.get_ClassHandle +M:Contacts.CNMutableGroup.get_Name M:Contacts.CNMutableGroup.set_Name(System.String) M:Contacts.CNMutablePostalAddress.#ctor M:Contacts.CNMutablePostalAddress.#ctor(Foundation.NSCoder) M:Contacts.CNMutablePostalAddress.#ctor(Foundation.NSObjectFlag) M:Contacts.CNMutablePostalAddress.#ctor(ObjCRuntime.NativeHandle) +M:Contacts.CNMutablePostalAddress.get_City M:Contacts.CNMutablePostalAddress.get_ClassHandle +M:Contacts.CNMutablePostalAddress.get_Country +M:Contacts.CNMutablePostalAddress.get_IsoCountryCode +M:Contacts.CNMutablePostalAddress.get_PostalCode +M:Contacts.CNMutablePostalAddress.get_State +M:Contacts.CNMutablePostalAddress.get_Street +M:Contacts.CNMutablePostalAddress.get_SubAdministrativeArea +M:Contacts.CNMutablePostalAddress.get_SubLocality M:Contacts.CNMutablePostalAddress.set_City(System.String) M:Contacts.CNMutablePostalAddress.set_Country(System.String) M:Contacts.CNMutablePostalAddress.set_IsoCountryCode(System.String) @@ -45841,15 +48065,30 @@ M:Contacts.CNMutablePostalAddress.set_SubLocality(System.String) M:Contacts.CNPhoneNumber.#ctor(Foundation.NSCoder) M:Contacts.CNPhoneNumber.#ctor(Foundation.NSObjectFlag) M:Contacts.CNPhoneNumber.#ctor(ObjCRuntime.NativeHandle) +M:Contacts.CNPhoneNumber.#ctor(System.String) +M:Contacts.CNPhoneNumber.Copy(Foundation.NSZone) M:Contacts.CNPhoneNumber.EncodeTo(Foundation.NSCoder) M:Contacts.CNPhoneNumber.get_ClassHandle +M:Contacts.CNPhoneNumber.get_StringValue +M:Contacts.CNPhoneNumber.PhoneNumberWithStringValue(System.String) M:Contacts.CNPostalAddress.#ctor M:Contacts.CNPostalAddress.#ctor(Foundation.NSCoder) M:Contacts.CNPostalAddress.#ctor(Foundation.NSObjectFlag) M:Contacts.CNPostalAddress.#ctor(ObjCRuntime.NativeHandle) +M:Contacts.CNPostalAddress.Copy(Foundation.NSZone) M:Contacts.CNPostalAddress.EncodeTo(Foundation.NSCoder) +M:Contacts.CNPostalAddress.get_City M:Contacts.CNPostalAddress.get_ClassHandle +M:Contacts.CNPostalAddress.get_Country +M:Contacts.CNPostalAddress.get_IsoCountryCode +M:Contacts.CNPostalAddress.get_PostalCode +M:Contacts.CNPostalAddress.get_State +M:Contacts.CNPostalAddress.get_Street +M:Contacts.CNPostalAddress.get_SubAdministrativeArea +M:Contacts.CNPostalAddress.get_SubLocality M:Contacts.CNPostalAddress.LocalizeProperty(Contacts.CNPostalAddressKeyOption) +M:Contacts.CNPostalAddress.LocalizeProperty(Foundation.NSString) +M:Contacts.CNPostalAddress.MutableCopy(Foundation.NSZone) M:Contacts.CNPostalAddressFormatter.#ctor M:Contacts.CNPostalAddressFormatter.#ctor(Foundation.NSCoder) M:Contacts.CNPostalAddressFormatter.#ctor(Foundation.NSObjectFlag) @@ -45857,24 +48096,49 @@ M:Contacts.CNPostalAddressFormatter.#ctor(ObjCRuntime.NativeHandle) M:Contacts.CNPostalAddressFormatter.get_ClassHandle M:Contacts.CNPostalAddressFormatter.get_LocalizedPropertyNameAttribute M:Contacts.CNPostalAddressFormatter.get_PropertyAttribute +M:Contacts.CNPostalAddressFormatter.get_Style +M:Contacts.CNPostalAddressFormatter.GetAttributedStringFrom(Contacts.CNPostalAddress,Contacts.CNPostalAddressFormatterStyle,Foundation.NSDictionary) +M:Contacts.CNPostalAddressFormatter.GetAttributedStringFromPostalAddress(Contacts.CNPostalAddress,Foundation.NSDictionary) +M:Contacts.CNPostalAddressFormatter.GetStringFrom(Contacts.CNPostalAddress,Contacts.CNPostalAddressFormatterStyle) +M:Contacts.CNPostalAddressFormatter.GetStringFromPostalAddress(Contacts.CNPostalAddress) M:Contacts.CNPostalAddressFormatter.set_Style(Contacts.CNPostalAddressFormatterStyle) M:Contacts.CNPostalAddressKeyOptionExtensions.GetConstant(Contacts.CNPostalAddressKeyOption) M:Contacts.CNPostalAddressKeyOptionExtensions.GetValue(Foundation.NSString) M:Contacts.CNSaveRequest.#ctor M:Contacts.CNSaveRequest.#ctor(Foundation.NSObjectFlag) M:Contacts.CNSaveRequest.#ctor(ObjCRuntime.NativeHandle) +M:Contacts.CNSaveRequest.AddContact(Contacts.CNMutableContact,System.String) +M:Contacts.CNSaveRequest.AddGroup(Contacts.CNMutableGroup,System.String) +M:Contacts.CNSaveRequest.AddMember(Contacts.CNContact,Contacts.CNGroup) +M:Contacts.CNSaveRequest.AddSubgroup(Contacts.CNGroup,Contacts.CNGroup) +M:Contacts.CNSaveRequest.DeleteContact(Contacts.CNMutableContact) +M:Contacts.CNSaveRequest.DeleteGroup(Contacts.CNMutableGroup) M:Contacts.CNSaveRequest.get_ClassHandle +M:Contacts.CNSaveRequest.get_ShouldRefetchContacts +M:Contacts.CNSaveRequest.get_TransactionAuthor +M:Contacts.CNSaveRequest.RemoveMember(Contacts.CNContact,Contacts.CNGroup) +M:Contacts.CNSaveRequest.RemoveSubgroup(Contacts.CNGroup,Contacts.CNGroup) M:Contacts.CNSaveRequest.set_ShouldRefetchContacts(System.Boolean) M:Contacts.CNSaveRequest.set_TransactionAuthor(System.String) +M:Contacts.CNSaveRequest.UpdateContact(Contacts.CNMutableContact) +M:Contacts.CNSaveRequest.UpdateGroup(Contacts.CNMutableGroup) M:Contacts.CNSocialProfile.#ctor M:Contacts.CNSocialProfile.#ctor(Foundation.NSCoder) M:Contacts.CNSocialProfile.#ctor(Foundation.NSObjectFlag) M:Contacts.CNSocialProfile.#ctor(ObjCRuntime.NativeHandle) +M:Contacts.CNSocialProfile.#ctor(System.String,System.String,System.String,System.String) +M:Contacts.CNSocialProfile.Copy(Foundation.NSZone) M:Contacts.CNSocialProfile.EncodeTo(Foundation.NSCoder) M:Contacts.CNSocialProfile.get_ClassHandle +M:Contacts.CNSocialProfile.get_Service +M:Contacts.CNSocialProfile.get_UrlString +M:Contacts.CNSocialProfile.get_UserIdentifier +M:Contacts.CNSocialProfile.get_Username M:Contacts.CNSocialProfile.LocalizeProperty(Contacts.CNPostalAddressKeyOption) M:Contacts.CNSocialProfile.LocalizeProperty(Contacts.CNSocialProfileOption) +M:Contacts.CNSocialProfile.LocalizeProperty(Foundation.NSString) M:Contacts.CNSocialProfile.LocalizeService(Contacts.CNSocialProfileServiceOption) +M:Contacts.CNSocialProfile.LocalizeService(Foundation.NSString) M:Contacts.CNSocialProfileKey.get_Service M:Contacts.CNSocialProfileKey.get_UrlString M:Contacts.CNSocialProfileKey.get_UserIdentifier @@ -46945,6 +49209,7 @@ M:CoreAudioKit.AUGenericView.#ctor(Foundation.NSObjectFlag) M:CoreAudioKit.AUGenericView.#ctor(ObjCRuntime.NativeHandle) M:CoreAudioKit.AUGenericView.Dispose(System.Boolean) M:CoreAudioKit.AUGenericView.get_ClassHandle +M:CoreAudioKit.AUGenericView.get_CustomViewPersistentData M:CoreAudioKit.AUGenericView.set_CustomViewPersistentData(Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject}) M:CoreAudioKit.AUGenericView.set_ShowsExpertParameters(System.Boolean) M:CoreAudioKit.AUGenericViewController.#ctor @@ -56097,6 +58362,10 @@ M:CoreLocationUI.CLLocationButton.CLLocationButtonAppearance.#ctor(System.IntPtr M:CoreLocationUI.CLLocationButton.EncodeTo(Foundation.NSCoder) M:CoreLocationUI.CLLocationButton.get_Appearance M:CoreLocationUI.CLLocationButton.get_ClassHandle +M:CoreLocationUI.CLLocationButton.get_CornerRadius +M:CoreLocationUI.CLLocationButton.get_FontSize +M:CoreLocationUI.CLLocationButton.get_Icon +M:CoreLocationUI.CLLocationButton.get_Label M:CoreLocationUI.CLLocationButton.GetAppearance(UIKit.UITraitCollection,System.Type[]) M:CoreLocationUI.CLLocationButton.GetAppearance(UIKit.UITraitCollection) M:CoreLocationUI.CLLocationButton.GetAppearance``1 @@ -60003,15 +62272,21 @@ M:Darwin.SystemLog.Search(Darwin.Message) M:Darwin.SystemLog.SetFilter(System.Int32) M:DeviceCheck.DCAppAttestService.#ctor(Foundation.NSObjectFlag) M:DeviceCheck.DCAppAttestService.#ctor(ObjCRuntime.NativeHandle) +M:DeviceCheck.DCAppAttestService.AttestKey(System.String,Foundation.NSData,System.Action{Foundation.NSData,Foundation.NSError}) M:DeviceCheck.DCAppAttestService.AttestKeyAsync(System.String,Foundation.NSData) +M:DeviceCheck.DCAppAttestService.GenerateAssertion(System.String,Foundation.NSData,System.Action{Foundation.NSData,Foundation.NSError}) M:DeviceCheck.DCAppAttestService.GenerateAssertionAsync(System.String,Foundation.NSData) +M:DeviceCheck.DCAppAttestService.GenerateKey(System.Action{System.String,Foundation.NSError}) M:DeviceCheck.DCAppAttestService.GenerateKeyAsync M:DeviceCheck.DCAppAttestService.get_ClassHandle +M:DeviceCheck.DCAppAttestService.get_SharedService M:DeviceCheck.DCAppAttestService.get_Supported M:DeviceCheck.DCDevice.#ctor(Foundation.NSObjectFlag) M:DeviceCheck.DCDevice.#ctor(ObjCRuntime.NativeHandle) +M:DeviceCheck.DCDevice.GenerateToken(DeviceCheck.DCDeviceGenerateTokenCompletionHandler) M:DeviceCheck.DCDevice.GenerateTokenAsync M:DeviceCheck.DCDevice.get_ClassHandle +M:DeviceCheck.DCDevice.get_CurrentDevice M:DeviceCheck.DCDevice.get_Supported M:DeviceCheck.DCDeviceGenerateTokenCompletionHandler.#ctor(System.Object,System.IntPtr) M:DeviceCheck.DCDeviceGenerateTokenCompletionHandler.BeginInvoke(Foundation.NSData,Foundation.NSError,System.AsyncCallback,System.Object) @@ -60020,6 +62295,7 @@ M:DeviceCheck.DCDeviceGenerateTokenCompletionHandler.Invoke(Foundation.NSData,Fo M:DeviceCheck.DCErrorExtensions.GetDomain(DeviceCheck.DCError) M:EventKit.EKAlarm.#ctor(Foundation.NSObjectFlag) M:EventKit.EKAlarm.#ctor(ObjCRuntime.NativeHandle) +M:EventKit.EKAlarm.Copy(Foundation.NSZone) M:EventKit.EKAlarm.get_ClassHandle M:EventKit.EKAlarm.set_AbsoluteDate(Foundation.NSDate) M:EventKit.EKAlarm.set_EmailAddress(System.String) @@ -60086,23 +62362,27 @@ M:EventKit.EKObject.get_ClassHandle M:EventKit.EKObject.get_IsNew M:EventKit.EKParticipant.#ctor(Foundation.NSObjectFlag) M:EventKit.EKParticipant.#ctor(ObjCRuntime.NativeHandle) +M:EventKit.EKParticipant.Copy(Foundation.NSZone) M:EventKit.EKParticipant.get_ClassHandle M:EventKit.EKParticipant.get_IsCurrentUser M:EventKit.EKRecurrenceDayOfWeek.#ctor M:EventKit.EKRecurrenceDayOfWeek.#ctor(Foundation.NSCoder) M:EventKit.EKRecurrenceDayOfWeek.#ctor(Foundation.NSObjectFlag) M:EventKit.EKRecurrenceDayOfWeek.#ctor(ObjCRuntime.NativeHandle) +M:EventKit.EKRecurrenceDayOfWeek.Copy(Foundation.NSZone) M:EventKit.EKRecurrenceDayOfWeek.EncodeTo(Foundation.NSCoder) M:EventKit.EKRecurrenceDayOfWeek.get_ClassHandle M:EventKit.EKRecurrenceEnd.#ctor M:EventKit.EKRecurrenceEnd.#ctor(Foundation.NSCoder) M:EventKit.EKRecurrenceEnd.#ctor(Foundation.NSObjectFlag) M:EventKit.EKRecurrenceEnd.#ctor(ObjCRuntime.NativeHandle) +M:EventKit.EKRecurrenceEnd.Copy(Foundation.NSZone) M:EventKit.EKRecurrenceEnd.EncodeTo(Foundation.NSCoder) M:EventKit.EKRecurrenceEnd.get_ClassHandle M:EventKit.EKRecurrenceRule.#ctor M:EventKit.EKRecurrenceRule.#ctor(Foundation.NSObjectFlag) M:EventKit.EKRecurrenceRule.#ctor(ObjCRuntime.NativeHandle) +M:EventKit.EKRecurrenceRule.Copy(Foundation.NSZone) M:EventKit.EKRecurrenceRule.get_ClassHandle M:EventKit.EKRecurrenceRule.set_RecurrenceEnd(EventKit.EKRecurrenceEnd) M:EventKit.EKReminder.#ctor(Foundation.NSObjectFlag) @@ -60121,6 +62401,7 @@ M:EventKit.EKSource.get_ClassHandle M:EventKit.EKStructuredLocation.#ctor M:EventKit.EKStructuredLocation.#ctor(Foundation.NSObjectFlag) M:EventKit.EKStructuredLocation.#ctor(ObjCRuntime.NativeHandle) +M:EventKit.EKStructuredLocation.Copy(Foundation.NSZone) M:EventKit.EKStructuredLocation.get_ClassHandle M:EventKit.EKStructuredLocation.set_GeoLocation(CoreLocation.CLLocation) M:EventKit.EKStructuredLocation.set_Radius(System.Double) @@ -60131,6 +62412,7 @@ M:EventKit.EKVirtualConferenceDescriptor.get_ClassHandle M:EventKit.EKVirtualConferenceProvider.#ctor M:EventKit.EKVirtualConferenceProvider.#ctor(Foundation.NSObjectFlag) M:EventKit.EKVirtualConferenceProvider.#ctor(ObjCRuntime.NativeHandle) +M:EventKit.EKVirtualConferenceProvider.BeginRequestWithExtensionContext(Foundation.NSExtensionContext) M:EventKit.EKVirtualConferenceProvider.FetchAvailableRoomTypesAsync M:EventKit.EKVirtualConferenceProvider.FetchVirtualConferenceAsync(System.String) M:EventKit.EKVirtualConferenceProvider.get_ClassHandle @@ -60280,6 +62562,9 @@ M:ExtensionKit.EXHostViewController.#ctor(System.String,Foundation.NSBundle) M:ExtensionKit.EXHostViewController.Dispose(System.Boolean) M:ExtensionKit.EXHostViewController.get_ClassHandle M:ExtensionKit.EXHostViewController.get_Delegate +M:ExtensionKit.EXHostViewController.get_PlaceholderView +M:ExtensionKit.EXHostViewController.get_WeakDelegate +M:ExtensionKit.EXHostViewController.MakeXpcConnection(Foundation.NSError@) M:ExtensionKit.EXHostViewController.set_Delegate(ExtensionKit.IEXHostViewControllerDelegate) M:ExtensionKit.EXHostViewController.set_PlaceholderView(AppKit.NSView) M:ExtensionKit.EXHostViewController.set_WeakDelegate(Foundation.NSObject) @@ -60946,6 +63231,7 @@ M:Foundation.NSAffineTransform.#ctor(Foundation.NSCoder) M:Foundation.NSAffineTransform.#ctor(Foundation.NSObjectFlag) M:Foundation.NSAffineTransform.#ctor(ObjCRuntime.NativeHandle) M:Foundation.NSAffineTransform.Concat +M:Foundation.NSAffineTransform.Copy(Foundation.NSZone) M:Foundation.NSAffineTransform.EncodeTo(Foundation.NSCoder) M:Foundation.NSAffineTransform.get_ClassHandle M:Foundation.NSAffineTransform.Set @@ -60956,6 +63242,7 @@ M:Foundation.NSAppleEventDescriptor.#ctor(Foundation.NSAppleEventDescriptorType) M:Foundation.NSAppleEventDescriptor.#ctor(Foundation.NSCoder) M:Foundation.NSAppleEventDescriptor.#ctor(Foundation.NSObjectFlag) M:Foundation.NSAppleEventDescriptor.#ctor(ObjCRuntime.NativeHandle) +M:Foundation.NSAppleEventDescriptor.Copy(Foundation.NSZone) M:Foundation.NSAppleEventDescriptor.EncodeTo(Foundation.NSCoder) M:Foundation.NSAppleEventDescriptor.get_ClassHandle M:Foundation.NSAppleEventManager.#ctor @@ -60967,6 +63254,7 @@ M:Foundation.NSAppleEventManager.Notifications.ObserveWillProcessFirstEvent(Foun M:Foundation.NSAppleEventManager.Notifications.ObserveWillProcessFirstEvent(System.EventHandler{Foundation.NSNotificationEventArgs}) M:Foundation.NSAppleScript.#ctor(Foundation.NSObjectFlag) M:Foundation.NSAppleScript.#ctor(ObjCRuntime.NativeHandle) +M:Foundation.NSAppleScript.Copy(Foundation.NSZone) M:Foundation.NSAppleScript.get_ClassHandle M:Foundation.NSAppleScript.get_Compiled M:Foundation.NSAppleScript.get_RichTextSource @@ -60981,6 +63269,7 @@ M:Foundation.NSArray.ArrayFromHandle``1(ObjCRuntime.NativeHandle,System.Converte M:Foundation.NSArray.ArrayFromHandle``1(ObjCRuntime.NativeHandle,System.Converter{ObjCRuntime.NativeHandle,`0}) M:Foundation.NSArray.ArrayFromHandle``1(ObjCRuntime.NativeHandle) M:Foundation.NSArray.ArrayFromHandleFunc``1(ObjCRuntime.NativeHandle,System.Func{ObjCRuntime.NativeHandle,`0}) +M:Foundation.NSArray.Copy(Foundation.NSZone) M:Foundation.NSArray.EncodeTo(Foundation.NSCoder) M:Foundation.NSArray.EnumsFromHandle``1(ObjCRuntime.NativeHandle) M:Foundation.NSArray.From(Foundation.NSObject[][]) @@ -61003,6 +63292,7 @@ M:Foundation.NSArray.FromStrings(System.Collections.Generic.IReadOnlyList{System M:Foundation.NSArray.FromStrings(System.String[]) M:Foundation.NSArray.get_ClassHandle M:Foundation.NSArray.GetItem``1(System.UIntPtr) +M:Foundation.NSArray.MutableCopy(Foundation.NSZone) M:Foundation.NSArray.StringArrayFromHandle(ObjCRuntime.NativeHandle) M:Foundation.NSArray.ToArray M:Foundation.NSArray.ToArray``1 @@ -61042,6 +63332,7 @@ M:Foundation.NSAttributedString.#ctor(System.String,UIKit.UIFont,UIKit.UIColor,U M:Foundation.NSAttributedString.#ctor(System.String,UIKit.UIStringAttributes) M:Foundation.NSAttributedString.BoundingRectWithSize(CoreGraphics.CGSize,Foundation.NSStringDrawingOptions) M:Foundation.NSAttributedString.ContainsAttachmentsInRange(Foundation.NSRange) +M:Foundation.NSAttributedString.Copy(Foundation.NSZone) M:Foundation.NSAttributedString.CreateWithDocFormat(Foundation.NSData,Foundation.NSDictionary@) M:Foundation.NSAttributedString.CreateWithHTML(Foundation.NSData,Foundation.NSDictionary@) M:Foundation.NSAttributedString.CreateWithRTF(Foundation.NSData,Foundation.NSDictionary@) @@ -61129,6 +63420,7 @@ M:Foundation.NSAttributedString.LoadFromHtmlAsync(Foundation.NSUrlRequest,Founda M:Foundation.NSAttributedString.LoadFromHtmlAsync(System.String,Foundation.NSAttributedStringDocumentAttributes) M:Foundation.NSAttributedString.LoadFromHtmlAsync(System.String,Foundation.NSDictionary) M:Foundation.NSAttributedString.LowLevelGetAttributes(System.IntPtr,Foundation.NSRange@) +M:Foundation.NSAttributedString.MutableCopy(Foundation.NSZone) M:Foundation.NSAttributedString.Substring(System.IntPtr,System.IntPtr) M:Foundation.NSAttributedStringCallback.#ctor(System.Object,System.IntPtr) M:Foundation.NSAttributedStringCallback.BeginInvoke(Foundation.NSObject,Foundation.NSRange,System.Boolean@,System.AsyncCallback,System.Object) @@ -61238,6 +63530,7 @@ M:Foundation.NSAttributedStringDocumentAttributes.set_WebPreferences(WebKit.WebP M:Foundation.NSAttributedStringDocumentAttributes.set_WebResourceLoadDelegate(Foundation.NSObject) M:Foundation.NSAttributedStringMarkdownParsingOptions.#ctor(Foundation.NSObjectFlag) M:Foundation.NSAttributedStringMarkdownParsingOptions.#ctor(ObjCRuntime.NativeHandle) +M:Foundation.NSAttributedStringMarkdownParsingOptions.Copy(Foundation.NSZone) M:Foundation.NSAttributedStringMarkdownParsingOptions.get_ClassHandle M:Foundation.NSAttributedStringMarkdownParsingOptions.set_AllowsExtendedAttributes(System.Boolean) M:Foundation.NSAttributedStringMarkdownParsingOptions.set_AppliesSourcePositionAttributes(System.Boolean) @@ -61248,6 +63541,7 @@ M:Foundation.NSAttributedStringMarkdownSourcePosition.#ctor M:Foundation.NSAttributedStringMarkdownSourcePosition.#ctor(Foundation.NSCoder) M:Foundation.NSAttributedStringMarkdownSourcePosition.#ctor(Foundation.NSObjectFlag) M:Foundation.NSAttributedStringMarkdownSourcePosition.#ctor(ObjCRuntime.NativeHandle) +M:Foundation.NSAttributedStringMarkdownSourcePosition.Copy(Foundation.NSZone) M:Foundation.NSAttributedStringMarkdownSourcePosition.EncodeTo(Foundation.NSCoder) M:Foundation.NSAttributedStringMarkdownSourcePosition.get_ClassHandle M:Foundation.NSAttributedStringNameKeyExtensions.GetConstant(Foundation.NSAttributedStringNameKey) @@ -61355,12 +63649,14 @@ M:Foundation.NSCacheDelegate.WillEvictObject(Foundation.NSCache,Foundation.NSObj M:Foundation.NSCachedUrlResponse.#ctor(Foundation.NSCoder) M:Foundation.NSCachedUrlResponse.#ctor(Foundation.NSObjectFlag) M:Foundation.NSCachedUrlResponse.#ctor(ObjCRuntime.NativeHandle) +M:Foundation.NSCachedUrlResponse.Copy(Foundation.NSZone) M:Foundation.NSCachedUrlResponse.EncodeTo(Foundation.NSCoder) M:Foundation.NSCachedUrlResponse.get_ClassHandle M:Foundation.NSCalendar.#ctor(Foundation.NSCalendarType) M:Foundation.NSCalendar.#ctor(Foundation.NSCoder) M:Foundation.NSCalendar.#ctor(Foundation.NSObjectFlag) M:Foundation.NSCalendar.#ctor(ObjCRuntime.NativeHandle) +M:Foundation.NSCalendar.Copy(Foundation.NSZone) M:Foundation.NSCalendar.EncodeTo(Foundation.NSCoder) M:Foundation.NSCalendar.get_ClassHandle M:Foundation.NSCalendar.get_DayChangedNotification @@ -61378,8 +63674,10 @@ M:Foundation.NSCalendarDate.get_ClassHandle M:Foundation.NSCharacterSet.#ctor M:Foundation.NSCharacterSet.#ctor(Foundation.NSObjectFlag) M:Foundation.NSCharacterSet.#ctor(ObjCRuntime.NativeHandle) +M:Foundation.NSCharacterSet.Copy(Foundation.NSZone) M:Foundation.NSCharacterSet.EncodeTo(Foundation.NSCoder) M:Foundation.NSCharacterSet.get_ClassHandle +M:Foundation.NSCharacterSet.MutableCopy(Foundation.NSZone) M:Foundation.NSCoder.#ctor M:Foundation.NSCoder.#ctor(Foundation.NSObjectFlag) M:Foundation.NSCoder.#ctor(ObjCRuntime.NativeHandle) @@ -61420,12 +63718,16 @@ M:Foundation.NSCondition.#ctor M:Foundation.NSCondition.#ctor(Foundation.NSObjectFlag) M:Foundation.NSCondition.#ctor(ObjCRuntime.NativeHandle) M:Foundation.NSCondition.get_ClassHandle +M:Foundation.NSCondition.Lock M:Foundation.NSCondition.set_Name(System.String) +M:Foundation.NSCondition.Unlock M:Foundation.NSConditionLock.#ctor M:Foundation.NSConditionLock.#ctor(Foundation.NSObjectFlag) M:Foundation.NSConditionLock.#ctor(ObjCRuntime.NativeHandle) M:Foundation.NSConditionLock.get_ClassHandle +M:Foundation.NSConditionLock.Lock M:Foundation.NSConditionLock.set_Name(System.String) +M:Foundation.NSConditionLock.Unlock M:Foundation.NSConnection.#ctor(Foundation.NSObjectFlag) M:Foundation.NSConnection.#ctor(ObjCRuntime.NativeHandle) M:Foundation.NSConnection.Dispose(System.Boolean) @@ -61465,6 +63767,7 @@ M:Foundation.NSData.#ctor(Foundation.NSCoder) M:Foundation.NSData.#ctor(Foundation.NSObjectFlag) M:Foundation.NSData.#ctor(ObjCRuntime.NativeHandle) M:Foundation.NSData.AsStream +M:Foundation.NSData.Copy(Foundation.NSZone) M:Foundation.NSData.EncodeTo(Foundation.NSCoder) M:Foundation.NSData.FromArray(System.Byte[]) M:Foundation.NSData.FromStream(System.IO.Stream) @@ -61472,6 +63775,7 @@ M:Foundation.NSData.FromString(System.String,Foundation.NSStringEncoding) M:Foundation.NSData.FromString(System.String) M:Foundation.NSData.get_ClassHandle M:Foundation.NSData.get_Item(System.IntPtr) +M:Foundation.NSData.MutableCopy(Foundation.NSZone) M:Foundation.NSData.op_Implicit(System.String)~Foundation.NSData M:Foundation.NSData.Save(Foundation.NSUrl,Foundation.NSDataWritingOptions,Foundation.NSError@) M:Foundation.NSData.Save(Foundation.NSUrl,System.Boolean,Foundation.NSError@) @@ -61498,6 +63802,7 @@ M:Foundation.NSDataDetector.get_ClassHandle M:Foundation.NSDate.#ctor(Foundation.NSObjectFlag) M:Foundation.NSDate.#ctor(ObjCRuntime.NativeHandle) M:Foundation.NSDate.#ctor(System.Double) +M:Foundation.NSDate.Copy(Foundation.NSZone) M:Foundation.NSDate.CreateFromSRAbsoluteTime(System.Double) M:Foundation.NSDate.EncodeTo(Foundation.NSCoder) M:Foundation.NSDate.get_ClassHandle @@ -61511,6 +63816,7 @@ M:Foundation.NSDateComponents.#ctor M:Foundation.NSDateComponents.#ctor(Foundation.NSCoder) M:Foundation.NSDateComponents.#ctor(Foundation.NSObjectFlag) M:Foundation.NSDateComponents.#ctor(ObjCRuntime.NativeHandle) +M:Foundation.NSDateComponents.Copy(Foundation.NSZone) M:Foundation.NSDateComponents.EncodeTo(Foundation.NSCoder) M:Foundation.NSDateComponents.get_ClassHandle M:Foundation.NSDateComponents.get_IsLeapMonth @@ -61591,6 +63897,7 @@ M:Foundation.NSDateFormatter.set_VeryShortWeekdaySymbols(System.String[]) M:Foundation.NSDateFormatter.set_WeekdaySymbols(System.String[]) M:Foundation.NSDateInterval.#ctor(Foundation.NSObjectFlag) M:Foundation.NSDateInterval.#ctor(ObjCRuntime.NativeHandle) +M:Foundation.NSDateInterval.Copy(Foundation.NSZone) M:Foundation.NSDateInterval.EncodeTo(Foundation.NSCoder) M:Foundation.NSDateInterval.get_ClassHandle M:Foundation.NSDateIntervalFormatter.#ctor @@ -61651,6 +63958,7 @@ M:Foundation.NSDictionary.#ctor(Foundation.NSObjectFlag) M:Foundation.NSDictionary.#ctor(ObjCRuntime.NativeHandle) M:Foundation.NSDictionary.#ctor(System.Object,System.Object,System.Object[]) M:Foundation.NSDictionary.ContainsKey(Foundation.NSObject) +M:Foundation.NSDictionary.Copy(Foundation.NSZone) M:Foundation.NSDictionary.EncodeTo(Foundation.NSCoder) M:Foundation.NSDictionary.FromObjectsAndKeys(Foundation.NSObject[],Foundation.NSObject[],System.IntPtr) M:Foundation.NSDictionary.FromObjectsAndKeys(Foundation.NSObject[],Foundation.NSObject[]) @@ -61662,6 +63970,7 @@ M:Foundation.NSDictionary.get_Item(Foundation.NSString) M:Foundation.NSDictionary.get_Item(System.String) M:Foundation.NSDictionary.GetEnumerator M:Foundation.NSDictionary.LowlevelObjectForKey(System.IntPtr) +M:Foundation.NSDictionary.MutableCopy(Foundation.NSZone) M:Foundation.NSDictionary.set_Item(Foundation.NSObject,Foundation.NSObject) M:Foundation.NSDictionary.set_Item(Foundation.NSString,Foundation.NSObject) M:Foundation.NSDictionary.set_Item(System.String,Foundation.NSObject) @@ -61741,6 +64050,7 @@ M:Foundation.NSError.#ctor(Foundation.NSCoder) M:Foundation.NSError.#ctor(Foundation.NSObjectFlag) M:Foundation.NSError.#ctor(Foundation.NSString,System.IntPtr) M:Foundation.NSError.#ctor(ObjCRuntime.NativeHandle) +M:Foundation.NSError.Copy(Foundation.NSZone) M:Foundation.NSError.EncodeTo(Foundation.NSCoder) M:Foundation.NSError.FromDomain(Foundation.NSString,System.IntPtr) M:Foundation.NSError.get_CFNetworkErrorDomain @@ -61788,12 +64098,14 @@ M:Foundation.NSErrorUserInfoValueProvider.Invoke(Foundation.NSError,Foundation.N M:Foundation.NSException.#ctor(Foundation.NSCoder) M:Foundation.NSException.#ctor(Foundation.NSObjectFlag) M:Foundation.NSException.#ctor(ObjCRuntime.NativeHandle) +M:Foundation.NSException.Copy(Foundation.NSZone) M:Foundation.NSException.EncodeTo(Foundation.NSCoder) M:Foundation.NSException.get_ClassHandle M:Foundation.NSExceptionError.#ctor(System.Exception) M:Foundation.NSExceptionError.get_Exception M:Foundation.NSExpression.#ctor(Foundation.NSObjectFlag) M:Foundation.NSExpression.#ctor(ObjCRuntime.NativeHandle) +M:Foundation.NSExpression.Copy(Foundation.NSZone) M:Foundation.NSExpression.EncodeTo(Foundation.NSCoder) M:Foundation.NSExpression.get_Arguments M:Foundation.NSExpression.get_Block @@ -61836,6 +64148,7 @@ M:Foundation.NSExtensionItem.#ctor M:Foundation.NSExtensionItem.#ctor(Foundation.NSCoder) M:Foundation.NSExtensionItem.#ctor(Foundation.NSObjectFlag) M:Foundation.NSExtensionItem.#ctor(ObjCRuntime.NativeHandle) +M:Foundation.NSExtensionItem.Copy(Foundation.NSZone) M:Foundation.NSExtensionItem.EncodeTo(Foundation.NSCoder) M:Foundation.NSExtensionItem.get_AttachmentsKey M:Foundation.NSExtensionItem.get_AttributedContentTextKey @@ -62127,8 +64440,11 @@ M:Foundation.NSFileWrapper.set_Filename(System.String) M:Foundation.NSFileWrapper.set_Icon(AppKit.NSImage) M:Foundation.NSFileWrapper.set_PreferredFilename(System.String) M:Foundation.NSFormatter.#ctor +M:Foundation.NSFormatter.#ctor(Foundation.NSCoder) M:Foundation.NSFormatter.#ctor(Foundation.NSObjectFlag) M:Foundation.NSFormatter.#ctor(ObjCRuntime.NativeHandle) +M:Foundation.NSFormatter.Copy(Foundation.NSZone) +M:Foundation.NSFormatter.EncodeTo(Foundation.NSCoder) M:Foundation.NSFormatter.get_ClassHandle M:Foundation.NSFormatter.GetAttributedString(Foundation.NSObject,AppKit.NSStringAttributes) M:Foundation.NSFormatter.GetAttributedString(Foundation.NSObject,UIKit.UIStringAttributes) @@ -62197,6 +64513,7 @@ M:Foundation.NSIndexPath.#ctor M:Foundation.NSIndexPath.#ctor(Foundation.NSCoder) M:Foundation.NSIndexPath.#ctor(Foundation.NSObjectFlag) M:Foundation.NSIndexPath.#ctor(ObjCRuntime.NativeHandle) +M:Foundation.NSIndexPath.Copy(Foundation.NSZone) M:Foundation.NSIndexPath.Create(System.Int32[]) M:Foundation.NSIndexPath.Create(System.IntPtr[]) M:Foundation.NSIndexPath.Create(System.UInt32[]) @@ -62219,16 +64536,19 @@ M:Foundation.NSIndexSet.#ctor(ObjCRuntime.NativeHandle) M:Foundation.NSIndexSet.#ctor(System.Int32) M:Foundation.NSIndexSet.#ctor(System.IntPtr) M:Foundation.NSIndexSet.#ctor(System.UInt32) +M:Foundation.NSIndexSet.Copy(Foundation.NSZone) M:Foundation.NSIndexSet.EncodeTo(Foundation.NSCoder) M:Foundation.NSIndexSet.FromArray(System.Int32[]) M:Foundation.NSIndexSet.FromArray(System.UInt32[]) M:Foundation.NSIndexSet.FromArray(System.UIntPtr[]) M:Foundation.NSIndexSet.get_ClassHandle M:Foundation.NSIndexSet.GetEnumerator +M:Foundation.NSIndexSet.MutableCopy(Foundation.NSZone) M:Foundation.NSIndexSet.ToArray M:Foundation.NSInflectionRule.#ctor(Foundation.NSCoder) M:Foundation.NSInflectionRule.#ctor(Foundation.NSObjectFlag) M:Foundation.NSInflectionRule.#ctor(ObjCRuntime.NativeHandle) +M:Foundation.NSInflectionRule.Copy(Foundation.NSZone) M:Foundation.NSInflectionRule.EncodeTo(Foundation.NSCoder) M:Foundation.NSInflectionRule.get_ClassHandle M:Foundation.NSInflectionRuleExplicit.#ctor @@ -62266,6 +64586,7 @@ M:Foundation.NSItemProvider.#ctor(Foundation.NSObjectFlag) M:Foundation.NSItemProvider.#ctor(Foundation.NSUrl,UniformTypeIdentifiers.UTType,System.Boolean,System.Boolean,Foundation.NSItemProviderRepresentationVisibility) M:Foundation.NSItemProvider.#ctor(ObjCRuntime.NativeHandle) M:Foundation.NSItemProvider.CanLoadObject(System.Type) +M:Foundation.NSItemProvider.Copy(Foundation.NSZone) M:Foundation.NSItemProvider.get_ClassHandle M:Foundation.NSItemProvider.get_ContainerFrame M:Foundation.NSItemProvider.get_ErrorDomain @@ -62438,6 +64759,7 @@ M:Foundation.NSLoadFromHtmlResult.set_AttributedString(Foundation.NSAttributedSt M:Foundation.NSLoadFromHtmlResult.set_Attributes(Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject}) M:Foundation.NSLocale.#ctor(Foundation.NSObjectFlag) M:Foundation.NSLocale.#ctor(ObjCRuntime.NativeHandle) +M:Foundation.NSLocale.Copy(Foundation.NSZone) M:Foundation.NSLocale.EncodeTo(Foundation.NSCoder) M:Foundation.NSLocale.get_AlternateQuotationBeginDelimiterKey M:Foundation.NSLocale.get_AlternateQuotationEndDelimiterKey @@ -62470,7 +64792,9 @@ M:Foundation.NSLock.#ctor M:Foundation.NSLock.#ctor(Foundation.NSObjectFlag) M:Foundation.NSLock.#ctor(ObjCRuntime.NativeHandle) M:Foundation.NSLock.get_ClassHandle +M:Foundation.NSLock.Lock M:Foundation.NSLock.set_Name(System.String) +M:Foundation.NSLock.Unlock M:Foundation.NSMachPort.#ctor M:Foundation.NSMachPort.#ctor(Foundation.NSCoder) M:Foundation.NSMachPort.#ctor(Foundation.NSObjectFlag) @@ -62500,6 +64824,7 @@ M:Foundation.NSMatchEnumerator.Invoke(Foundation.NSTextCheckingResult,Foundation M:Foundation.NSMeasurement`1.#ctor(Foundation.NSCoder) M:Foundation.NSMeasurement`1.#ctor(Foundation.NSObjectFlag) M:Foundation.NSMeasurement`1.#ctor(ObjCRuntime.NativeHandle) +M:Foundation.NSMeasurement`1.Copy(Foundation.NSZone) M:Foundation.NSMeasurement`1.EncodeTo(Foundation.NSCoder) M:Foundation.NSMeasurement`1.get_ClassHandle M:Foundation.NSMeasurementFormatter.#ctor @@ -62939,6 +65264,7 @@ M:Foundation.NSMorphology.#ctor M:Foundation.NSMorphology.#ctor(Foundation.NSCoder) M:Foundation.NSMorphology.#ctor(Foundation.NSObjectFlag) M:Foundation.NSMorphology.#ctor(ObjCRuntime.NativeHandle) +M:Foundation.NSMorphology.Copy(Foundation.NSZone) M:Foundation.NSMorphology.EncodeTo(Foundation.NSCoder) M:Foundation.NSMorphology.get_ClassHandle M:Foundation.NSMorphology.get_Unspecified @@ -62954,6 +65280,7 @@ M:Foundation.NSMorphologyCustomPronoun.#ctor M:Foundation.NSMorphologyCustomPronoun.#ctor(Foundation.NSCoder) M:Foundation.NSMorphologyCustomPronoun.#ctor(Foundation.NSObjectFlag) M:Foundation.NSMorphologyCustomPronoun.#ctor(ObjCRuntime.NativeHandle) +M:Foundation.NSMorphologyCustomPronoun.Copy(Foundation.NSZone) M:Foundation.NSMorphologyCustomPronoun.EncodeTo(Foundation.NSCoder) M:Foundation.NSMorphologyCustomPronoun.get_ClassHandle M:Foundation.NSMorphologyCustomPronoun.set_ObjectForm(System.String) @@ -62964,6 +65291,7 @@ M:Foundation.NSMorphologyCustomPronoun.set_SubjectForm(System.String) M:Foundation.NSMorphologyPronoun.#ctor(Foundation.NSCoder) M:Foundation.NSMorphologyPronoun.#ctor(Foundation.NSObjectFlag) M:Foundation.NSMorphologyPronoun.#ctor(ObjCRuntime.NativeHandle) +M:Foundation.NSMorphologyPronoun.Copy(Foundation.NSZone) M:Foundation.NSMorphologyPronoun.EncodeTo(Foundation.NSCoder) M:Foundation.NSMorphologyPronoun.get_ClassHandle M:Foundation.NSMutableArray.#ctor(Foundation.NSObjectFlag) @@ -63290,6 +65618,8 @@ M:Foundation.NSNetServiceEventArgs.set_MoreComing(System.Boolean) M:Foundation.NSNetServiceEventArgs.set_Service(Foundation.NSNetService) M:Foundation.NSNotification.#ctor(Foundation.NSObjectFlag) M:Foundation.NSNotification.#ctor(ObjCRuntime.NativeHandle) +M:Foundation.NSNotification.Copy(Foundation.NSZone) +M:Foundation.NSNotification.EncodeTo(Foundation.NSCoder) M:Foundation.NSNotification.get_ClassHandle M:Foundation.NSNotificationCenter.#ctor M:Foundation.NSNotificationCenter.#ctor(Foundation.NSObjectFlag) @@ -63309,6 +65639,7 @@ M:Foundation.NSNull.#ctor M:Foundation.NSNull.#ctor(Foundation.NSCoder) M:Foundation.NSNull.#ctor(Foundation.NSObjectFlag) M:Foundation.NSNull.#ctor(ObjCRuntime.NativeHandle) +M:Foundation.NSNull.Copy(Foundation.NSZone) M:Foundation.NSNull.EncodeTo(Foundation.NSCoder) M:Foundation.NSNull.get_ClassHandle M:Foundation.NSNull.get_Null @@ -63549,6 +65880,7 @@ M:Foundation.NSOrderedSet.#ctor(ObjCRuntime.NativeHandle) M:Foundation.NSOrderedSet.#ctor(System.Object[]) M:Foundation.NSOrderedSet.#ctor(System.String[]) M:Foundation.NSOrderedSet.Contains(System.Object) +M:Foundation.NSOrderedSet.Copy(Foundation.NSZone) M:Foundation.NSOrderedSet.EncodeTo(Foundation.NSCoder) M:Foundation.NSOrderedSet.Equals(System.Object) M:Foundation.NSOrderedSet.get_ClassHandle @@ -63556,6 +65888,7 @@ M:Foundation.NSOrderedSet.get_Item(System.IntPtr) M:Foundation.NSOrderedSet.GetEnumerator M:Foundation.NSOrderedSet.GetHashCode M:Foundation.NSOrderedSet.MakeNSOrderedSet``1(`0[]) +M:Foundation.NSOrderedSet.MutableCopy(Foundation.NSZone) M:Foundation.NSOrderedSet.op_Addition(Foundation.NSOrderedSet,Foundation.NSOrderedSet) M:Foundation.NSOrderedSet.op_Addition(Foundation.NSOrderedSet,Foundation.NSSet) M:Foundation.NSOrderedSet.op_Equality(Foundation.NSOrderedSet,Foundation.NSOrderedSet) @@ -63587,6 +65920,7 @@ M:Foundation.NSOrderedSet`1.op_Subtraction(Foundation.NSOrderedSet{`0},Foundatio M:Foundation.NSOrderedSet`1.ToArray M:Foundation.NSOrthography.#ctor(Foundation.NSObjectFlag) M:Foundation.NSOrthography.#ctor(ObjCRuntime.NativeHandle) +M:Foundation.NSOrthography.Copy(Foundation.NSZone) M:Foundation.NSOrthography.EncodeTo(Foundation.NSCoder) M:Foundation.NSOrthography.get_ClassHandle M:Foundation.NSOutputStream.#ctor(Foundation.NSObjectFlag) @@ -63609,6 +65943,7 @@ M:Foundation.NSPersonNameComponents.#ctor M:Foundation.NSPersonNameComponents.#ctor(Foundation.NSCoder) M:Foundation.NSPersonNameComponents.#ctor(Foundation.NSObjectFlag) M:Foundation.NSPersonNameComponents.#ctor(ObjCRuntime.NativeHandle) +M:Foundation.NSPersonNameComponents.Copy(Foundation.NSZone) M:Foundation.NSPersonNameComponents.EncodeTo(Foundation.NSCoder) M:Foundation.NSPersonNameComponents.get_ClassHandle M:Foundation.NSPersonNameComponents.set_FamilyName(System.String) @@ -63631,9 +65966,12 @@ M:Foundation.NSPipe.#ctor M:Foundation.NSPipe.#ctor(Foundation.NSObjectFlag) M:Foundation.NSPipe.#ctor(ObjCRuntime.NativeHandle) M:Foundation.NSPipe.get_ClassHandle +M:Foundation.NSPort.#ctor(Foundation.NSCoder) M:Foundation.NSPort.#ctor(Foundation.NSObjectFlag) M:Foundation.NSPort.#ctor(ObjCRuntime.NativeHandle) +M:Foundation.NSPort.Copy(Foundation.NSZone) M:Foundation.NSPort.Dispose(System.Boolean) +M:Foundation.NSPort.EncodeTo(Foundation.NSCoder) M:Foundation.NSPort.get_ClassHandle M:Foundation.NSPort.get_Delegate M:Foundation.NSPort.get_IsValid @@ -63659,6 +65997,7 @@ M:Foundation.NSPortNameServer.get_ClassHandle M:Foundation.NSPredicate.#ctor(Foundation.NSCoder) M:Foundation.NSPredicate.#ctor(Foundation.NSObjectFlag) M:Foundation.NSPredicate.#ctor(ObjCRuntime.NativeHandle) +M:Foundation.NSPredicate.Copy(Foundation.NSZone) M:Foundation.NSPredicate.EncodeTo(Foundation.NSCoder) M:Foundation.NSPredicate.FromFormat(System.String,Foundation.NSObject) M:Foundation.NSPredicate.FromFormat(System.String,Foundation.NSObject[]) @@ -63677,6 +66016,7 @@ M:Foundation.NSPredicateSupport_NSSet.FilterUsingPredicate(Foundation.NSSet,Foun M:Foundation.NSPresentationIntent.#ctor(Foundation.NSCoder) M:Foundation.NSPresentationIntent.#ctor(Foundation.NSObjectFlag) M:Foundation.NSPresentationIntent.#ctor(ObjCRuntime.NativeHandle) +M:Foundation.NSPresentationIntent.Copy(Foundation.NSZone) M:Foundation.NSPresentationIntent.EncodeTo(Foundation.NSCoder) M:Foundation.NSPresentationIntent.get_ClassHandle M:Foundation.NSProcessInfo_NSUserInformation.GetFullUserName(Foundation.NSProcessInfo) @@ -63757,9 +66097,13 @@ M:Foundation.NSPurgeableData.#ctor M:Foundation.NSPurgeableData.#ctor(Foundation.NSCoder) M:Foundation.NSPurgeableData.#ctor(Foundation.NSObjectFlag) M:Foundation.NSPurgeableData.#ctor(ObjCRuntime.NativeHandle) +M:Foundation.NSPurgeableData.BeginContentAccess M:Foundation.NSPurgeableData.Copy(Foundation.NSZone) +M:Foundation.NSPurgeableData.DiscardContentIfPossible M:Foundation.NSPurgeableData.EncodeTo(Foundation.NSCoder) +M:Foundation.NSPurgeableData.EndContentAccess M:Foundation.NSPurgeableData.get_ClassHandle +M:Foundation.NSPurgeableData.get_IsContentDiscarded M:Foundation.NSPurgeableData.MutableCopy(Foundation.NSZone) M:Foundation.NSRange.#ctor(System.IntPtr,System.IntPtr) M:Foundation.NSRange.Equals(Foundation.NSRange) @@ -63774,11 +66118,14 @@ M:Foundation.NSRecursiveLock.#ctor M:Foundation.NSRecursiveLock.#ctor(Foundation.NSObjectFlag) M:Foundation.NSRecursiveLock.#ctor(ObjCRuntime.NativeHandle) M:Foundation.NSRecursiveLock.get_ClassHandle +M:Foundation.NSRecursiveLock.Lock M:Foundation.NSRecursiveLock.set_Name(System.String) +M:Foundation.NSRecursiveLock.Unlock M:Foundation.NSRegularExpression.#ctor M:Foundation.NSRegularExpression.#ctor(Foundation.NSCoder) M:Foundation.NSRegularExpression.#ctor(Foundation.NSObjectFlag) M:Foundation.NSRegularExpression.#ctor(ObjCRuntime.NativeHandle) +M:Foundation.NSRegularExpression.Copy(Foundation.NSZone) M:Foundation.NSRegularExpression.EncodeTo(Foundation.NSCoder) M:Foundation.NSRegularExpression.get_ClassHandle M:Foundation.NSRelativeDateTimeFormatter.#ctor @@ -63807,6 +66154,7 @@ M:Foundation.NSRunLoopModeExtensions.GetConstants(Foundation.NSRunLoopMode[]) M:Foundation.NSRunLoopModeExtensions.GetValue(Foundation.NSString) M:Foundation.NSScriptCommand.#ctor(Foundation.NSObjectFlag) M:Foundation.NSScriptCommand.#ctor(ObjCRuntime.NativeHandle) +M:Foundation.NSScriptCommand.EncodeTo(Foundation.NSCoder) M:Foundation.NSScriptCommand.get_ClassHandle M:Foundation.NSScriptCommandArgumentDescription.#ctor M:Foundation.NSScriptCommandArgumentDescription.#ctor(Foundation.NSDictionary) @@ -63828,6 +66176,7 @@ M:Foundation.NSScriptCommandDescription.#ctor(Foundation.NSObjectFlag) M:Foundation.NSScriptCommandDescription.#ctor(ObjCRuntime.NativeHandle) M:Foundation.NSScriptCommandDescription.Create(System.String,System.String,Foundation.NSScriptCommandDescriptionDictionary) M:Foundation.NSScriptCommandDescription.CreateCommand +M:Foundation.NSScriptCommandDescription.EncodeTo(Foundation.NSCoder) M:Foundation.NSScriptCommandDescription.get_AppleEventClassCode M:Foundation.NSScriptCommandDescription.get_AppleEventCode M:Foundation.NSScriptCommandDescription.get_AppleEventCodeForReturnType @@ -63872,10 +66221,12 @@ M:Foundation.NSSet.#ctor(ObjCRuntime.NativeHandle) M:Foundation.NSSet.#ctor(System.Object[]) M:Foundation.NSSet.#ctor(System.String[]) M:Foundation.NSSet.Contains(System.Object) +M:Foundation.NSSet.Copy(Foundation.NSZone) M:Foundation.NSSet.EncodeTo(Foundation.NSCoder) M:Foundation.NSSet.get_ClassHandle M:Foundation.NSSet.GetEnumerator M:Foundation.NSSet.MakeNSObjectSet``1(`0[]) +M:Foundation.NSSet.MutableCopy(Foundation.NSZone) M:Foundation.NSSet.op_Addition(Foundation.NSSet,Foundation.NSOrderedSet) M:Foundation.NSSet.op_Addition(Foundation.NSSet,Foundation.NSSet) M:Foundation.NSSet.op_Subtraction(Foundation.NSSet,Foundation.NSOrderedSet) @@ -63899,6 +66250,7 @@ M:Foundation.NSSetEnumerator.Invoke(Foundation.NSObject,System.Boolean@) M:Foundation.NSSortDescriptor.#ctor M:Foundation.NSSortDescriptor.#ctor(Foundation.NSObjectFlag) M:Foundation.NSSortDescriptor.#ctor(ObjCRuntime.NativeHandle) +M:Foundation.NSSortDescriptor.Copy(Foundation.NSZone) M:Foundation.NSSortDescriptor.EncodeTo(Foundation.NSCoder) M:Foundation.NSSortDescriptor.get_ClassHandle M:Foundation.NSSortDescriptorSorting_NSMutableArray.SortUsingDescriptors(Foundation.NSMutableArray,Foundation.NSSortDescriptor[]) @@ -63967,6 +66319,7 @@ M:Foundation.NSString.#ctor(System.String,System.Int32,System.Int32) M:Foundation.NSString.#ctor(System.String) M:Foundation.NSString.BoundingRectWithSize(CoreGraphics.CGSize,Foundation.NSStringDrawingOptions,Foundation.NSDictionary) M:Foundation.NSString.CompareTo(Foundation.NSString) +M:Foundation.NSString.Copy(Foundation.NSZone) M:Foundation.NSString.CreateNative(System.String,System.Boolean) M:Foundation.NSString.CreateNative(System.String,System.Int32,System.Int32,System.Boolean) M:Foundation.NSString.CreateNative(System.String,System.Int32,System.Int32) @@ -64004,6 +66357,7 @@ M:Foundation.NSString.LoadDataAsync(System.String) M:Foundation.NSString.LocalizedFormat(Foundation.NSString,Foundation.NSObject[]) M:Foundation.NSString.LocalizedFormat(Foundation.NSString,System.Object[]) M:Foundation.NSString.LocalizedFormat(System.String,System.Object[]) +M:Foundation.NSString.MutableCopy(Foundation.NSZone) M:Foundation.NSString.op_Equality(Foundation.NSString,Foundation.NSString) M:Foundation.NSString.op_Explicit(System.String)~Foundation.NSString M:Foundation.NSString.op_Implicit(Foundation.NSString)~System.String @@ -64046,6 +66400,7 @@ M:Foundation.NSTask.set_TerminationHandler(System.Action{Foundation.NSTask}) M:Foundation.NSTermOfAddress.#ctor(Foundation.NSCoder) M:Foundation.NSTermOfAddress.#ctor(Foundation.NSObjectFlag) M:Foundation.NSTermOfAddress.#ctor(ObjCRuntime.NativeHandle) +M:Foundation.NSTermOfAddress.Copy(Foundation.NSZone) M:Foundation.NSTermOfAddress.EncodeTo(Foundation.NSCoder) M:Foundation.NSTermOfAddress.get_ClassHandle M:Foundation.NSTextChecking.get_AirlineKey @@ -64074,6 +66429,7 @@ M:Foundation.NSTextCheckingResult.#ctor(Foundation.NSCoder) M:Foundation.NSTextCheckingResult.#ctor(Foundation.NSObjectFlag) M:Foundation.NSTextCheckingResult.#ctor(ObjCRuntime.NativeHandle) M:Foundation.NSTextCheckingResult.AddressCheckingResult(Foundation.NSRange,Foundation.NSTextCheckingAddressComponents) +M:Foundation.NSTextCheckingResult.Copy(Foundation.NSZone) M:Foundation.NSTextCheckingResult.EncodeTo(Foundation.NSCoder) M:Foundation.NSTextCheckingResult.get_AddressComponents M:Foundation.NSTextCheckingResult.get_ClassHandle @@ -64120,6 +66476,7 @@ M:Foundation.NSTimer.set_Tolerance(System.Double) M:Foundation.NSTimeZone.#ctor(Foundation.NSCoder) M:Foundation.NSTimeZone.#ctor(Foundation.NSObjectFlag) M:Foundation.NSTimeZone.#ctor(ObjCRuntime.NativeHandle) +M:Foundation.NSTimeZone.Copy(Foundation.NSZone) M:Foundation.NSTimeZone.EncodeTo(Foundation.NSCoder) M:Foundation.NSTimeZone.get_ClassHandle M:Foundation.NSTimeZone.get_KnownTimeZoneNames @@ -64193,6 +66550,7 @@ M:Foundation.NSUndoManagerCloseUndoGroupEventArgs.get_Discardable M:Foundation.NSUnit.#ctor(Foundation.NSCoder) M:Foundation.NSUnit.#ctor(Foundation.NSObjectFlag) M:Foundation.NSUnit.#ctor(ObjCRuntime.NativeHandle) +M:Foundation.NSUnit.Copy(Foundation.NSZone) M:Foundation.NSUnit.EncodeTo(Foundation.NSCoder) M:Foundation.NSUnit.get_ClassHandle M:Foundation.NSUnitAcceleration.#ctor(Foundation.NSCoder) @@ -64366,6 +66724,7 @@ M:Foundation.NSUrl.#ctor(Foundation.NSCoder) M:Foundation.NSUrl.#ctor(Foundation.NSObjectFlag) M:Foundation.NSUrl.#ctor(ObjCRuntime.NativeHandle) M:Foundation.NSUrl.#ctor(System.String,System.String) +M:Foundation.NSUrl.Copy(Foundation.NSZone) M:Foundation.NSUrl.EncodeTo(Foundation.NSCoder) M:Foundation.NSUrl.Equals(Foundation.NSUrl) M:Foundation.NSUrl.FromFilename(System.String) @@ -64562,6 +66921,7 @@ M:Foundation.NSUrlCache.set_MemoryCapacity(System.UIntPtr) M:Foundation.NSUrlCache.set_SharedCache(Foundation.NSUrlCache) M:Foundation.NSUrlComponents.#ctor(Foundation.NSObjectFlag) M:Foundation.NSUrlComponents.#ctor(ObjCRuntime.NativeHandle) +M:Foundation.NSUrlComponents.Copy(Foundation.NSZone) M:Foundation.NSUrlComponents.get_ClassHandle M:Foundation.NSUrlComponents.set_EncodedHost(System.String) M:Foundation.NSUrlComponents.set_Fragment(System.String) @@ -64641,6 +67001,7 @@ M:Foundation.NSUrlCredential.#ctor(Foundation.NSCoder) M:Foundation.NSUrlCredential.#ctor(Foundation.NSObjectFlag) M:Foundation.NSUrlCredential.#ctor(ObjCRuntime.NativeHandle) M:Foundation.NSUrlCredential.#ctor(Security.SecIdentity,Security.SecCertificate[],Foundation.NSUrlCredentialPersistence) +M:Foundation.NSUrlCredential.Copy(Foundation.NSZone) M:Foundation.NSUrlCredential.EncodeTo(Foundation.NSCoder) M:Foundation.NSUrlCredential.FromIdentityCertificatesPersistance(Security.SecIdentity,Security.SecCertificate[],Foundation.NSUrlCredentialPersistence) M:Foundation.NSUrlCredential.FromTrust(Security.SecTrust) @@ -64697,6 +67058,7 @@ M:Foundation.NSUrlProtectionSpace.#ctor(Foundation.NSObjectFlag) M:Foundation.NSUrlProtectionSpace.#ctor(ObjCRuntime.NativeHandle) M:Foundation.NSUrlProtectionSpace.#ctor(System.String,System.Int32,System.String,System.String,System.String,System.Boolean) M:Foundation.NSUrlProtectionSpace.#ctor(System.String,System.Int32,System.String,System.String,System.String) +M:Foundation.NSUrlProtectionSpace.Copy(Foundation.NSZone) M:Foundation.NSUrlProtectionSpace.EncodeTo(Foundation.NSCoder) M:Foundation.NSUrlProtectionSpace.get_AuthenticationMethodClientCertificate M:Foundation.NSUrlProtectionSpace.get_AuthenticationMethodDefault @@ -64723,15 +67085,18 @@ M:Foundation.NSUrlQueryItem.#ctor M:Foundation.NSUrlQueryItem.#ctor(Foundation.NSCoder) M:Foundation.NSUrlQueryItem.#ctor(Foundation.NSObjectFlag) M:Foundation.NSUrlQueryItem.#ctor(ObjCRuntime.NativeHandle) +M:Foundation.NSUrlQueryItem.Copy(Foundation.NSZone) M:Foundation.NSUrlQueryItem.EncodeTo(Foundation.NSCoder) M:Foundation.NSUrlQueryItem.get_ClassHandle M:Foundation.NSUrlRequest.#ctor M:Foundation.NSUrlRequest.#ctor(Foundation.NSCoder) M:Foundation.NSUrlRequest.#ctor(Foundation.NSObjectFlag) M:Foundation.NSUrlRequest.#ctor(ObjCRuntime.NativeHandle) +M:Foundation.NSUrlRequest.Copy(Foundation.NSZone) M:Foundation.NSUrlRequest.EncodeTo(Foundation.NSCoder) M:Foundation.NSUrlRequest.get_ClassHandle M:Foundation.NSUrlRequest.get_Item(System.String) +M:Foundation.NSUrlRequest.MutableCopy(Foundation.NSZone) M:Foundation.NSUrlRequest.set_AllowsConstrainedNetworkAccess(System.Boolean) M:Foundation.NSUrlRequest.set_AllowsExpensiveNetworkAccess(System.Boolean) M:Foundation.NSUrlRequest.set_AssumesHttp3Capable(System.Boolean) @@ -64740,6 +67105,7 @@ M:Foundation.NSUrlResponse.#ctor M:Foundation.NSUrlResponse.#ctor(Foundation.NSCoder) M:Foundation.NSUrlResponse.#ctor(Foundation.NSObjectFlag) M:Foundation.NSUrlResponse.#ctor(ObjCRuntime.NativeHandle) +M:Foundation.NSUrlResponse.Copy(Foundation.NSZone) M:Foundation.NSUrlResponse.EncodeTo(Foundation.NSCoder) M:Foundation.NSUrlResponse.get_ClassHandle M:Foundation.NSUrlSession.#ctor(Foundation.NSObjectFlag) @@ -64785,6 +67151,7 @@ M:Foundation.NSUrlSessionCombinedTasks.set_Tasks(Foundation.NSUrlSessionTask[]) M:Foundation.NSUrlSessionConfiguration.#ctor(Foundation.NSObjectFlag) M:Foundation.NSUrlSessionConfiguration.#ctor(ObjCRuntime.NativeHandle) M:Foundation.NSUrlSessionConfiguration.BackgroundSessionConfiguration(System.String) +M:Foundation.NSUrlSessionConfiguration.Copy(Foundation.NSZone) M:Foundation.NSUrlSessionConfiguration.CreateBackgroundSessionConfiguration(System.String) M:Foundation.NSUrlSessionConfiguration.Dispose(System.Boolean) M:Foundation.NSUrlSessionConfiguration.get_ClassHandle @@ -64964,6 +67331,7 @@ M:Foundation.NSUrlSessionStreamTask.ReadDataAsync(System.UIntPtr,System.UIntPtr, M:Foundation.NSUrlSessionStreamTask.WriteDataAsync(Foundation.NSData,System.Double) M:Foundation.NSUrlSessionTask.#ctor(Foundation.NSObjectFlag) M:Foundation.NSUrlSessionTask.#ctor(ObjCRuntime.NativeHandle) +M:Foundation.NSUrlSessionTask.Copy(Foundation.NSZone) M:Foundation.NSUrlSessionTask.get_ClassHandle M:Foundation.NSUrlSessionTask.get_Delegate M:Foundation.NSUrlSessionTask.get_TransferSizeUnknown @@ -65142,6 +67510,7 @@ M:Foundation.NSUserDefaults.SetString(System.String,System.String) M:Foundation.NSUserNotification.#ctor(Foundation.NSCoder) M:Foundation.NSUserNotification.#ctor(Foundation.NSObjectFlag) M:Foundation.NSUserNotification.#ctor(ObjCRuntime.NativeHandle) +M:Foundation.NSUserNotification.Copy(Foundation.NSZone) M:Foundation.NSUserNotification.EncodeTo(Foundation.NSCoder) M:Foundation.NSUserNotification.get_ClassHandle M:Foundation.NSUserNotification.get_NSUserNotificationDefaultSoundName @@ -65166,6 +67535,7 @@ M:Foundation.NSUserNotification.set_UserInfo(Foundation.NSDictionary) M:Foundation.NSUserNotificationAction.#ctor M:Foundation.NSUserNotificationAction.#ctor(Foundation.NSObjectFlag) M:Foundation.NSUserNotificationAction.#ctor(ObjCRuntime.NativeHandle) +M:Foundation.NSUserNotificationAction.Copy(Foundation.NSZone) M:Foundation.NSUserNotificationAction.get_ClassHandle M:Foundation.NSUserNotificationCenter.#ctor(Foundation.NSObjectFlag) M:Foundation.NSUserNotificationCenter.#ctor(ObjCRuntime.NativeHandle) @@ -65194,11 +67564,13 @@ M:Foundation.NSUuid.#ctor(Foundation.NSCoder) M:Foundation.NSUuid.#ctor(Foundation.NSObjectFlag) M:Foundation.NSUuid.#ctor(ObjCRuntime.NativeHandle) M:Foundation.NSUuid.#ctor(System.Byte[]) +M:Foundation.NSUuid.Copy(Foundation.NSZone) M:Foundation.NSUuid.EncodeTo(Foundation.NSCoder) M:Foundation.NSUuid.get_ClassHandle M:Foundation.NSUuid.GetBytes M:Foundation.NSValue.#ctor(Foundation.NSObjectFlag) M:Foundation.NSValue.#ctor(ObjCRuntime.NativeHandle) +M:Foundation.NSValue.Copy(Foundation.NSZone) M:Foundation.NSValue.EncodeTo(Foundation.NSCoder) M:Foundation.NSValue.FromCATransform3D(CoreAnimation.CATransform3D) M:Foundation.NSValue.FromCGAffineTransform(CoreGraphics.CGAffineTransform) @@ -66349,6 +68721,7 @@ M:GameKit.GKAccessPoint.set_ParentWindow(AppKit.NSWindow) M:GameKit.GKAccessPoint.set_ParentWindow(UIKit.UIWindow) M:GameKit.GKAccessPoint.set_ShowHighlights(System.Boolean) M:GameKit.GKAchievement.#ctor +M:GameKit.GKAchievement.#ctor(Foundation.NSCoder) M:GameKit.GKAchievement.#ctor(Foundation.NSObjectFlag) M:GameKit.GKAchievement.#ctor(ObjCRuntime.NativeHandle) M:GameKit.GKAchievement.ChallengeComposeControllerAsync(System.String,GameKit.GKPlayer[],AppKit.NSViewController@) @@ -66357,6 +68730,7 @@ M:GameKit.GKAchievement.ChallengeComposeControllerAsync(System.String,GameKit.GK M:GameKit.GKAchievement.ChallengeComposeControllerWithMessageAsync(System.String,GameKit.GKPlayer[],AppKit.NSViewController@) M:GameKit.GKAchievement.ChallengeComposeControllerWithMessageAsync(System.String,GameKit.GKPlayer[],UIKit.UIViewController@) M:GameKit.GKAchievement.ChallengeComposeControllerWithMessageAsync(System.String,GameKit.GKPlayer[]) +M:GameKit.GKAchievement.EncodeTo(Foundation.NSCoder) M:GameKit.GKAchievement.get_ClassHandle M:GameKit.GKAchievement.get_Completed M:GameKit.GKAchievement.get_Hidden @@ -66377,8 +68751,10 @@ M:GameKit.GKAchievementChallenge.#ctor(Foundation.NSObjectFlag) M:GameKit.GKAchievementChallenge.#ctor(ObjCRuntime.NativeHandle) M:GameKit.GKAchievementChallenge.get_ClassHandle M:GameKit.GKAchievementDescription.#ctor +M:GameKit.GKAchievementDescription.#ctor(Foundation.NSCoder) M:GameKit.GKAchievementDescription.#ctor(Foundation.NSObjectFlag) M:GameKit.GKAchievementDescription.#ctor(ObjCRuntime.NativeHandle) +M:GameKit.GKAchievementDescription.EncodeTo(Foundation.NSCoder) M:GameKit.GKAchievementDescription.get_ClassHandle M:GameKit.GKAchievementDescription.get_Hidden M:GameKit.GKAchievementDescription.get_Replayable @@ -66425,8 +68801,10 @@ M:GameKit.GKCategoryResult.get_Titles M:GameKit.GKCategoryResult.set_Categories(System.String[]) M:GameKit.GKCategoryResult.set_Titles(System.String[]) M:GameKit.GKChallenge.#ctor +M:GameKit.GKChallenge.#ctor(Foundation.NSCoder) M:GameKit.GKChallenge.#ctor(Foundation.NSObjectFlag) M:GameKit.GKChallenge.#ctor(ObjCRuntime.NativeHandle) +M:GameKit.GKChallenge.EncodeTo(Foundation.NSCoder) M:GameKit.GKChallenge.get_ClassHandle M:GameKit.GKChallenge.LoadReceivedChallengesAsync M:GameKit.GKChallenge.ToString @@ -66750,8 +69128,10 @@ M:GameKit.GKLeaderboardScore.set_LeaderboardId(System.String) M:GameKit.GKLeaderboardScore.set_Player(GameKit.GKPlayer) M:GameKit.GKLeaderboardScore.set_Value(System.IntPtr) M:GameKit.GKLeaderboardSet.#ctor +M:GameKit.GKLeaderboardSet.#ctor(Foundation.NSCoder) M:GameKit.GKLeaderboardSet.#ctor(Foundation.NSObjectFlag) M:GameKit.GKLeaderboardSet.#ctor(ObjCRuntime.NativeHandle) +M:GameKit.GKLeaderboardSet.EncodeTo(Foundation.NSCoder) M:GameKit.GKLeaderboardSet.get_ClassHandle M:GameKit.GKLeaderboardSet.LoadImageAsync M:GameKit.GKLeaderboardSet.LoadLeaderboardsAsync @@ -67077,6 +69457,7 @@ M:GameKit.GKQueryHandler.Invoke(System.IntPtr,Foundation.NSError) M:GameKit.GKSavedGame.#ctor M:GameKit.GKSavedGame.#ctor(Foundation.NSObjectFlag) M:GameKit.GKSavedGame.#ctor(ObjCRuntime.NativeHandle) +M:GameKit.GKSavedGame.Copy(Foundation.NSZone) M:GameKit.GKSavedGame.get_ClassHandle M:GameKit.GKSavedGame.LoadDataAsync M:GameKit.GKSavedGameListener_Extensions.DidModifySavedGame(GameKit.IGKSavedGameListener,GameKit.GKPlayer,GameKit.GKSavedGame) @@ -67087,12 +69468,14 @@ M:GameKit.GKSavedGameListener.#ctor(ObjCRuntime.NativeHandle) M:GameKit.GKSavedGameListener.DidModifySavedGame(GameKit.GKPlayer,GameKit.GKSavedGame) M:GameKit.GKSavedGameListener.HasConflictingSavedGames(GameKit.GKPlayer,GameKit.GKSavedGame[]) M:GameKit.GKScore.#ctor +M:GameKit.GKScore.#ctor(Foundation.NSCoder) M:GameKit.GKScore.#ctor(Foundation.NSObjectFlag) M:GameKit.GKScore.#ctor(ObjCRuntime.NativeHandle) M:GameKit.GKScore.#ctor(System.String) M:GameKit.GKScore.ChallengeComposeControllerAsync(System.String,GameKit.GKPlayer[],AppKit.NSViewController@) M:GameKit.GKScore.ChallengeComposeControllerAsync(System.String,GameKit.GKPlayer[],UIKit.UIViewController@) M:GameKit.GKScore.ChallengeComposeControllerAsync(System.String,GameKit.GKPlayer[]) +M:GameKit.GKScore.EncodeTo(Foundation.NSCoder) M:GameKit.GKScore.get_ClassHandle M:GameKit.GKScore.ReportLeaderboardScoresAsync(GameKit.GKLeaderboardScore[],GameKit.GKChallenge[]) M:GameKit.GKScore.ReportScoreAsync @@ -67369,6 +69752,7 @@ M:GameplayKit.GKARC4RandomSource.set_Seed(Foundation.NSData) M:GameplayKit.GKBehavior.#ctor M:GameplayKit.GKBehavior.#ctor(Foundation.NSObjectFlag) M:GameplayKit.GKBehavior.#ctor(ObjCRuntime.NativeHandle) +M:GameplayKit.GKBehavior.Copy(Foundation.NSZone) M:GameplayKit.GKBehavior.get_ClassHandle M:GameplayKit.GKBehavior.get_Item(GameplayKit.GKGoal) M:GameplayKit.GKBehavior.get_Item(System.UIntPtr) @@ -67398,6 +69782,7 @@ M:GameplayKit.GKComponent.#ctor M:GameplayKit.GKComponent.#ctor(Foundation.NSCoder) M:GameplayKit.GKComponent.#ctor(Foundation.NSObjectFlag) M:GameplayKit.GKComponent.#ctor(ObjCRuntime.NativeHandle) +M:GameplayKit.GKComponent.Copy(Foundation.NSZone) M:GameplayKit.GKComponent.Dispose(System.Boolean) M:GameplayKit.GKComponent.EncodeTo(Foundation.NSCoder) M:GameplayKit.GKComponent.get_ClassHandle @@ -67435,6 +69820,7 @@ M:GameplayKit.GKDecisionTree.set_RandomSource(GameplayKit.GKRandomSource) M:GameplayKit.GKEntity.#ctor(Foundation.NSCoder) M:GameplayKit.GKEntity.#ctor(Foundation.NSObjectFlag) M:GameplayKit.GKEntity.#ctor(ObjCRuntime.NativeHandle) +M:GameplayKit.GKEntity.Copy(Foundation.NSZone) M:GameplayKit.GKEntity.EncodeTo(Foundation.NSCoder) M:GameplayKit.GKEntity.get_ClassHandle M:GameplayKit.GKEntity.GetComponent(System.Type) @@ -67450,11 +69836,13 @@ M:GameplayKit.GKGaussianDistribution.get_ClassHandle M:GameplayKit.GKGoal.#ctor M:GameplayKit.GKGoal.#ctor(Foundation.NSObjectFlag) M:GameplayKit.GKGoal.#ctor(ObjCRuntime.NativeHandle) +M:GameplayKit.GKGoal.Copy(Foundation.NSZone) M:GameplayKit.GKGoal.get_ClassHandle M:GameplayKit.GKGraph.#ctor M:GameplayKit.GKGraph.#ctor(Foundation.NSCoder) M:GameplayKit.GKGraph.#ctor(Foundation.NSObjectFlag) M:GameplayKit.GKGraph.#ctor(ObjCRuntime.NativeHandle) +M:GameplayKit.GKGraph.Copy(Foundation.NSZone) M:GameplayKit.GKGraph.EncodeTo(Foundation.NSCoder) M:GameplayKit.GKGraph.get_ClassHandle M:GameplayKit.GKGraphNode.#ctor @@ -67524,6 +69912,9 @@ M:GameplayKit.GKMinMaxStrategist.#ctor M:GameplayKit.GKMinMaxStrategist.#ctor(Foundation.NSObjectFlag) M:GameplayKit.GKMinMaxStrategist.#ctor(ObjCRuntime.NativeHandle) M:GameplayKit.GKMinMaxStrategist.get_ClassHandle +M:GameplayKit.GKMinMaxStrategist.get_GameModel +M:GameplayKit.GKMinMaxStrategist.get_RandomSource +M:GameplayKit.GKMinMaxStrategist.GetBestMoveForActivePlayer M:GameplayKit.GKMinMaxStrategist.set_GameModel(GameplayKit.IGKGameModel) M:GameplayKit.GKMinMaxStrategist.set_MaxLookAheadDepth(System.IntPtr) M:GameplayKit.GKMinMaxStrategist.set_RandomSource(GameplayKit.IGKRandom) @@ -67531,6 +69922,9 @@ M:GameplayKit.GKMonteCarloStrategist.#ctor M:GameplayKit.GKMonteCarloStrategist.#ctor(Foundation.NSObjectFlag) M:GameplayKit.GKMonteCarloStrategist.#ctor(ObjCRuntime.NativeHandle) M:GameplayKit.GKMonteCarloStrategist.get_ClassHandle +M:GameplayKit.GKMonteCarloStrategist.get_GameModel +M:GameplayKit.GKMonteCarloStrategist.get_RandomSource +M:GameplayKit.GKMonteCarloStrategist.GetBestMoveForActivePlayer M:GameplayKit.GKMonteCarloStrategist.set_Budget(System.UIntPtr) M:GameplayKit.GKMonteCarloStrategist.set_ExplorationParameter(System.UIntPtr) M:GameplayKit.GKMonteCarloStrategist.set_GameModel(GameplayKit.IGKGameModel) @@ -67607,8 +70001,13 @@ M:GameplayKit.GKRandomDistribution.#ctor(ObjCRuntime.NativeHandle) M:GameplayKit.GKRandomDistribution.get_ClassHandle M:GameplayKit.GKRandomSource.#ctor(Foundation.NSObjectFlag) M:GameplayKit.GKRandomSource.#ctor(ObjCRuntime.NativeHandle) +M:GameplayKit.GKRandomSource.Copy(Foundation.NSZone) M:GameplayKit.GKRandomSource.EncodeTo(Foundation.NSCoder) M:GameplayKit.GKRandomSource.get_ClassHandle +M:GameplayKit.GKRandomSource.GetNextBool +M:GameplayKit.GKRandomSource.GetNextInt +M:GameplayKit.GKRandomSource.GetNextInt(System.UIntPtr) +M:GameplayKit.GKRandomSource.GetNextUniform M:GameplayKit.GKRidgedNoiseSource.#ctor(Foundation.NSObjectFlag) M:GameplayKit.GKRidgedNoiseSource.#ctor(ObjCRuntime.NativeHandle) M:GameplayKit.GKRidgedNoiseSource.get_ClassHandle @@ -67628,6 +70027,7 @@ M:GameplayKit.GKScene.#ctor M:GameplayKit.GKScene.#ctor(Foundation.NSCoder) M:GameplayKit.GKScene.#ctor(Foundation.NSObjectFlag) M:GameplayKit.GKScene.#ctor(ObjCRuntime.NativeHandle) +M:GameplayKit.GKScene.Copy(Foundation.NSZone) M:GameplayKit.GKScene.Dispose(System.Boolean) M:GameplayKit.GKScene.EncodeTo(Foundation.NSCoder) M:GameplayKit.GKScene.get_ClassHandle @@ -67636,6 +70036,8 @@ M:GameplayKit.GKSCNNodeComponent.#ctor M:GameplayKit.GKSCNNodeComponent.#ctor(Foundation.NSCoder) M:GameplayKit.GKSCNNodeComponent.#ctor(Foundation.NSObjectFlag) M:GameplayKit.GKSCNNodeComponent.#ctor(ObjCRuntime.NativeHandle) +M:GameplayKit.GKSCNNodeComponent.AgentDidUpdate(GameplayKit.GKAgent) +M:GameplayKit.GKSCNNodeComponent.AgentWillUpdate(GameplayKit.GKAgent) M:GameplayKit.GKSCNNodeComponent.get_ClassHandle M:GameplayKit.GKShuffledDistribution.#ctor(Foundation.NSObjectFlag) M:GameplayKit.GKShuffledDistribution.#ctor(GameplayKit.IGKRandom,System.IntPtr,System.IntPtr) @@ -67645,6 +70047,8 @@ M:GameplayKit.GKSKNodeComponent.#ctor M:GameplayKit.GKSKNodeComponent.#ctor(Foundation.NSCoder) M:GameplayKit.GKSKNodeComponent.#ctor(Foundation.NSObjectFlag) M:GameplayKit.GKSKNodeComponent.#ctor(ObjCRuntime.NativeHandle) +M:GameplayKit.GKSKNodeComponent.AgentDidUpdate(GameplayKit.GKAgent) +M:GameplayKit.GKSKNodeComponent.AgentWillUpdate(GameplayKit.GKAgent) M:GameplayKit.GKSKNodeComponent.get_ClassHandle M:GameplayKit.GKSKNodeComponent.set_Node(SpriteKit.SKNode) M:GameplayKit.GKSphereObstacle.#ctor(Foundation.NSObjectFlag) @@ -67776,9 +70180,17 @@ M:GLKit.GLKMesh.get_ClassHandle M:GLKit.GLKMeshBuffer.#ctor(Foundation.NSObjectFlag) M:GLKit.GLKMeshBuffer.#ctor(ObjCRuntime.NativeHandle) M:GLKit.GLKMeshBuffer.Copy(Foundation.NSZone) +M:GLKit.GLKMeshBuffer.FillData(Foundation.NSData,System.UIntPtr) M:GLKit.GLKMeshBuffer.get_ClassHandle +M:GLKit.GLKMeshBuffer.get_Map M:GLKit.GLKMeshBufferAllocator.#ctor(Foundation.NSObjectFlag) M:GLKit.GLKMeshBufferAllocator.#ctor(ObjCRuntime.NativeHandle) +M:GLKit.GLKMeshBufferAllocator.CreateBuffer(Foundation.NSData,ModelIO.MDLMeshBufferType) +M:GLKit.GLKMeshBufferAllocator.CreateBuffer(ModelIO.IMDLMeshBufferZone,Foundation.NSData,ModelIO.MDLMeshBufferType) +M:GLKit.GLKMeshBufferAllocator.CreateBuffer(ModelIO.IMDLMeshBufferZone,System.UIntPtr,ModelIO.MDLMeshBufferType) +M:GLKit.GLKMeshBufferAllocator.CreateBuffer(System.UIntPtr,ModelIO.MDLMeshBufferType) +M:GLKit.GLKMeshBufferAllocator.CreateZone(Foundation.NSNumber[],Foundation.NSNumber[]) +M:GLKit.GLKMeshBufferAllocator.CreateZone(System.UIntPtr) M:GLKit.GLKMeshBufferAllocator.get_ClassHandle M:GLKit.GLKModelError.get_Domain M:GLKit.GLKModelError.get_Key @@ -67807,6 +70219,7 @@ M:GLKit.GLKSubmesh.get_ClassHandle M:GLKit.GLKTextureInfo.#ctor M:GLKit.GLKTextureInfo.#ctor(Foundation.NSObjectFlag) M:GLKit.GLKTextureInfo.#ctor(ObjCRuntime.NativeHandle) +M:GLKit.GLKTextureInfo.Copy(Foundation.NSZone) M:GLKit.GLKTextureInfo.get_ClassHandle M:GLKit.GLKTextureLoader.#ctor M:GLKit.GLKTextureLoader.#ctor(Foundation.NSObjectFlag) @@ -67866,6 +70279,7 @@ M:GLKit.GLKTextureOperations.set_SRGB(System.Nullable{System.Boolean}) M:GLKit.GLKVertexAttributeParameters.FromVertexFormat(ModelIO.MDLVertexFormat) M:GLKit.GLKView.#ctor M:GLKit.GLKView.#ctor(CoreGraphics.CGRect) +M:GLKit.GLKView.#ctor(Foundation.NSCoder) M:GLKit.GLKView.#ctor(Foundation.NSObjectFlag) M:GLKit.GLKView.#ctor(ObjCRuntime.NativeHandle) M:GLKit.GLKView.add_DrawInRect(System.EventHandler{GLKit.GLKViewDrawEventArgs}) @@ -67890,10 +70304,12 @@ M:GLKit.GLKView.set_DrawableStencilFormat(GLKit.GLKViewDrawableStencilFormat) M:GLKit.GLKView.set_EnableSetNeedsDisplay(System.Boolean) M:GLKit.GLKView.set_WeakDelegate(Foundation.NSObject) M:GLKit.GLKViewController.#ctor +M:GLKit.GLKViewController.#ctor(Foundation.NSCoder) M:GLKit.GLKViewController.#ctor(Foundation.NSObjectFlag) M:GLKit.GLKViewController.#ctor(ObjCRuntime.NativeHandle) M:GLKit.GLKViewController.#ctor(System.String,Foundation.NSBundle) M:GLKit.GLKViewController.Dispose(System.Boolean) +M:GLKit.GLKViewController.DrawInRect(GLKit.GLKView,CoreGraphics.CGRect) M:GLKit.GLKViewController.get_ClassHandle M:GLKit.GLKViewController.get_Delegate M:GLKit.GLKViewController.get_Paused @@ -67923,12 +70339,14 @@ M:GLKit.IGLKViewDelegate.DrawInRect(GLKit.GLKView,CoreGraphics.CGRect) M:HealthKit.HKActivityMoveModeObject.#ctor(Foundation.NSCoder) M:HealthKit.HKActivityMoveModeObject.#ctor(Foundation.NSObjectFlag) M:HealthKit.HKActivityMoveModeObject.#ctor(ObjCRuntime.NativeHandle) +M:HealthKit.HKActivityMoveModeObject.Copy(Foundation.NSZone) M:HealthKit.HKActivityMoveModeObject.EncodeTo(Foundation.NSCoder) M:HealthKit.HKActivityMoveModeObject.get_ClassHandle M:HealthKit.HKActivitySummary.#ctor M:HealthKit.HKActivitySummary.#ctor(Foundation.NSCoder) M:HealthKit.HKActivitySummary.#ctor(Foundation.NSObjectFlag) M:HealthKit.HKActivitySummary.#ctor(ObjCRuntime.NativeHandle) +M:HealthKit.HKActivitySummary.Copy(Foundation.NSZone) M:HealthKit.HKActivitySummary.EncodeTo(Foundation.NSCoder) M:HealthKit.HKActivitySummary.get_ClassHandle M:HealthKit.HKActivitySummary.set_ActiveEnergyBurned(HealthKit.HKQuantity) @@ -67968,6 +70386,7 @@ M:HealthKit.HKAppleWalkingSteadiness.TryGetClassification(HealthKit.HKQuantity,S M:HealthKit.HKAttachment.#ctor(Foundation.NSCoder) M:HealthKit.HKAttachment.#ctor(Foundation.NSObjectFlag) M:HealthKit.HKAttachment.#ctor(ObjCRuntime.NativeHandle) +M:HealthKit.HKAttachment.Copy(Foundation.NSZone) M:HealthKit.HKAttachment.EncodeTo(Foundation.NSCoder) M:HealthKit.HKAttachment.get_ClassHandle M:HealthKit.HKAttachmentStore.#ctor @@ -68006,12 +70425,14 @@ M:HealthKit.HKBiologicalSexObject.#ctor M:HealthKit.HKBiologicalSexObject.#ctor(Foundation.NSCoder) M:HealthKit.HKBiologicalSexObject.#ctor(Foundation.NSObjectFlag) M:HealthKit.HKBiologicalSexObject.#ctor(ObjCRuntime.NativeHandle) +M:HealthKit.HKBiologicalSexObject.Copy(Foundation.NSZone) M:HealthKit.HKBiologicalSexObject.EncodeTo(Foundation.NSCoder) M:HealthKit.HKBiologicalSexObject.get_ClassHandle M:HealthKit.HKBloodTypeObject.#ctor M:HealthKit.HKBloodTypeObject.#ctor(Foundation.NSCoder) M:HealthKit.HKBloodTypeObject.#ctor(Foundation.NSObjectFlag) M:HealthKit.HKBloodTypeObject.#ctor(ObjCRuntime.NativeHandle) +M:HealthKit.HKBloodTypeObject.Copy(Foundation.NSZone) M:HealthKit.HKBloodTypeObject.EncodeTo(Foundation.NSCoder) M:HealthKit.HKBloodTypeObject.get_ClassHandle M:HealthKit.HKCategorySample.#ctor(Foundation.NSCoder) @@ -68046,6 +70467,7 @@ M:HealthKit.HKCharacteristicTypeIdentifierExtensions.GetValue(Foundation.NSStrin M:HealthKit.HKClinicalRecord.#ctor(Foundation.NSCoder) M:HealthKit.HKClinicalRecord.#ctor(Foundation.NSObjectFlag) M:HealthKit.HKClinicalRecord.#ctor(ObjCRuntime.NativeHandle) +M:HealthKit.HKClinicalRecord.Copy(Foundation.NSZone) M:HealthKit.HKClinicalRecord.EncodeTo(Foundation.NSCoder) M:HealthKit.HKClinicalRecord.get_ClassHandle M:HealthKit.HKClinicalType.#ctor(Foundation.NSCoder) @@ -68057,11 +70479,13 @@ M:HealthKit.HKClinicalTypeIdentifierExtensions.GetValue(Foundation.NSString) M:HealthKit.HKContactsLensSpecification.#ctor(Foundation.NSCoder) M:HealthKit.HKContactsLensSpecification.#ctor(Foundation.NSObjectFlag) M:HealthKit.HKContactsLensSpecification.#ctor(ObjCRuntime.NativeHandle) +M:HealthKit.HKContactsLensSpecification.Copy(Foundation.NSZone) M:HealthKit.HKContactsLensSpecification.EncodeTo(Foundation.NSCoder) M:HealthKit.HKContactsLensSpecification.get_ClassHandle M:HealthKit.HKContactsPrescription.#ctor(Foundation.NSCoder) M:HealthKit.HKContactsPrescription.#ctor(Foundation.NSObjectFlag) M:HealthKit.HKContactsPrescription.#ctor(ObjCRuntime.NativeHandle) +M:HealthKit.HKContactsPrescription.Copy(Foundation.NSZone) M:HealthKit.HKContactsPrescription.EncodeTo(Foundation.NSCoder) M:HealthKit.HKContactsPrescription.get_ClassHandle M:HealthKit.HKCorrelation.#ctor(Foundation.NSCoder) @@ -68106,6 +70530,7 @@ M:HealthKit.HKDetailedCdaErrors.get_ValidationError M:HealthKit.HKDevice.#ctor(Foundation.NSCoder) M:HealthKit.HKDevice.#ctor(Foundation.NSObjectFlag) M:HealthKit.HKDevice.#ctor(ObjCRuntime.NativeHandle) +M:HealthKit.HKDevice.Copy(Foundation.NSZone) M:HealthKit.HKDevice.EncodeTo(Foundation.NSCoder) M:HealthKit.HKDevice.get_ClassHandle M:HealthKit.HKDevicePropertyKey.get_FirmwareVersion @@ -68151,6 +70576,7 @@ M:HealthKit.HKElectrocardiogramType.#ctor(ObjCRuntime.NativeHandle) M:HealthKit.HKElectrocardiogramType.get_ClassHandle M:HealthKit.HKElectrocardiogramVoltageMeasurement.#ctor(Foundation.NSObjectFlag) M:HealthKit.HKElectrocardiogramVoltageMeasurement.#ctor(ObjCRuntime.NativeHandle) +M:HealthKit.HKElectrocardiogramVoltageMeasurement.Copy(Foundation.NSZone) M:HealthKit.HKElectrocardiogramVoltageMeasurement.get_ClassHandle M:HealthKit.HKErrorCodeExtensions.GetDomain(HealthKit.HKErrorCode) M:HealthKit.HKFhirReleaseExtensions.GetConstant(HealthKit.HKFhirRelease) @@ -68158,6 +70584,7 @@ M:HealthKit.HKFhirReleaseExtensions.GetValue(Foundation.NSString) M:HealthKit.HKFhirResource.#ctor(Foundation.NSCoder) M:HealthKit.HKFhirResource.#ctor(Foundation.NSObjectFlag) M:HealthKit.HKFhirResource.#ctor(ObjCRuntime.NativeHandle) +M:HealthKit.HKFhirResource.Copy(Foundation.NSZone) M:HealthKit.HKFhirResource.EncodeTo(Foundation.NSCoder) M:HealthKit.HKFhirResource.get_ClassHandle M:HealthKit.HKFhirResource.get_ResourceType @@ -68166,22 +70593,26 @@ M:HealthKit.HKFhirResourceTypeExtensions.GetValue(Foundation.NSString) M:HealthKit.HKFhirVersion.#ctor(Foundation.NSCoder) M:HealthKit.HKFhirVersion.#ctor(Foundation.NSObjectFlag) M:HealthKit.HKFhirVersion.#ctor(ObjCRuntime.NativeHandle) +M:HealthKit.HKFhirVersion.Copy(Foundation.NSZone) M:HealthKit.HKFhirVersion.EncodeTo(Foundation.NSCoder) M:HealthKit.HKFhirVersion.get_ClassHandle M:HealthKit.HKFitzpatrickSkinTypeObject.#ctor M:HealthKit.HKFitzpatrickSkinTypeObject.#ctor(Foundation.NSCoder) M:HealthKit.HKFitzpatrickSkinTypeObject.#ctor(Foundation.NSObjectFlag) M:HealthKit.HKFitzpatrickSkinTypeObject.#ctor(ObjCRuntime.NativeHandle) +M:HealthKit.HKFitzpatrickSkinTypeObject.Copy(Foundation.NSZone) M:HealthKit.HKFitzpatrickSkinTypeObject.EncodeTo(Foundation.NSCoder) M:HealthKit.HKFitzpatrickSkinTypeObject.get_ClassHandle M:HealthKit.HKGlassesLensSpecification.#ctor(Foundation.NSCoder) M:HealthKit.HKGlassesLensSpecification.#ctor(Foundation.NSObjectFlag) M:HealthKit.HKGlassesLensSpecification.#ctor(ObjCRuntime.NativeHandle) +M:HealthKit.HKGlassesLensSpecification.Copy(Foundation.NSZone) M:HealthKit.HKGlassesLensSpecification.EncodeTo(Foundation.NSCoder) M:HealthKit.HKGlassesLensSpecification.get_ClassHandle M:HealthKit.HKGlassesPrescription.#ctor(Foundation.NSCoder) M:HealthKit.HKGlassesPrescription.#ctor(Foundation.NSObjectFlag) M:HealthKit.HKGlassesPrescription.#ctor(ObjCRuntime.NativeHandle) +M:HealthKit.HKGlassesPrescription.Copy(Foundation.NSZone) M:HealthKit.HKGlassesPrescription.EncodeTo(Foundation.NSCoder) M:HealthKit.HKGlassesPrescription.get_ClassHandle M:HealthKit.HKHealthStore.#ctor @@ -68422,6 +70853,7 @@ M:HealthKit.HKObject.get_Metadata M:HealthKit.HKObjectType.#ctor(Foundation.NSCoder) M:HealthKit.HKObjectType.#ctor(Foundation.NSObjectFlag) M:HealthKit.HKObjectType.#ctor(ObjCRuntime.NativeHandle) +M:HealthKit.HKObjectType.Copy(Foundation.NSZone) M:HealthKit.HKObjectType.EncodeTo(Foundation.NSCoder) M:HealthKit.HKObjectType.get_ClassHandle M:HealthKit.HKObjectType.GetClinicalType(HealthKit.HKClinicalTypeIdentifier) @@ -68492,6 +70924,7 @@ M:HealthKit.HKPrescriptionType.get_ClassHandle M:HealthKit.HKQuantity.#ctor(Foundation.NSCoder) M:HealthKit.HKQuantity.#ctor(Foundation.NSObjectFlag) M:HealthKit.HKQuantity.#ctor(ObjCRuntime.NativeHandle) +M:HealthKit.HKQuantity.Copy(Foundation.NSZone) M:HealthKit.HKQuantity.EncodeTo(Foundation.NSCoder) M:HealthKit.HKQuantity.get_ClassHandle M:HealthKit.HKQuantitySample.#ctor(Foundation.NSCoder) @@ -68541,11 +70974,13 @@ M:HealthKit.HKQuery.GetPredicateForClinicalRecords(HealthKit.HKSource,HealthKit. M:HealthKit.HKQueryAnchor.#ctor(Foundation.NSCoder) M:HealthKit.HKQueryAnchor.#ctor(Foundation.NSObjectFlag) M:HealthKit.HKQueryAnchor.#ctor(ObjCRuntime.NativeHandle) +M:HealthKit.HKQueryAnchor.Copy(Foundation.NSZone) M:HealthKit.HKQueryAnchor.EncodeTo(Foundation.NSCoder) M:HealthKit.HKQueryAnchor.get_ClassHandle M:HealthKit.HKQueryDescriptor.#ctor(Foundation.NSCoder) M:HealthKit.HKQueryDescriptor.#ctor(Foundation.NSObjectFlag) M:HealthKit.HKQueryDescriptor.#ctor(ObjCRuntime.NativeHandle) +M:HealthKit.HKQueryDescriptor.Copy(Foundation.NSZone) M:HealthKit.HKQueryDescriptor.EncodeTo(Foundation.NSCoder) M:HealthKit.HKQueryDescriptor.get_ClassHandle M:HealthKit.HKSample.#ctor(Foundation.NSCoder) @@ -68582,6 +71017,7 @@ M:HealthKit.HKSeriesType.get_ClassHandle M:HealthKit.HKSource.#ctor(Foundation.NSCoder) M:HealthKit.HKSource.#ctor(Foundation.NSObjectFlag) M:HealthKit.HKSource.#ctor(ObjCRuntime.NativeHandle) +M:HealthKit.HKSource.Copy(Foundation.NSZone) M:HealthKit.HKSource.EncodeTo(Foundation.NSCoder) M:HealthKit.HKSource.get_ClassHandle M:HealthKit.HKSourceQuery.#ctor(Foundation.NSObjectFlag) @@ -68594,6 +71030,7 @@ M:HealthKit.HKSourceQueryCompletionHandler.Invoke(HealthKit.HKSourceQuery,Founda M:HealthKit.HKSourceRevision.#ctor(Foundation.NSCoder) M:HealthKit.HKSourceRevision.#ctor(Foundation.NSObjectFlag) M:HealthKit.HKSourceRevision.#ctor(ObjCRuntime.NativeHandle) +M:HealthKit.HKSourceRevision.Copy(Foundation.NSZone) M:HealthKit.HKSourceRevision.EncodeTo(Foundation.NSCoder) M:HealthKit.HKSourceRevision.get_ClassHandle M:HealthKit.HKSourceRevisionInfo.get_AnyProductType @@ -68601,6 +71038,7 @@ M:HealthKit.HKSourceRevisionInfo.get_AnyVersion M:HealthKit.HKStatistics.#ctor(Foundation.NSCoder) M:HealthKit.HKStatistics.#ctor(Foundation.NSObjectFlag) M:HealthKit.HKStatistics.#ctor(ObjCRuntime.NativeHandle) +M:HealthKit.HKStatistics.Copy(Foundation.NSZone) M:HealthKit.HKStatistics.EncodeTo(Foundation.NSCoder) M:HealthKit.HKStatistics.get_ClassHandle M:HealthKit.HKStatisticsCollection.#ctor(Foundation.NSObjectFlag) @@ -68637,6 +71075,7 @@ M:HealthKit.HKStoreSampleAddedCallback.Invoke(System.Boolean,Foundation.NSError) M:HealthKit.HKUnit.#ctor(Foundation.NSCoder) M:HealthKit.HKUnit.#ctor(Foundation.NSObjectFlag) M:HealthKit.HKUnit.#ctor(ObjCRuntime.NativeHandle) +M:HealthKit.HKUnit.Copy(Foundation.NSZone) M:HealthKit.HKUnit.EncodeTo(Foundation.NSCoder) M:HealthKit.HKUnit.get_ClassHandle M:HealthKit.HKVerifiableClinicalRecord.#ctor(Foundation.NSCoder) @@ -68657,23 +71096,27 @@ M:HealthKit.HKVerifiableClinicalRecordSourceTypeExtensions.GetValue(Foundation.N M:HealthKit.HKVerifiableClinicalRecordSubject.#ctor(Foundation.NSCoder) M:HealthKit.HKVerifiableClinicalRecordSubject.#ctor(Foundation.NSObjectFlag) M:HealthKit.HKVerifiableClinicalRecordSubject.#ctor(ObjCRuntime.NativeHandle) +M:HealthKit.HKVerifiableClinicalRecordSubject.Copy(Foundation.NSZone) M:HealthKit.HKVerifiableClinicalRecordSubject.EncodeTo(Foundation.NSCoder) M:HealthKit.HKVerifiableClinicalRecordSubject.get_ClassHandle M:HealthKit.HKVisionPrescription.#ctor(Foundation.NSCoder) M:HealthKit.HKVisionPrescription.#ctor(Foundation.NSObjectFlag) M:HealthKit.HKVisionPrescription.#ctor(ObjCRuntime.NativeHandle) +M:HealthKit.HKVisionPrescription.Copy(Foundation.NSZone) M:HealthKit.HKVisionPrescription.EncodeTo(Foundation.NSCoder) M:HealthKit.HKVisionPrescription.get_ClassHandle M:HealthKit.HKVisionPrescription.get_TypeIdentifier M:HealthKit.HKVisionPrism.#ctor(Foundation.NSCoder) M:HealthKit.HKVisionPrism.#ctor(Foundation.NSObjectFlag) M:HealthKit.HKVisionPrism.#ctor(ObjCRuntime.NativeHandle) +M:HealthKit.HKVisionPrism.Copy(Foundation.NSZone) M:HealthKit.HKVisionPrism.EncodeTo(Foundation.NSCoder) M:HealthKit.HKVisionPrism.get_ClassHandle M:HealthKit.HKWheelchairUseObject.#ctor M:HealthKit.HKWheelchairUseObject.#ctor(Foundation.NSCoder) M:HealthKit.HKWheelchairUseObject.#ctor(Foundation.NSObjectFlag) M:HealthKit.HKWheelchairUseObject.#ctor(ObjCRuntime.NativeHandle) +M:HealthKit.HKWheelchairUseObject.Copy(Foundation.NSZone) M:HealthKit.HKWheelchairUseObject.EncodeTo(Foundation.NSCoder) M:HealthKit.HKWheelchairUseObject.get_ClassHandle M:HealthKit.HKWorkout.#ctor(Foundation.NSCoder) @@ -68694,6 +71137,7 @@ M:HealthKit.HKWorkout.get_SortIdentifierTotalSwimmingStrokeCount M:HealthKit.HKWorkoutActivity.#ctor(Foundation.NSCoder) M:HealthKit.HKWorkoutActivity.#ctor(Foundation.NSObjectFlag) M:HealthKit.HKWorkoutActivity.#ctor(ObjCRuntime.NativeHandle) +M:HealthKit.HKWorkoutActivity.Copy(Foundation.NSZone) M:HealthKit.HKWorkoutActivity.EncodeTo(Foundation.NSCoder) M:HealthKit.HKWorkoutActivity.get_ClassHandle M:HealthKit.HKWorkoutBuilder.#ctor(Foundation.NSObjectFlag) @@ -68719,6 +71163,7 @@ M:HealthKit.HKWorkoutConfiguration.#ctor M:HealthKit.HKWorkoutConfiguration.#ctor(Foundation.NSCoder) M:HealthKit.HKWorkoutConfiguration.#ctor(Foundation.NSObjectFlag) M:HealthKit.HKWorkoutConfiguration.#ctor(ObjCRuntime.NativeHandle) +M:HealthKit.HKWorkoutConfiguration.Copy(Foundation.NSZone) M:HealthKit.HKWorkoutConfiguration.EncodeTo(Foundation.NSCoder) M:HealthKit.HKWorkoutConfiguration.get_ClassHandle M:HealthKit.HKWorkoutConfiguration.set_ActivityType(HealthKit.HKWorkoutActivityType) @@ -68728,6 +71173,7 @@ M:HealthKit.HKWorkoutConfiguration.set_SwimmingLocationType(HealthKit.HKWorkoutS M:HealthKit.HKWorkoutEvent.#ctor(Foundation.NSCoder) M:HealthKit.HKWorkoutEvent.#ctor(Foundation.NSObjectFlag) M:HealthKit.HKWorkoutEvent.#ctor(ObjCRuntime.NativeHandle) +M:HealthKit.HKWorkoutEvent.Copy(Foundation.NSZone) M:HealthKit.HKWorkoutEvent.Create(HealthKit.HKWorkoutEventType,Foundation.NSDate,HealthKit.HKMetadata) M:HealthKit.HKWorkoutEvent.Create(HealthKit.HKWorkoutEventType,Foundation.NSDateInterval,HealthKit.HKMetadata) M:HealthKit.HKWorkoutEvent.EncodeTo(Foundation.NSCoder) @@ -68930,6 +71376,7 @@ M:HomeKit.HMAccessorySetupPayload.get_ClassHandle M:HomeKit.HMAccessorySetupRequest.#ctor M:HomeKit.HMAccessorySetupRequest.#ctor(Foundation.NSObjectFlag) M:HomeKit.HMAccessorySetupRequest.#ctor(ObjCRuntime.NativeHandle) +M:HomeKit.HMAccessorySetupRequest.Copy(Foundation.NSZone) M:HomeKit.HMAccessorySetupRequest.get_ClassHandle M:HomeKit.HMAccessorySetupRequest.set_HomeUniqueIdentifier(Foundation.NSUuid) M:HomeKit.HMAccessorySetupRequest.set_Payload(HomeKit.HMAccessorySetupPayload) @@ -68937,6 +71384,7 @@ M:HomeKit.HMAccessorySetupRequest.set_SuggestedAccessoryName(System.String) M:HomeKit.HMAccessorySetupRequest.set_SuggestedRoomUniqueIdentifier(Foundation.NSUuid) M:HomeKit.HMAccessorySetupResult.#ctor(Foundation.NSObjectFlag) M:HomeKit.HMAccessorySetupResult.#ctor(ObjCRuntime.NativeHandle) +M:HomeKit.HMAccessorySetupResult.Copy(Foundation.NSZone) M:HomeKit.HMAccessorySetupResult.get_ClassHandle M:HomeKit.HMAccessoryUpdateEventArgs.#ctor(HomeKit.HMService) M:HomeKit.HMAccessoryUpdateEventArgs.get_Service @@ -68957,7 +71405,9 @@ M:HomeKit.HMAddAccessoryRequest.#ctor(ObjCRuntime.NativeHandle) M:HomeKit.HMAddAccessoryRequest.get_ClassHandle M:HomeKit.HMCalendarEvent.#ctor(Foundation.NSObjectFlag) M:HomeKit.HMCalendarEvent.#ctor(ObjCRuntime.NativeHandle) +M:HomeKit.HMCalendarEvent.Copy(Foundation.NSZone) M:HomeKit.HMCalendarEvent.get_ClassHandle +M:HomeKit.HMCalendarEvent.MutableCopy(Foundation.NSZone) M:HomeKit.HMCalendarEvent.set_FireDateComponents(Foundation.NSDateComponents) M:HomeKit.HMCameraAudioControl.#ctor(Foundation.NSObjectFlag) M:HomeKit.HMCameraAudioControl.#ctor(ObjCRuntime.NativeHandle) @@ -69045,7 +71495,9 @@ M:HomeKit.HMCharacteristic.UpdateAuthorizationDataAsync(Foundation.NSData) M:HomeKit.HMCharacteristic.WriteValueAsync(Foundation.NSObject) M:HomeKit.HMCharacteristicEvent.#ctor(Foundation.NSObjectFlag) M:HomeKit.HMCharacteristicEvent.#ctor(ObjCRuntime.NativeHandle) +M:HomeKit.HMCharacteristicEvent.Copy(Foundation.NSZone) M:HomeKit.HMCharacteristicEvent.get_ClassHandle +M:HomeKit.HMCharacteristicEvent.MutableCopy(Foundation.NSZone) M:HomeKit.HMCharacteristicEvent.set_Characteristic(HomeKit.HMCharacteristic) M:HomeKit.HMCharacteristicEvent.set_TriggerValue(Foundation.INSCopying) M:HomeKit.HMCharacteristicEvent.UpdateTriggerValueAsync(Foundation.INSCopying) @@ -69068,7 +71520,9 @@ M:HomeKit.HMCharacteristicProperties.set_SupportsEventNotification(System.Boolea M:HomeKit.HMCharacteristicProperties.set_Writable(System.Boolean) M:HomeKit.HMCharacteristicThresholdRangeEvent.#ctor(Foundation.NSObjectFlag) M:HomeKit.HMCharacteristicThresholdRangeEvent.#ctor(ObjCRuntime.NativeHandle) +M:HomeKit.HMCharacteristicThresholdRangeEvent.Copy(Foundation.NSZone) M:HomeKit.HMCharacteristicThresholdRangeEvent.get_ClassHandle +M:HomeKit.HMCharacteristicThresholdRangeEvent.MutableCopy(Foundation.NSZone) M:HomeKit.HMCharacteristicThresholdRangeEvent.set_Characteristic(HomeKit.HMCharacteristic) M:HomeKit.HMCharacteristicThresholdRangeEvent.set_ThresholdRange(HomeKit.HMNumberRange) M:HomeKit.HMCharacteristicTypeExtensions.GetConstant(HomeKit.HMCharacteristicType) @@ -69079,7 +71533,9 @@ M:HomeKit.HMCharacteristicWriteAction.get_ClassHandle M:HomeKit.HMCharacteristicWriteAction.UpdateTargetValueAsync(Foundation.INSCopying) M:HomeKit.HMDurationEvent.#ctor(Foundation.NSObjectFlag) M:HomeKit.HMDurationEvent.#ctor(ObjCRuntime.NativeHandle) +M:HomeKit.HMDurationEvent.Copy(Foundation.NSZone) M:HomeKit.HMDurationEvent.get_ClassHandle +M:HomeKit.HMDurationEvent.MutableCopy(Foundation.NSZone) M:HomeKit.HMDurationEvent.set_Duration(System.Double) M:HomeKit.HMErrors.get_HMErrorDomain M:HomeKit.HMEvent.#ctor(Foundation.NSObjectFlag) @@ -69359,7 +71815,9 @@ M:HomeKit.HMHomeZoneEventArgs.get_Zone M:HomeKit.HMHomeZoneEventArgs.set_Zone(HomeKit.HMZone) M:HomeKit.HMLocationEvent.#ctor(Foundation.NSObjectFlag) M:HomeKit.HMLocationEvent.#ctor(ObjCRuntime.NativeHandle) +M:HomeKit.HMLocationEvent.Copy(Foundation.NSZone) M:HomeKit.HMLocationEvent.get_ClassHandle +M:HomeKit.HMLocationEvent.MutableCopy(Foundation.NSZone) M:HomeKit.HMLocationEvent.set_Region(CoreLocation.CLRegion) M:HomeKit.HMLocationEvent.UpdateRegionAsync(CoreLocation.CLRegion) M:HomeKit.HMMatterHome.#ctor(Foundation.NSCoder) @@ -69461,8 +71919,10 @@ M:HomeKit.HMNumberRange.#ctor(ObjCRuntime.NativeHandle) M:HomeKit.HMNumberRange.get_ClassHandle M:HomeKit.HMPresenceEvent.#ctor(Foundation.NSObjectFlag) M:HomeKit.HMPresenceEvent.#ctor(ObjCRuntime.NativeHandle) +M:HomeKit.HMPresenceEvent.Copy(Foundation.NSZone) M:HomeKit.HMPresenceEvent.get_ClassHandle M:HomeKit.HMPresenceEvent.get_KeyPath +M:HomeKit.HMPresenceEvent.MutableCopy(Foundation.NSZone) M:HomeKit.HMPresenceEvent.set_PresenceEventType(HomeKit.HMPresenceEventType) M:HomeKit.HMPresenceEvent.set_PresenceUserType(HomeKit.HMPresenceEventUserType) M:HomeKit.HMRoom.#ctor(Foundation.NSObjectFlag) @@ -69496,8 +71956,10 @@ M:HomeKit.HMSignificantEventExtensions.GetValue(Foundation.NSString) M:HomeKit.HMSignificantTimeEvent.#ctor(Foundation.NSObjectFlag) M:HomeKit.HMSignificantTimeEvent.#ctor(HomeKit.HMSignificantEvent,Foundation.NSDateComponents) M:HomeKit.HMSignificantTimeEvent.#ctor(ObjCRuntime.NativeHandle) +M:HomeKit.HMSignificantTimeEvent.Copy(Foundation.NSZone) M:HomeKit.HMSignificantTimeEvent.get_ClassHandle M:HomeKit.HMSignificantTimeEvent.get_SignificantEvent +M:HomeKit.HMSignificantTimeEvent.MutableCopy(Foundation.NSZone) M:HomeKit.HMSignificantTimeEvent.set_Offset(Foundation.NSDateComponents) M:HomeKit.HMSignificantTimeEvent.set_SignificantEvent(HomeKit.HMSignificantEvent) M:HomeKit.HMSignificantTimeEvent.set_WeakSignificantEvent(Foundation.NSString) @@ -71542,16 +74004,19 @@ M:Intents.INAddTasksTemporalEventTriggerResolutionResult.GetUnsupported(System.I M:Intents.INAirline.#ctor(Foundation.NSCoder) M:Intents.INAirline.#ctor(Foundation.NSObjectFlag) M:Intents.INAirline.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INAirline.Copy(Foundation.NSZone) M:Intents.INAirline.EncodeTo(Foundation.NSCoder) M:Intents.INAirline.get_ClassHandle M:Intents.INAirport.#ctor(Foundation.NSCoder) M:Intents.INAirport.#ctor(Foundation.NSObjectFlag) M:Intents.INAirport.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INAirport.Copy(Foundation.NSZone) M:Intents.INAirport.EncodeTo(Foundation.NSCoder) M:Intents.INAirport.get_ClassHandle M:Intents.INAirportGate.#ctor(Foundation.NSCoder) M:Intents.INAirportGate.#ctor(Foundation.NSObjectFlag) M:Intents.INAirportGate.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INAirportGate.Copy(Foundation.NSZone) M:Intents.INAirportGate.EncodeTo(Foundation.NSCoder) M:Intents.INAirportGate.get_ClassHandle M:Intents.INAnswerCallIntent.#ctor @@ -71581,6 +74046,7 @@ M:Intents.INAppendToNoteIntentResponse.set_Note(Intents.INNote) M:Intents.INBalanceAmount.#ctor(Foundation.NSCoder) M:Intents.INBalanceAmount.#ctor(Foundation.NSObjectFlag) M:Intents.INBalanceAmount.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INBalanceAmount.Copy(Foundation.NSZone) M:Intents.INBalanceAmount.EncodeTo(Foundation.NSCoder) M:Intents.INBalanceAmount.get_ClassHandle M:Intents.INBalanceTypeResolutionResult.#ctor(Foundation.NSObjectFlag) @@ -71594,6 +74060,7 @@ M:Intents.INBalanceTypeResolutionResult.GetUnsupported(System.IntPtr) M:Intents.INBillDetails.#ctor(Foundation.NSCoder) M:Intents.INBillDetails.#ctor(Foundation.NSObjectFlag) M:Intents.INBillDetails.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INBillDetails.Copy(Foundation.NSZone) M:Intents.INBillDetails.EncodeTo(Foundation.NSCoder) M:Intents.INBillDetails.get_ClassHandle M:Intents.INBillDetails.set_AmountDue(Intents.INCurrencyAmount) @@ -71607,6 +74074,7 @@ M:Intents.INBillDetails.set_PaymentStatus(Intents.INPaymentStatus) M:Intents.INBillPayee.#ctor(Foundation.NSCoder) M:Intents.INBillPayee.#ctor(Foundation.NSObjectFlag) M:Intents.INBillPayee.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INBillPayee.Copy(Foundation.NSZone) M:Intents.INBillPayee.EncodeTo(Foundation.NSCoder) M:Intents.INBillPayee.get_ClassHandle M:Intents.INBillPayeeResolutionResult.#ctor(Foundation.NSObjectFlag) @@ -71630,17 +74098,20 @@ M:Intents.INBillTypeResolutionResult.GetUnsupported(System.IntPtr) M:Intents.INBoatReservation.#ctor(Foundation.NSCoder) M:Intents.INBoatReservation.#ctor(Foundation.NSObjectFlag) M:Intents.INBoatReservation.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INBoatReservation.Copy(Foundation.NSZone) M:Intents.INBoatReservation.EncodeTo(Foundation.NSCoder) M:Intents.INBoatReservation.get_ClassHandle M:Intents.INBoatTrip.#ctor(Foundation.NSCoder) M:Intents.INBoatTrip.#ctor(Foundation.NSObjectFlag) M:Intents.INBoatTrip.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INBoatTrip.Copy(Foundation.NSZone) M:Intents.INBoatTrip.EncodeTo(Foundation.NSCoder) M:Intents.INBoatTrip.get_ClassHandle M:Intents.INBookRestaurantReservationIntent.#ctor M:Intents.INBookRestaurantReservationIntent.#ctor(Foundation.NSCoder) M:Intents.INBookRestaurantReservationIntent.#ctor(Foundation.NSObjectFlag) M:Intents.INBookRestaurantReservationIntent.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INBookRestaurantReservationIntent.Copy(Foundation.NSZone) M:Intents.INBookRestaurantReservationIntent.get_ClassHandle M:Intents.INBookRestaurantReservationIntent.set_BookingDateComponents(Foundation.NSDateComponents) M:Intents.INBookRestaurantReservationIntent.set_BookingIdentifier(System.String) @@ -71672,11 +74143,13 @@ M:Intents.INBooleanResolutionResult.GetUnsupported(System.IntPtr) M:Intents.INBusReservation.#ctor(Foundation.NSCoder) M:Intents.INBusReservation.#ctor(Foundation.NSObjectFlag) M:Intents.INBusReservation.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INBusReservation.Copy(Foundation.NSZone) M:Intents.INBusReservation.EncodeTo(Foundation.NSCoder) M:Intents.INBusReservation.get_ClassHandle M:Intents.INBusTrip.#ctor(Foundation.NSCoder) M:Intents.INBusTrip.#ctor(Foundation.NSObjectFlag) M:Intents.INBusTrip.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INBusTrip.Copy(Foundation.NSZone) M:Intents.INBusTrip.EncodeTo(Foundation.NSCoder) M:Intents.INBusTrip.get_ClassHandle M:Intents.INCallCapabilityResolutionResult.#ctor(Foundation.NSObjectFlag) @@ -71698,11 +74171,13 @@ M:Intents.INCallDestinationTypeResolutionResult.GetUnsupported(System.IntPtr) M:Intents.INCallGroup.#ctor(Foundation.NSCoder) M:Intents.INCallGroup.#ctor(Foundation.NSObjectFlag) M:Intents.INCallGroup.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INCallGroup.Copy(Foundation.NSZone) M:Intents.INCallGroup.EncodeTo(Foundation.NSCoder) M:Intents.INCallGroup.get_ClassHandle M:Intents.INCallRecord.#ctor(Foundation.NSCoder) M:Intents.INCallRecord.#ctor(Foundation.NSObjectFlag) M:Intents.INCallRecord.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INCallRecord.Copy(Foundation.NSZone) M:Intents.INCallRecord.EncodeTo(Foundation.NSCoder) M:Intents.INCallRecord.get_CallDuration M:Intents.INCallRecord.get_ClassHandle @@ -71710,6 +74185,7 @@ M:Intents.INCallRecord.get_Unseen M:Intents.INCallRecordFilter.#ctor(Foundation.NSCoder) M:Intents.INCallRecordFilter.#ctor(Foundation.NSObjectFlag) M:Intents.INCallRecordFilter.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INCallRecordFilter.Copy(Foundation.NSZone) M:Intents.INCallRecordFilter.EncodeTo(Foundation.NSCoder) M:Intents.INCallRecordFilter.get_ClassHandle M:Intents.INCallRecordResolutionResult.#ctor @@ -71764,6 +74240,7 @@ M:Intents.INCancelWorkoutIntentResponse.get_ClassHandle M:Intents.INCar.#ctor(Foundation.NSCoder) M:Intents.INCar.#ctor(Foundation.NSObjectFlag) M:Intents.INCar.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INCar.Copy(Foundation.NSZone) M:Intents.INCar.EncodeTo(Foundation.NSCoder) M:Intents.INCar.get_ClassHandle M:Intents.INCarAirCirculationModeResolutionResult.#ctor(Foundation.NSObjectFlag) @@ -71801,6 +74278,7 @@ M:Intents.INCarDefrosterResolutionResult.GetUnsupported(System.IntPtr) M:Intents.INCarHeadUnit.#ctor(Foundation.NSCoder) M:Intents.INCarHeadUnit.#ctor(Foundation.NSObjectFlag) M:Intents.INCarHeadUnit.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INCarHeadUnit.Copy(Foundation.NSZone) M:Intents.INCarHeadUnit.EncodeTo(Foundation.NSCoder) M:Intents.INCarHeadUnit.get_ClassHandle M:Intents.INCarSeatResolutionResult.#ctor(Foundation.NSObjectFlag) @@ -71852,6 +74330,7 @@ M:Intents.INCreateTaskListIntentResponse.set_CreatedTaskList(Intents.INTaskList) M:Intents.INCurrencyAmount.#ctor(Foundation.NSCoder) M:Intents.INCurrencyAmount.#ctor(Foundation.NSObjectFlag) M:Intents.INCurrencyAmount.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INCurrencyAmount.Copy(Foundation.NSZone) M:Intents.INCurrencyAmount.EncodeTo(Foundation.NSCoder) M:Intents.INCurrencyAmount.get_ClassHandle M:Intents.INCurrencyAmountResolutionResult.#ctor(Foundation.NSObjectFlag) @@ -71869,6 +74348,7 @@ M:Intents.INDailyRoutineRelevanceProvider.get_ClassHandle M:Intents.INDateComponentsRange.#ctor(Foundation.NSCoder) M:Intents.INDateComponentsRange.#ctor(Foundation.NSObjectFlag) M:Intents.INDateComponentsRange.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INDateComponentsRange.Copy(Foundation.NSZone) M:Intents.INDateComponentsRange.EncodeTo(Foundation.NSCoder) M:Intents.INDateComponentsRange.get_ClassHandle M:Intents.INDateComponentsRangeResolutionResult.#ctor(Foundation.NSObjectFlag) @@ -71902,6 +74382,7 @@ M:Intents.INDateSearchTypeResolutionResult.GetUnsupported(System.IntPtr) M:Intents.INDefaultCardTemplate.#ctor(Foundation.NSCoder) M:Intents.INDefaultCardTemplate.#ctor(Foundation.NSObjectFlag) M:Intents.INDefaultCardTemplate.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INDefaultCardTemplate.Copy(Foundation.NSZone) M:Intents.INDefaultCardTemplate.EncodeTo(Foundation.NSCoder) M:Intents.INDefaultCardTemplate.get_ClassHandle M:Intents.INDefaultCardTemplate.set_Image(Intents.INImage) @@ -71991,6 +74472,7 @@ M:Intents.INExtension.#ctor M:Intents.INExtension.#ctor(Foundation.NSObjectFlag) M:Intents.INExtension.#ctor(ObjCRuntime.NativeHandle) M:Intents.INExtension.get_ClassHandle +M:Intents.INExtension.GetHandler(Intents.INIntent) M:Intents.INFile.#ctor(Foundation.NSCoder) M:Intents.INFile.#ctor(Foundation.NSObjectFlag) M:Intents.INFile.#ctor(ObjCRuntime.NativeHandle) @@ -72009,16 +74491,19 @@ M:Intents.INFileResolutionResult.GetUnsupported(System.IntPtr) M:Intents.INFlight.#ctor(Foundation.NSCoder) M:Intents.INFlight.#ctor(Foundation.NSObjectFlag) M:Intents.INFlight.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INFlight.Copy(Foundation.NSZone) M:Intents.INFlight.EncodeTo(Foundation.NSCoder) M:Intents.INFlight.get_ClassHandle M:Intents.INFlightReservation.#ctor(Foundation.NSCoder) M:Intents.INFlightReservation.#ctor(Foundation.NSObjectFlag) M:Intents.INFlightReservation.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INFlightReservation.Copy(Foundation.NSZone) M:Intents.INFlightReservation.EncodeTo(Foundation.NSCoder) M:Intents.INFlightReservation.get_ClassHandle M:Intents.INFocusStatus.#ctor(Foundation.NSCoder) M:Intents.INFocusStatus.#ctor(Foundation.NSObjectFlag) M:Intents.INFocusStatus.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INFocusStatus.Copy(Foundation.NSZone) M:Intents.INFocusStatus.EncodeTo(Foundation.NSCoder) M:Intents.INFocusStatus.get_ClassHandle M:Intents.INFocusStatusCenter.#ctor @@ -72046,6 +74531,7 @@ M:Intents.INGetAvailableRestaurantReservationBookingsIntent.#ctor M:Intents.INGetAvailableRestaurantReservationBookingsIntent.#ctor(Foundation.NSCoder) M:Intents.INGetAvailableRestaurantReservationBookingsIntent.#ctor(Foundation.NSObjectFlag) M:Intents.INGetAvailableRestaurantReservationBookingsIntent.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INGetAvailableRestaurantReservationBookingsIntent.Copy(Foundation.NSZone) M:Intents.INGetAvailableRestaurantReservationBookingsIntent.get_ClassHandle M:Intents.INGetAvailableRestaurantReservationBookingsIntent.set_EarliestBookingDateForResults(Foundation.NSDate) M:Intents.INGetAvailableRestaurantReservationBookingsIntent.set_LatestBookingDateForResults(Foundation.NSDate) @@ -72143,6 +74629,7 @@ M:Intents.INGetUserCurrentRestaurantReservationBookingsIntent.#ctor(Foundation.N M:Intents.INGetUserCurrentRestaurantReservationBookingsIntent.#ctor(Foundation.NSObjectFlag) M:Intents.INGetUserCurrentRestaurantReservationBookingsIntent.#ctor(Intents.INRestaurant,System.String,System.IntPtr,Foundation.NSDate) M:Intents.INGetUserCurrentRestaurantReservationBookingsIntent.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INGetUserCurrentRestaurantReservationBookingsIntent.Copy(Foundation.NSZone) M:Intents.INGetUserCurrentRestaurantReservationBookingsIntent.get_ClassHandle M:Intents.INGetUserCurrentRestaurantReservationBookingsIntent.set_EarliestBookingDateForResults(Foundation.NSDate) M:Intents.INGetUserCurrentRestaurantReservationBookingsIntent.set_MaximumNumberOfResults(Foundation.NSNumber) @@ -72180,6 +74667,7 @@ M:Intents.INHangUpCallIntentResponse.get_ClassHandle M:Intents.INImage.#ctor(Foundation.NSCoder) M:Intents.INImage.#ctor(Foundation.NSObjectFlag) M:Intents.INImage.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INImage.Copy(Foundation.NSZone) M:Intents.INImage.EncodeTo(Foundation.NSCoder) M:Intents.INImage.FetchImage(System.Action{UIKit.UIImage}) M:Intents.INImage.FetchImageAsync @@ -72192,6 +74680,7 @@ M:Intents.INImageNoteContent.#ctor M:Intents.INImageNoteContent.#ctor(Foundation.NSCoder) M:Intents.INImageNoteContent.#ctor(Foundation.NSObjectFlag) M:Intents.INImageNoteContent.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INImageNoteContent.Copy(Foundation.NSZone) M:Intents.INImageNoteContent.EncodeTo(Foundation.NSCoder) M:Intents.INImageNoteContent.get_ClassHandle M:Intents.INIntegerResolutionResult.#ctor(Foundation.NSObjectFlag) @@ -72206,6 +74695,7 @@ M:Intents.INIntent.#ctor M:Intents.INIntent.#ctor(Foundation.NSCoder) M:Intents.INIntent.#ctor(Foundation.NSObjectFlag) M:Intents.INIntent.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INIntent.Copy(Foundation.NSZone) M:Intents.INIntent.EncodeTo(Foundation.NSCoder) M:Intents.INIntent.get_ClassHandle M:Intents.INIntent.get_Identifier @@ -72215,6 +74705,7 @@ M:Intents.INIntent.set_SuggestedInvocationPhrase(System.String) M:Intents.INIntentDonationMetadata.#ctor(Foundation.NSCoder) M:Intents.INIntentDonationMetadata.#ctor(Foundation.NSObjectFlag) M:Intents.INIntentDonationMetadata.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INIntentDonationMetadata.Copy(Foundation.NSZone) M:Intents.INIntentDonationMetadata.EncodeTo(Foundation.NSCoder) M:Intents.INIntentDonationMetadata.get_ClassHandle M:Intents.INIntentErrorCodeExtensions.GetDomain(Intents.INIntentErrorCode) @@ -72232,12 +74723,14 @@ M:Intents.INIntentResponse.#ctor M:Intents.INIntentResponse.#ctor(Foundation.NSCoder) M:Intents.INIntentResponse.#ctor(Foundation.NSObjectFlag) M:Intents.INIntentResponse.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INIntentResponse.Copy(Foundation.NSZone) M:Intents.INIntentResponse.EncodeTo(Foundation.NSCoder) M:Intents.INIntentResponse.get_ClassHandle M:Intents.INIntentResponse.set_UserActivity(Foundation.NSUserActivity) M:Intents.INInteraction.#ctor(Foundation.NSCoder) M:Intents.INInteraction.#ctor(Foundation.NSObjectFlag) M:Intents.INInteraction.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INInteraction.Copy(Foundation.NSZone) M:Intents.INInteraction.DeleteAllInteractionsAsync M:Intents.INInteraction.DeleteGroupedInteractionsAsync(System.String) M:Intents.INInteraction.DeleteInteractionsAsync(System.String[]) @@ -72297,6 +74790,7 @@ M:Intents.INLocationSearchTypeResolutionResult.GetUnsupported(System.IntPtr) M:Intents.INLodgingReservation.#ctor(Foundation.NSCoder) M:Intents.INLodgingReservation.#ctor(Foundation.NSObjectFlag) M:Intents.INLodgingReservation.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INLodgingReservation.Copy(Foundation.NSZone) M:Intents.INLodgingReservation.EncodeTo(Foundation.NSCoder) M:Intents.INLodgingReservation.get_ClassHandle M:Intents.INMassResolutionResult.#ctor(Foundation.NSObjectFlag) @@ -72318,6 +74812,7 @@ M:Intents.INMediaAffinityTypeResolutionResult.GetUnsupported(System.IntPtr) M:Intents.INMediaDestination.#ctor(Foundation.NSCoder) M:Intents.INMediaDestination.#ctor(Foundation.NSObjectFlag) M:Intents.INMediaDestination.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INMediaDestination.Copy(Foundation.NSZone) M:Intents.INMediaDestination.EncodeTo(Foundation.NSCoder) M:Intents.INMediaDestination.get_ClassHandle M:Intents.INMediaDestinationResolutionResult.#ctor(Foundation.NSObjectFlag) @@ -72331,6 +74826,7 @@ M:Intents.INMediaDestinationResolutionResult.GetUnsupported(System.IntPtr) M:Intents.INMediaItem.#ctor(Foundation.NSCoder) M:Intents.INMediaItem.#ctor(Foundation.NSObjectFlag) M:Intents.INMediaItem.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INMediaItem.Copy(Foundation.NSZone) M:Intents.INMediaItem.EncodeTo(Foundation.NSCoder) M:Intents.INMediaItem.get_ClassHandle M:Intents.INMediaItemResolutionResult.#ctor(Foundation.NSObjectFlag) @@ -72344,6 +74840,7 @@ M:Intents.INMediaItemResolutionResult.GetUnsupported(System.IntPtr) M:Intents.INMediaSearch.#ctor(Foundation.NSCoder) M:Intents.INMediaSearch.#ctor(Foundation.NSObjectFlag) M:Intents.INMediaSearch.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INMediaSearch.Copy(Foundation.NSZone) M:Intents.INMediaSearch.EncodeTo(Foundation.NSCoder) M:Intents.INMediaSearch.get_ClassHandle M:Intents.INMediaUserContext.#ctor(Foundation.NSCoder) @@ -72355,6 +74852,7 @@ M:Intents.INMediaUserContext.set_SubscriptionStatus(Intents.INMediaUserContextSu M:Intents.INMessage.#ctor(Foundation.NSCoder) M:Intents.INMessage.#ctor(Foundation.NSObjectFlag) M:Intents.INMessage.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INMessage.Copy(Foundation.NSZone) M:Intents.INMessage.EncodeTo(Foundation.NSCoder) M:Intents.INMessage.get_ClassHandle M:Intents.INMessageAttributeOptionsResolutionResult.#ctor(Foundation.NSObjectFlag) @@ -72381,6 +74879,7 @@ M:Intents.INMessageLinkMetadata.#ctor M:Intents.INMessageLinkMetadata.#ctor(Foundation.NSCoder) M:Intents.INMessageLinkMetadata.#ctor(Foundation.NSObjectFlag) M:Intents.INMessageLinkMetadata.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INMessageLinkMetadata.Copy(Foundation.NSZone) M:Intents.INMessageLinkMetadata.EncodeTo(Foundation.NSCoder) M:Intents.INMessageLinkMetadata.get_ClassHandle M:Intents.INMessageLinkMetadata.set_LinkUrl(Foundation.NSUrl) @@ -72392,6 +74891,7 @@ M:Intents.INNote.#ctor M:Intents.INNote.#ctor(Foundation.NSCoder) M:Intents.INNote.#ctor(Foundation.NSObjectFlag) M:Intents.INNote.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INNote.Copy(Foundation.NSZone) M:Intents.INNote.EncodeTo(Foundation.NSCoder) M:Intents.INNote.get_ClassHandle M:Intents.INNotebookItemTypeResolutionResult.#ctor @@ -72407,6 +74907,7 @@ M:Intents.INNoteContent.#ctor M:Intents.INNoteContent.#ctor(Foundation.NSCoder) M:Intents.INNoteContent.#ctor(Foundation.NSObjectFlag) M:Intents.INNoteContent.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INNoteContent.Copy(Foundation.NSZone) M:Intents.INNoteContent.EncodeTo(Foundation.NSCoder) M:Intents.INNoteContent.get_ClassHandle M:Intents.INNoteContentResolutionResult.#ctor(Foundation.NSObjectFlag) @@ -72438,8 +74939,11 @@ M:Intents.INNoteResolutionResult.GetUnsupported(System.IntPtr) M:Intents.INObject.#ctor(Foundation.NSCoder) M:Intents.INObject.#ctor(Foundation.NSObjectFlag) M:Intents.INObject.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INObject.Copy(Foundation.NSZone) M:Intents.INObject.EncodeTo(Foundation.NSCoder) M:Intents.INObject.get_ClassHandle +M:Intents.INObject.get_SpokenPhrase +M:Intents.INObject.get_VocabularyIdentifier M:Intents.INObject.GetAlternativeSpeakableMatches M:Intents.INObject.set_DisplayImage(Intents.INImage) M:Intents.INObject.set_SubtitleString(System.String) @@ -72447,6 +74951,7 @@ M:Intents.INObject.SetAlternativeSpeakableMatches(Intents.INSpeakableString[]) M:Intents.INObjectCollection`1.#ctor(Foundation.NSCoder) M:Intents.INObjectCollection`1.#ctor(Foundation.NSObjectFlag) M:Intents.INObjectCollection`1.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INObjectCollection`1.Copy(Foundation.NSZone) M:Intents.INObjectCollection`1.EncodeTo(Foundation.NSCoder) M:Intents.INObjectCollection`1.get_ClassHandle M:Intents.INObjectCollection`1.set_UsesIndexedCollation(System.Boolean) @@ -72461,6 +74966,7 @@ M:Intents.INObjectResolutionResult.GetUnsupported(System.IntPtr) M:Intents.INObjectSection`1.#ctor(Foundation.NSCoder) M:Intents.INObjectSection`1.#ctor(Foundation.NSObjectFlag) M:Intents.INObjectSection`1.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INObjectSection`1.Copy(Foundation.NSZone) M:Intents.INObjectSection`1.EncodeTo(Foundation.NSCoder) M:Intents.INObjectSection`1.get_ClassHandle M:Intents.INOutgoingMessageTypeResolutionResult.#ctor(Foundation.NSObjectFlag) @@ -72474,6 +74980,7 @@ M:Intents.INOutgoingMessageTypeResolutionResult.GetUnsupported(System.IntPtr) M:Intents.INParameter.#ctor(Foundation.NSCoder) M:Intents.INParameter.#ctor(Foundation.NSObjectFlag) M:Intents.INParameter.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INParameter.Copy(Foundation.NSZone) M:Intents.INParameter.EncodeTo(Foundation.NSCoder) M:Intents.INParameter.get_ClassHandle M:Intents.INParameter.get_ParameterType @@ -72513,6 +75020,7 @@ M:Intents.INPayBillIntentResponse.set_TransactionScheduledDate(Intents.INDateCom M:Intents.INPaymentAccount.#ctor(Foundation.NSCoder) M:Intents.INPaymentAccount.#ctor(Foundation.NSObjectFlag) M:Intents.INPaymentAccount.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INPaymentAccount.Copy(Foundation.NSZone) M:Intents.INPaymentAccount.EncodeTo(Foundation.NSCoder) M:Intents.INPaymentAccount.get_ClassHandle M:Intents.INPaymentAccountResolutionResult.#ctor(Foundation.NSObjectFlag) @@ -72526,6 +75034,7 @@ M:Intents.INPaymentAccountResolutionResult.GetUnsupported(System.IntPtr) M:Intents.INPaymentAmount.#ctor(Foundation.NSCoder) M:Intents.INPaymentAmount.#ctor(Foundation.NSObjectFlag) M:Intents.INPaymentAmount.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INPaymentAmount.Copy(Foundation.NSZone) M:Intents.INPaymentAmount.EncodeTo(Foundation.NSCoder) M:Intents.INPaymentAmount.get_ClassHandle M:Intents.INPaymentAmountResolutionResult.#ctor(Foundation.NSObjectFlag) @@ -72539,6 +75048,7 @@ M:Intents.INPaymentAmountResolutionResult.GetUnsupported(System.IntPtr) M:Intents.INPaymentMethod.#ctor(Foundation.NSCoder) M:Intents.INPaymentMethod.#ctor(Foundation.NSObjectFlag) M:Intents.INPaymentMethod.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INPaymentMethod.Copy(Foundation.NSZone) M:Intents.INPaymentMethod.EncodeTo(Foundation.NSCoder) M:Intents.INPaymentMethod.get_ClassHandle M:Intents.INPaymentMethodResolutionResult.#ctor(Foundation.NSObjectFlag) @@ -72552,6 +75062,7 @@ M:Intents.INPaymentMethodResolutionResult.GetUnsupported(System.IntPtr) M:Intents.INPaymentRecord.#ctor(Foundation.NSCoder) M:Intents.INPaymentRecord.#ctor(Foundation.NSObjectFlag) M:Intents.INPaymentRecord.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INPaymentRecord.Copy(Foundation.NSZone) M:Intents.INPaymentRecord.EncodeTo(Foundation.NSCoder) M:Intents.INPaymentRecord.get_ClassHandle M:Intents.INPaymentStatusResolutionResult.#ctor(Foundation.NSObjectFlag) @@ -72569,6 +75080,7 @@ M:Intents.INPerson.#ctor(Foundation.NSObjectFlag) M:Intents.INPerson.#ctor(Intents.INPersonHandle,Foundation.NSPersonNameComponents,System.String,Intents.INImage,System.String,System.String,System.Boolean,Intents.INPersonSuggestionType,Intents.INPerson.INPersonType) M:Intents.INPerson.#ctor(Intents.INPersonHandle,Foundation.NSPersonNameComponents,System.String,Intents.INImage,System.String,System.String,System.Boolean,Intents.INPersonSuggestionType) M:Intents.INPerson.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INPerson.Copy(Foundation.NSZone) M:Intents.INPerson.EncodeTo(Foundation.NSCoder) M:Intents.INPerson.get_AlternativeSpeakableMatches M:Intents.INPerson.get_ClassHandle @@ -72582,6 +75094,7 @@ M:Intents.INPersonHandle.#ctor(Foundation.NSCoder) M:Intents.INPersonHandle.#ctor(Foundation.NSObjectFlag) M:Intents.INPersonHandle.#ctor(ObjCRuntime.NativeHandle) M:Intents.INPersonHandle.#ctor(System.String,Intents.INPersonHandleType,Intents.INPersonHandleLabel) +M:Intents.INPersonHandle.Copy(Foundation.NSZone) M:Intents.INPersonHandle.EncodeTo(Foundation.NSCoder) M:Intents.INPersonHandle.get_ClassHandle M:Intents.INPersonHandle.get_Label @@ -72667,6 +75180,7 @@ M:Intents.INPriceRange.#ctor(Foundation.NSCoder) M:Intents.INPriceRange.#ctor(Foundation.NSObjectFlag) M:Intents.INPriceRange.#ctor(Intents.INPriceRangeOption,Foundation.NSDecimalNumber,System.String) M:Intents.INPriceRange.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INPriceRange.Copy(Foundation.NSZone) M:Intents.INPriceRange.EncodeTo(Foundation.NSCoder) M:Intents.INPriceRange.get_ClassHandle M:Intents.INRadioTypeResolutionResult.#ctor(Foundation.NSObjectFlag) @@ -72682,6 +75196,7 @@ M:Intents.INRadioTypeResolutionResult.GetUnsupported(System.IntPtr) M:Intents.INRecurrenceRule.#ctor(Foundation.NSCoder) M:Intents.INRecurrenceRule.#ctor(Foundation.NSObjectFlag) M:Intents.INRecurrenceRule.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INRecurrenceRule.Copy(Foundation.NSZone) M:Intents.INRecurrenceRule.EncodeTo(Foundation.NSCoder) M:Intents.INRecurrenceRule.get_ClassHandle M:Intents.INRelativeReferenceResolutionResult.#ctor(Foundation.NSObjectFlag) @@ -72707,11 +75222,13 @@ M:Intents.INRelativeSettingResolutionResult.GetUnsupported(System.IntPtr) M:Intents.INRelevanceProvider.#ctor(Foundation.NSCoder) M:Intents.INRelevanceProvider.#ctor(Foundation.NSObjectFlag) M:Intents.INRelevanceProvider.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INRelevanceProvider.Copy(Foundation.NSZone) M:Intents.INRelevanceProvider.EncodeTo(Foundation.NSCoder) M:Intents.INRelevanceProvider.get_ClassHandle M:Intents.INRelevantShortcut.#ctor(Foundation.NSCoder) M:Intents.INRelevantShortcut.#ctor(Foundation.NSObjectFlag) M:Intents.INRelevantShortcut.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INRelevantShortcut.Copy(Foundation.NSZone) M:Intents.INRelevantShortcut.EncodeTo(Foundation.NSCoder) M:Intents.INRelevantShortcut.get_ClassHandle M:Intents.INRelevantShortcut.set_RelevanceProviders(Intents.INRelevanceProvider[]) @@ -72725,11 +75242,13 @@ M:Intents.INRelevantShortcutStore.SetRelevantShortcutsAsync(Intents.INRelevantSh M:Intents.INRentalCar.#ctor(Foundation.NSCoder) M:Intents.INRentalCar.#ctor(Foundation.NSObjectFlag) M:Intents.INRentalCar.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INRentalCar.Copy(Foundation.NSZone) M:Intents.INRentalCar.EncodeTo(Foundation.NSCoder) M:Intents.INRentalCar.get_ClassHandle M:Intents.INRentalCarReservation.#ctor(Foundation.NSCoder) M:Intents.INRentalCarReservation.#ctor(Foundation.NSObjectFlag) M:Intents.INRentalCarReservation.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INRentalCarReservation.Copy(Foundation.NSZone) M:Intents.INRentalCarReservation.EncodeTo(Foundation.NSCoder) M:Intents.INRentalCarReservation.get_ClassHandle M:Intents.INRequestPaymentCurrencyAmountResolutionResult.#ctor(Foundation.NSObjectFlag) @@ -72786,17 +75305,20 @@ M:Intents.INRequestRideIntentResponse.set_RideStatus(Intents.INRideStatus) M:Intents.INReservation.#ctor(Foundation.NSCoder) M:Intents.INReservation.#ctor(Foundation.NSObjectFlag) M:Intents.INReservation.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INReservation.Copy(Foundation.NSZone) M:Intents.INReservation.EncodeTo(Foundation.NSCoder) M:Intents.INReservation.get_ClassHandle M:Intents.INReservationAction.#ctor(Foundation.NSCoder) M:Intents.INReservationAction.#ctor(Foundation.NSObjectFlag) M:Intents.INReservationAction.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INReservationAction.Copy(Foundation.NSZone) M:Intents.INReservationAction.EncodeTo(Foundation.NSCoder) M:Intents.INReservationAction.get_ClassHandle M:Intents.INRestaurant.#ctor M:Intents.INRestaurant.#ctor(Foundation.NSCoder) M:Intents.INRestaurant.#ctor(Foundation.NSObjectFlag) M:Intents.INRestaurant.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INRestaurant.Copy(Foundation.NSZone) M:Intents.INRestaurant.EncodeTo(Foundation.NSCoder) M:Intents.INRestaurant.get_ClassHandle M:Intents.INRestaurant.set_Location(CoreLocation.CLLocation) @@ -72813,6 +75335,7 @@ M:Intents.INRestaurantGuestDisplayPreferences.#ctor M:Intents.INRestaurantGuestDisplayPreferences.#ctor(Foundation.NSCoder) M:Intents.INRestaurantGuestDisplayPreferences.#ctor(Foundation.NSObjectFlag) M:Intents.INRestaurantGuestDisplayPreferences.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INRestaurantGuestDisplayPreferences.Copy(Foundation.NSZone) M:Intents.INRestaurantGuestDisplayPreferences.EncodeTo(Foundation.NSCoder) M:Intents.INRestaurantGuestDisplayPreferences.get_ClassHandle M:Intents.INRestaurantGuestDisplayPreferences.set_EmailAddressEditable(System.Boolean) @@ -72835,6 +75358,7 @@ M:Intents.INRestaurantOffer.#ctor M:Intents.INRestaurantOffer.#ctor(Foundation.NSCoder) M:Intents.INRestaurantOffer.#ctor(Foundation.NSObjectFlag) M:Intents.INRestaurantOffer.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INRestaurantOffer.Copy(Foundation.NSZone) M:Intents.INRestaurantOffer.EncodeTo(Foundation.NSCoder) M:Intents.INRestaurantOffer.get_ClassHandle M:Intents.INRestaurantOffer.set_OfferDetailText(System.String) @@ -72843,12 +75367,14 @@ M:Intents.INRestaurantOffer.set_OfferTitleText(System.String) M:Intents.INRestaurantReservation.#ctor(Foundation.NSCoder) M:Intents.INRestaurantReservation.#ctor(Foundation.NSObjectFlag) M:Intents.INRestaurantReservation.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INRestaurantReservation.Copy(Foundation.NSZone) M:Intents.INRestaurantReservation.EncodeTo(Foundation.NSCoder) M:Intents.INRestaurantReservation.get_ClassHandle M:Intents.INRestaurantReservationBooking.#ctor M:Intents.INRestaurantReservationBooking.#ctor(Foundation.NSCoder) M:Intents.INRestaurantReservationBooking.#ctor(Foundation.NSObjectFlag) M:Intents.INRestaurantReservationBooking.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INRestaurantReservationBooking.Copy(Foundation.NSZone) M:Intents.INRestaurantReservationBooking.EncodeTo(Foundation.NSCoder) M:Intents.INRestaurantReservationBooking.get_BookingAvailable M:Intents.INRestaurantReservationBooking.get_ClassHandle @@ -72868,6 +75394,7 @@ M:Intents.INRestaurantReservationUserBooking.#ctor(Foundation.NSCoder) M:Intents.INRestaurantReservationUserBooking.#ctor(Foundation.NSObjectFlag) M:Intents.INRestaurantReservationUserBooking.#ctor(Intents.INRestaurant,Foundation.NSDate,System.UIntPtr,System.String) M:Intents.INRestaurantReservationUserBooking.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INRestaurantReservationUserBooking.Copy(Foundation.NSZone) M:Intents.INRestaurantReservationUserBooking.get_ClassHandle M:Intents.INRestaurantReservationUserBooking.set_AdvisementText(System.String) M:Intents.INRestaurantReservationUserBooking.set_DateStatusModified(Foundation.NSDate) @@ -72897,6 +75424,7 @@ M:Intents.INResumeWorkoutIntentResponse.get_ClassHandle M:Intents.INRideCompletionStatus.#ctor(Foundation.NSCoder) M:Intents.INRideCompletionStatus.#ctor(Foundation.NSObjectFlag) M:Intents.INRideCompletionStatus.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INRideCompletionStatus.Copy(Foundation.NSZone) M:Intents.INRideCompletionStatus.EncodeTo(Foundation.NSCoder) M:Intents.INRideCompletionStatus.get_Canceled M:Intents.INRideCompletionStatus.get_ClassHandle @@ -72908,15 +75436,18 @@ M:Intents.INRideCompletionStatus.set_DefaultTippingOptions(Foundation.NSSet{Inte M:Intents.INRideDriver.#ctor(Foundation.NSCoder) M:Intents.INRideDriver.#ctor(Foundation.NSObjectFlag) M:Intents.INRideDriver.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INRideDriver.Copy(Foundation.NSZone) M:Intents.INRideDriver.EncodeTo(Foundation.NSCoder) M:Intents.INRideDriver.get_ClassHandle M:Intents.INRideFareLineItem.#ctor(Foundation.NSCoder) M:Intents.INRideFareLineItem.#ctor(Foundation.NSObjectFlag) M:Intents.INRideFareLineItem.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INRideFareLineItem.Copy(Foundation.NSZone) M:Intents.INRideFareLineItem.EncodeTo(Foundation.NSCoder) M:Intents.INRideFareLineItem.get_ClassHandle M:Intents.INRideOption.#ctor(Foundation.NSObjectFlag) M:Intents.INRideOption.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INRideOption.Copy(Foundation.NSZone) M:Intents.INRideOption.EncodeTo(Foundation.NSCoder) M:Intents.INRideOption.get_ClassHandle M:Intents.INRideOption.get_UsesMeteredFare @@ -72933,11 +75464,13 @@ M:Intents.INRideOption.set_UserActivityForBookingInApplication(Foundation.NSUser M:Intents.INRidePartySizeOption.#ctor(Foundation.NSCoder) M:Intents.INRidePartySizeOption.#ctor(Foundation.NSObjectFlag) M:Intents.INRidePartySizeOption.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INRidePartySizeOption.Copy(Foundation.NSZone) M:Intents.INRidePartySizeOption.EncodeTo(Foundation.NSCoder) M:Intents.INRidePartySizeOption.get_ClassHandle M:Intents.INRideStatus.#ctor(Foundation.NSCoder) M:Intents.INRideStatus.#ctor(Foundation.NSObjectFlag) M:Intents.INRideStatus.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INRideStatus.Copy(Foundation.NSZone) M:Intents.INRideStatus.EncodeTo(Foundation.NSCoder) M:Intents.INRideStatus.get_ClassHandle M:Intents.INRideStatus.set_AdditionalActionActivities(Foundation.NSUserActivity[]) @@ -72959,6 +75492,7 @@ M:Intents.INRideVehicle.#ctor M:Intents.INRideVehicle.#ctor(Foundation.NSCoder) M:Intents.INRideVehicle.#ctor(Foundation.NSObjectFlag) M:Intents.INRideVehicle.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INRideVehicle.Copy(Foundation.NSZone) M:Intents.INRideVehicle.EncodeTo(Foundation.NSCoder) M:Intents.INRideVehicle.get_ClassHandle M:Intents.INRideVehicle.set_Location(CoreLocation.CLLocation) @@ -73110,6 +75644,7 @@ M:Intents.INSearchForPhotosIntentResponse.set_SearchResultsCount(Foundation.NSNu M:Intents.INSeat.#ctor(Foundation.NSCoder) M:Intents.INSeat.#ctor(Foundation.NSObjectFlag) M:Intents.INSeat.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INSeat.Copy(Foundation.NSZone) M:Intents.INSeat.EncodeTo(Foundation.NSCoder) M:Intents.INSeat.get_ClassHandle M:Intents.INSendMessageAttachment.#ctor(Foundation.NSObjectFlag) @@ -73362,6 +75897,7 @@ M:Intents.INShareFocusStatusIntentResponse.get_ClassHandle M:Intents.INShortcut.#ctor(Foundation.NSCoder) M:Intents.INShortcut.#ctor(Foundation.NSObjectFlag) M:Intents.INShortcut.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INShortcut.Copy(Foundation.NSZone) M:Intents.INShortcut.EncodeTo(Foundation.NSCoder) M:Intents.INShortcut.get_ClassHandle M:Intents.INSnoozeTasksIntent.#ctor(Foundation.NSCoder) @@ -73390,6 +75926,7 @@ M:Intents.INSnoozeTasksTaskResolutionResult.GetUnsupported(System.IntPtr) M:Intents.INSpatialEventTrigger.#ctor(Foundation.NSCoder) M:Intents.INSpatialEventTrigger.#ctor(Foundation.NSObjectFlag) M:Intents.INSpatialEventTrigger.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INSpatialEventTrigger.Copy(Foundation.NSZone) M:Intents.INSpatialEventTrigger.EncodeTo(Foundation.NSCoder) M:Intents.INSpatialEventTrigger.get_ClassHandle M:Intents.INSpatialEventTriggerResolutionResult.#ctor(Foundation.NSObjectFlag) @@ -73405,8 +75942,14 @@ M:Intents.INSpeakableString.#ctor(Foundation.NSCoder) M:Intents.INSpeakableString.#ctor(Foundation.NSObjectFlag) M:Intents.INSpeakableString.#ctor(ObjCRuntime.NativeHandle) M:Intents.INSpeakableString.#ctor(System.String,System.String,System.String) +M:Intents.INSpeakableString.Copy(Foundation.NSZone) M:Intents.INSpeakableString.EncodeTo(Foundation.NSCoder) +M:Intents.INSpeakableString.get_AlternativeSpeakableMatches M:Intents.INSpeakableString.get_ClassHandle +M:Intents.INSpeakableString.get_Identifier +M:Intents.INSpeakableString.get_PronunciationHint +M:Intents.INSpeakableString.get_SpokenPhrase +M:Intents.INSpeakableString.get_VocabularyIdentifier M:Intents.INSpeakableStringResolutionResult.#ctor(Foundation.NSObjectFlag) M:Intents.INSpeakableStringResolutionResult.#ctor(ObjCRuntime.NativeHandle) M:Intents.INSpeakableStringResolutionResult.get_ClassHandle @@ -73534,11 +76077,13 @@ M:Intents.INStringResolutionResult.GetUnsupported(System.IntPtr) M:Intents.INTask.#ctor(Foundation.NSCoder) M:Intents.INTask.#ctor(Foundation.NSObjectFlag) M:Intents.INTask.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INTask.Copy(Foundation.NSZone) M:Intents.INTask.EncodeTo(Foundation.NSCoder) M:Intents.INTask.get_ClassHandle M:Intents.INTaskList.#ctor(Foundation.NSCoder) M:Intents.INTaskList.#ctor(Foundation.NSObjectFlag) M:Intents.INTaskList.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INTaskList.Copy(Foundation.NSZone) M:Intents.INTaskList.EncodeTo(Foundation.NSCoder) M:Intents.INTaskList.get_ClassHandle M:Intents.INTaskListResolutionResult.#ctor(Foundation.NSObjectFlag) @@ -73584,6 +76129,7 @@ M:Intents.INTemperatureResolutionResult.GetUnsupported(System.IntPtr) M:Intents.INTemporalEventTrigger.#ctor(Foundation.NSCoder) M:Intents.INTemporalEventTrigger.#ctor(Foundation.NSObjectFlag) M:Intents.INTemporalEventTrigger.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INTemporalEventTrigger.Copy(Foundation.NSZone) M:Intents.INTemporalEventTrigger.EncodeTo(Foundation.NSCoder) M:Intents.INTemporalEventTrigger.get_ClassHandle M:Intents.INTemporalEventTriggerResolutionResult.#ctor(Foundation.NSObjectFlag) @@ -73606,21 +76152,25 @@ M:Intents.INTermsAndConditions.#ctor M:Intents.INTermsAndConditions.#ctor(Foundation.NSCoder) M:Intents.INTermsAndConditions.#ctor(Foundation.NSObjectFlag) M:Intents.INTermsAndConditions.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INTermsAndConditions.Copy(Foundation.NSZone) M:Intents.INTermsAndConditions.EncodeTo(Foundation.NSCoder) M:Intents.INTermsAndConditions.get_ClassHandle M:Intents.INTextNoteContent.#ctor(Foundation.NSCoder) M:Intents.INTextNoteContent.#ctor(Foundation.NSObjectFlag) M:Intents.INTextNoteContent.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INTextNoteContent.Copy(Foundation.NSZone) M:Intents.INTextNoteContent.EncodeTo(Foundation.NSCoder) M:Intents.INTextNoteContent.get_ClassHandle M:Intents.INTicketedEvent.#ctor(Foundation.NSCoder) M:Intents.INTicketedEvent.#ctor(Foundation.NSObjectFlag) M:Intents.INTicketedEvent.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INTicketedEvent.Copy(Foundation.NSZone) M:Intents.INTicketedEvent.EncodeTo(Foundation.NSCoder) M:Intents.INTicketedEvent.get_ClassHandle M:Intents.INTicketedEventReservation.#ctor(Foundation.NSCoder) M:Intents.INTicketedEventReservation.#ctor(Foundation.NSObjectFlag) M:Intents.INTicketedEventReservation.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INTicketedEventReservation.Copy(Foundation.NSZone) M:Intents.INTicketedEventReservation.EncodeTo(Foundation.NSCoder) M:Intents.INTicketedEventReservation.get_ClassHandle M:Intents.INTimeIntervalResolutionResult.#ctor(Foundation.NSObjectFlag) @@ -73634,11 +76184,13 @@ M:Intents.INTimeIntervalResolutionResult.GetUnsupported(System.IntPtr) M:Intents.INTrainReservation.#ctor(Foundation.NSCoder) M:Intents.INTrainReservation.#ctor(Foundation.NSObjectFlag) M:Intents.INTrainReservation.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INTrainReservation.Copy(Foundation.NSZone) M:Intents.INTrainReservation.EncodeTo(Foundation.NSCoder) M:Intents.INTrainReservation.get_ClassHandle M:Intents.INTrainTrip.#ctor(Foundation.NSCoder) M:Intents.INTrainTrip.#ctor(Foundation.NSObjectFlag) M:Intents.INTrainTrip.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INTrainTrip.Copy(Foundation.NSZone) M:Intents.INTrainTrip.EncodeTo(Foundation.NSCoder) M:Intents.INTrainTrip.get_ClassHandle M:Intents.INTransferMoneyIntent.#ctor(Foundation.NSCoder) @@ -73723,6 +76275,7 @@ M:Intents.INVocabulary.get_ClassHandle M:Intents.INVoiceShortcut.#ctor(Foundation.NSCoder) M:Intents.INVoiceShortcut.#ctor(Foundation.NSObjectFlag) M:Intents.INVoiceShortcut.#ctor(ObjCRuntime.NativeHandle) +M:Intents.INVoiceShortcut.Copy(Foundation.NSZone) M:Intents.INVoiceShortcut.EncodeTo(Foundation.NSCoder) M:Intents.INVoiceShortcut.get_ClassHandle M:Intents.INVoiceShortcutCenter.#ctor(Foundation.NSObjectFlag) @@ -74326,12 +76879,14 @@ M:MailKit.MEDecodedMessage.get_ClassHandle M:MailKit.MEDecodedMessageBanner.#ctor(Foundation.NSCoder) M:MailKit.MEDecodedMessageBanner.#ctor(Foundation.NSObjectFlag) M:MailKit.MEDecodedMessageBanner.#ctor(ObjCRuntime.NativeHandle) +M:MailKit.MEDecodedMessageBanner.Copy(Foundation.NSZone) M:MailKit.MEDecodedMessageBanner.EncodeTo(Foundation.NSCoder) M:MailKit.MEDecodedMessageBanner.get_ClassHandle M:MailKit.MEDecodedMessageBanner.get_Dismissable M:MailKit.MEEmailAddress.#ctor(Foundation.NSCoder) M:MailKit.MEEmailAddress.#ctor(Foundation.NSObjectFlag) M:MailKit.MEEmailAddress.#ctor(ObjCRuntime.NativeHandle) +M:MailKit.MEEmailAddress.Copy(Foundation.NSZone) M:MailKit.MEEmailAddress.EncodeTo(Foundation.NSCoder) M:MailKit.MEEmailAddress.get_ClassHandle M:MailKit.MEEncodedOutgoingMessage.#ctor @@ -74455,7 +77010,9 @@ M:MapKit.MKAnnotationViewEventArgs.set_View(MapKit.MKAnnotationView) M:MapKit.MKCircle.#ctor M:MapKit.MKCircle.#ctor(Foundation.NSObjectFlag) M:MapKit.MKCircle.#ctor(ObjCRuntime.NativeHandle) +M:MapKit.MKCircle.get_CanReplaceMapContent M:MapKit.MKCircle.get_ClassHandle +M:MapKit.MKCircle.Intersects(MapKit.MKMapRect) M:MapKit.MKCircleRenderer.#ctor M:MapKit.MKCircleRenderer.#ctor(Foundation.NSObjectFlag) M:MapKit.MKCircleRenderer.#ctor(ObjCRuntime.NativeHandle) @@ -74479,8 +77036,10 @@ M:MapKit.MKCircleView.MKCircleViewAppearance.#ctor(System.IntPtr) M:MapKit.MKClusterAnnotation.#ctor(Foundation.NSObjectFlag) M:MapKit.MKClusterAnnotation.#ctor(ObjCRuntime.NativeHandle) M:MapKit.MKClusterAnnotation.get_ClassHandle +M:MapKit.MKClusterAnnotation.get_Coordinate M:MapKit.MKClusterAnnotation.set_Subtitle(System.String) M:MapKit.MKClusterAnnotation.set_Title(System.String) +M:MapKit.MKClusterAnnotation.SetCoordinate(CoreLocation.CLLocationCoordinate2D) M:MapKit.MKCompassButton.#ctor(Foundation.NSCoder) M:MapKit.MKCompassButton.#ctor(Foundation.NSObjectFlag) M:MapKit.MKCompassButton.#ctor(ObjCRuntime.NativeHandle) @@ -74602,6 +77161,7 @@ M:MapKit.MKLaunchOptions.set_MapType(System.Nullable{MapKit.MKMapType}) M:MapKit.MKLaunchOptions.set_ShowTraffic(System.Nullable{System.Boolean}) M:MapKit.MKLocalPointsOfInterestRequest.#ctor(Foundation.NSObjectFlag) M:MapKit.MKLocalPointsOfInterestRequest.#ctor(ObjCRuntime.NativeHandle) +M:MapKit.MKLocalPointsOfInterestRequest.Copy(Foundation.NSZone) M:MapKit.MKLocalPointsOfInterestRequest.get_ClassHandle M:MapKit.MKLocalPointsOfInterestRequest.get_RequestMaxRadius M:MapKit.MKLocalPointsOfInterestRequest.set_PointOfInterestFilter(MapKit.MKPointOfInterestFilter) @@ -74641,6 +77201,7 @@ M:MapKit.MKLocalSearchCompletionHandler.EndInvoke(System.IAsyncResult) M:MapKit.MKLocalSearchCompletionHandler.Invoke(MapKit.MKLocalSearchResponse,Foundation.NSError) M:MapKit.MKLocalSearchRequest.#ctor(Foundation.NSObjectFlag) M:MapKit.MKLocalSearchRequest.#ctor(ObjCRuntime.NativeHandle) +M:MapKit.MKLocalSearchRequest.Copy(Foundation.NSZone) M:MapKit.MKLocalSearchRequest.get_ClassHandle M:MapKit.MKLocalSearchRequest.set_NaturalLanguageQuery(System.String) M:MapKit.MKLocalSearchRequest.set_PointOfInterestFilter(MapKit.MKPointOfInterestFilter) @@ -74651,6 +77212,7 @@ M:MapKit.MKLocalSearchResponse.#ctor(ObjCRuntime.NativeHandle) M:MapKit.MKLocalSearchResponse.get_ClassHandle M:MapKit.MKLookAroundScene.#ctor(Foundation.NSObjectFlag) M:MapKit.MKLookAroundScene.#ctor(ObjCRuntime.NativeHandle) +M:MapKit.MKLookAroundScene.Copy(Foundation.NSZone) M:MapKit.MKLookAroundScene.get_ClassHandle M:MapKit.MKLookAroundSceneRequest.#ctor(Foundation.NSObjectFlag) M:MapKit.MKLookAroundSceneRequest.#ctor(ObjCRuntime.NativeHandle) @@ -74677,6 +77239,7 @@ M:MapKit.MKLookAroundViewController.#ctor M:MapKit.MKLookAroundViewController.#ctor(Foundation.NSObjectFlag) M:MapKit.MKLookAroundViewController.#ctor(ObjCRuntime.NativeHandle) M:MapKit.MKLookAroundViewController.Dispose(System.Boolean) +M:MapKit.MKLookAroundViewController.EncodeTo(Foundation.NSCoder) M:MapKit.MKLookAroundViewController.get_ClassHandle M:MapKit.MKLookAroundViewController.get_Delegate M:MapKit.MKLookAroundViewController.get_NavigationEnabled @@ -74706,6 +77269,7 @@ M:MapKit.MKMapCamera.#ctor M:MapKit.MKMapCamera.#ctor(Foundation.NSCoder) M:MapKit.MKMapCamera.#ctor(Foundation.NSObjectFlag) M:MapKit.MKMapCamera.#ctor(ObjCRuntime.NativeHandle) +M:MapKit.MKMapCamera.Copy(Foundation.NSZone) M:MapKit.MKMapCamera.EncodeTo(Foundation.NSCoder) M:MapKit.MKMapCamera.get_ClassHandle M:MapKit.MKMapCamera.set_Altitude(System.Double) @@ -74716,6 +77280,7 @@ M:MapKit.MKMapCamera.set_Pitch(System.Runtime.InteropServices.NFloat) M:MapKit.MKMapCameraBoundary.#ctor M:MapKit.MKMapCameraBoundary.#ctor(Foundation.NSObjectFlag) M:MapKit.MKMapCameraBoundary.#ctor(ObjCRuntime.NativeHandle) +M:MapKit.MKMapCameraBoundary.Copy(Foundation.NSZone) M:MapKit.MKMapCameraBoundary.EncodeTo(Foundation.NSCoder) M:MapKit.MKMapCameraBoundary.get_ClassHandle M:MapKit.MKMapCameraZoomRange.#ctor @@ -74724,18 +77289,24 @@ M:MapKit.MKMapCameraZoomRange.#ctor(Foundation.NSObjectFlag) M:MapKit.MKMapCameraZoomRange.#ctor(ObjCRuntime.NativeHandle) M:MapKit.MKMapCameraZoomRange.#ctor(System.Double,MapKit.MKMapCameraZoomRangeType) M:MapKit.MKMapCameraZoomRange.#ctor(System.Double) +M:MapKit.MKMapCameraZoomRange.Copy(Foundation.NSZone) M:MapKit.MKMapCameraZoomRange.EncodeTo(Foundation.NSCoder) M:MapKit.MKMapCameraZoomRange.get_ClassHandle M:MapKit.MKMapCameraZoomRange.get_ZoomDefault M:MapKit.MKMapConfiguration.#ctor(Foundation.NSCoder) M:MapKit.MKMapConfiguration.#ctor(Foundation.NSObjectFlag) M:MapKit.MKMapConfiguration.#ctor(ObjCRuntime.NativeHandle) +M:MapKit.MKMapConfiguration.Copy(Foundation.NSZone) M:MapKit.MKMapConfiguration.EncodeTo(Foundation.NSCoder) M:MapKit.MKMapConfiguration.get_ClassHandle M:MapKit.MKMapConfiguration.set_ElevationStyle(MapKit.MKMapElevationStyle) M:MapKit.MKMapFeatureAnnotation.#ctor(Foundation.NSObjectFlag) M:MapKit.MKMapFeatureAnnotation.#ctor(ObjCRuntime.NativeHandle) M:MapKit.MKMapFeatureAnnotation.get_ClassHandle +M:MapKit.MKMapFeatureAnnotation.get_Coordinate +M:MapKit.MKMapFeatureAnnotation.get_Subtitle +M:MapKit.MKMapFeatureAnnotation.get_Title +M:MapKit.MKMapFeatureAnnotation.SetCoordinate(CoreLocation.CLLocationCoordinate2D) M:MapKit.MKMapItem.#ctor M:MapKit.MKMapItem.#ctor(Foundation.NSCoder) M:MapKit.MKMapItem.#ctor(Foundation.NSObjectFlag) @@ -74820,6 +77391,7 @@ M:MapKit.MKMapSnapshotCompletionHandler.Invoke(MapKit.MKMapSnapshot,Foundation.N M:MapKit.MKMapSnapshotOptions.#ctor M:MapKit.MKMapSnapshotOptions.#ctor(Foundation.NSObjectFlag) M:MapKit.MKMapSnapshotOptions.#ctor(ObjCRuntime.NativeHandle) +M:MapKit.MKMapSnapshotOptions.Copy(Foundation.NSZone) M:MapKit.MKMapSnapshotOptions.get_ClassHandle M:MapKit.MKMapSnapshotOptions.set_Appearance(AppKit.NSAppearance) M:MapKit.MKMapSnapshotOptions.set_Camera(MapKit.MKMapCamera) @@ -74842,6 +77414,7 @@ M:MapKit.MKMapSnapshotter.StartAsync M:MapKit.MKMapSnapshotter.StartAsync(CoreFoundation.DispatchQueue) M:MapKit.MKMapView.#ctor M:MapKit.MKMapView.#ctor(CoreGraphics.CGRect) +M:MapKit.MKMapView.#ctor(Foundation.NSCoder) M:MapKit.MKMapView.#ctor(Foundation.NSObjectFlag) M:MapKit.MKMapView.#ctor(ObjCRuntime.NativeHandle) M:MapKit.MKMapView.add_CalloutAccessoryControlTapped(System.EventHandler{MapKit.MKMapViewAccessoryTappedEventArgs}) @@ -75069,7 +77642,10 @@ M:MapKit.MKMultiPoint.GetCoordinates(System.Int32,System.Int32) M:MapKit.MKMultiPolygon.#ctor M:MapKit.MKMultiPolygon.#ctor(Foundation.NSObjectFlag) M:MapKit.MKMultiPolygon.#ctor(ObjCRuntime.NativeHandle) +M:MapKit.MKMultiPolygon.get_BoundingMapRect +M:MapKit.MKMultiPolygon.get_CanReplaceMapContent M:MapKit.MKMultiPolygon.get_ClassHandle +M:MapKit.MKMultiPolygon.Intersects(MapKit.MKMapRect) M:MapKit.MKMultiPolygonRenderer.#ctor M:MapKit.MKMultiPolygonRenderer.#ctor(Foundation.NSObjectFlag) M:MapKit.MKMultiPolygonRenderer.#ctor(ObjCRuntime.NativeHandle) @@ -75077,7 +77653,10 @@ M:MapKit.MKMultiPolygonRenderer.get_ClassHandle M:MapKit.MKMultiPolyline.#ctor M:MapKit.MKMultiPolyline.#ctor(Foundation.NSObjectFlag) M:MapKit.MKMultiPolyline.#ctor(ObjCRuntime.NativeHandle) +M:MapKit.MKMultiPolyline.get_BoundingMapRect +M:MapKit.MKMultiPolyline.get_CanReplaceMapContent M:MapKit.MKMultiPolyline.get_ClassHandle +M:MapKit.MKMultiPolyline.Intersects(MapKit.MKMapRect) M:MapKit.MKMultiPolylineRenderer.#ctor M:MapKit.MKMultiPolylineRenderer.#ctor(Foundation.NSObjectFlag) M:MapKit.MKMultiPolylineRenderer.#ctor(ObjCRuntime.NativeHandle) @@ -75197,6 +77776,10 @@ M:MapKit.MKPlacemark.#ctor(Foundation.NSObjectFlag) M:MapKit.MKPlacemark.#ctor(ObjCRuntime.NativeHandle) M:MapKit.MKPlacemark.Copy(Foundation.NSZone) M:MapKit.MKPlacemark.get_ClassHandle +M:MapKit.MKPlacemark.get_Coordinate +M:MapKit.MKPlacemark.get_Subtitle +M:MapKit.MKPlacemark.get_Title +M:MapKit.MKPlacemark.SetCoordinate(CoreLocation.CLLocationCoordinate2D) M:MapKit.MKPlacemarkAddress.#ctor M:MapKit.MKPlacemarkAddress.#ctor(Foundation.NSDictionary) M:MapKit.MKPlacemarkAddress.get_City @@ -75223,6 +77806,7 @@ M:MapKit.MKPointOfInterestFilter.#ctor(Foundation.NSObjectFlag) M:MapKit.MKPointOfInterestFilter.#ctor(MapKit.MKPointOfInterestCategory[],MapKit.MKPointOfInterestFilterType) M:MapKit.MKPointOfInterestFilter.#ctor(MapKit.MKPointOfInterestCategory[]) M:MapKit.MKPointOfInterestFilter.#ctor(ObjCRuntime.NativeHandle) +M:MapKit.MKPointOfInterestFilter.Copy(Foundation.NSZone) M:MapKit.MKPointOfInterestFilter.EncodeTo(Foundation.NSCoder) M:MapKit.MKPointOfInterestFilter.get_ClassHandle M:MapKit.MKPolygon.#ctor @@ -75232,7 +77816,11 @@ M:MapKit.MKPolygon.FromCoordinates(CoreLocation.CLLocationCoordinate2D[],MapKit. M:MapKit.MKPolygon.FromCoordinates(CoreLocation.CLLocationCoordinate2D[]) M:MapKit.MKPolygon.FromPoints(MapKit.MKMapPoint[],MapKit.MKPolygon[]) M:MapKit.MKPolygon.FromPoints(MapKit.MKMapPoint[]) +M:MapKit.MKPolygon.get_BoundingMapRect +M:MapKit.MKPolygon.get_CanReplaceMapContent M:MapKit.MKPolygon.get_ClassHandle +M:MapKit.MKPolygon.get_Coordinate +M:MapKit.MKPolygon.Intersects(MapKit.MKMapRect) M:MapKit.MKPolygonRenderer.#ctor M:MapKit.MKPolygonRenderer.#ctor(Foundation.NSObjectFlag) M:MapKit.MKPolygonRenderer.#ctor(ObjCRuntime.NativeHandle) @@ -75258,7 +77846,11 @@ M:MapKit.MKPolyline.#ctor(Foundation.NSObjectFlag) M:MapKit.MKPolyline.#ctor(ObjCRuntime.NativeHandle) M:MapKit.MKPolyline.FromCoordinates(CoreLocation.CLLocationCoordinate2D[]) M:MapKit.MKPolyline.FromPoints(MapKit.MKMapPoint[]) +M:MapKit.MKPolyline.get_BoundingMapRect +M:MapKit.MKPolyline.get_CanReplaceMapContent M:MapKit.MKPolyline.get_ClassHandle +M:MapKit.MKPolyline.get_Coordinate +M:MapKit.MKPolyline.Intersects(MapKit.MKMapRect) M:MapKit.MKPolylineRenderer.#ctor M:MapKit.MKPolylineRenderer.#ctor(Foundation.NSObjectFlag) M:MapKit.MKPolylineRenderer.#ctor(ObjCRuntime.NativeHandle) @@ -75325,8 +77917,10 @@ M:MapKit.MKShape.#ctor M:MapKit.MKShape.#ctor(Foundation.NSObjectFlag) M:MapKit.MKShape.#ctor(ObjCRuntime.NativeHandle) M:MapKit.MKShape.get_ClassHandle +M:MapKit.MKShape.get_Coordinate M:MapKit.MKShape.set_Subtitle(System.String) M:MapKit.MKShape.set_Title(System.String) +M:MapKit.MKShape.SetCoordinate(CoreLocation.CLLocationCoordinate2D) M:MapKit.MKStandardMapConfiguration.#ctor(Foundation.NSCoder) M:MapKit.MKStandardMapConfiguration.#ctor(Foundation.NSObjectFlag) M:MapKit.MKStandardMapConfiguration.#ctor(ObjCRuntime.NativeHandle) @@ -75337,8 +77931,11 @@ M:MapKit.MKStandardMapConfiguration.set_ShowsTraffic(System.Boolean) M:MapKit.MKTileOverlay.#ctor M:MapKit.MKTileOverlay.#ctor(Foundation.NSObjectFlag) M:MapKit.MKTileOverlay.#ctor(ObjCRuntime.NativeHandle) +M:MapKit.MKTileOverlay.get_BoundingMapRect M:MapKit.MKTileOverlay.get_ClassHandle +M:MapKit.MKTileOverlay.get_Coordinate M:MapKit.MKTileOverlay.get_GeometryFlipped +M:MapKit.MKTileOverlay.Intersects(MapKit.MKMapRect) M:MapKit.MKTileOverlay.set_CanReplaceMapContent(System.Boolean) M:MapKit.MKTileOverlay.set_GeometryFlipped(System.Boolean) M:MapKit.MKTileOverlay.set_MaximumZ(System.IntPtr) @@ -75355,7 +77952,9 @@ M:MapKit.MKUserLocation.#ctor M:MapKit.MKUserLocation.#ctor(Foundation.NSObjectFlag) M:MapKit.MKUserLocation.#ctor(ObjCRuntime.NativeHandle) M:MapKit.MKUserLocation.get_ClassHandle +M:MapKit.MKUserLocation.get_Coordinate M:MapKit.MKUserLocation.get_Updating +M:MapKit.MKUserLocation.set_Coordinate(CoreLocation.CLLocationCoordinate2D) M:MapKit.MKUserLocation.set_Subtitle(System.String) M:MapKit.MKUserLocation.set_Title(System.String) M:MapKit.MKUserLocationEventArgs.#ctor(MapKit.MKUserLocation) @@ -76670,20 +79269,42 @@ M:Messages.MSConversation.#ctor M:Messages.MSConversation.#ctor(Foundation.NSObjectFlag) M:Messages.MSConversation.#ctor(ObjCRuntime.NativeHandle) M:Messages.MSConversation.get_ClassHandle +M:Messages.MSConversation.get_LocalParticipantIdentifier +M:Messages.MSConversation.get_RemoteParticipantIdentifiers +M:Messages.MSConversation.get_SelectedMessage +M:Messages.MSConversation.InsertAttachment(Foundation.NSUrl,System.String,System.Action{Foundation.NSError}) M:Messages.MSConversation.InsertAttachmentAsync(Foundation.NSUrl,System.String) +M:Messages.MSConversation.InsertMessage(Messages.MSMessage,System.Action{Foundation.NSError}) M:Messages.MSConversation.InsertMessageAsync(Messages.MSMessage) +M:Messages.MSConversation.InsertSticker(Messages.MSSticker,System.Action{Foundation.NSError}) M:Messages.MSConversation.InsertStickerAsync(Messages.MSSticker) +M:Messages.MSConversation.InsertText(System.String,System.Action{Foundation.NSError}) M:Messages.MSConversation.InsertTextAsync(System.String) +M:Messages.MSConversation.SendAttachment(Foundation.NSUrl,System.String,System.Action{Foundation.NSError}) M:Messages.MSConversation.SendAttachmentAsync(Foundation.NSUrl,System.String) +M:Messages.MSConversation.SendMessage(Messages.MSMessage,System.Action{Foundation.NSError}) M:Messages.MSConversation.SendMessageAsync(Messages.MSMessage) +M:Messages.MSConversation.SendSticker(Messages.MSSticker,System.Action{Foundation.NSError}) M:Messages.MSConversation.SendStickerAsync(Messages.MSSticker) +M:Messages.MSConversation.SendText(System.String,System.Action{Foundation.NSError}) M:Messages.MSConversation.SendTextAsync(System.String) +M:Messages.MSMessage.#ctor M:Messages.MSMessage.#ctor(Foundation.NSCoder) M:Messages.MSMessage.#ctor(Foundation.NSObjectFlag) +M:Messages.MSMessage.#ctor(Messages.MSSession) M:Messages.MSMessage.#ctor(ObjCRuntime.NativeHandle) +M:Messages.MSMessage.Copy(Foundation.NSZone) M:Messages.MSMessage.EncodeTo(Foundation.NSCoder) +M:Messages.MSMessage.get_AccessibilityLabel M:Messages.MSMessage.get_ClassHandle +M:Messages.MSMessage.get_Error +M:Messages.MSMessage.get_Layout M:Messages.MSMessage.get_Pending +M:Messages.MSMessage.get_SenderParticipantIdentifier +M:Messages.MSMessage.get_Session +M:Messages.MSMessage.get_ShouldExpire +M:Messages.MSMessage.get_SummaryText +M:Messages.MSMessage.get_Url M:Messages.MSMessage.set_AccessibilityLabel(System.String) M:Messages.MSMessage.set_Error(Foundation.NSError) M:Messages.MSMessage.set_Layout(Messages.MSMessageLayout) @@ -76693,20 +79314,48 @@ M:Messages.MSMessage.set_Url(Foundation.NSUrl) M:Messages.MSMessageErrorCodeExtensions.GetDomain(Messages.MSMessageErrorCode) M:Messages.MSMessageLayout.#ctor(Foundation.NSObjectFlag) M:Messages.MSMessageLayout.#ctor(ObjCRuntime.NativeHandle) +M:Messages.MSMessageLayout.Copy(Foundation.NSZone) M:Messages.MSMessageLayout.get_ClassHandle M:Messages.MSMessageLiveLayout.#ctor(Foundation.NSObjectFlag) +M:Messages.MSMessageLiveLayout.#ctor(Messages.MSMessageTemplateLayout) M:Messages.MSMessageLiveLayout.#ctor(ObjCRuntime.NativeHandle) +M:Messages.MSMessageLiveLayout.get_AlternateLayout M:Messages.MSMessageLiveLayout.get_ClassHandle M:Messages.MSMessagesAppViewController.#ctor M:Messages.MSMessagesAppViewController.#ctor(Foundation.NSCoder) M:Messages.MSMessagesAppViewController.#ctor(Foundation.NSObjectFlag) M:Messages.MSMessagesAppViewController.#ctor(ObjCRuntime.NativeHandle) M:Messages.MSMessagesAppViewController.#ctor(System.String,Foundation.NSBundle) +M:Messages.MSMessagesAppViewController.DidBecomeActive(Messages.MSConversation) +M:Messages.MSMessagesAppViewController.DidCancelSendingMessage(Messages.MSMessage,Messages.MSConversation) +M:Messages.MSMessagesAppViewController.DidReceiveMessage(Messages.MSMessage,Messages.MSConversation) +M:Messages.MSMessagesAppViewController.DidResignActive(Messages.MSConversation) +M:Messages.MSMessagesAppViewController.DidSelectMessage(Messages.MSMessage,Messages.MSConversation) +M:Messages.MSMessagesAppViewController.DidStartSendingMessage(Messages.MSMessage,Messages.MSConversation) +M:Messages.MSMessagesAppViewController.DidTransition(Messages.MSMessagesAppPresentationStyle) +M:Messages.MSMessagesAppViewController.Dismiss +M:Messages.MSMessagesAppViewController.get_ActiveConversation M:Messages.MSMessagesAppViewController.get_ClassHandle +M:Messages.MSMessagesAppViewController.get_PresentationContext +M:Messages.MSMessagesAppViewController.get_PresentationStyle +M:Messages.MSMessagesAppViewController.GetContentSizeThatFits(CoreGraphics.CGSize) +M:Messages.MSMessagesAppViewController.Request(Messages.MSMessagesAppPresentationStyle) +M:Messages.MSMessagesAppViewController.WillBecomeActive(Messages.MSConversation) +M:Messages.MSMessagesAppViewController.WillResignActive(Messages.MSConversation) +M:Messages.MSMessagesAppViewController.WillSelectMessage(Messages.MSMessage,Messages.MSConversation) +M:Messages.MSMessagesAppViewController.WillTransition(Messages.MSMessagesAppPresentationStyle) M:Messages.MSMessageTemplateLayout.#ctor M:Messages.MSMessageTemplateLayout.#ctor(Foundation.NSObjectFlag) M:Messages.MSMessageTemplateLayout.#ctor(ObjCRuntime.NativeHandle) +M:Messages.MSMessageTemplateLayout.get_Caption M:Messages.MSMessageTemplateLayout.get_ClassHandle +M:Messages.MSMessageTemplateLayout.get_Image +M:Messages.MSMessageTemplateLayout.get_ImageSubtitle +M:Messages.MSMessageTemplateLayout.get_ImageTitle +M:Messages.MSMessageTemplateLayout.get_MediaFileUrl +M:Messages.MSMessageTemplateLayout.get_Subcaption +M:Messages.MSMessageTemplateLayout.get_TrailingCaption +M:Messages.MSMessageTemplateLayout.get_TrailingSubcaption M:Messages.MSMessageTemplateLayout.set_Caption(System.String) M:Messages.MSMessageTemplateLayout.set_Image(UIKit.UIImage) M:Messages.MSMessageTemplateLayout.set_ImageSubtitle(System.String) @@ -76722,9 +79371,15 @@ M:Messages.MSSession.#ctor(ObjCRuntime.NativeHandle) M:Messages.MSSession.EncodeTo(Foundation.NSCoder) M:Messages.MSSession.get_ClassHandle M:Messages.MSSticker.#ctor(Foundation.NSObjectFlag) +M:Messages.MSSticker.#ctor(Foundation.NSUrl,Foundation.NSUuid,System.String) +M:Messages.MSSticker.#ctor(Foundation.NSUrl,System.String,Foundation.NSError@) M:Messages.MSSticker.#ctor(ObjCRuntime.NativeHandle) M:Messages.MSSticker.get_ClassHandle +M:Messages.MSSticker.get_ImageFileUrl +M:Messages.MSSticker.get_LocalizedDescription M:Messages.MSStickerBrowserView.#ctor +M:Messages.MSStickerBrowserView.#ctor(CoreGraphics.CGRect,Messages.MSStickerSize) +M:Messages.MSStickerBrowserView.#ctor(CoreGraphics.CGRect) M:Messages.MSStickerBrowserView.#ctor(Foundation.NSCoder) M:Messages.MSStickerBrowserView.#ctor(Foundation.NSObjectFlag) M:Messages.MSStickerBrowserView.#ctor(ObjCRuntime.NativeHandle) @@ -76732,33 +79387,48 @@ M:Messages.MSStickerBrowserView.AppearanceWhenContainedIn(System.Type[]) M:Messages.MSStickerBrowserView.Dispose(System.Boolean) M:Messages.MSStickerBrowserView.get_Appearance M:Messages.MSStickerBrowserView.get_ClassHandle +M:Messages.MSStickerBrowserView.get_ContentInset +M:Messages.MSStickerBrowserView.get_ContentOffset +M:Messages.MSStickerBrowserView.get_DataSource +M:Messages.MSStickerBrowserView.get_StickerSize M:Messages.MSStickerBrowserView.GetAppearance(UIKit.UITraitCollection,System.Type[]) M:Messages.MSStickerBrowserView.GetAppearance(UIKit.UITraitCollection) M:Messages.MSStickerBrowserView.GetAppearance``1 M:Messages.MSStickerBrowserView.GetAppearance``1(UIKit.UITraitCollection,System.Type[]) M:Messages.MSStickerBrowserView.GetAppearance``1(UIKit.UITraitCollection) M:Messages.MSStickerBrowserView.MSStickerBrowserViewAppearance.#ctor(System.IntPtr) +M:Messages.MSStickerBrowserView.ReloadData M:Messages.MSStickerBrowserView.set_ContentInset(UIKit.UIEdgeInsets) M:Messages.MSStickerBrowserView.set_ContentOffset(CoreGraphics.CGPoint) M:Messages.MSStickerBrowserView.set_DataSource(Messages.IMSStickerBrowserViewDataSource) +M:Messages.MSStickerBrowserView.SetContentOffset(CoreGraphics.CGPoint,System.Boolean) M:Messages.MSStickerBrowserViewController.#ctor M:Messages.MSStickerBrowserViewController.#ctor(Foundation.NSCoder) M:Messages.MSStickerBrowserViewController.#ctor(Foundation.NSObjectFlag) +M:Messages.MSStickerBrowserViewController.#ctor(Messages.MSStickerSize) M:Messages.MSStickerBrowserViewController.#ctor(ObjCRuntime.NativeHandle) M:Messages.MSStickerBrowserViewController.get_ClassHandle +M:Messages.MSStickerBrowserViewController.get_StickerBrowserView +M:Messages.MSStickerBrowserViewController.get_StickerSize +M:Messages.MSStickerBrowserViewController.GetNumberOfStickers(Messages.MSStickerBrowserView) +M:Messages.MSStickerBrowserViewController.GetSticker(Messages.MSStickerBrowserView,System.IntPtr) M:Messages.MSStickerBrowserViewDataSource.#ctor M:Messages.MSStickerBrowserViewDataSource.#ctor(Foundation.NSObjectFlag) M:Messages.MSStickerBrowserViewDataSource.#ctor(ObjCRuntime.NativeHandle) M:Messages.MSStickerBrowserViewDataSource.GetNumberOfStickers(Messages.MSStickerBrowserView) M:Messages.MSStickerBrowserViewDataSource.GetSticker(Messages.MSStickerBrowserView,System.IntPtr) M:Messages.MSStickerView.#ctor +M:Messages.MSStickerView.#ctor(CoreGraphics.CGRect,Messages.MSSticker) M:Messages.MSStickerView.#ctor(CoreGraphics.CGRect) M:Messages.MSStickerView.#ctor(Foundation.NSCoder) M:Messages.MSStickerView.#ctor(Foundation.NSObjectFlag) M:Messages.MSStickerView.#ctor(ObjCRuntime.NativeHandle) M:Messages.MSStickerView.AppearanceWhenContainedIn(System.Type[]) +M:Messages.MSStickerView.get_AnimationDuration M:Messages.MSStickerView.get_Appearance M:Messages.MSStickerView.get_ClassHandle +M:Messages.MSStickerView.get_IsAnimating +M:Messages.MSStickerView.get_Sticker M:Messages.MSStickerView.GetAppearance(UIKit.UITraitCollection,System.Type[]) M:Messages.MSStickerView.GetAppearance(UIKit.UITraitCollection) M:Messages.MSStickerView.GetAppearance``1 @@ -76766,6 +79436,8 @@ M:Messages.MSStickerView.GetAppearance``1(UIKit.UITraitCollection,System.Type[]) M:Messages.MSStickerView.GetAppearance``1(UIKit.UITraitCollection) M:Messages.MSStickerView.MSStickerViewAppearance.#ctor(System.IntPtr) M:Messages.MSStickerView.set_Sticker(Messages.MSSticker) +M:Messages.MSStickerView.StartAnimating +M:Messages.MSStickerView.StopAnimating M:MessageUI.IMFMessageComposeViewControllerDelegate.Finished(MessageUI.MFMessageComposeViewController,MessageUI.MessageComposeResult) M:MessageUI.MFComposeResultEventArgs.#ctor(MessageUI.MFMailComposeViewController,MessageUI.MFMailComposeResult,Foundation.NSError) M:MessageUI.MFComposeResultEventArgs.get_Controller @@ -77505,11 +80177,13 @@ M:Metal.MTLAccelerationStructureCurveGeometryDescriptor.set_SegmentCount(System. M:Metal.MTLAccelerationStructureDescriptor.#ctor M:Metal.MTLAccelerationStructureDescriptor.#ctor(Foundation.NSObjectFlag) M:Metal.MTLAccelerationStructureDescriptor.#ctor(ObjCRuntime.NativeHandle) +M:Metal.MTLAccelerationStructureDescriptor.Copy(Foundation.NSZone) M:Metal.MTLAccelerationStructureDescriptor.get_ClassHandle M:Metal.MTLAccelerationStructureDescriptor.set_Usage(Metal.MTLAccelerationStructureUsage) M:Metal.MTLAccelerationStructureGeometryDescriptor.#ctor M:Metal.MTLAccelerationStructureGeometryDescriptor.#ctor(Foundation.NSObjectFlag) M:Metal.MTLAccelerationStructureGeometryDescriptor.#ctor(ObjCRuntime.NativeHandle) +M:Metal.MTLAccelerationStructureGeometryDescriptor.Copy(Foundation.NSZone) M:Metal.MTLAccelerationStructureGeometryDescriptor.get_ClassHandle M:Metal.MTLAccelerationStructureGeometryDescriptor.set_AllowDuplicateIntersectionFunctionInvocation(System.Boolean) M:Metal.MTLAccelerationStructureGeometryDescriptor.set_IntersectionFunctionTableOffset(System.UIntPtr) @@ -77561,10 +80235,12 @@ M:Metal.MTLAccelerationStructureMotionTriangleGeometryDescriptor.set_VertexStrid M:Metal.MTLAccelerationStructurePassDescriptor.#ctor M:Metal.MTLAccelerationStructurePassDescriptor.#ctor(Foundation.NSObjectFlag) M:Metal.MTLAccelerationStructurePassDescriptor.#ctor(ObjCRuntime.NativeHandle) +M:Metal.MTLAccelerationStructurePassDescriptor.Copy(Foundation.NSZone) M:Metal.MTLAccelerationStructurePassDescriptor.get_ClassHandle M:Metal.MTLAccelerationStructurePassSampleBufferAttachmentDescriptor.#ctor M:Metal.MTLAccelerationStructurePassSampleBufferAttachmentDescriptor.#ctor(Foundation.NSObjectFlag) M:Metal.MTLAccelerationStructurePassSampleBufferAttachmentDescriptor.#ctor(ObjCRuntime.NativeHandle) +M:Metal.MTLAccelerationStructurePassSampleBufferAttachmentDescriptor.Copy(Foundation.NSZone) M:Metal.MTLAccelerationStructurePassSampleBufferAttachmentDescriptor.get_ClassHandle M:Metal.MTLAccelerationStructurePassSampleBufferAttachmentDescriptor.set_EndOfEncoderSampleIndex(System.UIntPtr) M:Metal.MTLAccelerationStructurePassSampleBufferAttachmentDescriptor.set_SampleBuffer(Metal.IMTLCounterSampleBuffer) @@ -77590,6 +80266,7 @@ M:Metal.MTLAccelerationStructureTriangleGeometryDescriptor.set_VertexStride(Syst M:Metal.MTLArchitecture.#ctor M:Metal.MTLArchitecture.#ctor(Foundation.NSObjectFlag) M:Metal.MTLArchitecture.#ctor(ObjCRuntime.NativeHandle) +M:Metal.MTLArchitecture.Copy(Foundation.NSZone) M:Metal.MTLArchitecture.get_ClassHandle M:Metal.MTLArgument.#ctor M:Metal.MTLArgument.#ctor(Foundation.NSObjectFlag) @@ -77599,6 +80276,7 @@ M:Metal.MTLArgument.get_ClassHandle M:Metal.MTLArgumentDescriptor.#ctor M:Metal.MTLArgumentDescriptor.#ctor(Foundation.NSObjectFlag) M:Metal.MTLArgumentDescriptor.#ctor(ObjCRuntime.NativeHandle) +M:Metal.MTLArgumentDescriptor.Copy(Foundation.NSZone) M:Metal.MTLArgumentDescriptor.get_ClassHandle M:Metal.MTLArgumentDescriptor.set_Access(Metal.MTLArgumentAccess) M:Metal.MTLArgumentDescriptor.set_ArrayLength(System.UIntPtr) @@ -77626,6 +80304,7 @@ M:Metal.MTLAttribute.get_IsPatchData M:Metal.MTLAttributeDescriptor.#ctor M:Metal.MTLAttributeDescriptor.#ctor(Foundation.NSObjectFlag) M:Metal.MTLAttributeDescriptor.#ctor(ObjCRuntime.NativeHandle) +M:Metal.MTLAttributeDescriptor.Copy(Foundation.NSZone) M:Metal.MTLAttributeDescriptor.get_ClassHandle M:Metal.MTLAttributeDescriptor.set_BufferIndex(System.UIntPtr) M:Metal.MTLAttributeDescriptor.set_Format(Metal.MTLAttributeFormat) @@ -77639,6 +80318,7 @@ M:Metal.MTLAttributeDescriptorArray.set_Item(System.UIntPtr,Metal.MTLAttributeDe M:Metal.MTLBinaryArchiveDescriptor.#ctor M:Metal.MTLBinaryArchiveDescriptor.#ctor(Foundation.NSObjectFlag) M:Metal.MTLBinaryArchiveDescriptor.#ctor(ObjCRuntime.NativeHandle) +M:Metal.MTLBinaryArchiveDescriptor.Copy(Foundation.NSZone) M:Metal.MTLBinaryArchiveDescriptor.get_ClassHandle M:Metal.MTLBinaryArchiveDescriptor.set_Url(Foundation.NSUrl) M:Metal.MTLBinaryArchiveErrorExtensions.GetDomain(Metal.MTLBinaryArchiveError) @@ -77647,10 +80327,12 @@ M:Metal.MTLBlitCommandEncoder_Extensions.ResetTextureAccessCounters(Metal.IMTLBl M:Metal.MTLBlitPassDescriptor.#ctor M:Metal.MTLBlitPassDescriptor.#ctor(Foundation.NSObjectFlag) M:Metal.MTLBlitPassDescriptor.#ctor(ObjCRuntime.NativeHandle) +M:Metal.MTLBlitPassDescriptor.Copy(Foundation.NSZone) M:Metal.MTLBlitPassDescriptor.get_ClassHandle M:Metal.MTLBlitPassSampleBufferAttachmentDescriptor.#ctor M:Metal.MTLBlitPassSampleBufferAttachmentDescriptor.#ctor(Foundation.NSObjectFlag) M:Metal.MTLBlitPassSampleBufferAttachmentDescriptor.#ctor(ObjCRuntime.NativeHandle) +M:Metal.MTLBlitPassSampleBufferAttachmentDescriptor.Copy(Foundation.NSZone) M:Metal.MTLBlitPassSampleBufferAttachmentDescriptor.get_ClassHandle M:Metal.MTLBlitPassSampleBufferAttachmentDescriptor.set_EndOfEncoderSampleIndex(System.UIntPtr) M:Metal.MTLBlitPassSampleBufferAttachmentDescriptor.set_SampleBuffer(Metal.IMTLCounterSampleBuffer) @@ -77665,6 +80347,7 @@ M:Metal.MTLBuffer_Extensions.GetGpuAddress(Metal.IMTLBuffer) M:Metal.MTLBufferLayoutDescriptor.#ctor M:Metal.MTLBufferLayoutDescriptor.#ctor(Foundation.NSObjectFlag) M:Metal.MTLBufferLayoutDescriptor.#ctor(ObjCRuntime.NativeHandle) +M:Metal.MTLBufferLayoutDescriptor.Copy(Foundation.NSZone) M:Metal.MTLBufferLayoutDescriptor.get_ClassHandle M:Metal.MTLBufferLayoutDescriptor.set_StepFunction(Metal.MTLStepFunction) M:Metal.MTLBufferLayoutDescriptor.set_StepRate(System.UIntPtr) @@ -77678,6 +80361,7 @@ M:Metal.MTLBufferLayoutDescriptorArray.set_Item(System.UIntPtr,Metal.MTLBufferLa M:Metal.MTLCaptureDescriptor.#ctor M:Metal.MTLCaptureDescriptor.#ctor(Foundation.NSObjectFlag) M:Metal.MTLCaptureDescriptor.#ctor(ObjCRuntime.NativeHandle) +M:Metal.MTLCaptureDescriptor.Copy(Foundation.NSZone) M:Metal.MTLCaptureDescriptor.get_ClassHandle M:Metal.MTLCaptureDescriptor.set_CaptureObject(Foundation.NSObject) M:Metal.MTLCaptureDescriptor.set_Destination(Metal.MTLCaptureDestination) @@ -77707,6 +80391,7 @@ M:Metal.MTLCommandBuffer_Extensions.GetResourceStateCommandEncoder(Metal.IMTLCom M:Metal.MTLCommandBufferDescriptor.#ctor M:Metal.MTLCommandBufferDescriptor.#ctor(Foundation.NSObjectFlag) M:Metal.MTLCommandBufferDescriptor.#ctor(ObjCRuntime.NativeHandle) +M:Metal.MTLCommandBufferDescriptor.Copy(Foundation.NSZone) M:Metal.MTLCommandBufferDescriptor.get_BufferEncoderInfoErrorKey M:Metal.MTLCommandBufferDescriptor.get_ClassHandle M:Metal.MTLCommandBufferDescriptor.set_ErrorOptions(Metal.MTLCommandBufferErrorOption) @@ -77717,6 +80402,7 @@ M:Metal.MTLCommonCounterExtensions.GetValue(Foundation.NSString) M:Metal.MTLCompileOptions.#ctor M:Metal.MTLCompileOptions.#ctor(Foundation.NSObjectFlag) M:Metal.MTLCompileOptions.#ctor(ObjCRuntime.NativeHandle) +M:Metal.MTLCompileOptions.Copy(Foundation.NSZone) M:Metal.MTLCompileOptions.get_ClassHandle M:Metal.MTLCompileOptions.set_AllowReferencingUndefinedSymbols(System.Boolean) M:Metal.MTLCompileOptions.set_CompileSymbolVisibility(Metal.MTLCompileSymbolVisibility) @@ -77741,11 +80427,13 @@ M:Metal.MTLComputeCommandEncoder_Extensions.SetVisibleFunctionTables(Metal.IMTLC M:Metal.MTLComputePassDescriptor.#ctor M:Metal.MTLComputePassDescriptor.#ctor(Foundation.NSObjectFlag) M:Metal.MTLComputePassDescriptor.#ctor(ObjCRuntime.NativeHandle) +M:Metal.MTLComputePassDescriptor.Copy(Foundation.NSZone) M:Metal.MTLComputePassDescriptor.get_ClassHandle M:Metal.MTLComputePassDescriptor.set_DispatchType(Metal.MTLDispatchType) M:Metal.MTLComputePassSampleBufferAttachmentDescriptor.#ctor M:Metal.MTLComputePassSampleBufferAttachmentDescriptor.#ctor(Foundation.NSObjectFlag) M:Metal.MTLComputePassSampleBufferAttachmentDescriptor.#ctor(ObjCRuntime.NativeHandle) +M:Metal.MTLComputePassSampleBufferAttachmentDescriptor.Copy(Foundation.NSZone) M:Metal.MTLComputePassSampleBufferAttachmentDescriptor.get_ClassHandle M:Metal.MTLComputePassSampleBufferAttachmentDescriptor.set_EndOfEncoderSampleIndex(System.UIntPtr) M:Metal.MTLComputePassSampleBufferAttachmentDescriptor.set_SampleBuffer(Metal.IMTLCounterSampleBuffer) @@ -77759,6 +80447,7 @@ M:Metal.MTLComputePassSampleBufferAttachmentDescriptorArray.set_Item(System.UInt M:Metal.MTLComputePipelineDescriptor.#ctor M:Metal.MTLComputePipelineDescriptor.#ctor(Foundation.NSObjectFlag) M:Metal.MTLComputePipelineDescriptor.#ctor(ObjCRuntime.NativeHandle) +M:Metal.MTLComputePipelineDescriptor.Copy(Foundation.NSZone) M:Metal.MTLComputePipelineDescriptor.get_ClassHandle M:Metal.MTLComputePipelineDescriptor.set_BinaryArchives(Metal.IMTLBinaryArchive[]) M:Metal.MTLComputePipelineDescriptor.set_ComputeFunction(Metal.IMTLFunction) @@ -77784,6 +80473,7 @@ M:Metal.MTLComputePipelineState_Extensions.GetGpuResourceId(Metal.IMTLComputePip M:Metal.MTLCounterSampleBufferDescriptor.#ctor M:Metal.MTLCounterSampleBufferDescriptor.#ctor(Foundation.NSObjectFlag) M:Metal.MTLCounterSampleBufferDescriptor.#ctor(ObjCRuntime.NativeHandle) +M:Metal.MTLCounterSampleBufferDescriptor.Copy(Foundation.NSZone) M:Metal.MTLCounterSampleBufferDescriptor.get_ClassHandle M:Metal.MTLCounterSampleBufferDescriptor.set_CounterSet(Metal.IMTLCounterSet) M:Metal.MTLCounterSampleBufferDescriptor.set_Label(System.String) @@ -77797,6 +80487,7 @@ M:Metal.MTLDeallocator.Invoke(System.IntPtr,System.UIntPtr) M:Metal.MTLDepthStencilDescriptor.#ctor M:Metal.MTLDepthStencilDescriptor.#ctor(Foundation.NSObjectFlag) M:Metal.MTLDepthStencilDescriptor.#ctor(ObjCRuntime.NativeHandle) +M:Metal.MTLDepthStencilDescriptor.Copy(Foundation.NSZone) M:Metal.MTLDepthStencilDescriptor.get_ClassHandle M:Metal.MTLDepthStencilDescriptor.get_DepthWriteEnabled M:Metal.MTLDepthStencilDescriptor.set_BackFaceStencil(Metal.MTLStencilDescriptor) @@ -77868,9 +80559,11 @@ M:Metal.MTLFunctionConstant.get_ClassHandle M:Metal.MTLFunctionConstantValues.#ctor M:Metal.MTLFunctionConstantValues.#ctor(Foundation.NSObjectFlag) M:Metal.MTLFunctionConstantValues.#ctor(ObjCRuntime.NativeHandle) +M:Metal.MTLFunctionConstantValues.Copy(Foundation.NSZone) M:Metal.MTLFunctionConstantValues.get_ClassHandle M:Metal.MTLFunctionDescriptor.#ctor(Foundation.NSObjectFlag) M:Metal.MTLFunctionDescriptor.#ctor(ObjCRuntime.NativeHandle) +M:Metal.MTLFunctionDescriptor.Copy(Foundation.NSZone) M:Metal.MTLFunctionDescriptor.get_ClassHandle M:Metal.MTLFunctionDescriptor.set_BinaryArchives(Metal.IMTLBinaryArchive[]) M:Metal.MTLFunctionDescriptor.set_ConstantValues(Metal.MTLFunctionConstantValues) @@ -77886,6 +80579,7 @@ M:Metal.MTLFunctionStitchingFunctionNode.set_ControlDependencies(Metal.MTLFuncti M:Metal.MTLFunctionStitchingFunctionNode.set_Name(System.String) M:Metal.MTLFunctionStitchingGraph.#ctor(Foundation.NSObjectFlag) M:Metal.MTLFunctionStitchingGraph.#ctor(ObjCRuntime.NativeHandle) +M:Metal.MTLFunctionStitchingGraph.Copy(Foundation.NSZone) M:Metal.MTLFunctionStitchingGraph.get_ClassHandle M:Metal.MTLFunctionStitchingGraph.set_Attributes(Metal.IMTLFunctionStitchingAttribute[]) M:Metal.MTLFunctionStitchingGraph.set_FunctionName(System.String) @@ -77904,6 +80598,7 @@ M:Metal.MTLHeap_Extensions.CreateAccelerationStructure(Metal.IMTLHeap,System.UIn M:Metal.MTLHeapDescriptor.#ctor M:Metal.MTLHeapDescriptor.#ctor(Foundation.NSObjectFlag) M:Metal.MTLHeapDescriptor.#ctor(ObjCRuntime.NativeHandle) +M:Metal.MTLHeapDescriptor.Copy(Foundation.NSZone) M:Metal.MTLHeapDescriptor.get_ClassHandle M:Metal.MTLHeapDescriptor.set_CpuCacheMode(Metal.MTLCpuCacheMode) M:Metal.MTLHeapDescriptor.set_HazardTrackingMode(Metal.MTLHazardTrackingMode) @@ -77916,6 +80611,7 @@ M:Metal.MTLIndirectCommandBuffer_Extensions.GetGpuResourceID(Metal.IMTLIndirectC M:Metal.MTLIndirectCommandBufferDescriptor.#ctor M:Metal.MTLIndirectCommandBufferDescriptor.#ctor(Foundation.NSObjectFlag) M:Metal.MTLIndirectCommandBufferDescriptor.#ctor(ObjCRuntime.NativeHandle) +M:Metal.MTLIndirectCommandBufferDescriptor.Copy(Foundation.NSZone) M:Metal.MTLIndirectCommandBufferDescriptor.get_ClassHandle M:Metal.MTLIndirectCommandBufferDescriptor.set_CommandTypes(Metal.MTLIndirectCommandType) M:Metal.MTLIndirectCommandBufferDescriptor.set_InheritBuffers(System.Boolean) @@ -77969,12 +80665,14 @@ M:Metal.MTLInstanceAccelerationStructureDescriptor.set_MotionTransformBufferOffs M:Metal.MTLInstanceAccelerationStructureDescriptor.set_MotionTransformCount(System.UIntPtr) M:Metal.MTLIntersectionFunctionDescriptor.#ctor(Foundation.NSObjectFlag) M:Metal.MTLIntersectionFunctionDescriptor.#ctor(ObjCRuntime.NativeHandle) +M:Metal.MTLIntersectionFunctionDescriptor.Copy(Foundation.NSZone) M:Metal.MTLIntersectionFunctionDescriptor.get_ClassHandle M:Metal.MTLIntersectionFunctionTable_Extensions.GetGpuResourceId(Metal.IMTLIntersectionFunctionTable) M:Metal.MTLIntersectionFunctionTable_Extensions.SetOpaqueCurveIntersectionFunction(Metal.IMTLIntersectionFunctionTable,Metal.MTLIntersectionFunctionSignature,Foundation.NSRange) M:Metal.MTLIntersectionFunctionTable_Extensions.SetOpaqueCurveIntersectionFunction(Metal.IMTLIntersectionFunctionTable,Metal.MTLIntersectionFunctionSignature,System.UIntPtr) M:Metal.MTLIntersectionFunctionTableDescriptor.#ctor(Foundation.NSObjectFlag) M:Metal.MTLIntersectionFunctionTableDescriptor.#ctor(ObjCRuntime.NativeHandle) +M:Metal.MTLIntersectionFunctionTableDescriptor.Copy(Foundation.NSZone) M:Metal.MTLIntersectionFunctionTableDescriptor.get_ClassHandle M:Metal.MTLIntersectionFunctionTableDescriptor.set_FunctionCount(System.UIntPtr) M:Metal.MTLIntersectionFunctionTableExtensions.SetBuffers(Metal.IMTLIntersectionFunctionTable,Metal.IMTLBuffer[],System.UIntPtr[],Foundation.NSRange) @@ -77992,6 +80690,7 @@ M:Metal.MTLLibrary_Extensions.CreateIntersectionFunction(Metal.IMTLLibrary,Metal M:Metal.MTLLibraryErrorExtensions.GetDomain(Metal.MTLLibraryError) M:Metal.MTLLinkedFunctions.#ctor(Foundation.NSObjectFlag) M:Metal.MTLLinkedFunctions.#ctor(ObjCRuntime.NativeHandle) +M:Metal.MTLLinkedFunctions.Copy(Foundation.NSZone) M:Metal.MTLLinkedFunctions.get_ClassHandle M:Metal.MTLLinkedFunctions.get_InstanceDescriptorType M:Metal.MTLLinkedFunctions.get_MotionTransformBuffer @@ -78008,6 +80707,7 @@ M:Metal.MTLLinkedFunctions.set_PrivateFunctions(Metal.IMTLFunction[]) M:Metal.MTLMeshRenderPipelineDescriptor.#ctor M:Metal.MTLMeshRenderPipelineDescriptor.#ctor(Foundation.NSObjectFlag) M:Metal.MTLMeshRenderPipelineDescriptor.#ctor(ObjCRuntime.NativeHandle) +M:Metal.MTLMeshRenderPipelineDescriptor.Copy(Foundation.NSZone) M:Metal.MTLMeshRenderPipelineDescriptor.get_AlphaToCoverageEnabled M:Metal.MTLMeshRenderPipelineDescriptor.get_AlphaToOneEnabled M:Metal.MTLMeshRenderPipelineDescriptor.get_ClassHandle @@ -78052,6 +80752,7 @@ M:Metal.MTLOrigin.ToString M:Metal.MTLPipelineBufferDescriptor.#ctor M:Metal.MTLPipelineBufferDescriptor.#ctor(Foundation.NSObjectFlag) M:Metal.MTLPipelineBufferDescriptor.#ctor(ObjCRuntime.NativeHandle) +M:Metal.MTLPipelineBufferDescriptor.Copy(Foundation.NSZone) M:Metal.MTLPipelineBufferDescriptor.get_ClassHandle M:Metal.MTLPipelineBufferDescriptor.set_Mutability(Metal.MTLMutability) M:Metal.MTLPipelineBufferDescriptorArray.#ctor @@ -78080,6 +80781,7 @@ M:Metal.MTLRasterizationRateLayerArray.#ctor(ObjCRuntime.NativeHandle) M:Metal.MTLRasterizationRateLayerArray.get_ClassHandle M:Metal.MTLRasterizationRateLayerDescriptor.#ctor(Foundation.NSObjectFlag) M:Metal.MTLRasterizationRateLayerDescriptor.#ctor(ObjCRuntime.NativeHandle) +M:Metal.MTLRasterizationRateLayerDescriptor.Copy(Foundation.NSZone) M:Metal.MTLRasterizationRateLayerDescriptor.Create(Metal.MTLSize,System.Single[],System.Single[]) M:Metal.MTLRasterizationRateLayerDescriptor.get_ClassHandle M:Metal.MTLRasterizationRateLayerDescriptor.get_HorizontalSampleStorage @@ -78088,6 +80790,7 @@ M:Metal.MTLRasterizationRateLayerDescriptor.set_SampleCount(Metal.MTLSize) M:Metal.MTLRasterizationRateMapDescriptor.#ctor M:Metal.MTLRasterizationRateMapDescriptor.#ctor(Foundation.NSObjectFlag) M:Metal.MTLRasterizationRateMapDescriptor.#ctor(ObjCRuntime.NativeHandle) +M:Metal.MTLRasterizationRateMapDescriptor.Copy(Foundation.NSZone) M:Metal.MTLRasterizationRateMapDescriptor.get_ClassHandle M:Metal.MTLRasterizationRateMapDescriptor.set_Label(System.String) M:Metal.MTLRasterizationRateMapDescriptor.set_ScreenSize(Metal.MTLSize) @@ -78151,6 +80854,7 @@ M:Metal.MTLRenderCommandEncoder_Extensions.SetVertexVisibleFunctionTables(Metal. M:Metal.MTLRenderPassAttachmentDescriptor.#ctor M:Metal.MTLRenderPassAttachmentDescriptor.#ctor(Foundation.NSObjectFlag) M:Metal.MTLRenderPassAttachmentDescriptor.#ctor(ObjCRuntime.NativeHandle) +M:Metal.MTLRenderPassAttachmentDescriptor.Copy(Foundation.NSZone) M:Metal.MTLRenderPassAttachmentDescriptor.get_ClassHandle M:Metal.MTLRenderPassAttachmentDescriptor.set_DepthPlane(System.UIntPtr) M:Metal.MTLRenderPassAttachmentDescriptor.set_Level(System.UIntPtr) @@ -78183,6 +80887,7 @@ M:Metal.MTLRenderPassDepthAttachmentDescriptor.set_DepthResolveFilter(Metal.MTLM M:Metal.MTLRenderPassDescriptor.#ctor M:Metal.MTLRenderPassDescriptor.#ctor(Foundation.NSObjectFlag) M:Metal.MTLRenderPassDescriptor.#ctor(ObjCRuntime.NativeHandle) +M:Metal.MTLRenderPassDescriptor.Copy(Foundation.NSZone) M:Metal.MTLRenderPassDescriptor.get_ClassHandle M:Metal.MTLRenderPassDescriptor.GetSamplePositions(Metal.MTLSamplePosition[]) M:Metal.MTLRenderPassDescriptor.set_DefaultRasterSampleCount(System.UIntPtr) @@ -78201,6 +80906,7 @@ M:Metal.MTLRenderPassDescriptor.SetSamplePositions(Metal.MTLSamplePosition[]) M:Metal.MTLRenderPassSampleBufferAttachmentDescriptor.#ctor M:Metal.MTLRenderPassSampleBufferAttachmentDescriptor.#ctor(Foundation.NSObjectFlag) M:Metal.MTLRenderPassSampleBufferAttachmentDescriptor.#ctor(ObjCRuntime.NativeHandle) +M:Metal.MTLRenderPassSampleBufferAttachmentDescriptor.Copy(Foundation.NSZone) M:Metal.MTLRenderPassSampleBufferAttachmentDescriptor.get_ClassHandle M:Metal.MTLRenderPassSampleBufferAttachmentDescriptor.set_EndOfFragmentSampleIndex(System.UIntPtr) M:Metal.MTLRenderPassSampleBufferAttachmentDescriptor.set_EndOfVertexSampleIndex(System.UIntPtr) @@ -78222,6 +80928,7 @@ M:Metal.MTLRenderPassStencilAttachmentDescriptor.set_StencilResolveFilter(Metal. M:Metal.MTLRenderPipelineColorAttachmentDescriptor.#ctor M:Metal.MTLRenderPipelineColorAttachmentDescriptor.#ctor(Foundation.NSObjectFlag) M:Metal.MTLRenderPipelineColorAttachmentDescriptor.#ctor(ObjCRuntime.NativeHandle) +M:Metal.MTLRenderPipelineColorAttachmentDescriptor.Copy(Foundation.NSZone) M:Metal.MTLRenderPipelineColorAttachmentDescriptor.get_BlendingEnabled M:Metal.MTLRenderPipelineColorAttachmentDescriptor.get_ClassHandle M:Metal.MTLRenderPipelineColorAttachmentDescriptor.set_AlphaBlendOperation(Metal.MTLBlendOperation) @@ -78242,6 +80949,7 @@ M:Metal.MTLRenderPipelineColorAttachmentDescriptorArray.set_Item(System.IntPtr,M M:Metal.MTLRenderPipelineDescriptor.#ctor M:Metal.MTLRenderPipelineDescriptor.#ctor(Foundation.NSObjectFlag) M:Metal.MTLRenderPipelineDescriptor.#ctor(ObjCRuntime.NativeHandle) +M:Metal.MTLRenderPipelineDescriptor.Copy(Foundation.NSZone) M:Metal.MTLRenderPipelineDescriptor.get_AlphaToCoverageEnabled M:Metal.MTLRenderPipelineDescriptor.get_AlphaToOneEnabled M:Metal.MTLRenderPipelineDescriptor.get_ClassHandle @@ -78280,6 +80988,7 @@ M:Metal.MTLRenderPipelineDescriptor.set_VertexPreloadedLibraries(Metal.IMTLDynam M:Metal.MTLRenderPipelineFunctionsDescriptor.#ctor M:Metal.MTLRenderPipelineFunctionsDescriptor.#ctor(Foundation.NSObjectFlag) M:Metal.MTLRenderPipelineFunctionsDescriptor.#ctor(ObjCRuntime.NativeHandle) +M:Metal.MTLRenderPipelineFunctionsDescriptor.Copy(Foundation.NSZone) M:Metal.MTLRenderPipelineFunctionsDescriptor.get_ClassHandle M:Metal.MTLRenderPipelineFunctionsDescriptor.set_FragmentAdditionalBinaryFunctions(Metal.IMTLFunction[]) M:Metal.MTLRenderPipelineFunctionsDescriptor.set_TileAdditionalBinaryFunctions(Metal.IMTLFunction[]) @@ -78304,10 +81013,12 @@ M:Metal.MTLResourceStateCommandEncoder_Extensions.Update(Metal.IMTLResourceState M:Metal.MTLResourceStateCommandEncoder_Extensions.Wait(Metal.IMTLResourceStateCommandEncoder,Metal.IMTLFence) M:Metal.MTLResourceStatePassDescriptor.#ctor(Foundation.NSObjectFlag) M:Metal.MTLResourceStatePassDescriptor.#ctor(ObjCRuntime.NativeHandle) +M:Metal.MTLResourceStatePassDescriptor.Copy(Foundation.NSZone) M:Metal.MTLResourceStatePassDescriptor.get_ClassHandle M:Metal.MTLResourceStatePassSampleBufferAttachmentDescriptor.#ctor M:Metal.MTLResourceStatePassSampleBufferAttachmentDescriptor.#ctor(Foundation.NSObjectFlag) M:Metal.MTLResourceStatePassSampleBufferAttachmentDescriptor.#ctor(ObjCRuntime.NativeHandle) +M:Metal.MTLResourceStatePassSampleBufferAttachmentDescriptor.Copy(Foundation.NSZone) M:Metal.MTLResourceStatePassSampleBufferAttachmentDescriptor.get_ClassHandle M:Metal.MTLResourceStatePassSampleBufferAttachmentDescriptor.set_EndOfEncoderSampleIndex(System.UIntPtr) M:Metal.MTLResourceStatePassSampleBufferAttachmentDescriptor.set_SampleBuffer(Metal.IMTLCounterSampleBuffer) @@ -78322,6 +81033,7 @@ M:Metal.MTLSamplePosition.#ctor(System.Single,System.Single) M:Metal.MTLSamplerDescriptor.#ctor M:Metal.MTLSamplerDescriptor.#ctor(Foundation.NSObjectFlag) M:Metal.MTLSamplerDescriptor.#ctor(ObjCRuntime.NativeHandle) +M:Metal.MTLSamplerDescriptor.Copy(Foundation.NSZone) M:Metal.MTLSamplerDescriptor.get_ClassHandle M:Metal.MTLSamplerDescriptor.set_BorderColor(Metal.MTLSamplerBorderColor) M:Metal.MTLSamplerDescriptor.set_CompareFunction(Metal.MTLCompareFunction) @@ -78364,12 +81076,14 @@ M:Metal.MTLSizeAndAlign.#ctor(System.UIntPtr,System.UIntPtr) M:Metal.MTLStageInputOutputDescriptor.#ctor M:Metal.MTLStageInputOutputDescriptor.#ctor(Foundation.NSObjectFlag) M:Metal.MTLStageInputOutputDescriptor.#ctor(ObjCRuntime.NativeHandle) +M:Metal.MTLStageInputOutputDescriptor.Copy(Foundation.NSZone) M:Metal.MTLStageInputOutputDescriptor.get_ClassHandle M:Metal.MTLStageInputOutputDescriptor.set_IndexBufferIndex(System.UIntPtr) M:Metal.MTLStageInputOutputDescriptor.set_IndexType(Metal.MTLIndexType) M:Metal.MTLStencilDescriptor.#ctor M:Metal.MTLStencilDescriptor.#ctor(Foundation.NSObjectFlag) M:Metal.MTLStencilDescriptor.#ctor(ObjCRuntime.NativeHandle) +M:Metal.MTLStencilDescriptor.Copy(Foundation.NSZone) M:Metal.MTLStencilDescriptor.get_ClassHandle M:Metal.MTLStencilDescriptor.set_DepthFailureOperation(Metal.MTLStencilOperation) M:Metal.MTLStencilDescriptor.set_DepthStencilPassOperation(Metal.MTLStencilOperation) @@ -78380,6 +81094,7 @@ M:Metal.MTLStencilDescriptor.set_WriteMask(System.UInt32) M:Metal.MTLStitchedLibraryDescriptor.#ctor M:Metal.MTLStitchedLibraryDescriptor.#ctor(Foundation.NSObjectFlag) M:Metal.MTLStitchedLibraryDescriptor.#ctor(ObjCRuntime.NativeHandle) +M:Metal.MTLStitchedLibraryDescriptor.Copy(Foundation.NSZone) M:Metal.MTLStitchedLibraryDescriptor.get_ClassHandle M:Metal.MTLStitchedLibraryDescriptor.set_FunctionGraphs(Metal.MTLFunctionStitchingGraph[]) M:Metal.MTLStitchedLibraryDescriptor.set_Functions(Metal.IMTLFunction[]) @@ -78399,6 +81114,7 @@ M:Metal.MTLTexture_Extensions.GetTailSizeInBytes(Metal.IMTLTexture) M:Metal.MTLTextureDescriptor.#ctor M:Metal.MTLTextureDescriptor.#ctor(Foundation.NSObjectFlag) M:Metal.MTLTextureDescriptor.#ctor(ObjCRuntime.NativeHandle) +M:Metal.MTLTextureDescriptor.Copy(Foundation.NSZone) M:Metal.MTLTextureDescriptor.get_ClassHandle M:Metal.MTLTextureDescriptor.set_AllowGpuOptimizedContents(System.Boolean) M:Metal.MTLTextureDescriptor.set_ArrayLength(System.UIntPtr) @@ -78423,6 +81139,7 @@ M:Metal.MTLTextureReferenceType.get_ClassHandle M:Metal.MTLTileRenderPipelineColorAttachmentDescriptor.#ctor M:Metal.MTLTileRenderPipelineColorAttachmentDescriptor.#ctor(Foundation.NSObjectFlag) M:Metal.MTLTileRenderPipelineColorAttachmentDescriptor.#ctor(ObjCRuntime.NativeHandle) +M:Metal.MTLTileRenderPipelineColorAttachmentDescriptor.Copy(Foundation.NSZone) M:Metal.MTLTileRenderPipelineColorAttachmentDescriptor.get_ClassHandle M:Metal.MTLTileRenderPipelineColorAttachmentDescriptor.set_PixelFormat(Metal.MTLPixelFormat) M:Metal.MTLTileRenderPipelineColorAttachmentDescriptorArray.#ctor @@ -78434,6 +81151,7 @@ M:Metal.MTLTileRenderPipelineColorAttachmentDescriptorArray.set_Item(System.UInt M:Metal.MTLTileRenderPipelineDescriptor.#ctor M:Metal.MTLTileRenderPipelineDescriptor.#ctor(Foundation.NSObjectFlag) M:Metal.MTLTileRenderPipelineDescriptor.#ctor(ObjCRuntime.NativeHandle) +M:Metal.MTLTileRenderPipelineDescriptor.Copy(Foundation.NSZone) M:Metal.MTLTileRenderPipelineDescriptor.get_ClassHandle M:Metal.MTLTileRenderPipelineDescriptor.set_BinaryArchives(Metal.IMTLBinaryArchive[]) M:Metal.MTLTileRenderPipelineDescriptor.set_Label(System.String) @@ -78460,6 +81178,7 @@ M:Metal.MTLVertexAttribute.get_PatchData M:Metal.MTLVertexAttributeDescriptor.#ctor M:Metal.MTLVertexAttributeDescriptor.#ctor(Foundation.NSObjectFlag) M:Metal.MTLVertexAttributeDescriptor.#ctor(ObjCRuntime.NativeHandle) +M:Metal.MTLVertexAttributeDescriptor.Copy(Foundation.NSZone) M:Metal.MTLVertexAttributeDescriptor.get_ClassHandle M:Metal.MTLVertexAttributeDescriptor.set_BufferIndex(System.UIntPtr) M:Metal.MTLVertexAttributeDescriptor.set_Format(Metal.MTLVertexFormat) @@ -78473,6 +81192,7 @@ M:Metal.MTLVertexAttributeDescriptorArray.set_Item(System.IntPtr,Metal.MTLVertex M:Metal.MTLVertexBufferLayoutDescriptor.#ctor M:Metal.MTLVertexBufferLayoutDescriptor.#ctor(Foundation.NSObjectFlag) M:Metal.MTLVertexBufferLayoutDescriptor.#ctor(ObjCRuntime.NativeHandle) +M:Metal.MTLVertexBufferLayoutDescriptor.Copy(Foundation.NSZone) M:Metal.MTLVertexBufferLayoutDescriptor.get_ClassHandle M:Metal.MTLVertexBufferLayoutDescriptor.set_StepFunction(Metal.MTLVertexStepFunction) M:Metal.MTLVertexBufferLayoutDescriptor.set_StepRate(System.UIntPtr) @@ -78486,6 +81206,7 @@ M:Metal.MTLVertexBufferLayoutDescriptorArray.set_Item(System.IntPtr,Metal.MTLVer M:Metal.MTLVertexDescriptor.#ctor M:Metal.MTLVertexDescriptor.#ctor(Foundation.NSObjectFlag) M:Metal.MTLVertexDescriptor.#ctor(ObjCRuntime.NativeHandle) +M:Metal.MTLVertexDescriptor.Copy(Foundation.NSZone) M:Metal.MTLVertexDescriptor.FromModelIO(ModelIO.MDLVertexDescriptor,Foundation.NSError@) M:Metal.MTLVertexDescriptor.FromModelIO(ModelIO.MDLVertexDescriptor) M:Metal.MTLVertexDescriptor.get_ClassHandle @@ -78495,6 +81216,7 @@ M:Metal.MTLViewport.ToString M:Metal.MTLVisibleFunctionTable_Extensions.GetGpuResourceId(Metal.IMTLVisibleFunctionTable) M:Metal.MTLVisibleFunctionTableDescriptor.#ctor(Foundation.NSObjectFlag) M:Metal.MTLVisibleFunctionTableDescriptor.#ctor(ObjCRuntime.NativeHandle) +M:Metal.MTLVisibleFunctionTableDescriptor.Copy(Foundation.NSZone) M:Metal.MTLVisibleFunctionTableDescriptor.get_ClassHandle M:Metal.MTLVisibleFunctionTableDescriptor.set_FunctionCount(System.UIntPtr) M:MetalFX.IMTLFXSpatialScaler.Encode(Metal.IMTLCommandBuffer) @@ -78564,7 +81286,15 @@ M:MetalFX.IMTLFXTemporalScaler.set_PreExposure(System.Single) M:MetalFX.IMTLFXTemporalScaler.set_Reset(System.Boolean) M:MetalFX.MTLFXSpatialScalerDescriptor.#ctor(Foundation.NSObjectFlag) M:MetalFX.MTLFXSpatialScalerDescriptor.#ctor(ObjCRuntime.NativeHandle) +M:MetalFX.MTLFXSpatialScalerDescriptor.Create(Metal.IMTLDevice) M:MetalFX.MTLFXSpatialScalerDescriptor.get_ClassHandle +M:MetalFX.MTLFXSpatialScalerDescriptor.get_ColorProcessingMode +M:MetalFX.MTLFXSpatialScalerDescriptor.get_ColorTextureFormat +M:MetalFX.MTLFXSpatialScalerDescriptor.get_InputHeight +M:MetalFX.MTLFXSpatialScalerDescriptor.get_InputWidth +M:MetalFX.MTLFXSpatialScalerDescriptor.get_OutputHeight +M:MetalFX.MTLFXSpatialScalerDescriptor.get_OutputTextureFormat +M:MetalFX.MTLFXSpatialScalerDescriptor.get_OutputWidth M:MetalFX.MTLFXSpatialScalerDescriptor.set_ColorProcessingMode(MetalFX.MTLFXSpatialScalerColorProcessingMode) M:MetalFX.MTLFXSpatialScalerDescriptor.set_ColorTextureFormat(Metal.MTLPixelFormat) M:MetalFX.MTLFXSpatialScalerDescriptor.set_InputHeight(System.UIntPtr) @@ -78572,11 +81302,25 @@ M:MetalFX.MTLFXSpatialScalerDescriptor.set_InputWidth(System.UIntPtr) M:MetalFX.MTLFXSpatialScalerDescriptor.set_OutputHeight(System.UIntPtr) M:MetalFX.MTLFXSpatialScalerDescriptor.set_OutputTextureFormat(Metal.MTLPixelFormat) M:MetalFX.MTLFXSpatialScalerDescriptor.set_OutputWidth(System.UIntPtr) +M:MetalFX.MTLFXSpatialScalerDescriptor.SupportsDevice(Metal.IMTLDevice) M:MetalFX.MTLFXTemporalScalerDescriptor.#ctor(Foundation.NSObjectFlag) M:MetalFX.MTLFXTemporalScalerDescriptor.#ctor(ObjCRuntime.NativeHandle) +M:MetalFX.MTLFXTemporalScalerDescriptor.Create(Metal.IMTLDevice) M:MetalFX.MTLFXTemporalScalerDescriptor.get_AutoExposureEnabled M:MetalFX.MTLFXTemporalScalerDescriptor.get_ClassHandle +M:MetalFX.MTLFXTemporalScalerDescriptor.get_ColorTextureFormat +M:MetalFX.MTLFXTemporalScalerDescriptor.get_DepthTextureFormat +M:MetalFX.MTLFXTemporalScalerDescriptor.get_InputContentMaxScale +M:MetalFX.MTLFXTemporalScalerDescriptor.get_InputContentMinScale M:MetalFX.MTLFXTemporalScalerDescriptor.get_InputContentPropertiesEnabled +M:MetalFX.MTLFXTemporalScalerDescriptor.get_InputHeight +M:MetalFX.MTLFXTemporalScalerDescriptor.get_InputWidth +M:MetalFX.MTLFXTemporalScalerDescriptor.get_MotionTextureFormat +M:MetalFX.MTLFXTemporalScalerDescriptor.get_OutputHeight +M:MetalFX.MTLFXTemporalScalerDescriptor.get_OutputTextureFormat +M:MetalFX.MTLFXTemporalScalerDescriptor.get_OutputWidth +M:MetalFX.MTLFXTemporalScalerDescriptor.GetSupportedInputContentMaxScale(Metal.IMTLDevice) +M:MetalFX.MTLFXTemporalScalerDescriptor.GetSupportedInputContentMinScale(Metal.IMTLDevice) M:MetalFX.MTLFXTemporalScalerDescriptor.set_AutoExposureEnabled(System.Boolean) M:MetalFX.MTLFXTemporalScalerDescriptor.set_ColorTextureFormat(Metal.MTLPixelFormat) M:MetalFX.MTLFXTemporalScalerDescriptor.set_DepthTextureFormat(Metal.MTLPixelFormat) @@ -78589,29 +81333,60 @@ M:MetalFX.MTLFXTemporalScalerDescriptor.set_MotionTextureFormat(Metal.MTLPixelFo M:MetalFX.MTLFXTemporalScalerDescriptor.set_OutputHeight(System.UIntPtr) M:MetalFX.MTLFXTemporalScalerDescriptor.set_OutputTextureFormat(Metal.MTLPixelFormat) M:MetalFX.MTLFXTemporalScalerDescriptor.set_OutputWidth(System.UIntPtr) +M:MetalFX.MTLFXTemporalScalerDescriptor.SupportsDevice(Metal.IMTLDevice) M:MetalKit.IMTKViewDelegate.Draw(MetalKit.MTKView) M:MetalKit.IMTKViewDelegate.DrawableSizeWillChange(MetalKit.MTKView,CoreGraphics.CGSize) M:MetalKit.MTKMesh.#ctor(Foundation.NSObjectFlag) +M:MetalKit.MTKMesh.#ctor(ModelIO.MDLMesh,Metal.IMTLDevice,Foundation.NSError@) M:MetalKit.MTKMesh.#ctor(ObjCRuntime.NativeHandle) M:MetalKit.MTKMesh.FromAsset(ModelIO.MDLAsset,Metal.IMTLDevice,ModelIO.MDLMesh[]@,Foundation.NSError@) M:MetalKit.MTKMesh.get_ClassHandle +M:MetalKit.MTKMesh.get_Name +M:MetalKit.MTKMesh.get_Submeshes +M:MetalKit.MTKMesh.get_VertexBuffers +M:MetalKit.MTKMesh.get_VertexCount +M:MetalKit.MTKMesh.get_VertexDescriptor M:MetalKit.MTKMesh.set_Name(System.String) M:MetalKit.MTKMeshBuffer.#ctor(Foundation.NSObjectFlag) M:MetalKit.MTKMeshBuffer.#ctor(ObjCRuntime.NativeHandle) M:MetalKit.MTKMeshBuffer.Copy(Foundation.NSZone) +M:MetalKit.MTKMeshBuffer.FillData(Foundation.NSData,System.UIntPtr) +M:MetalKit.MTKMeshBuffer.get_Allocator +M:MetalKit.MTKMeshBuffer.get_Buffer M:MetalKit.MTKMeshBuffer.get_ClassHandle +M:MetalKit.MTKMeshBuffer.get_Length +M:MetalKit.MTKMeshBuffer.get_Map +M:MetalKit.MTKMeshBuffer.get_Name +M:MetalKit.MTKMeshBuffer.get_Offset +M:MetalKit.MTKMeshBuffer.get_Type +M:MetalKit.MTKMeshBuffer.get_Zone M:MetalKit.MTKMeshBuffer.set_Name(System.String) M:MetalKit.MTKMeshBufferAllocator.#ctor(Foundation.NSObjectFlag) +M:MetalKit.MTKMeshBufferAllocator.#ctor(Metal.IMTLDevice) M:MetalKit.MTKMeshBufferAllocator.#ctor(ObjCRuntime.NativeHandle) +M:MetalKit.MTKMeshBufferAllocator.CreateBuffer(Foundation.NSData,ModelIO.MDLMeshBufferType) +M:MetalKit.MTKMeshBufferAllocator.CreateBuffer(ModelIO.IMDLMeshBufferZone,Foundation.NSData,ModelIO.MDLMeshBufferType) +M:MetalKit.MTKMeshBufferAllocator.CreateBuffer(ModelIO.IMDLMeshBufferZone,System.UIntPtr,ModelIO.MDLMeshBufferType) +M:MetalKit.MTKMeshBufferAllocator.CreateBuffer(System.UIntPtr,ModelIO.MDLMeshBufferType) +M:MetalKit.MTKMeshBufferAllocator.CreateZone(Foundation.NSNumber[],Foundation.NSNumber[]) +M:MetalKit.MTKMeshBufferAllocator.CreateZone(System.UIntPtr) M:MetalKit.MTKMeshBufferAllocator.get_ClassHandle +M:MetalKit.MTKMeshBufferAllocator.get_Device M:MetalKit.MTKModel.get_ErrorDomain M:MetalKit.MTKModel.get_ErrorKey M:MetalKit.MTKSubmesh.#ctor(Foundation.NSObjectFlag) M:MetalKit.MTKSubmesh.#ctor(ObjCRuntime.NativeHandle) M:MetalKit.MTKSubmesh.Dispose(System.Boolean) M:MetalKit.MTKSubmesh.get_ClassHandle +M:MetalKit.MTKSubmesh.get_IndexBuffer +M:MetalKit.MTKSubmesh.get_IndexCount +M:MetalKit.MTKSubmesh.get_IndexType +M:MetalKit.MTKSubmesh.get_Mesh +M:MetalKit.MTKSubmesh.get_Name +M:MetalKit.MTKSubmesh.get_PrimitiveType M:MetalKit.MTKSubmesh.set_Name(System.String) M:MetalKit.MTKTextureLoader.#ctor(Foundation.NSObjectFlag) +M:MetalKit.MTKTextureLoader.#ctor(Metal.IMTLDevice) M:MetalKit.MTKTextureLoader.#ctor(ObjCRuntime.NativeHandle) M:MetalKit.MTKTextureLoader.FromCGImage(CoreGraphics.CGImage,MetalKit.MTKTextureLoaderOptions,Foundation.NSError@) M:MetalKit.MTKTextureLoader.FromCGImage(CoreGraphics.CGImage,MetalKit.MTKTextureLoaderOptions,MetalKit.MTKTextureLoaderCallback) @@ -78619,20 +81394,28 @@ M:MetalKit.MTKTextureLoader.FromCGImageAsync(CoreGraphics.CGImage,MetalKit.MTKTe M:MetalKit.MTKTextureLoader.FromData(Foundation.NSData,MetalKit.MTKTextureLoaderOptions,Foundation.NSError@) M:MetalKit.MTKTextureLoader.FromData(Foundation.NSData,MetalKit.MTKTextureLoaderOptions,MetalKit.MTKTextureLoaderCallback) M:MetalKit.MTKTextureLoader.FromDataAsync(Foundation.NSData,MetalKit.MTKTextureLoaderOptions) +M:MetalKit.MTKTextureLoader.FromName(System.String,System.Runtime.InteropServices.NFloat,AppKit.NSDisplayGamut,Foundation.NSBundle,Foundation.NSDictionary,Foundation.NSError@) +M:MetalKit.MTKTextureLoader.FromName(System.String,System.Runtime.InteropServices.NFloat,AppKit.NSDisplayGamut,Foundation.NSBundle,Foundation.NSDictionary,MetalKit.MTKTextureLoaderCallback) M:MetalKit.MTKTextureLoader.FromName(System.String,System.Runtime.InteropServices.NFloat,AppKit.NSDisplayGamut,Foundation.NSBundle,MetalKit.MTKTextureLoaderOptions,Foundation.NSError@) M:MetalKit.MTKTextureLoader.FromName(System.String,System.Runtime.InteropServices.NFloat,AppKit.NSDisplayGamut,Foundation.NSBundle,MetalKit.MTKTextureLoaderOptions,MetalKit.MTKTextureLoaderCallback) +M:MetalKit.MTKTextureLoader.FromName(System.String,System.Runtime.InteropServices.NFloat,Foundation.NSBundle,Foundation.NSDictionary,Foundation.NSError@) +M:MetalKit.MTKTextureLoader.FromName(System.String,System.Runtime.InteropServices.NFloat,Foundation.NSBundle,Foundation.NSDictionary,MetalKit.MTKTextureLoaderCallback) M:MetalKit.MTKTextureLoader.FromName(System.String,System.Runtime.InteropServices.NFloat,Foundation.NSBundle,MetalKit.MTKTextureLoaderOptions,Foundation.NSError@) M:MetalKit.MTKTextureLoader.FromName(System.String,System.Runtime.InteropServices.NFloat,Foundation.NSBundle,MetalKit.MTKTextureLoaderOptions,MetalKit.MTKTextureLoaderCallback) M:MetalKit.MTKTextureLoader.FromNameAsync(System.String,System.Runtime.InteropServices.NFloat,AppKit.NSDisplayGamut,Foundation.NSBundle,Foundation.NSDictionary) M:MetalKit.MTKTextureLoader.FromNameAsync(System.String,System.Runtime.InteropServices.NFloat,AppKit.NSDisplayGamut,Foundation.NSBundle,MetalKit.MTKTextureLoaderOptions) M:MetalKit.MTKTextureLoader.FromNameAsync(System.String,System.Runtime.InteropServices.NFloat,Foundation.NSBundle,Foundation.NSDictionary) M:MetalKit.MTKTextureLoader.FromNameAsync(System.String,System.Runtime.InteropServices.NFloat,Foundation.NSBundle,MetalKit.MTKTextureLoaderOptions) +M:MetalKit.MTKTextureLoader.FromNames(System.String[],System.Runtime.InteropServices.NFloat,AppKit.NSDisplayGamut,Foundation.NSBundle,Foundation.NSDictionary,MetalKit.MTKTextureLoaderArrayCallback) M:MetalKit.MTKTextureLoader.FromNames(System.String[],System.Runtime.InteropServices.NFloat,AppKit.NSDisplayGamut,Foundation.NSBundle,MetalKit.MTKTextureLoaderOptions,MetalKit.MTKTextureLoaderArrayCallback) +M:MetalKit.MTKTextureLoader.FromNames(System.String[],System.Runtime.InteropServices.NFloat,Foundation.NSBundle,Foundation.NSDictionary,MetalKit.MTKTextureLoaderArrayCallback) M:MetalKit.MTKTextureLoader.FromNames(System.String[],System.Runtime.InteropServices.NFloat,Foundation.NSBundle,MetalKit.MTKTextureLoaderOptions,MetalKit.MTKTextureLoaderArrayCallback) M:MetalKit.MTKTextureLoader.FromNamesAsync(System.String[],System.Runtime.InteropServices.NFloat,AppKit.NSDisplayGamut,Foundation.NSBundle,Foundation.NSDictionary) M:MetalKit.MTKTextureLoader.FromNamesAsync(System.String[],System.Runtime.InteropServices.NFloat,AppKit.NSDisplayGamut,Foundation.NSBundle,MetalKit.MTKTextureLoaderOptions) M:MetalKit.MTKTextureLoader.FromNamesAsync(System.String[],System.Runtime.InteropServices.NFloat,Foundation.NSBundle,Foundation.NSDictionary) M:MetalKit.MTKTextureLoader.FromNamesAsync(System.String[],System.Runtime.InteropServices.NFloat,Foundation.NSBundle,MetalKit.MTKTextureLoaderOptions) +M:MetalKit.MTKTextureLoader.FromTexture(ModelIO.MDLTexture,Foundation.NSDictionary,Foundation.NSError@) +M:MetalKit.MTKTextureLoader.FromTexture(ModelIO.MDLTexture,Foundation.NSDictionary,MetalKit.MTKTextureLoaderCallback) M:MetalKit.MTKTextureLoader.FromTexture(ModelIO.MDLTexture,MetalKit.MTKTextureLoaderOptions,Foundation.NSError@) M:MetalKit.MTKTextureLoader.FromTexture(ModelIO.MDLTexture,MetalKit.MTKTextureLoaderOptions,MetalKit.MTKTextureLoaderCallback) M:MetalKit.MTKTextureLoader.FromTextureAsync(ModelIO.MDLTexture,Foundation.NSDictionary) @@ -78640,11 +81423,14 @@ M:MetalKit.MTKTextureLoader.FromTextureAsync(ModelIO.MDLTexture,MetalKit.MTKText M:MetalKit.MTKTextureLoader.FromUrl(Foundation.NSUrl,MetalKit.MTKTextureLoaderOptions,Foundation.NSError@) M:MetalKit.MTKTextureLoader.FromUrl(Foundation.NSUrl,MetalKit.MTKTextureLoaderOptions,MetalKit.MTKTextureLoaderCallback) M:MetalKit.MTKTextureLoader.FromUrlAsync(Foundation.NSUrl,MetalKit.MTKTextureLoaderOptions) +M:MetalKit.MTKTextureLoader.FromUrls(Foundation.NSUrl[],Foundation.NSDictionary,Foundation.NSError@) +M:MetalKit.MTKTextureLoader.FromUrls(Foundation.NSUrl[],Foundation.NSDictionary,MetalKit.MTKTextureLoaderArrayCallback) M:MetalKit.MTKTextureLoader.FromUrls(Foundation.NSUrl[],MetalKit.MTKTextureLoaderOptions,Foundation.NSError@) M:MetalKit.MTKTextureLoader.FromUrls(Foundation.NSUrl[],MetalKit.MTKTextureLoaderOptions,MetalKit.MTKTextureLoaderArrayCallback) M:MetalKit.MTKTextureLoader.FromUrlsAsync(Foundation.NSUrl[],Foundation.NSDictionary) M:MetalKit.MTKTextureLoader.FromUrlsAsync(Foundation.NSUrl[],MetalKit.MTKTextureLoaderOptions) M:MetalKit.MTKTextureLoader.get_ClassHandle +M:MetalKit.MTKTextureLoader.get_Device M:MetalKit.MTKTextureLoaderArrayCallback.#ctor(System.Object,System.IntPtr) M:MetalKit.MTKTextureLoaderArrayCallback.BeginInvoke(Metal.IMTLTexture[],Foundation.NSError,System.AsyncCallback,System.Object) M:MetalKit.MTKTextureLoaderArrayCallback.EndInvoke(System.IAsyncResult) @@ -78680,20 +81466,53 @@ M:MetalKit.MTKTextureLoaderOptions.set_TextureUsage(System.Nullable{Metal.MTLTex M:MetalKit.MTKTextureLoaderOriginExtensions.GetConstant(MetalKit.MTKTextureLoaderOrigin) M:MetalKit.MTKTextureLoaderOriginExtensions.GetValue(Foundation.NSString) M:MetalKit.MTKView.#ctor +M:MetalKit.MTKView.#ctor(CoreGraphics.CGRect,Metal.IMTLDevice) +M:MetalKit.MTKView.#ctor(Foundation.NSCoder) M:MetalKit.MTKView.#ctor(Foundation.NSObjectFlag) M:MetalKit.MTKView.#ctor(ObjCRuntime.NativeHandle) +M:MetalKit.MTKView.ActionForLayer(CoreAnimation.CALayer,System.String) M:MetalKit.MTKView.AppearanceWhenContainedIn(System.Type[]) +M:MetalKit.MTKView.DisplayLayer(CoreAnimation.CALayer) M:MetalKit.MTKView.Dispose(System.Boolean) +M:MetalKit.MTKView.Draw +M:MetalKit.MTKView.DrawLayer(CoreAnimation.CALayer,CoreGraphics.CGContext) +M:MetalKit.MTKView.EncodeTo(Foundation.NSCoder) M:MetalKit.MTKView.get_Appearance +M:MetalKit.MTKView.get_AutoResizeDrawable M:MetalKit.MTKView.get_ClassHandle +M:MetalKit.MTKView.get_ClearColor +M:MetalKit.MTKView.get_ClearDepth +M:MetalKit.MTKView.get_ClearStencil +M:MetalKit.MTKView.get_ColorPixelFormat +M:MetalKit.MTKView.get_ColorSpace +M:MetalKit.MTKView.get_CurrentDrawable +M:MetalKit.MTKView.get_CurrentRenderPassDescriptor M:MetalKit.MTKView.get_Delegate +M:MetalKit.MTKView.get_DepthStencilAttachmentTextureUsage +M:MetalKit.MTKView.get_DepthStencilPixelFormat +M:MetalKit.MTKView.get_DepthStencilStorageMode +M:MetalKit.MTKView.get_DepthStencilTexture +M:MetalKit.MTKView.get_Device +M:MetalKit.MTKView.get_DrawableSize +M:MetalKit.MTKView.get_EnableSetNeedsDisplay +M:MetalKit.MTKView.get_FramebufferOnly +M:MetalKit.MTKView.get_MultisampleColorAttachmentTextureUsage +M:MetalKit.MTKView.get_MultisampleColorTexture M:MetalKit.MTKView.get_Paused +M:MetalKit.MTKView.get_PreferredDevice +M:MetalKit.MTKView.get_PreferredDrawableSize +M:MetalKit.MTKView.get_PreferredFramesPerSecond +M:MetalKit.MTKView.get_PresentsWithTransaction +M:MetalKit.MTKView.get_SampleCount +M:MetalKit.MTKView.get_WeakDelegate M:MetalKit.MTKView.GetAppearance(UIKit.UITraitCollection,System.Type[]) M:MetalKit.MTKView.GetAppearance(UIKit.UITraitCollection) M:MetalKit.MTKView.GetAppearance``1 M:MetalKit.MTKView.GetAppearance``1(UIKit.UITraitCollection,System.Type[]) M:MetalKit.MTKView.GetAppearance``1(UIKit.UITraitCollection) +M:MetalKit.MTKView.LayoutSublayersOfLayer(CoreAnimation.CALayer) M:MetalKit.MTKView.MTKViewAppearance.#ctor(System.IntPtr) +M:MetalKit.MTKView.ReleaseDrawables M:MetalKit.MTKView.set_AutoResizeDrawable(System.Boolean) M:MetalKit.MTKView.set_ClearColor(Metal.MTLClearColor) M:MetalKit.MTKView.set_ClearDepth(System.Double) @@ -78714,6 +81533,7 @@ M:MetalKit.MTKView.set_PreferredFramesPerSecond(System.IntPtr) M:MetalKit.MTKView.set_PresentsWithTransaction(System.Boolean) M:MetalKit.MTKView.set_SampleCount(System.UIntPtr) M:MetalKit.MTKView.set_WeakDelegate(Foundation.NSObject) +M:MetalKit.MTKView.WillDrawLayer(CoreAnimation.CALayer) M:MetalKit.MTKViewDelegate.#ctor M:MetalKit.MTKViewDelegate.#ctor(Foundation.NSObjectFlag) M:MetalKit.MTKViewDelegate.#ctor(ObjCRuntime.NativeHandle) @@ -87790,18 +90610,49 @@ M:OSLog.IOSLogEntryWithPayload.get_Subsystem M:OSLog.OSLogEntry.#ctor(Foundation.NSObjectFlag) M:OSLog.OSLogEntry.#ctor(ObjCRuntime.NativeHandle) M:OSLog.OSLogEntry.get_ClassHandle +M:OSLog.OSLogEntry.get_ComposedMessage +M:OSLog.OSLogEntry.get_Date +M:OSLog.OSLogEntry.get_StoreCategory M:OSLog.OSLogEntryActivity.#ctor(Foundation.NSObjectFlag) M:OSLog.OSLogEntryActivity.#ctor(ObjCRuntime.NativeHandle) +M:OSLog.OSLogEntryActivity.get_ActivityIdentifier M:OSLog.OSLogEntryActivity.get_ClassHandle +M:OSLog.OSLogEntryActivity.get_ParentActivityIdentifier +M:OSLog.OSLogEntryActivity.get_Process +M:OSLog.OSLogEntryActivity.get_ProcessIdentifier +M:OSLog.OSLogEntryActivity.get_Sender +M:OSLog.OSLogEntryActivity.get_ThreadIdentifier M:OSLog.OSLogEntryBoundary.#ctor(Foundation.NSObjectFlag) M:OSLog.OSLogEntryBoundary.#ctor(ObjCRuntime.NativeHandle) M:OSLog.OSLogEntryBoundary.get_ClassHandle M:OSLog.OSLogEntryLog.#ctor(Foundation.NSObjectFlag) M:OSLog.OSLogEntryLog.#ctor(ObjCRuntime.NativeHandle) +M:OSLog.OSLogEntryLog.get_ActivityIdentifier +M:OSLog.OSLogEntryLog.get_Category M:OSLog.OSLogEntryLog.get_ClassHandle +M:OSLog.OSLogEntryLog.get_Components +M:OSLog.OSLogEntryLog.get_FormatString +M:OSLog.OSLogEntryLog.get_Level +M:OSLog.OSLogEntryLog.get_Process +M:OSLog.OSLogEntryLog.get_ProcessIdentifier +M:OSLog.OSLogEntryLog.get_Sender +M:OSLog.OSLogEntryLog.get_Subsystem +M:OSLog.OSLogEntryLog.get_ThreadIdentifier M:OSLog.OSLogEntrySignpost.#ctor(Foundation.NSObjectFlag) M:OSLog.OSLogEntrySignpost.#ctor(ObjCRuntime.NativeHandle) +M:OSLog.OSLogEntrySignpost.get_ActivityIdentifier +M:OSLog.OSLogEntrySignpost.get_Category M:OSLog.OSLogEntrySignpost.get_ClassHandle +M:OSLog.OSLogEntrySignpost.get_Components +M:OSLog.OSLogEntrySignpost.get_FormatString +M:OSLog.OSLogEntrySignpost.get_Process +M:OSLog.OSLogEntrySignpost.get_ProcessIdentifier +M:OSLog.OSLogEntrySignpost.get_Sender +M:OSLog.OSLogEntrySignpost.get_SignpostIdentifier +M:OSLog.OSLogEntrySignpost.get_SignpostName +M:OSLog.OSLogEntrySignpost.get_SignpostType +M:OSLog.OSLogEntrySignpost.get_Subsystem +M:OSLog.OSLogEntrySignpost.get_ThreadIdentifier M:OSLog.OSLogEnumerator.#ctor(Foundation.NSObjectFlag) M:OSLog.OSLogEnumerator.#ctor(ObjCRuntime.NativeHandle) M:OSLog.OSLogEnumerator.get_ClassHandle @@ -87809,13 +90660,31 @@ M:OSLog.OSLogMessageComponent.#ctor(Foundation.NSCoder) M:OSLog.OSLogMessageComponent.#ctor(Foundation.NSObjectFlag) M:OSLog.OSLogMessageComponent.#ctor(ObjCRuntime.NativeHandle) M:OSLog.OSLogMessageComponent.EncodeTo(Foundation.NSCoder) +M:OSLog.OSLogMessageComponent.get_ArgumentCategory +M:OSLog.OSLogMessageComponent.get_ArgumentDataValue +M:OSLog.OSLogMessageComponent.get_ArgumentDoubleValue +M:OSLog.OSLogMessageComponent.get_ArgumentInt64Value +M:OSLog.OSLogMessageComponent.get_ArgumentNumberValue +M:OSLog.OSLogMessageComponent.get_ArgumentStringValue +M:OSLog.OSLogMessageComponent.get_ArgumentUInt64Value M:OSLog.OSLogMessageComponent.get_ClassHandle +M:OSLog.OSLogMessageComponent.get_FormatSubstring +M:OSLog.OSLogMessageComponent.get_Placeholder M:OSLog.OSLogPosition.#ctor(Foundation.NSObjectFlag) M:OSLog.OSLogPosition.#ctor(ObjCRuntime.NativeHandle) M:OSLog.OSLogPosition.get_ClassHandle +M:OSLog.OSLogStore.#ctor M:OSLog.OSLogStore.#ctor(Foundation.NSObjectFlag) M:OSLog.OSLogStore.#ctor(ObjCRuntime.NativeHandle) +M:OSLog.OSLogStore.CreateLocalStore(Foundation.NSError@) +M:OSLog.OSLogStore.CreateStore(Foundation.NSUrl,Foundation.NSError@) +M:OSLog.OSLogStore.CreateStore(OSLog.OSLogStoreScope,Foundation.NSError@) M:OSLog.OSLogStore.get_ClassHandle +M:OSLog.OSLogStore.GetEntriesEnumerator(Foundation.NSError@) +M:OSLog.OSLogStore.GetEntriesEnumerator(OSLog.OSLogEnumeratorOptions,OSLog.OSLogPosition,Foundation.NSPredicate,Foundation.NSError@) +M:OSLog.OSLogStore.GetPosition(Foundation.NSDate) +M:OSLog.OSLogStore.GetPositionWithTimeIntervalSinceEnd(System.Double) +M:OSLog.OSLogStore.GetPositionWithTimeIntervalSinceLatestBoot(System.Double) M:PassKit.IPKAddPaymentPassViewControllerDelegate.DidFinishAddingPaymentPass(PassKit.PKAddPaymentPassViewController,PassKit.PKPaymentPass,Foundation.NSError) M:PassKit.IPKAddPaymentPassViewControllerDelegate.GenerateRequestWithCertificateChain(PassKit.PKAddPaymentPassViewController,Foundation.NSData[],Foundation.NSData,Foundation.NSData,System.Action{PassKit.PKAddPaymentPassRequest}) M:PassKit.IPKAddSecureElementPassViewControllerDelegate.DidFinishAddingSecureElementPass(PassKit.PKAddSecureElementPassViewController,PassKit.PKSecureElementPass,Foundation.NSError) @@ -89980,6 +92849,7 @@ M:PencilKit.PKCanvasView.#ctor(Foundation.NSCoder) M:PencilKit.PKCanvasView.#ctor(Foundation.NSObjectFlag) M:PencilKit.PKCanvasView.#ctor(ObjCRuntime.NativeHandle) M:PencilKit.PKCanvasView.AppearanceWhenContainedIn(System.Type[]) +M:PencilKit.PKCanvasView.FramesObscuredDidChange(PencilKit.PKToolPicker) M:PencilKit.PKCanvasView.get_Appearance M:PencilKit.PKCanvasView.get_ClassHandle M:PencilKit.PKCanvasView.get_Delegate @@ -89989,7 +92859,9 @@ M:PencilKit.PKCanvasView.GetAppearance(UIKit.UITraitCollection) M:PencilKit.PKCanvasView.GetAppearance``1 M:PencilKit.PKCanvasView.GetAppearance``1(UIKit.UITraitCollection,System.Type[]) M:PencilKit.PKCanvasView.GetAppearance``1(UIKit.UITraitCollection) +M:PencilKit.PKCanvasView.IsRulerActiveDidChange(PencilKit.PKToolPicker) M:PencilKit.PKCanvasView.PKCanvasViewAppearance.#ctor(System.IntPtr) +M:PencilKit.PKCanvasView.SelectedToolDidChange(PencilKit.PKToolPicker) M:PencilKit.PKCanvasView.set_AllowsFingerDrawing(System.Boolean) M:PencilKit.PKCanvasView.set_Delegate(PencilKit.IPKCanvasViewDelegate) M:PencilKit.PKCanvasView.set_Drawing(PencilKit.PKDrawing) @@ -89997,6 +92869,7 @@ M:PencilKit.PKCanvasView.set_DrawingPolicy(PencilKit.PKCanvasViewDrawingPolicy) M:PencilKit.PKCanvasView.set_MaximumSupportedContentVersion(PencilKit.PKContentVersion) M:PencilKit.PKCanvasView.set_RulerActive(System.Boolean) M:PencilKit.PKCanvasView.set_Tool(PencilKit.PKTool) +M:PencilKit.PKCanvasView.VisibilityDidChange(PencilKit.PKToolPicker) M:PencilKit.PKCanvasViewDelegate_Extensions.DidBeginUsingTool(PencilKit.IPKCanvasViewDelegate,PencilKit.PKCanvasView) M:PencilKit.PKCanvasViewDelegate_Extensions.DidFinishRendering(PencilKit.IPKCanvasViewDelegate,PencilKit.PKCanvasView) M:PencilKit.PKCanvasViewDelegate_Extensions.DrawingDidChange(PencilKit.IPKCanvasViewDelegate,PencilKit.PKCanvasView) @@ -90025,6 +92898,7 @@ M:PencilKit.PKCanvasViewDelegate.ZoomingStarted(UIKit.UIScrollView,UIKit.UIView) M:PencilKit.PKDrawing.#ctor(Foundation.NSCoder) M:PencilKit.PKDrawing.#ctor(Foundation.NSObjectFlag) M:PencilKit.PKDrawing.#ctor(ObjCRuntime.NativeHandle) +M:PencilKit.PKDrawing.Copy(Foundation.NSZone) M:PencilKit.PKDrawing.EncodeTo(Foundation.NSCoder) M:PencilKit.PKDrawing.get_AppleDrawingTypeIdentifier M:PencilKit.PKDrawing.get_ClassHandle @@ -90033,11 +92907,13 @@ M:PencilKit.PKEraserTool.#ctor(ObjCRuntime.NativeHandle) M:PencilKit.PKEraserTool.get_ClassHandle M:PencilKit.PKFloatRange.#ctor(Foundation.NSObjectFlag) M:PencilKit.PKFloatRange.#ctor(ObjCRuntime.NativeHandle) +M:PencilKit.PKFloatRange.Copy(Foundation.NSZone) M:PencilKit.PKFloatRange.get_ClassHandle M:PencilKit.PKInk.#ctor(Foundation.NSObjectFlag) M:PencilKit.PKInk.#ctor(ObjCRuntime.NativeHandle) M:PencilKit.PKInk.#ctor(PencilKit.PKInkType,AppKit.NSColor) M:PencilKit.PKInk.#ctor(PencilKit.PKInkType,UIKit.UIColor) +M:PencilKit.PKInk.Copy(Foundation.NSZone) M:PencilKit.PKInk.get_ClassHandle M:PencilKit.PKInk.get_InkType M:PencilKit.PKInkingTool.#ctor(Foundation.NSObjectFlag) @@ -90054,15 +92930,19 @@ M:PencilKit.PKLassoTool.#ctor(ObjCRuntime.NativeHandle) M:PencilKit.PKLassoTool.get_ClassHandle M:PencilKit.PKStroke.#ctor(Foundation.NSObjectFlag) M:PencilKit.PKStroke.#ctor(ObjCRuntime.NativeHandle) +M:PencilKit.PKStroke.Copy(Foundation.NSZone) M:PencilKit.PKStroke.get_ClassHandle M:PencilKit.PKStrokePath.#ctor(Foundation.NSObjectFlag) M:PencilKit.PKStrokePath.#ctor(ObjCRuntime.NativeHandle) +M:PencilKit.PKStrokePath.Copy(Foundation.NSZone) M:PencilKit.PKStrokePath.get_ClassHandle M:PencilKit.PKStrokePoint.#ctor(Foundation.NSObjectFlag) M:PencilKit.PKStrokePoint.#ctor(ObjCRuntime.NativeHandle) +M:PencilKit.PKStrokePoint.Copy(Foundation.NSZone) M:PencilKit.PKStrokePoint.get_ClassHandle M:PencilKit.PKTool.#ctor(Foundation.NSObjectFlag) M:PencilKit.PKTool.#ctor(ObjCRuntime.NativeHandle) +M:PencilKit.PKTool.Copy(Foundation.NSZone) M:PencilKit.PKTool.get_ClassHandle M:PencilKit.PKToolPicker.#ctor(Foundation.NSObjectFlag) M:PencilKit.PKToolPicker.#ctor(ObjCRuntime.NativeHandle) @@ -90598,6 +93478,7 @@ M:Photos.PHAssetResource.get_ClassHandle M:Photos.PHAssetResourceCreationOptions.#ctor M:Photos.PHAssetResourceCreationOptions.#ctor(Foundation.NSObjectFlag) M:Photos.PHAssetResourceCreationOptions.#ctor(ObjCRuntime.NativeHandle) +M:Photos.PHAssetResourceCreationOptions.Copy(Foundation.NSZone) M:Photos.PHAssetResourceCreationOptions.get_ClassHandle M:Photos.PHAssetResourceCreationOptions.set_OriginalFilename(System.String) M:Photos.PHAssetResourceCreationOptions.set_ShouldMoveFile(System.Boolean) @@ -90609,6 +93490,7 @@ M:Photos.PHAssetResourceManager.WriteDataAsync(Photos.PHAssetResource,Foundation M:Photos.PHAssetResourceRequestOptions.#ctor M:Photos.PHAssetResourceRequestOptions.#ctor(Foundation.NSObjectFlag) M:Photos.PHAssetResourceRequestOptions.#ctor(ObjCRuntime.NativeHandle) +M:Photos.PHAssetResourceRequestOptions.Copy(Foundation.NSZone) M:Photos.PHAssetResourceRequestOptions.get_ClassHandle M:Photos.PHAssetResourceRequestOptions.get_NetworkAccessAllowed M:Photos.PHAssetResourceRequestOptions.set_NetworkAccessAllowed(System.Boolean) @@ -90681,6 +93563,7 @@ M:Photos.PHContentEditingOutput.set_AdjustmentData(Photos.PHAdjustmentData) M:Photos.PHFetchOptions.#ctor M:Photos.PHFetchOptions.#ctor(Foundation.NSObjectFlag) M:Photos.PHFetchOptions.#ctor(ObjCRuntime.NativeHandle) +M:Photos.PHFetchOptions.Copy(Foundation.NSZone) M:Photos.PHFetchOptions.get_ClassHandle M:Photos.PHFetchOptions.set_FetchLimit(System.UIntPtr) M:Photos.PHFetchOptions.set_IncludeAllBurstAssets(System.Boolean) @@ -90691,6 +93574,7 @@ M:Photos.PHFetchOptions.set_SortDescriptors(Foundation.NSSortDescriptor[]) M:Photos.PHFetchOptions.set_WantsIncrementalChangeDetails(System.Boolean) M:Photos.PHFetchResult.#ctor(Foundation.NSObjectFlag) M:Photos.PHFetchResult.#ctor(ObjCRuntime.NativeHandle) +M:Photos.PHFetchResult.Copy(Foundation.NSZone) M:Photos.PHFetchResult.get_ClassHandle M:Photos.PHFetchResult.get_firstObject M:Photos.PHFetchResult.get_Item(System.IntPtr) @@ -90741,6 +93625,7 @@ M:Photos.PHImageManagerRequestPlayerHandler.Invoke(AVFoundation.AVPlayerItem,Fou M:Photos.PHImageRequestOptions.#ctor M:Photos.PHImageRequestOptions.#ctor(Foundation.NSObjectFlag) M:Photos.PHImageRequestOptions.#ctor(ObjCRuntime.NativeHandle) +M:Photos.PHImageRequestOptions.Copy(Foundation.NSZone) M:Photos.PHImageRequestOptions.get_ClassHandle M:Photos.PHImageRequestOptions.get_NetworkAccessAllowed M:Photos.PHImageRequestOptions.get_Synchronous @@ -90762,6 +93647,7 @@ M:Photos.PHLivePhoto.#ctor M:Photos.PHLivePhoto.#ctor(Foundation.NSCoder) M:Photos.PHLivePhoto.#ctor(Foundation.NSObjectFlag) M:Photos.PHLivePhoto.#ctor(ObjCRuntime.NativeHandle) +M:Photos.PHLivePhoto.Copy(Foundation.NSZone) M:Photos.PHLivePhoto.EncodeTo(Foundation.NSCoder) M:Photos.PHLivePhoto.get_ClassHandle M:Photos.PHLivePhoto.get_ReadableTypeIdentifiers @@ -90797,6 +93683,7 @@ M:Photos.PHLivePhotoInfo.get_IsDegradedKey M:Photos.PHLivePhotoRequestOptions.#ctor M:Photos.PHLivePhotoRequestOptions.#ctor(Foundation.NSObjectFlag) M:Photos.PHLivePhotoRequestOptions.#ctor(ObjCRuntime.NativeHandle) +M:Photos.PHLivePhotoRequestOptions.Copy(Foundation.NSZone) M:Photos.PHLivePhotoRequestOptions.get_ClassHandle M:Photos.PHLivePhotoRequestOptions.get_NetworkAccessAllowed M:Photos.PHLivePhotoRequestOptions.set_DeliveryMode(Photos.PHImageRequestOptionsDeliveryMode) @@ -90808,6 +93695,7 @@ M:Photos.PHLocalIdentifierMapping.#ctor(ObjCRuntime.NativeHandle) M:Photos.PHLocalIdentifierMapping.get_ClassHandle M:Photos.PHObject.#ctor(Foundation.NSObjectFlag) M:Photos.PHObject.#ctor(ObjCRuntime.NativeHandle) +M:Photos.PHObject.Copy(Foundation.NSZone) M:Photos.PHObject.get_ClassHandle M:Photos.PHObjectChangeDetails.#ctor M:Photos.PHObjectChangeDetails.#ctor(Foundation.NSObjectFlag) @@ -90830,6 +93718,7 @@ M:Photos.PHPersistentChangeFetchResultEnumerator.Invoke(Photos.PHPersistentChang M:Photos.PHPersistentChangeToken.#ctor(Foundation.NSCoder) M:Photos.PHPersistentChangeToken.#ctor(Foundation.NSObjectFlag) M:Photos.PHPersistentChangeToken.#ctor(ObjCRuntime.NativeHandle) +M:Photos.PHPersistentChangeToken.Copy(Foundation.NSZone) M:Photos.PHPersistentChangeToken.EncodeTo(Foundation.NSCoder) M:Photos.PHPersistentChangeToken.get_ClassHandle M:Photos.PHPersistentObjectChangeDetails.#ctor(Foundation.NSObjectFlag) @@ -90870,6 +93759,7 @@ M:Photos.PHProjectChangeRequest.set_Title(System.String) M:Photos.PHVideoRequestOptions.#ctor M:Photos.PHVideoRequestOptions.#ctor(Foundation.NSObjectFlag) M:Photos.PHVideoRequestOptions.#ctor(ObjCRuntime.NativeHandle) +M:Photos.PHVideoRequestOptions.Copy(Foundation.NSZone) M:Photos.PHVideoRequestOptions.get_ClassHandle M:Photos.PHVideoRequestOptions.get_NetworkAccessAllowed M:Photos.PHVideoRequestOptions.set_DeliveryMode(Photos.PHVideoRequestOptionsDeliveryMode) @@ -90934,6 +93824,7 @@ M:PhotosUI.PHPhotoLibrary_PhotosUISupport.PresentLimitedLibraryPicker(Photos.PHP M:PhotosUI.PHPhotoLibrary_PhotosUISupport.PresentLimitedLibraryPickerAsync(Photos.PHPhotoLibrary,UIKit.UIViewController) M:PhotosUI.PHPickerConfiguration.#ctor(Foundation.NSObjectFlag) M:PhotosUI.PHPickerConfiguration.#ctor(ObjCRuntime.NativeHandle) +M:PhotosUI.PHPickerConfiguration.Copy(Foundation.NSZone) M:PhotosUI.PHPickerConfiguration.get_ClassHandle M:PhotosUI.PHPickerConfiguration.set_DisabledCapabilities(PhotosUI.PHPickerCapabilities) M:PhotosUI.PHPickerConfiguration.set_EdgesWithoutContentMargins(AppKit.NSDirectionalRectEdge) @@ -90946,6 +93837,7 @@ M:PhotosUI.PHPickerConfiguration.set_Selection(PhotosUI.PHPickerConfigurationSel M:PhotosUI.PHPickerConfiguration.set_SelectionLimit(System.IntPtr) M:PhotosUI.PHPickerFilter.#ctor(Foundation.NSObjectFlag) M:PhotosUI.PHPickerFilter.#ctor(ObjCRuntime.NativeHandle) +M:PhotosUI.PHPickerFilter.Copy(Foundation.NSZone) M:PhotosUI.PHPickerFilter.get_ClassHandle M:PhotosUI.PHPickerResult.#ctor(Foundation.NSObjectFlag) M:PhotosUI.PHPickerResult.#ctor(ObjCRuntime.NativeHandle) @@ -90954,6 +93846,7 @@ M:PhotosUI.PHPickerUpdateConfiguration.#ctor M:PhotosUI.PHPickerUpdateConfiguration.#ctor(Foundation.NSCoder) M:PhotosUI.PHPickerUpdateConfiguration.#ctor(Foundation.NSObjectFlag) M:PhotosUI.PHPickerUpdateConfiguration.#ctor(ObjCRuntime.NativeHandle) +M:PhotosUI.PHPickerUpdateConfiguration.Copy(Foundation.NSZone) M:PhotosUI.PHPickerUpdateConfiguration.EncodeTo(Foundation.NSCoder) M:PhotosUI.PHPickerUpdateConfiguration.get_ClassHandle M:PhotosUI.PHPickerUpdateConfiguration.set_EdgesWithoutContentMargins(AppKit.NSDirectionalRectEdge) @@ -91125,14 +94018,22 @@ M:PushKit.IPKPushRegistryDelegate.DidUpdatePushCredentials(PushKit.PKPushRegistr M:PushKit.PKPushCredentials.#ctor(Foundation.NSObjectFlag) M:PushKit.PKPushCredentials.#ctor(ObjCRuntime.NativeHandle) M:PushKit.PKPushCredentials.get_ClassHandle +M:PushKit.PKPushCredentials.get_Token +M:PushKit.PKPushCredentials.get_Type M:PushKit.PKPushPayload.#ctor(Foundation.NSObjectFlag) M:PushKit.PKPushPayload.#ctor(ObjCRuntime.NativeHandle) M:PushKit.PKPushPayload.get_ClassHandle +M:PushKit.PKPushPayload.get_DictionaryPayload +M:PushKit.PKPushPayload.get_Type +M:PushKit.PKPushRegistry.#ctor(CoreFoundation.DispatchQueue) M:PushKit.PKPushRegistry.#ctor(Foundation.NSObjectFlag) M:PushKit.PKPushRegistry.#ctor(ObjCRuntime.NativeHandle) M:PushKit.PKPushRegistry.Dispose(System.Boolean) M:PushKit.PKPushRegistry.get_ClassHandle M:PushKit.PKPushRegistry.get_Delegate +M:PushKit.PKPushRegistry.get_DesiredPushTypes +M:PushKit.PKPushRegistry.get_WeakDelegate +M:PushKit.PKPushRegistry.PushToken(System.String) M:PushKit.PKPushRegistry.set_Delegate(PushKit.IPKPushRegistryDelegate) M:PushKit.PKPushRegistry.set_DesiredPushTypes(Foundation.NSSet) M:PushKit.PKPushRegistry.set_WeakDelegate(Foundation.NSObject) @@ -91382,6 +94283,7 @@ M:QuickLook.QLPreviewItem.get_PreviewItemTitle M:QuickLook.QLPreviewItem.get_PreviewItemUrl M:QuickLook.QLPreviewProvider.#ctor(Foundation.NSObjectFlag) M:QuickLook.QLPreviewProvider.#ctor(ObjCRuntime.NativeHandle) +M:QuickLook.QLPreviewProvider.BeginRequestWithExtensionContext(Foundation.NSExtensionContext) M:QuickLook.QLPreviewProvider.get_ClassHandle M:QuickLook.QLPreviewReply.#ctor M:QuickLook.QLPreviewReply.#ctor(Foundation.NSObjectFlag) @@ -91650,8 +94552,10 @@ M:ReplayKit.RPBroadcastActivityController.#ctor(ObjCRuntime.NativeHandle) M:ReplayKit.RPBroadcastActivityController.Dispose(System.Boolean) M:ReplayKit.RPBroadcastActivityController.get_ClassHandle M:ReplayKit.RPBroadcastActivityController.get_Delegate +M:ReplayKit.RPBroadcastActivityController.get_WeakDelegate M:ReplayKit.RPBroadcastActivityController.set_Delegate(ReplayKit.IRPBroadcastActivityControllerDelegate) M:ReplayKit.RPBroadcastActivityController.set_WeakDelegate(Foundation.NSObject) +M:ReplayKit.RPBroadcastActivityController.ShowBroadcastPicker(CoreGraphics.CGPoint,AppKit.NSWindow,System.String,System.Action{ReplayKit.RPBroadcastActivityController,Foundation.NSError}) M:ReplayKit.RPBroadcastActivityControllerDelegate.#ctor M:ReplayKit.RPBroadcastActivityControllerDelegate.#ctor(Foundation.NSObjectFlag) M:ReplayKit.RPBroadcastActivityControllerDelegate.#ctor(ObjCRuntime.NativeHandle) @@ -91663,6 +94567,9 @@ M:ReplayKit.RPBroadcastActivityViewController.#ctor(ObjCRuntime.NativeHandle) M:ReplayKit.RPBroadcastActivityViewController.#ctor(System.String,Foundation.NSBundle) M:ReplayKit.RPBroadcastActivityViewController.Dispose(System.Boolean) M:ReplayKit.RPBroadcastActivityViewController.get_ClassHandle +M:ReplayKit.RPBroadcastActivityViewController.get_Delegate +M:ReplayKit.RPBroadcastActivityViewController.LoadBroadcastActivityViewController(System.Action{ReplayKit.RPBroadcastActivityViewController,Foundation.NSError}) +M:ReplayKit.RPBroadcastActivityViewController.LoadBroadcastActivityViewController(System.String,System.Action{ReplayKit.RPBroadcastActivityViewController,Foundation.NSError}) M:ReplayKit.RPBroadcastActivityViewController.LoadBroadcastActivityViewControllerAsync M:ReplayKit.RPBroadcastActivityViewController.LoadBroadcastActivityViewControllerAsync(System.String) M:ReplayKit.RPBroadcastActivityViewController.set_Delegate(ReplayKit.IRPBroadcastActivityViewControllerDelegate) @@ -91671,10 +94578,14 @@ M:ReplayKit.RPBroadcastActivityViewControllerDelegate.#ctor(Foundation.NSObjectF M:ReplayKit.RPBroadcastActivityViewControllerDelegate.#ctor(ObjCRuntime.NativeHandle) M:ReplayKit.RPBroadcastActivityViewControllerDelegate.DidFinish(ReplayKit.RPBroadcastActivityViewController,ReplayKit.RPBroadcastController,Foundation.NSError) M:ReplayKit.RPBroadcastConfiguration.#ctor +M:ReplayKit.RPBroadcastConfiguration.#ctor(Foundation.NSCoder) M:ReplayKit.RPBroadcastConfiguration.#ctor(Foundation.NSObjectFlag) M:ReplayKit.RPBroadcastConfiguration.#ctor(ObjCRuntime.NativeHandle) +M:ReplayKit.RPBroadcastConfiguration.EncodeTo(Foundation.NSCoder) M:ReplayKit.RPBroadcastConfiguration.get_ClassHandle +M:ReplayKit.RPBroadcastConfiguration.get_ClipDuration M:ReplayKit.RPBroadcastConfiguration.get_VideoCompressionProperties +M:ReplayKit.RPBroadcastConfiguration.get_WeakVideoCompressionProperties M:ReplayKit.RPBroadcastConfiguration.set_ClipDuration(System.Double) M:ReplayKit.RPBroadcastConfiguration.set_VideoCompressionProperties(AVFoundation.AVVideoCodecSettings) M:ReplayKit.RPBroadcastConfiguration.set_WeakVideoCompressionProperties(Foundation.NSDictionary{Foundation.NSString,Foundation.INSSecureCoding}) @@ -91682,11 +94593,19 @@ M:ReplayKit.RPBroadcastController.#ctor M:ReplayKit.RPBroadcastController.#ctor(Foundation.NSObjectFlag) M:ReplayKit.RPBroadcastController.#ctor(ObjCRuntime.NativeHandle) M:ReplayKit.RPBroadcastController.Dispose(System.Boolean) +M:ReplayKit.RPBroadcastController.FinishBroadcast(System.Action{Foundation.NSError}) M:ReplayKit.RPBroadcastController.FinishBroadcastAsync +M:ReplayKit.RPBroadcastController.get_BroadcastExtensionBundleID M:ReplayKit.RPBroadcastController.get_Broadcasting +M:ReplayKit.RPBroadcastController.get_BroadcastUrl M:ReplayKit.RPBroadcastController.get_ClassHandle +M:ReplayKit.RPBroadcastController.get_Delegate M:ReplayKit.RPBroadcastController.get_Paused +M:ReplayKit.RPBroadcastController.get_ServiceInfo +M:ReplayKit.RPBroadcastController.PauseBroadcast +M:ReplayKit.RPBroadcastController.ResumeBroadcast M:ReplayKit.RPBroadcastController.set_Delegate(ReplayKit.IRPBroadcastControllerDelegate) +M:ReplayKit.RPBroadcastController.StartBroadcast(System.Action{Foundation.NSError}) M:ReplayKit.RPBroadcastController.StartBroadcastAsync M:ReplayKit.RPBroadcastControllerDelegate_Extensions.DidFinish(ReplayKit.IRPBroadcastControllerDelegate,ReplayKit.RPBroadcastController,Foundation.NSError) M:ReplayKit.RPBroadcastControllerDelegate_Extensions.DidUpdateBroadcastUrl(ReplayKit.IRPBroadcastControllerDelegate,ReplayKit.RPBroadcastController,Foundation.NSUrl) @@ -91700,17 +94619,28 @@ M:ReplayKit.RPBroadcastControllerDelegate.DidUpdateServiceInfo(ReplayKit.RPBroad M:ReplayKit.RPBroadcastHandler.#ctor M:ReplayKit.RPBroadcastHandler.#ctor(Foundation.NSObjectFlag) M:ReplayKit.RPBroadcastHandler.#ctor(ObjCRuntime.NativeHandle) +M:ReplayKit.RPBroadcastHandler.BeginRequestWithExtensionContext(Foundation.NSExtensionContext) M:ReplayKit.RPBroadcastHandler.get_ClassHandle +M:ReplayKit.RPBroadcastHandler.UpdateServiceInfo(Foundation.NSDictionary{Foundation.NSString,Foundation.INSCoding}) M:ReplayKit.RPBroadcastMP4ClipHandler.#ctor M:ReplayKit.RPBroadcastMP4ClipHandler.#ctor(Foundation.NSObjectFlag) M:ReplayKit.RPBroadcastMP4ClipHandler.#ctor(ObjCRuntime.NativeHandle) +M:ReplayKit.RPBroadcastMP4ClipHandler.FinishedProcessingMP4Clip(ReplayKit.RPBroadcastConfiguration,Foundation.NSError) M:ReplayKit.RPBroadcastMP4ClipHandler.get_ClassHandle +M:ReplayKit.RPBroadcastMP4ClipHandler.ProcessMP4Clip(Foundation.NSUrl,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},System.Boolean) M:ReplayKit.RPBroadcastSampleHandler.#ctor M:ReplayKit.RPBroadcastSampleHandler.#ctor(Foundation.NSObjectFlag) M:ReplayKit.RPBroadcastSampleHandler.#ctor(ObjCRuntime.NativeHandle) +M:ReplayKit.RPBroadcastSampleHandler.BroadcastAnnotated(Foundation.NSDictionary) +M:ReplayKit.RPBroadcastSampleHandler.BroadcastFinished +M:ReplayKit.RPBroadcastSampleHandler.BroadcastPaused +M:ReplayKit.RPBroadcastSampleHandler.BroadcastResumed +M:ReplayKit.RPBroadcastSampleHandler.BroadcastStarted(Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject}) +M:ReplayKit.RPBroadcastSampleHandler.FinishBroadcast(Foundation.NSError) M:ReplayKit.RPBroadcastSampleHandler.get_ApplicationInfoBundleIdentifierKey M:ReplayKit.RPBroadcastSampleHandler.get_ClassHandle M:ReplayKit.RPBroadcastSampleHandler.get_VideoSampleOrientationKey +M:ReplayKit.RPBroadcastSampleHandler.ProcessSampleBuffer(CoreMedia.CMSampleBuffer,ReplayKit.RPSampleBufferType) M:ReplayKit.RPPreviewViewController.#ctor M:ReplayKit.RPPreviewViewController.#ctor(Foundation.NSCoder) M:ReplayKit.RPPreviewViewController.#ctor(Foundation.NSObjectFlag) @@ -91718,6 +94648,8 @@ M:ReplayKit.RPPreviewViewController.#ctor(ObjCRuntime.NativeHandle) M:ReplayKit.RPPreviewViewController.#ctor(System.String,Foundation.NSBundle) M:ReplayKit.RPPreviewViewController.Dispose(System.Boolean) M:ReplayKit.RPPreviewViewController.get_ClassHandle +M:ReplayKit.RPPreviewViewController.get_Mode +M:ReplayKit.RPPreviewViewController.get_PreviewControllerDelegate M:ReplayKit.RPPreviewViewController.set_Mode(ReplayKit.RPPreviewViewControllerMode) M:ReplayKit.RPPreviewViewController.set_PreviewControllerDelegate(ReplayKit.IRPPreviewViewControllerDelegate) M:ReplayKit.RPPreviewViewControllerDelegate_Extensions.DidFinish(ReplayKit.IRPPreviewViewControllerDelegate,ReplayKit.RPPreviewViewController,Foundation.NSSet{Foundation.NSString}) @@ -91728,24 +94660,38 @@ M:ReplayKit.RPPreviewViewControllerDelegate.#ctor(ObjCRuntime.NativeHandle) M:ReplayKit.RPPreviewViewControllerDelegate.DidFinish(ReplayKit.RPPreviewViewController,Foundation.NSSet{Foundation.NSString}) M:ReplayKit.RPPreviewViewControllerDelegate.DidFinish(ReplayKit.RPPreviewViewController) M:ReplayKit.RPRecordingErrorExtensions.GetDomain(ReplayKit.RPRecordingError) +M:ReplayKit.RPScreenRecorder.DiscardRecording(System.Action) M:ReplayKit.RPScreenRecorder.DiscardRecordingAsync M:ReplayKit.RPScreenRecorder.Dispose(System.Boolean) +M:ReplayKit.RPScreenRecorder.ExportClip(Foundation.NSUrl,System.Double,System.Action{Foundation.NSError}) M:ReplayKit.RPScreenRecorder.ExportClipAsync(Foundation.NSUrl,System.Double) M:ReplayKit.RPScreenRecorder.get_Available M:ReplayKit.RPScreenRecorder.get_CameraEnabled +M:ReplayKit.RPScreenRecorder.get_CameraPosition +M:ReplayKit.RPScreenRecorder.get_CameraPreviewView M:ReplayKit.RPScreenRecorder.get_ClassHandle +M:ReplayKit.RPScreenRecorder.get_Delegate M:ReplayKit.RPScreenRecorder.get_MicrophoneEnabled M:ReplayKit.RPScreenRecorder.get_Recording +M:ReplayKit.RPScreenRecorder.get_SharedRecorder M:ReplayKit.RPScreenRecorder.set_CameraEnabled(System.Boolean) M:ReplayKit.RPScreenRecorder.set_CameraPosition(ReplayKit.RPCameraPosition) M:ReplayKit.RPScreenRecorder.set_Delegate(ReplayKit.IRPScreenRecorderDelegate) M:ReplayKit.RPScreenRecorder.set_MicrophoneEnabled(System.Boolean) +M:ReplayKit.RPScreenRecorder.StartCapture(System.Action{CoreMedia.CMSampleBuffer,ReplayKit.RPSampleBufferType,Foundation.NSError},System.Action{Foundation.NSError}) M:ReplayKit.RPScreenRecorder.StartCaptureAsync(System.Action{CoreMedia.CMSampleBuffer,ReplayKit.RPSampleBufferType,Foundation.NSError}) +M:ReplayKit.RPScreenRecorder.StartClipBuffering(System.Action{Foundation.NSError}) M:ReplayKit.RPScreenRecorder.StartClipBufferingAsync +M:ReplayKit.RPScreenRecorder.StartRecording(System.Action{Foundation.NSError}) +M:ReplayKit.RPScreenRecorder.StartRecording(System.Boolean,System.Action{Foundation.NSError}) M:ReplayKit.RPScreenRecorder.StartRecordingAsync M:ReplayKit.RPScreenRecorder.StartRecordingAsync(System.Boolean) +M:ReplayKit.RPScreenRecorder.StopCapture(System.Action{Foundation.NSError}) M:ReplayKit.RPScreenRecorder.StopCaptureAsync +M:ReplayKit.RPScreenRecorder.StopClipBuffering(System.Action{Foundation.NSError}) M:ReplayKit.RPScreenRecorder.StopClipBufferingAsync +M:ReplayKit.RPScreenRecorder.StopRecording(Foundation.NSUrl,System.Action{Foundation.NSError}) +M:ReplayKit.RPScreenRecorder.StopRecording(System.Action{ReplayKit.RPPreviewViewController,Foundation.NSError}) M:ReplayKit.RPScreenRecorder.StopRecordingAsync M:ReplayKit.RPScreenRecorder.StopRecordingAsync(Foundation.NSUrl) M:ReplayKit.RPScreenRecorderDelegate_Extensions.DidChangeAvailability(ReplayKit.IRPScreenRecorderDelegate,ReplayKit.RPScreenRecorder) @@ -91759,11 +94705,15 @@ M:ReplayKit.RPScreenRecorderDelegate.DidStopRecording(ReplayKit.RPScreenRecorder M:ReplayKit.RPScreenRecorderDelegate.DidStopRecording(ReplayKit.RPScreenRecorder,ReplayKit.RPPreviewViewController,Foundation.NSError) M:ReplayKit.RPSystemBroadcastPickerView.#ctor M:ReplayKit.RPSystemBroadcastPickerView.#ctor(CoreGraphics.CGRect) +M:ReplayKit.RPSystemBroadcastPickerView.#ctor(Foundation.NSCoder) M:ReplayKit.RPSystemBroadcastPickerView.#ctor(Foundation.NSObjectFlag) M:ReplayKit.RPSystemBroadcastPickerView.#ctor(ObjCRuntime.NativeHandle) M:ReplayKit.RPSystemBroadcastPickerView.AppearanceWhenContainedIn(System.Type[]) +M:ReplayKit.RPSystemBroadcastPickerView.EncodeTo(Foundation.NSCoder) M:ReplayKit.RPSystemBroadcastPickerView.get_Appearance M:ReplayKit.RPSystemBroadcastPickerView.get_ClassHandle +M:ReplayKit.RPSystemBroadcastPickerView.get_PreferredExtension +M:ReplayKit.RPSystemBroadcastPickerView.get_ShowsMicrophoneButton M:ReplayKit.RPSystemBroadcastPickerView.GetAppearance(UIKit.UITraitCollection,System.Type[]) M:ReplayKit.RPSystemBroadcastPickerView.GetAppearance(UIKit.UITraitCollection) M:ReplayKit.RPSystemBroadcastPickerView.GetAppearance``1 @@ -92126,6 +95076,7 @@ M:SceneKit.SCNAction.#ctor M:SceneKit.SCNAction.#ctor(Foundation.NSCoder) M:SceneKit.SCNAction.#ctor(Foundation.NSObjectFlag) M:SceneKit.SCNAction.#ctor(ObjCRuntime.NativeHandle) +M:SceneKit.SCNAction.Copy(Foundation.NSZone) M:SceneKit.SCNAction.EncodeTo(Foundation.NSCoder) M:SceneKit.SCNAction.get_ClassHandle M:SceneKit.SCNAction.set_DurationInSeconds(System.Double) @@ -92170,6 +95121,7 @@ M:SceneKit.SCNAnimation.#ctor M:SceneKit.SCNAnimation.#ctor(Foundation.NSCoder) M:SceneKit.SCNAnimation.#ctor(Foundation.NSObjectFlag) M:SceneKit.SCNAnimation.#ctor(ObjCRuntime.NativeHandle) +M:SceneKit.SCNAnimation.Copy(Foundation.NSZone) M:SceneKit.SCNAnimation.EncodeTo(Foundation.NSCoder) M:SceneKit.SCNAnimation.get_Additive M:SceneKit.SCNAnimation.get_AppliedOnCompletion @@ -92214,11 +95166,26 @@ M:SceneKit.SCNAnimationPlayer.#ctor M:SceneKit.SCNAnimationPlayer.#ctor(Foundation.NSCoder) M:SceneKit.SCNAnimationPlayer.#ctor(Foundation.NSObjectFlag) M:SceneKit.SCNAnimationPlayer.#ctor(ObjCRuntime.NativeHandle) +M:SceneKit.SCNAnimationPlayer.AddAnimation(SceneKit.ISCNAnimationProtocol,System.String) +M:SceneKit.SCNAnimationPlayer.AddAnimation(SceneKit.SCNAnimationPlayer,Foundation.NSString) +M:SceneKit.SCNAnimationPlayer.Copy(Foundation.NSZone) M:SceneKit.SCNAnimationPlayer.EncodeTo(Foundation.NSCoder) M:SceneKit.SCNAnimationPlayer.get_ClassHandle +M:SceneKit.SCNAnimationPlayer.GetAnimation(Foundation.NSString) +M:SceneKit.SCNAnimationPlayer.GetAnimationKeys +M:SceneKit.SCNAnimationPlayer.GetAnimationPlayer(Foundation.NSString) +M:SceneKit.SCNAnimationPlayer.IsAnimationPaused(Foundation.NSString) +M:SceneKit.SCNAnimationPlayer.PauseAnimation(Foundation.NSString) +M:SceneKit.SCNAnimationPlayer.RemoveAllAnimations +M:SceneKit.SCNAnimationPlayer.RemoveAllAnimationsWithBlendOutDuration(System.Runtime.InteropServices.NFloat) +M:SceneKit.SCNAnimationPlayer.RemoveAnimation(Foundation.NSString,System.Runtime.InteropServices.NFloat) +M:SceneKit.SCNAnimationPlayer.RemoveAnimation(Foundation.NSString) +M:SceneKit.SCNAnimationPlayer.RemoveAnimationUsingBlendOutDuration(Foundation.NSString,System.Runtime.InteropServices.NFloat) +M:SceneKit.SCNAnimationPlayer.ResumeAnimation(Foundation.NSString) M:SceneKit.SCNAnimationPlayer.set_BlendFactor(System.Runtime.InteropServices.NFloat) M:SceneKit.SCNAnimationPlayer.set_Paused(System.Boolean) M:SceneKit.SCNAnimationPlayer.set_Speed(System.Runtime.InteropServices.NFloat) +M:SceneKit.SCNAnimationPlayer.SetSpeed(System.Runtime.InteropServices.NFloat,Foundation.NSString) M:SceneKit.SCNAudioPlayer.#ctor(Foundation.NSObjectFlag) M:SceneKit.SCNAudioPlayer.#ctor(ObjCRuntime.NativeHandle) M:SceneKit.SCNAudioPlayer.get_ClassHandle @@ -92227,6 +95194,7 @@ M:SceneKit.SCNAudioPlayer.set_WillStartPlayback(System.Action) M:SceneKit.SCNAudioSource.#ctor(Foundation.NSCoder) M:SceneKit.SCNAudioSource.#ctor(Foundation.NSObjectFlag) M:SceneKit.SCNAudioSource.#ctor(ObjCRuntime.NativeHandle) +M:SceneKit.SCNAudioSource.Copy(Foundation.NSZone) M:SceneKit.SCNAudioSource.EncodeTo(Foundation.NSCoder) M:SceneKit.SCNAudioSource.get_ClassHandle M:SceneKit.SCNAudioSource.get_Positional @@ -92290,8 +95258,23 @@ M:SceneKit.SCNCamera.#ctor M:SceneKit.SCNCamera.#ctor(Foundation.NSCoder) M:SceneKit.SCNCamera.#ctor(Foundation.NSObjectFlag) M:SceneKit.SCNCamera.#ctor(ObjCRuntime.NativeHandle) +M:SceneKit.SCNCamera.AddAnimation(SceneKit.ISCNAnimationProtocol,System.String) +M:SceneKit.SCNCamera.AddAnimation(SceneKit.SCNAnimationPlayer,Foundation.NSString) +M:SceneKit.SCNCamera.Copy(Foundation.NSZone) M:SceneKit.SCNCamera.EncodeTo(Foundation.NSCoder) M:SceneKit.SCNCamera.get_ClassHandle +M:SceneKit.SCNCamera.get_Technique +M:SceneKit.SCNCamera.GetAnimation(Foundation.NSString) +M:SceneKit.SCNCamera.GetAnimationKeys +M:SceneKit.SCNCamera.GetAnimationPlayer(Foundation.NSString) +M:SceneKit.SCNCamera.IsAnimationPaused(Foundation.NSString) +M:SceneKit.SCNCamera.PauseAnimation(Foundation.NSString) +M:SceneKit.SCNCamera.RemoveAllAnimations +M:SceneKit.SCNCamera.RemoveAllAnimationsWithBlendOutDuration(System.Runtime.InteropServices.NFloat) +M:SceneKit.SCNCamera.RemoveAnimation(Foundation.NSString,System.Runtime.InteropServices.NFloat) +M:SceneKit.SCNCamera.RemoveAnimation(Foundation.NSString) +M:SceneKit.SCNCamera.RemoveAnimationUsingBlendOutDuration(Foundation.NSString,System.Runtime.InteropServices.NFloat) +M:SceneKit.SCNCamera.ResumeAnimation(Foundation.NSString) M:SceneKit.SCNCamera.set_Aperture(System.Runtime.InteropServices.NFloat) M:SceneKit.SCNCamera.set_ApertureBladeCount(System.IntPtr) M:SceneKit.SCNCamera.set_AutomaticallyAdjustsZRange(System.Boolean) @@ -92346,6 +95329,7 @@ M:SceneKit.SCNCamera.set_XFov(System.Double) M:SceneKit.SCNCamera.set_YFov(System.Double) M:SceneKit.SCNCamera.set_ZFar(System.Double) M:SceneKit.SCNCamera.set_ZNear(System.Double) +M:SceneKit.SCNCamera.SetSpeed(System.Runtime.InteropServices.NFloat,Foundation.NSString) M:SceneKit.SCNCameraController.#ctor M:SceneKit.SCNCameraController.#ctor(Foundation.NSObjectFlag) M:SceneKit.SCNCameraController.#ctor(ObjCRuntime.NativeHandle) @@ -92394,13 +95378,28 @@ M:SceneKit.SCNCone.set_TopRadius(System.Runtime.InteropServices.NFloat) M:SceneKit.SCNConstraint.#ctor(Foundation.NSCoder) M:SceneKit.SCNConstraint.#ctor(Foundation.NSObjectFlag) M:SceneKit.SCNConstraint.#ctor(ObjCRuntime.NativeHandle) +M:SceneKit.SCNConstraint.AddAnimation(SceneKit.ISCNAnimationProtocol,System.String) +M:SceneKit.SCNConstraint.AddAnimation(SceneKit.SCNAnimationPlayer,Foundation.NSString) +M:SceneKit.SCNConstraint.Copy(Foundation.NSZone) M:SceneKit.SCNConstraint.EncodeTo(Foundation.NSCoder) M:SceneKit.SCNConstraint.get_ClassHandle M:SceneKit.SCNConstraint.get_Enabled M:SceneKit.SCNConstraint.get_Incremental +M:SceneKit.SCNConstraint.GetAnimation(Foundation.NSString) +M:SceneKit.SCNConstraint.GetAnimationKeys +M:SceneKit.SCNConstraint.GetAnimationPlayer(Foundation.NSString) +M:SceneKit.SCNConstraint.IsAnimationPaused(Foundation.NSString) +M:SceneKit.SCNConstraint.PauseAnimation(Foundation.NSString) +M:SceneKit.SCNConstraint.RemoveAllAnimations +M:SceneKit.SCNConstraint.RemoveAllAnimationsWithBlendOutDuration(System.Runtime.InteropServices.NFloat) +M:SceneKit.SCNConstraint.RemoveAnimation(Foundation.NSString,System.Runtime.InteropServices.NFloat) +M:SceneKit.SCNConstraint.RemoveAnimation(Foundation.NSString) +M:SceneKit.SCNConstraint.RemoveAnimationUsingBlendOutDuration(Foundation.NSString,System.Runtime.InteropServices.NFloat) +M:SceneKit.SCNConstraint.ResumeAnimation(Foundation.NSString) M:SceneKit.SCNConstraint.set_Enabled(System.Boolean) M:SceneKit.SCNConstraint.set_Incremental(System.Boolean) M:SceneKit.SCNConstraint.set_InfluenceFactor(System.Runtime.InteropServices.NFloat) +M:SceneKit.SCNConstraint.SetSpeed(System.Runtime.InteropServices.NFloat,Foundation.NSString) M:SceneKit.SCNCylinder.#ctor M:SceneKit.SCNCylinder.#ctor(Foundation.NSCoder) M:SceneKit.SCNCylinder.#ctor(Foundation.NSObjectFlag) @@ -92438,9 +95437,30 @@ M:SceneKit.SCNFloor.set_Width(System.Runtime.InteropServices.NFloat) M:SceneKit.SCNGeometry.#ctor(Foundation.NSCoder) M:SceneKit.SCNGeometry.#ctor(Foundation.NSObjectFlag) M:SceneKit.SCNGeometry.#ctor(ObjCRuntime.NativeHandle) +M:SceneKit.SCNGeometry.AddAnimation(SceneKit.ISCNAnimationProtocol,System.String) +M:SceneKit.SCNGeometry.AddAnimation(SceneKit.SCNAnimationPlayer,Foundation.NSString) +M:SceneKit.SCNGeometry.Copy(Foundation.NSZone) M:SceneKit.SCNGeometry.EncodeTo(Foundation.NSCoder) M:SceneKit.SCNGeometry.get_ClassHandle +M:SceneKit.SCNGeometry.get_MinimumLanguageVersion +M:SceneKit.SCNGeometry.get_Program M:SceneKit.SCNGeometry.get_ShaderModifiers +M:SceneKit.SCNGeometry.get_WeakShaderModifiers +M:SceneKit.SCNGeometry.GetAnimation(Foundation.NSString) +M:SceneKit.SCNGeometry.GetAnimationKeys +M:SceneKit.SCNGeometry.GetAnimationPlayer(Foundation.NSString) +M:SceneKit.SCNGeometry.GetBoundingBox(SceneKit.SCNVector3@,SceneKit.SCNVector3@) +M:SceneKit.SCNGeometry.GetBoundingSphere(SceneKit.SCNVector3@,System.Runtime.InteropServices.NFloat@) +M:SceneKit.SCNGeometry.HandleBinding(System.String,SceneKit.SCNBindingHandler) +M:SceneKit.SCNGeometry.HandleUnbinding(System.String,SceneKit.SCNBindingHandler) +M:SceneKit.SCNGeometry.IsAnimationPaused(Foundation.NSString) +M:SceneKit.SCNGeometry.PauseAnimation(Foundation.NSString) +M:SceneKit.SCNGeometry.RemoveAllAnimations +M:SceneKit.SCNGeometry.RemoveAllAnimationsWithBlendOutDuration(System.Runtime.InteropServices.NFloat) +M:SceneKit.SCNGeometry.RemoveAnimation(Foundation.NSString,System.Runtime.InteropServices.NFloat) +M:SceneKit.SCNGeometry.RemoveAnimation(Foundation.NSString) +M:SceneKit.SCNGeometry.RemoveAnimationUsingBlendOutDuration(Foundation.NSString,System.Runtime.InteropServices.NFloat) +M:SceneKit.SCNGeometry.ResumeAnimation(Foundation.NSString) M:SceneKit.SCNGeometry.set_EdgeCreasesElement(SceneKit.SCNGeometryElement) M:SceneKit.SCNGeometry.set_EdgeCreasesSource(SceneKit.SCNGeometrySource) M:SceneKit.SCNGeometry.set_FirstMaterial(SceneKit.SCNMaterial) @@ -92454,6 +95474,8 @@ M:SceneKit.SCNGeometry.set_SubdivisionLevel(System.UIntPtr) M:SceneKit.SCNGeometry.set_Tessellator(SceneKit.SCNGeometryTessellator) M:SceneKit.SCNGeometry.set_WantsAdaptiveSubdivision(System.Boolean) M:SceneKit.SCNGeometry.set_WeakShaderModifiers(Foundation.NSDictionary) +M:SceneKit.SCNGeometry.SetBoundingBox(SceneKit.SCNVector3@,SceneKit.SCNVector3@) +M:SceneKit.SCNGeometry.SetSpeed(System.Runtime.InteropServices.NFloat,Foundation.NSString) M:SceneKit.SCNGeometryElement.#ctor M:SceneKit.SCNGeometryElement.#ctor(Foundation.NSCoder) M:SceneKit.SCNGeometryElement.#ctor(Foundation.NSObjectFlag) @@ -92487,6 +95509,7 @@ M:SceneKit.SCNGeometrySourceSemantic.get_VertexCrease M:SceneKit.SCNGeometryTessellator.#ctor(Foundation.NSCoder) M:SceneKit.SCNGeometryTessellator.#ctor(Foundation.NSObjectFlag) M:SceneKit.SCNGeometryTessellator.#ctor(ObjCRuntime.NativeHandle) +M:SceneKit.SCNGeometryTessellator.Copy(Foundation.NSZone) M:SceneKit.SCNGeometryTessellator.EncodeTo(Foundation.NSCoder) M:SceneKit.SCNGeometryTessellator.get_Adaptive M:SceneKit.SCNGeometryTessellator.get_ClassHandle @@ -92544,14 +95567,46 @@ M:SceneKit.SCNLayer.#ctor(Foundation.NSCoder) M:SceneKit.SCNLayer.#ctor(Foundation.NSObjectFlag) M:SceneKit.SCNLayer.#ctor(ObjCRuntime.NativeHandle) M:SceneKit.SCNLayer.Dispose(System.Boolean) +M:SceneKit.SCNLayer.get_AudioEngine +M:SceneKit.SCNLayer.get_AudioEnvironmentNode +M:SceneKit.SCNLayer.get_AudioListener +M:SceneKit.SCNLayer.get_AutoenablesDefaultLighting M:SceneKit.SCNLayer.get_ClassHandle +M:SceneKit.SCNLayer.get_ColorPixelFormat +M:SceneKit.SCNLayer.get_CommandQueue +M:SceneKit.SCNLayer.get_Context +M:SceneKit.SCNLayer.get_CurrentRenderCommandEncoder +M:SceneKit.SCNLayer.get_CurrentRenderPassDescriptor +M:SceneKit.SCNLayer.get_CurrentTime +M:SceneKit.SCNLayer.get_CurrentViewport +M:SceneKit.SCNLayer.get_DebugOptions +M:SceneKit.SCNLayer.get_DepthPixelFormat +M:SceneKit.SCNLayer.get_Device M:SceneKit.SCNLayer.get_JitteringEnabled +M:SceneKit.SCNLayer.get_Loops +M:SceneKit.SCNLayer.get_OverlayScene M:SceneKit.SCNLayer.get_Playing +M:SceneKit.SCNLayer.get_PointOfView +M:SceneKit.SCNLayer.get_RenderingApi M:SceneKit.SCNLayer.get_SceneRendererDelegate +M:SceneKit.SCNLayer.get_SceneTimeInSeconds +M:SceneKit.SCNLayer.get_ShowsStatistics +M:SceneKit.SCNLayer.get_StencilPixelFormat +M:SceneKit.SCNLayer.get_Technique M:SceneKit.SCNLayer.get_TemporalAntialiasingEnabled +M:SceneKit.SCNLayer.get_UsesReverseZ +M:SceneKit.SCNLayer.get_WeakSceneRendererDelegate +M:SceneKit.SCNLayer.get_WorkingColorSpace +M:SceneKit.SCNLayer.GetNodesInsideFrustum(SceneKit.SCNNode) +M:SceneKit.SCNLayer.HitTest(CoreGraphics.CGPoint,Foundation.NSDictionary) M:SceneKit.SCNLayer.HitTest(CoreGraphics.CGPoint,SceneKit.SCNHitTestOptions) +M:SceneKit.SCNLayer.IsNodeInsideFrustum(SceneKit.SCNNode,SceneKit.SCNNode) +M:SceneKit.SCNLayer.Prepare(Foundation.NSObject,System.Func{System.Boolean}) +M:SceneKit.SCNLayer.Prepare(Foundation.NSObject[],System.Action{System.Boolean}) M:SceneKit.SCNLayer.PrepareAsync(Foundation.NSObject[]) +M:SceneKit.SCNLayer.PresentScene(SceneKit.SCNScene,SpriteKit.SKTransition,SceneKit.SCNNode,System.Action) M:SceneKit.SCNLayer.PresentSceneAsync(SceneKit.SCNScene,SpriteKit.SKTransition,SceneKit.SCNNode) +M:SceneKit.SCNLayer.ProjectPoint(SceneKit.SCNVector3) M:SceneKit.SCNLayer.set_AudioListener(SceneKit.SCNNode) M:SceneKit.SCNLayer.set_AutoenablesDefaultLighting(System.Boolean) M:SceneKit.SCNLayer.set_CurrentTime(System.Double) @@ -92569,20 +95624,36 @@ M:SceneKit.SCNLayer.set_Technique(SceneKit.SCNTechnique) M:SceneKit.SCNLayer.set_TemporalAntialiasingEnabled(System.Boolean) M:SceneKit.SCNLayer.set_UsesReverseZ(System.Boolean) M:SceneKit.SCNLayer.set_WeakSceneRendererDelegate(Foundation.NSObject) +M:SceneKit.SCNLayer.UnprojectPoint(SceneKit.SCNVector3) M:SceneKit.SCNLevelOfDetail.#ctor(Foundation.NSCoder) M:SceneKit.SCNLevelOfDetail.#ctor(Foundation.NSObjectFlag) M:SceneKit.SCNLevelOfDetail.#ctor(ObjCRuntime.NativeHandle) +M:SceneKit.SCNLevelOfDetail.Copy(Foundation.NSZone) M:SceneKit.SCNLevelOfDetail.EncodeTo(Foundation.NSCoder) M:SceneKit.SCNLevelOfDetail.get_ClassHandle M:SceneKit.SCNLight.#ctor M:SceneKit.SCNLight.#ctor(Foundation.NSCoder) M:SceneKit.SCNLight.#ctor(Foundation.NSObjectFlag) M:SceneKit.SCNLight.#ctor(ObjCRuntime.NativeHandle) +M:SceneKit.SCNLight.AddAnimation(SceneKit.ISCNAnimationProtocol,System.String) +M:SceneKit.SCNLight.AddAnimation(SceneKit.SCNAnimationPlayer,Foundation.NSString) +M:SceneKit.SCNLight.Copy(Foundation.NSZone) M:SceneKit.SCNLight.EncodeTo(Foundation.NSCoder) M:SceneKit.SCNLight.get_ClassHandle M:SceneKit.SCNLight.get_Color M:SceneKit.SCNLight.get_ShadowColor M:SceneKit.SCNLight.get_Technique +M:SceneKit.SCNLight.GetAnimation(Foundation.NSString) +M:SceneKit.SCNLight.GetAnimationKeys +M:SceneKit.SCNLight.GetAnimationPlayer(Foundation.NSString) +M:SceneKit.SCNLight.IsAnimationPaused(Foundation.NSString) +M:SceneKit.SCNLight.PauseAnimation(Foundation.NSString) +M:SceneKit.SCNLight.RemoveAllAnimations +M:SceneKit.SCNLight.RemoveAllAnimationsWithBlendOutDuration(System.Runtime.InteropServices.NFloat) +M:SceneKit.SCNLight.RemoveAnimation(Foundation.NSString,System.Runtime.InteropServices.NFloat) +M:SceneKit.SCNLight.RemoveAnimation(Foundation.NSString) +M:SceneKit.SCNLight.RemoveAnimationUsingBlendOutDuration(Foundation.NSString,System.Runtime.InteropServices.NFloat) +M:SceneKit.SCNLight.ResumeAnimation(Foundation.NSString) M:SceneKit.SCNLight.set_AreaExtents(CoreGraphics.NVector3) M:SceneKit.SCNLight.set_AreaPolygonVertices(Foundation.NSValue[]) M:SceneKit.SCNLight.set_AreaType(SceneKit.SCNLightAreaType) @@ -92628,6 +95699,7 @@ M:SceneKit.SCNLight.set_WeakColor(Foundation.NSObject) M:SceneKit.SCNLight.set_WeakShadowColor(Foundation.NSObject) M:SceneKit.SCNLight.set_ZFar(System.Runtime.InteropServices.NFloat) M:SceneKit.SCNLight.set_ZNear(System.Runtime.InteropServices.NFloat) +M:SceneKit.SCNLight.SetSpeed(System.Runtime.InteropServices.NFloat,Foundation.NSString) M:SceneKit.SCNLightAttribute.get_AttenuationEndKey M:SceneKit.SCNLightAttribute.get_AttenuationFalloffExponentKey M:SceneKit.SCNLightAttribute.get_AttenuationStartKey @@ -92660,11 +95732,30 @@ M:SceneKit.SCNMaterial.#ctor M:SceneKit.SCNMaterial.#ctor(Foundation.NSCoder) M:SceneKit.SCNMaterial.#ctor(Foundation.NSObjectFlag) M:SceneKit.SCNMaterial.#ctor(ObjCRuntime.NativeHandle) +M:SceneKit.SCNMaterial.AddAnimation(SceneKit.ISCNAnimationProtocol,System.String) +M:SceneKit.SCNMaterial.AddAnimation(SceneKit.SCNAnimationPlayer,Foundation.NSString) +M:SceneKit.SCNMaterial.Copy(Foundation.NSZone) M:SceneKit.SCNMaterial.EncodeTo(Foundation.NSCoder) M:SceneKit.SCNMaterial.get_ClassHandle M:SceneKit.SCNMaterial.get_DoubleSided M:SceneKit.SCNMaterial.get_LitPerPixel +M:SceneKit.SCNMaterial.get_MinimumLanguageVersion +M:SceneKit.SCNMaterial.get_Program M:SceneKit.SCNMaterial.get_ShaderModifiers +M:SceneKit.SCNMaterial.get_WeakShaderModifiers +M:SceneKit.SCNMaterial.GetAnimation(Foundation.NSString) +M:SceneKit.SCNMaterial.GetAnimationKeys +M:SceneKit.SCNMaterial.GetAnimationPlayer(Foundation.NSString) +M:SceneKit.SCNMaterial.HandleBinding(System.String,SceneKit.SCNBindingHandler) +M:SceneKit.SCNMaterial.HandleUnbinding(System.String,SceneKit.SCNBindingHandler) +M:SceneKit.SCNMaterial.IsAnimationPaused(Foundation.NSString) +M:SceneKit.SCNMaterial.PauseAnimation(Foundation.NSString) +M:SceneKit.SCNMaterial.RemoveAllAnimations +M:SceneKit.SCNMaterial.RemoveAllAnimationsWithBlendOutDuration(System.Runtime.InteropServices.NFloat) +M:SceneKit.SCNMaterial.RemoveAnimation(Foundation.NSString,System.Runtime.InteropServices.NFloat) +M:SceneKit.SCNMaterial.RemoveAnimation(Foundation.NSString) +M:SceneKit.SCNMaterial.RemoveAnimationUsingBlendOutDuration(Foundation.NSString,System.Runtime.InteropServices.NFloat) +M:SceneKit.SCNMaterial.ResumeAnimation(Foundation.NSString) M:SceneKit.SCNMaterial.set_BlendMode(SceneKit.SCNBlendMode) M:SceneKit.SCNMaterial.set_ColorBufferWriteMask(SceneKit.SCNColorMask) M:SceneKit.SCNMaterial.set_CullMode(SceneKit.SCNCullMode) @@ -92684,9 +95775,12 @@ M:SceneKit.SCNMaterial.set_Transparency(System.Runtime.InteropServices.NFloat) M:SceneKit.SCNMaterial.set_TransparencyMode(SceneKit.SCNTransparencyMode) M:SceneKit.SCNMaterial.set_WeakShaderModifiers(Foundation.NSDictionary) M:SceneKit.SCNMaterial.set_WritesToDepthBuffer(System.Boolean) +M:SceneKit.SCNMaterial.SetSpeed(System.Runtime.InteropServices.NFloat,Foundation.NSString) M:SceneKit.SCNMaterialProperty.#ctor(Foundation.NSCoder) M:SceneKit.SCNMaterialProperty.#ctor(Foundation.NSObjectFlag) M:SceneKit.SCNMaterialProperty.#ctor(ObjCRuntime.NativeHandle) +M:SceneKit.SCNMaterialProperty.AddAnimation(SceneKit.ISCNAnimationProtocol,System.String) +M:SceneKit.SCNMaterialProperty.AddAnimation(SceneKit.SCNAnimationPlayer,Foundation.NSString) M:SceneKit.SCNMaterialProperty.EncodeTo(Foundation.NSCoder) M:SceneKit.SCNMaterialProperty.get_ClassHandle M:SceneKit.SCNMaterialProperty.get_ContentColor @@ -92697,6 +95791,17 @@ M:SceneKit.SCNMaterialProperty.get_ContentPath M:SceneKit.SCNMaterialProperty.get_ContentScene M:SceneKit.SCNMaterialProperty.get_ContentTexture M:SceneKit.SCNMaterialProperty.get_ContentUrl +M:SceneKit.SCNMaterialProperty.GetAnimation(Foundation.NSString) +M:SceneKit.SCNMaterialProperty.GetAnimationKeys +M:SceneKit.SCNMaterialProperty.GetAnimationPlayer(Foundation.NSString) +M:SceneKit.SCNMaterialProperty.IsAnimationPaused(Foundation.NSString) +M:SceneKit.SCNMaterialProperty.PauseAnimation(Foundation.NSString) +M:SceneKit.SCNMaterialProperty.RemoveAllAnimations +M:SceneKit.SCNMaterialProperty.RemoveAllAnimationsWithBlendOutDuration(System.Runtime.InteropServices.NFloat) +M:SceneKit.SCNMaterialProperty.RemoveAnimation(Foundation.NSString,System.Runtime.InteropServices.NFloat) +M:SceneKit.SCNMaterialProperty.RemoveAnimation(Foundation.NSString) +M:SceneKit.SCNMaterialProperty.RemoveAnimationUsingBlendOutDuration(Foundation.NSString,System.Runtime.InteropServices.NFloat) +M:SceneKit.SCNMaterialProperty.ResumeAnimation(Foundation.NSString) M:SceneKit.SCNMaterialProperty.set_BorderColor(Foundation.NSObject) M:SceneKit.SCNMaterialProperty.set_ContentColor(AppKit.NSColor) M:SceneKit.SCNMaterialProperty.set_ContentColor(UIKit.UIColor) @@ -92720,6 +95825,7 @@ M:SceneKit.SCNMaterialProperty.set_MipFilter(SceneKit.SCNFilterMode) M:SceneKit.SCNMaterialProperty.set_TextureComponents(SceneKit.SCNColorMask) M:SceneKit.SCNMaterialProperty.set_WrapS(SceneKit.SCNWrapMode) M:SceneKit.SCNMaterialProperty.set_WrapT(SceneKit.SCNWrapMode) +M:SceneKit.SCNMaterialProperty.SetSpeed(System.Runtime.InteropServices.NFloat,Foundation.NSString) M:SceneKit.SCNMatrix4.#ctor(CoreAnimation.CATransform3D) M:SceneKit.SCNMatrix4.CreateFromAxisAngle(CoreGraphics.NVector3d,System.Double,SceneKit.SCNMatrix4@) M:SceneKit.SCNMatrix4.CreateFromAxisAngle(System.Numerics.Vector3,System.Single,SceneKit.SCNMatrix4@) @@ -92786,40 +95892,85 @@ M:SceneKit.SCNMorpher.#ctor M:SceneKit.SCNMorpher.#ctor(Foundation.NSCoder) M:SceneKit.SCNMorpher.#ctor(Foundation.NSObjectFlag) M:SceneKit.SCNMorpher.#ctor(ObjCRuntime.NativeHandle) +M:SceneKit.SCNMorpher.AddAnimation(SceneKit.ISCNAnimationProtocol,System.String) +M:SceneKit.SCNMorpher.AddAnimation(SceneKit.SCNAnimationPlayer,Foundation.NSString) M:SceneKit.SCNMorpher.EncodeTo(Foundation.NSCoder) M:SceneKit.SCNMorpher.get_ClassHandle +M:SceneKit.SCNMorpher.GetAnimation(Foundation.NSString) +M:SceneKit.SCNMorpher.GetAnimationKeys +M:SceneKit.SCNMorpher.GetAnimationPlayer(Foundation.NSString) +M:SceneKit.SCNMorpher.IsAnimationPaused(Foundation.NSString) +M:SceneKit.SCNMorpher.PauseAnimation(Foundation.NSString) +M:SceneKit.SCNMorpher.RemoveAllAnimations +M:SceneKit.SCNMorpher.RemoveAllAnimationsWithBlendOutDuration(System.Runtime.InteropServices.NFloat) +M:SceneKit.SCNMorpher.RemoveAnimation(Foundation.NSString,System.Runtime.InteropServices.NFloat) +M:SceneKit.SCNMorpher.RemoveAnimation(Foundation.NSString) +M:SceneKit.SCNMorpher.RemoveAnimationUsingBlendOutDuration(Foundation.NSString,System.Runtime.InteropServices.NFloat) +M:SceneKit.SCNMorpher.ResumeAnimation(Foundation.NSString) M:SceneKit.SCNMorpher.set_CalculationMode(SceneKit.SCNMorpherCalculationMode) M:SceneKit.SCNMorpher.set_Targets(SceneKit.SCNGeometry[]) M:SceneKit.SCNMorpher.set_UnifiesNormals(System.Boolean) M:SceneKit.SCNMorpher.set_Weights(Foundation.NSNumber[]) +M:SceneKit.SCNMorpher.SetSpeed(System.Runtime.InteropServices.NFloat,Foundation.NSString) M:SceneKit.SCNNode.#ctor M:SceneKit.SCNNode.#ctor(Foundation.NSCoder) M:SceneKit.SCNNode.#ctor(Foundation.NSObjectFlag) M:SceneKit.SCNNode.#ctor(ObjCRuntime.NativeHandle) M:SceneKit.SCNNode.Add(SceneKit.SCNNode) M:SceneKit.SCNNode.AddAnimation(CoreAnimation.CAAnimation,System.String) +M:SceneKit.SCNNode.AddAnimation(SceneKit.ISCNAnimationProtocol,System.String) +M:SceneKit.SCNNode.AddAnimation(SceneKit.SCNAnimationPlayer,Foundation.NSString) M:SceneKit.SCNNode.AddNodes(SceneKit.SCNNode[]) +M:SceneKit.SCNNode.Copy(Foundation.NSZone) +M:SceneKit.SCNNode.DidHintFocusMovement(UIKit.UIFocusMovementHint) M:SceneKit.SCNNode.DidUpdateFocus(UIKit.UIFocusUpdateContext,UIKit.UIFocusAnimationCoordinator) M:SceneKit.SCNNode.Dispose(System.Boolean) M:SceneKit.SCNNode.EncodeTo(Foundation.NSCoder) +M:SceneKit.SCNNode.get_ActionKeys +M:SceneKit.SCNNode.get_CanBecomeFocused M:SceneKit.SCNNode.get_ClassHandle +M:SceneKit.SCNNode.get_FocusEffect M:SceneKit.SCNNode.get_FocusGroupIdentifier +M:SceneKit.SCNNode.get_FocusGroupPriority M:SceneKit.SCNNode.get_FocusItemContainer +M:SceneKit.SCNNode.get_Frame M:SceneKit.SCNNode.get_Hidden +M:SceneKit.SCNNode.get_IsTransparentFocusItem M:SceneKit.SCNNode.get_ParentFocusEnvironment M:SceneKit.SCNNode.get_Paused M:SceneKit.SCNNode.get_PreferredFocusedView M:SceneKit.SCNNode.get_PreferredFocusEnvironments M:SceneKit.SCNNode.get_RendererDelegate +M:SceneKit.SCNNode.GetAction(System.String) +M:SceneKit.SCNNode.GetAnimation(Foundation.NSString) M:SceneKit.SCNNode.GetAnimation(System.String) +M:SceneKit.SCNNode.GetAnimationKeys +M:SceneKit.SCNNode.GetAnimationPlayer(Foundation.NSString) +M:SceneKit.SCNNode.GetBoundingBox(SceneKit.SCNVector3@,SceneKit.SCNVector3@) +M:SceneKit.SCNNode.GetBoundingSphere(SceneKit.SCNVector3@,System.Runtime.InteropServices.NFloat@) M:SceneKit.SCNNode.GetEnumerator M:SceneKit.SCNNode.GetSoundIdentifier(UIKit.UIFocusUpdateContext) +M:SceneKit.SCNNode.HasActions M:SceneKit.SCNNode.HitTest(SceneKit.SCNVector3,SceneKit.SCNVector3,SceneKit.SCNHitTestOptions) +M:SceneKit.SCNNode.IsAnimationPaused(Foundation.NSString) M:SceneKit.SCNNode.IsAnimationPaused(System.String) +M:SceneKit.SCNNode.PauseAnimation(Foundation.NSString) M:SceneKit.SCNNode.PauseAnimation(System.String) +M:SceneKit.SCNNode.RemoveAction(System.String) +M:SceneKit.SCNNode.RemoveAllActions +M:SceneKit.SCNNode.RemoveAllAnimations +M:SceneKit.SCNNode.RemoveAllAnimationsWithBlendOutDuration(System.Runtime.InteropServices.NFloat) +M:SceneKit.SCNNode.RemoveAnimation(Foundation.NSString,System.Runtime.InteropServices.NFloat) +M:SceneKit.SCNNode.RemoveAnimation(Foundation.NSString) M:SceneKit.SCNNode.RemoveAnimation(System.String,System.Runtime.InteropServices.NFloat) M:SceneKit.SCNNode.RemoveAnimation(System.String) +M:SceneKit.SCNNode.RemoveAnimationUsingBlendOutDuration(Foundation.NSString,System.Runtime.InteropServices.NFloat) +M:SceneKit.SCNNode.ResumeAnimation(Foundation.NSString) M:SceneKit.SCNNode.ResumeAnimation(System.String) +M:SceneKit.SCNNode.RunAction(SceneKit.SCNAction,System.Action) +M:SceneKit.SCNNode.RunAction(SceneKit.SCNAction,System.String,System.Action) +M:SceneKit.SCNNode.RunAction(SceneKit.SCNAction,System.String) +M:SceneKit.SCNNode.RunAction(SceneKit.SCNAction) M:SceneKit.SCNNode.set_Camera(SceneKit.SCNCamera) M:SceneKit.SCNNode.set_CastsShadow(System.Boolean) M:SceneKit.SCNNode.set_CategoryBitMask(System.UIntPtr) @@ -92849,7 +96000,9 @@ M:SceneKit.SCNNode.set_Transform(SceneKit.SCNMatrix4) M:SceneKit.SCNNode.set_WeakRendererDelegate(Foundation.NSObject) M:SceneKit.SCNNode.set_WorldOrientation(SceneKit.SCNQuaternion) M:SceneKit.SCNNode.set_WorldPosition(SceneKit.SCNVector3) +M:SceneKit.SCNNode.SetBoundingBox(SceneKit.SCNVector3@,SceneKit.SCNVector3@) M:SceneKit.SCNNode.SetNeedsFocusUpdate +M:SceneKit.SCNNode.SetSpeed(System.Runtime.InteropServices.NFloat,Foundation.NSString) M:SceneKit.SCNNode.ShouldUpdateFocus(UIKit.UIFocusUpdateContext) M:SceneKit.SCNNode.UpdateFocusIfNeeded M:SceneKit.SCNNodeHandler.#ctor(System.Object,System.IntPtr) @@ -92892,6 +96045,7 @@ M:SceneKit.SCNParticleProperty.get_Velocity M:SceneKit.SCNParticlePropertyController.#ctor(Foundation.NSCoder) M:SceneKit.SCNParticlePropertyController.#ctor(Foundation.NSObjectFlag) M:SceneKit.SCNParticlePropertyController.#ctor(ObjCRuntime.NativeHandle) +M:SceneKit.SCNParticlePropertyController.Copy(Foundation.NSZone) M:SceneKit.SCNParticlePropertyController.Dispose(System.Boolean) M:SceneKit.SCNParticlePropertyController.EncodeTo(Foundation.NSCoder) M:SceneKit.SCNParticlePropertyController.get_ClassHandle @@ -92904,12 +96058,26 @@ M:SceneKit.SCNParticlePropertyController.set_InputScale(System.Runtime.InteropSe M:SceneKit.SCNParticleSystem.#ctor(Foundation.NSCoder) M:SceneKit.SCNParticleSystem.#ctor(Foundation.NSObjectFlag) M:SceneKit.SCNParticleSystem.#ctor(ObjCRuntime.NativeHandle) +M:SceneKit.SCNParticleSystem.AddAnimation(SceneKit.ISCNAnimationProtocol,System.String) +M:SceneKit.SCNParticleSystem.AddAnimation(SceneKit.SCNAnimationPlayer,Foundation.NSString) +M:SceneKit.SCNParticleSystem.Copy(Foundation.NSZone) M:SceneKit.SCNParticleSystem.EncodeTo(Foundation.NSCoder) M:SceneKit.SCNParticleSystem.get_BlackPassEnabled M:SceneKit.SCNParticleSystem.get_ClassHandle M:SceneKit.SCNParticleSystem.get_LightingEnabled M:SceneKit.SCNParticleSystem.get_Local M:SceneKit.SCNParticleSystem.get_PropertyControllers +M:SceneKit.SCNParticleSystem.GetAnimation(Foundation.NSString) +M:SceneKit.SCNParticleSystem.GetAnimationKeys +M:SceneKit.SCNParticleSystem.GetAnimationPlayer(Foundation.NSString) +M:SceneKit.SCNParticleSystem.IsAnimationPaused(Foundation.NSString) +M:SceneKit.SCNParticleSystem.PauseAnimation(Foundation.NSString) +M:SceneKit.SCNParticleSystem.RemoveAllAnimations +M:SceneKit.SCNParticleSystem.RemoveAllAnimationsWithBlendOutDuration(System.Runtime.InteropServices.NFloat) +M:SceneKit.SCNParticleSystem.RemoveAnimation(Foundation.NSString,System.Runtime.InteropServices.NFloat) +M:SceneKit.SCNParticleSystem.RemoveAnimation(Foundation.NSString) +M:SceneKit.SCNParticleSystem.RemoveAnimationUsingBlendOutDuration(Foundation.NSString,System.Runtime.InteropServices.NFloat) +M:SceneKit.SCNParticleSystem.ResumeAnimation(Foundation.NSString) M:SceneKit.SCNParticleSystem.set_Acceleration(SceneKit.SCNVector3) M:SceneKit.SCNParticleSystem.set_AffectedByGravity(System.Boolean) M:SceneKit.SCNParticleSystem.set_AffectedByPhysicsFields(System.Boolean) @@ -92976,6 +96144,7 @@ M:SceneKit.SCNParticleSystem.set_SystemSpawnedOnLiving(SceneKit.SCNParticleSyste M:SceneKit.SCNParticleSystem.set_WarmupDuration(System.Runtime.InteropServices.NFloat) M:SceneKit.SCNParticleSystem.set_WeakPropertyControllers(Foundation.NSDictionary) M:SceneKit.SCNParticleSystem.set_WritesToDepthBuffer(System.Boolean) +M:SceneKit.SCNParticleSystem.SetSpeed(System.Runtime.InteropServices.NFloat,Foundation.NSString) M:SceneKit.SCNPhysicsBallSocketJoint.#ctor(Foundation.NSCoder) M:SceneKit.SCNPhysicsBallSocketJoint.#ctor(Foundation.NSObjectFlag) M:SceneKit.SCNPhysicsBallSocketJoint.#ctor(ObjCRuntime.NativeHandle) @@ -92990,6 +96159,7 @@ M:SceneKit.SCNPhysicsBehavior.get_ClassHandle M:SceneKit.SCNPhysicsBody.#ctor(Foundation.NSCoder) M:SceneKit.SCNPhysicsBody.#ctor(Foundation.NSObjectFlag) M:SceneKit.SCNPhysicsBody.#ctor(ObjCRuntime.NativeHandle) +M:SceneKit.SCNPhysicsBody.Copy(Foundation.NSZone) M:SceneKit.SCNPhysicsBody.EncodeTo(Foundation.NSCoder) M:SceneKit.SCNPhysicsBody.get_AffectedByGravity M:SceneKit.SCNPhysicsBody.get_ClassHandle @@ -93045,6 +96215,7 @@ M:SceneKit.SCNPhysicsContactEventArgs.set_Contact(SceneKit.SCNPhysicsContact) M:SceneKit.SCNPhysicsField.#ctor(Foundation.NSCoder) M:SceneKit.SCNPhysicsField.#ctor(Foundation.NSObjectFlag) M:SceneKit.SCNPhysicsField.#ctor(ObjCRuntime.NativeHandle) +M:SceneKit.SCNPhysicsField.Copy(Foundation.NSZone) M:SceneKit.SCNPhysicsField.EncodeTo(Foundation.NSCoder) M:SceneKit.SCNPhysicsField.get_Active M:SceneKit.SCNPhysicsField.get_ClassHandle @@ -93071,6 +96242,7 @@ M:SceneKit.SCNPhysicsHingeJoint.set_AxisB(SceneKit.SCNVector3) M:SceneKit.SCNPhysicsShape.#ctor(Foundation.NSCoder) M:SceneKit.SCNPhysicsShape.#ctor(Foundation.NSObjectFlag) M:SceneKit.SCNPhysicsShape.#ctor(ObjCRuntime.NativeHandle) +M:SceneKit.SCNPhysicsShape.Copy(Foundation.NSZone) M:SceneKit.SCNPhysicsShape.Create(SceneKit.SCNGeometry,SceneKit.SCNPhysicsShapeOptions) M:SceneKit.SCNPhysicsShape.Create(SceneKit.SCNGeometry,System.Nullable{SceneKit.SCNPhysicsShapeType},System.Nullable{System.Boolean},System.Nullable{SceneKit.SCNVector3}) M:SceneKit.SCNPhysicsShape.Create(SceneKit.SCNNode,SceneKit.SCNPhysicsShapeOptions) @@ -93131,6 +96303,7 @@ M:SceneKit.SCNPhysicsVehicle.get_ClassHandle M:SceneKit.SCNPhysicsVehicleWheel.#ctor(Foundation.NSCoder) M:SceneKit.SCNPhysicsVehicleWheel.#ctor(Foundation.NSObjectFlag) M:SceneKit.SCNPhysicsVehicleWheel.#ctor(ObjCRuntime.NativeHandle) +M:SceneKit.SCNPhysicsVehicleWheel.Copy(Foundation.NSZone) M:SceneKit.SCNPhysicsVehicleWheel.EncodeTo(Foundation.NSCoder) M:SceneKit.SCNPhysicsVehicleWheel.get_ClassHandle M:SceneKit.SCNPhysicsVehicleWheel.set_Axle(SceneKit.SCNVector3) @@ -93181,6 +96354,7 @@ M:SceneKit.SCNProgram.#ctor M:SceneKit.SCNProgram.#ctor(Foundation.NSCoder) M:SceneKit.SCNProgram.#ctor(Foundation.NSObjectFlag) M:SceneKit.SCNProgram.#ctor(ObjCRuntime.NativeHandle) +M:SceneKit.SCNProgram.Copy(Foundation.NSZone) M:SceneKit.SCNProgram.Dispose(System.Boolean) M:SceneKit.SCNProgram.EncodeTo(Foundation.NSCoder) M:SceneKit.SCNProgram.get_ClassHandle @@ -93281,14 +96455,46 @@ M:SceneKit.SCNRenderer.#ctor(ObjCRuntime.NativeHandle) M:SceneKit.SCNRenderer.Dispose(System.Boolean) M:SceneKit.SCNRenderer.FromContext(OpenGL.CGLContext,Foundation.NSDictionary) M:SceneKit.SCNRenderer.FromContext(OpenGLES.EAGLContext,Foundation.NSDictionary) +M:SceneKit.SCNRenderer.get_AudioEngine +M:SceneKit.SCNRenderer.get_AudioEnvironmentNode +M:SceneKit.SCNRenderer.get_AudioListener +M:SceneKit.SCNRenderer.get_AutoenablesDefaultLighting M:SceneKit.SCNRenderer.get_ClassHandle +M:SceneKit.SCNRenderer.get_ColorPixelFormat +M:SceneKit.SCNRenderer.get_CommandQueue +M:SceneKit.SCNRenderer.get_Context +M:SceneKit.SCNRenderer.get_CurrentRenderCommandEncoder +M:SceneKit.SCNRenderer.get_CurrentRenderPassDescriptor +M:SceneKit.SCNRenderer.get_CurrentTime +M:SceneKit.SCNRenderer.get_CurrentViewport +M:SceneKit.SCNRenderer.get_DebugOptions +M:SceneKit.SCNRenderer.get_DepthPixelFormat +M:SceneKit.SCNRenderer.get_Device M:SceneKit.SCNRenderer.get_JitteringEnabled +M:SceneKit.SCNRenderer.get_Loops +M:SceneKit.SCNRenderer.get_OverlayScene M:SceneKit.SCNRenderer.get_Playing +M:SceneKit.SCNRenderer.get_PointOfView +M:SceneKit.SCNRenderer.get_RenderingApi M:SceneKit.SCNRenderer.get_SceneRendererDelegate +M:SceneKit.SCNRenderer.get_SceneTimeInSeconds +M:SceneKit.SCNRenderer.get_ShowsStatistics +M:SceneKit.SCNRenderer.get_StencilPixelFormat +M:SceneKit.SCNRenderer.get_Technique M:SceneKit.SCNRenderer.get_TemporalAntialiasingEnabled +M:SceneKit.SCNRenderer.get_UsesReverseZ +M:SceneKit.SCNRenderer.get_WeakSceneRendererDelegate +M:SceneKit.SCNRenderer.get_WorkingColorSpace +M:SceneKit.SCNRenderer.GetNodesInsideFrustum(SceneKit.SCNNode) +M:SceneKit.SCNRenderer.HitTest(CoreGraphics.CGPoint,Foundation.NSDictionary) M:SceneKit.SCNRenderer.HitTest(CoreGraphics.CGPoint,SceneKit.SCNHitTestOptions) +M:SceneKit.SCNRenderer.IsNodeInsideFrustum(SceneKit.SCNNode,SceneKit.SCNNode) +M:SceneKit.SCNRenderer.Prepare(Foundation.NSObject,System.Func{System.Boolean}) +M:SceneKit.SCNRenderer.Prepare(Foundation.NSObject[],System.Action{System.Boolean}) M:SceneKit.SCNRenderer.PrepareAsync(Foundation.NSObject[]) +M:SceneKit.SCNRenderer.PresentScene(SceneKit.SCNScene,SpriteKit.SKTransition,SceneKit.SCNNode,System.Action) M:SceneKit.SCNRenderer.PresentSceneAsync(SceneKit.SCNScene,SpriteKit.SKTransition,SceneKit.SCNNode) +M:SceneKit.SCNRenderer.ProjectPoint(SceneKit.SCNVector3) M:SceneKit.SCNRenderer.set_AudioListener(SceneKit.SCNNode) M:SceneKit.SCNRenderer.set_AutoenablesDefaultLighting(System.Boolean) M:SceneKit.SCNRenderer.set_CurrentTime(System.Double) @@ -93306,6 +96512,7 @@ M:SceneKit.SCNRenderer.set_Technique(SceneKit.SCNTechnique) M:SceneKit.SCNRenderer.set_TemporalAntialiasingEnabled(System.Boolean) M:SceneKit.SCNRenderer.set_UsesReverseZ(System.Boolean) M:SceneKit.SCNRenderer.set_WeakSceneRendererDelegate(Foundation.NSObject) +M:SceneKit.SCNRenderer.UnprojectPoint(SceneKit.SCNVector3) M:SceneKit.SCNRenderingArguments.get_ModelTransform M:SceneKit.SCNRenderingArguments.get_ModelViewProjectionTransform M:SceneKit.SCNRenderingArguments.get_ModelViewTransform @@ -93587,11 +96794,26 @@ M:SceneKit.SCNSphere.set_SegmentCount(System.IntPtr) M:SceneKit.SCNTechnique.#ctor(Foundation.NSCoder) M:SceneKit.SCNTechnique.#ctor(Foundation.NSObjectFlag) M:SceneKit.SCNTechnique.#ctor(ObjCRuntime.NativeHandle) +M:SceneKit.SCNTechnique.AddAnimation(SceneKit.ISCNAnimationProtocol,System.String) +M:SceneKit.SCNTechnique.AddAnimation(SceneKit.SCNAnimationPlayer,Foundation.NSString) +M:SceneKit.SCNTechnique.Copy(Foundation.NSZone) M:SceneKit.SCNTechnique.EncodeTo(Foundation.NSCoder) M:SceneKit.SCNTechnique.get_ClassHandle M:SceneKit.SCNTechnique.get_Item(Foundation.NSString) +M:SceneKit.SCNTechnique.GetAnimation(Foundation.NSString) +M:SceneKit.SCNTechnique.GetAnimationKeys +M:SceneKit.SCNTechnique.GetAnimationPlayer(Foundation.NSString) +M:SceneKit.SCNTechnique.IsAnimationPaused(Foundation.NSString) +M:SceneKit.SCNTechnique.PauseAnimation(Foundation.NSString) +M:SceneKit.SCNTechnique.RemoveAllAnimations +M:SceneKit.SCNTechnique.RemoveAllAnimationsWithBlendOutDuration(System.Runtime.InteropServices.NFloat) +M:SceneKit.SCNTechnique.RemoveAnimation(Foundation.NSString,System.Runtime.InteropServices.NFloat) +M:SceneKit.SCNTechnique.RemoveAnimation(Foundation.NSString) +M:SceneKit.SCNTechnique.RemoveAnimationUsingBlendOutDuration(Foundation.NSString,System.Runtime.InteropServices.NFloat) +M:SceneKit.SCNTechnique.ResumeAnimation(Foundation.NSString) M:SceneKit.SCNTechnique.set_Item(Foundation.NSString,Foundation.NSObject) M:SceneKit.SCNTechnique.set_Library(Metal.IMTLLibrary) +M:SceneKit.SCNTechnique.SetSpeed(System.Runtime.InteropServices.NFloat,Foundation.NSString) M:SceneKit.SCNTechniqueSupport.#ctor M:SceneKit.SCNTechniqueSupport.#ctor(Foundation.NSObjectFlag) M:SceneKit.SCNTechniqueSupport.#ctor(ObjCRuntime.NativeHandle) @@ -93683,19 +96905,51 @@ M:SceneKit.SCNView.#ctor(ObjCRuntime.NativeHandle) M:SceneKit.SCNView.AppearanceWhenContainedIn(System.Type[]) M:SceneKit.SCNView.Dispose(System.Boolean) M:SceneKit.SCNView.get_Appearance +M:SceneKit.SCNView.get_AudioEngine +M:SceneKit.SCNView.get_AudioEnvironmentNode +M:SceneKit.SCNView.get_AudioListener +M:SceneKit.SCNView.get_AutoenablesDefaultLighting M:SceneKit.SCNView.get_ClassHandle +M:SceneKit.SCNView.get_ColorPixelFormat +M:SceneKit.SCNView.get_CommandQueue +M:SceneKit.SCNView.get_Context +M:SceneKit.SCNView.get_CurrentRenderCommandEncoder +M:SceneKit.SCNView.get_CurrentRenderPassDescriptor +M:SceneKit.SCNView.get_CurrentTime +M:SceneKit.SCNView.get_CurrentViewport +M:SceneKit.SCNView.get_DebugOptions +M:SceneKit.SCNView.get_DepthPixelFormat +M:SceneKit.SCNView.get_Device M:SceneKit.SCNView.get_JitteringEnabled +M:SceneKit.SCNView.get_Loops +M:SceneKit.SCNView.get_OverlayScene M:SceneKit.SCNView.get_Playing +M:SceneKit.SCNView.get_PointOfView +M:SceneKit.SCNView.get_RenderingApi M:SceneKit.SCNView.get_SceneRendererDelegate +M:SceneKit.SCNView.get_SceneTimeInSeconds +M:SceneKit.SCNView.get_ShowsStatistics +M:SceneKit.SCNView.get_StencilPixelFormat +M:SceneKit.SCNView.get_Technique M:SceneKit.SCNView.get_TemporalAntialiasingEnabled +M:SceneKit.SCNView.get_UsesReverseZ +M:SceneKit.SCNView.get_WeakSceneRendererDelegate +M:SceneKit.SCNView.get_WorkingColorSpace M:SceneKit.SCNView.GetAppearance(UIKit.UITraitCollection,System.Type[]) M:SceneKit.SCNView.GetAppearance(UIKit.UITraitCollection) M:SceneKit.SCNView.GetAppearance``1 M:SceneKit.SCNView.GetAppearance``1(UIKit.UITraitCollection,System.Type[]) M:SceneKit.SCNView.GetAppearance``1(UIKit.UITraitCollection) +M:SceneKit.SCNView.GetNodesInsideFrustum(SceneKit.SCNNode) +M:SceneKit.SCNView.HitTest(CoreGraphics.CGPoint,Foundation.NSDictionary) M:SceneKit.SCNView.HitTest(CoreGraphics.CGPoint,SceneKit.SCNHitTestOptions) +M:SceneKit.SCNView.IsNodeInsideFrustum(SceneKit.SCNNode,SceneKit.SCNNode) +M:SceneKit.SCNView.Prepare(Foundation.NSObject,System.Func{System.Boolean}) +M:SceneKit.SCNView.Prepare(Foundation.NSObject[],System.Action{System.Boolean}) M:SceneKit.SCNView.PrepareAsync(Foundation.NSObject[]) +M:SceneKit.SCNView.PresentScene(SceneKit.SCNScene,SpriteKit.SKTransition,SceneKit.SCNNode,System.Action) M:SceneKit.SCNView.PresentSceneAsync(SceneKit.SCNScene,SpriteKit.SKTransition,SceneKit.SCNNode) +M:SceneKit.SCNView.ProjectPoint(SceneKit.SCNVector3) M:SceneKit.SCNView.SCNViewAppearance.#ctor(System.IntPtr) M:SceneKit.SCNView.set_AllowsCameraControl(System.Boolean) M:SceneKit.SCNView.set_AntialiasingMode(SceneKit.SCNAntialiasingMode) @@ -93723,6 +96977,7 @@ M:SceneKit.SCNView.set_Technique(SceneKit.SCNTechnique) M:SceneKit.SCNView.set_TemporalAntialiasingEnabled(System.Boolean) M:SceneKit.SCNView.set_UsesReverseZ(System.Boolean) M:SceneKit.SCNView.set_WeakSceneRendererDelegate(Foundation.NSObject) +M:SceneKit.SCNView.UnprojectPoint(SceneKit.SCNVector3) M:ScreenCaptureKit.ISCContentSharingPickerObserver.DidCancel(ScreenCaptureKit.SCContentSharingPicker,ScreenCaptureKit.SCStream) M:ScreenCaptureKit.ISCContentSharingPickerObserver.DidFail(Foundation.NSError) M:ScreenCaptureKit.ISCContentSharingPickerObserver.DidUpdate(ScreenCaptureKit.SCContentSharingPicker,ScreenCaptureKit.SCContentFilter,ScreenCaptureKit.SCStream) @@ -93731,7 +96986,6 @@ M:ScreenCaptureKit.SCContentFilter.#ctor(ObjCRuntime.NativeHandle) M:ScreenCaptureKit.SCContentFilter.#ctor(ScreenCaptureKit.SCDisplay,ScreenCaptureKit.SCRunningApplication[],ScreenCaptureKit.SCWindow[],ScreenCaptureKit.SCContentFilterOption) M:ScreenCaptureKit.SCContentFilter.#ctor(ScreenCaptureKit.SCDisplay,ScreenCaptureKit.SCWindow[],ScreenCaptureKit.SCContentFilterOption) M:ScreenCaptureKit.SCContentFilter.get_ClassHandle -M:ScreenCaptureKit.SCContentFilter.get_IncludeMenuBar M:ScreenCaptureKit.SCContentFilter.set_IncludeMenuBar(System.Boolean) M:ScreenCaptureKit.SCContentSharingPicker.#ctor(Foundation.NSObjectFlag) M:ScreenCaptureKit.SCContentSharingPicker.#ctor(ObjCRuntime.NativeHandle) @@ -93785,7 +97039,6 @@ M:ScreenCaptureKit.SCStreamConfiguration.#ctor(Foundation.NSObjectFlag) M:ScreenCaptureKit.SCStreamConfiguration.#ctor(ObjCRuntime.NativeHandle) M:ScreenCaptureKit.SCStreamConfiguration.Dispose(System.Boolean) M:ScreenCaptureKit.SCStreamConfiguration.get_ClassHandle -M:ScreenCaptureKit.SCStreamConfiguration.get_IncludeChildWindows M:ScreenCaptureKit.SCStreamConfiguration.set_BackgroundColor(CoreGraphics.CGColor) M:ScreenCaptureKit.SCStreamConfiguration.set_CaptureResolution(ScreenCaptureKit.SCCaptureResolutionType) M:ScreenCaptureKit.SCStreamConfiguration.set_CapturesAudio(System.Boolean) @@ -94560,12 +97813,17 @@ M:SensitiveContentAnalysis.SCSensitivityAnalysis.#ctor(Foundation.NSObjectFlag) M:SensitiveContentAnalysis.SCSensitivityAnalysis.#ctor(ObjCRuntime.NativeHandle) M:SensitiveContentAnalysis.SCSensitivityAnalysis.get_ClassHandle M:SensitiveContentAnalysis.SCSensitivityAnalysis.get_Sensitive +M:SensitiveContentAnalysis.SCSensitivityAnalyzer.#ctor M:SensitiveContentAnalysis.SCSensitivityAnalyzer.#ctor(Foundation.NSObjectFlag) M:SensitiveContentAnalysis.SCSensitivityAnalyzer.#ctor(ObjCRuntime.NativeHandle) +M:SensitiveContentAnalysis.SCSensitivityAnalyzer.AnalyzeImage(CoreGraphics.CGImage,System.Action{SensitiveContentAnalysis.SCSensitivityAnalysis,Foundation.NSError}) +M:SensitiveContentAnalysis.SCSensitivityAnalyzer.AnalyzeImage(Foundation.NSUrl,System.Action{SensitiveContentAnalysis.SCSensitivityAnalysis,Foundation.NSError}) M:SensitiveContentAnalysis.SCSensitivityAnalyzer.AnalyzeImageAsync(CoreGraphics.CGImage) M:SensitiveContentAnalysis.SCSensitivityAnalyzer.AnalyzeImageAsync(Foundation.NSUrl) +M:SensitiveContentAnalysis.SCSensitivityAnalyzer.AnalyzeVideo(Foundation.NSUrl,System.Action{SensitiveContentAnalysis.SCSensitivityAnalysis,Foundation.NSError}) M:SensitiveContentAnalysis.SCSensitivityAnalyzer.AnalyzeVideoAsync(Foundation.NSUrl,Foundation.NSProgress@) M:SensitiveContentAnalysis.SCSensitivityAnalyzer.AnalyzeVideoAsync(Foundation.NSUrl) +M:SensitiveContentAnalysis.SCSensitivityAnalyzer.get_AnalysisPolicy M:SensitiveContentAnalysis.SCSensitivityAnalyzer.get_ClassHandle M:SensorKit.SRAbsoluteTime.FromCFAbsoluteTime(System.Double) M:SensorKit.SRAbsoluteTime.FromContinuousTime(System.UInt64) @@ -94585,6 +97843,7 @@ M:SensorKit.SRDeletionRecord.get_ClassHandle M:SensorKit.SRDevice.#ctor(Foundation.NSCoder) M:SensorKit.SRDevice.#ctor(Foundation.NSObjectFlag) M:SensorKit.SRDevice.#ctor(ObjCRuntime.NativeHandle) +M:SensorKit.SRDevice.Copy(Foundation.NSZone) M:SensorKit.SRDevice.EncodeTo(Foundation.NSCoder) M:SensorKit.SRDevice.get_ClassHandle M:SensorKit.SRDeviceUsageCategoryExtensions.GetConstant(SensorKit.SRDeviceUsageCategory) @@ -94602,6 +97861,7 @@ M:SensorKit.SRFetchRequest.set_From(System.Double) M:SensorKit.SRFetchRequest.set_To(System.Double) M:SensorKit.SRFetchResult`1.#ctor(Foundation.NSObjectFlag) M:SensorKit.SRFetchResult`1.#ctor(ObjCRuntime.NativeHandle) +M:SensorKit.SRFetchResult`1.Copy(Foundation.NSZone) M:SensorKit.SRFetchResult`1.get_ClassHandle M:SensorKit.SRKeyboardMetrics.#ctor(Foundation.NSObjectFlag) M:SensorKit.SRKeyboardMetrics.#ctor(ObjCRuntime.NativeHandle) @@ -94613,6 +97873,7 @@ M:SensorKit.SRMediaEvent.#ctor M:SensorKit.SRMediaEvent.#ctor(Foundation.NSCoder) M:SensorKit.SRMediaEvent.#ctor(Foundation.NSObjectFlag) M:SensorKit.SRMediaEvent.#ctor(ObjCRuntime.NativeHandle) +M:SensorKit.SRMediaEvent.Copy(Foundation.NSZone) M:SensorKit.SRMediaEvent.EncodeTo(Foundation.NSCoder) M:SensorKit.SRMediaEvent.get_ClassHandle M:SensorKit.SRMessagesUsageReport.#ctor(Foundation.NSObjectFlag) @@ -94663,6 +97924,7 @@ M:SensorKit.SRSensorReaderDelegate.WillStartRecording(SensorKit.SRSensorReader) M:SensorKit.SRSupplementalCategory.#ctor(Foundation.NSCoder) M:SensorKit.SRSupplementalCategory.#ctor(Foundation.NSObjectFlag) M:SensorKit.SRSupplementalCategory.#ctor(ObjCRuntime.NativeHandle) +M:SensorKit.SRSupplementalCategory.Copy(Foundation.NSZone) M:SensorKit.SRSupplementalCategory.EncodeTo(Foundation.NSCoder) M:SensorKit.SRSupplementalCategory.get_ClassHandle M:SensorKit.SRTextInputSession.#ctor @@ -94724,6 +97986,7 @@ M:SharedWithYou.SWCollaborationHighlight.#ctor M:SharedWithYou.SWCollaborationHighlight.#ctor(Foundation.NSCoder) M:SharedWithYou.SWCollaborationHighlight.#ctor(Foundation.NSObjectFlag) M:SharedWithYou.SWCollaborationHighlight.#ctor(ObjCRuntime.NativeHandle) +M:SharedWithYou.SWCollaborationHighlight.Copy(Foundation.NSZone) M:SharedWithYou.SWCollaborationHighlight.EncodeTo(Foundation.NSCoder) M:SharedWithYou.SWCollaborationHighlight.get_ClassHandle M:SharedWithYou.SWCollaborationView.#ctor @@ -94772,6 +98035,7 @@ M:SharedWithYou.SWCollaborationViewDelegate.WillPresentPopover(SharedWithYou.SWC M:SharedWithYou.SWHighlight.#ctor(Foundation.NSCoder) M:SharedWithYou.SWHighlight.#ctor(Foundation.NSObjectFlag) M:SharedWithYou.SWHighlight.#ctor(ObjCRuntime.NativeHandle) +M:SharedWithYou.SWHighlight.Copy(Foundation.NSZone) M:SharedWithYou.SWHighlight.EncodeTo(Foundation.NSCoder) M:SharedWithYou.SWHighlight.get_ClassHandle M:SharedWithYou.SWHighlight.get_MetadataTypeIdentifier @@ -94803,18 +98067,21 @@ M:SharedWithYou.SWHighlightMembershipEvent.#ctor(ObjCRuntime.NativeHandle) M:SharedWithYou.SWHighlightMembershipEvent.Copy(Foundation.NSZone) M:SharedWithYou.SWHighlightMembershipEvent.EncodeTo(Foundation.NSCoder) M:SharedWithYou.SWHighlightMembershipEvent.get_ClassHandle +M:SharedWithYou.SWHighlightMembershipEvent.get_HighlightUrl M:SharedWithYou.SWHighlightMentionEvent.#ctor(Foundation.NSCoder) M:SharedWithYou.SWHighlightMentionEvent.#ctor(Foundation.NSObjectFlag) M:SharedWithYou.SWHighlightMentionEvent.#ctor(ObjCRuntime.NativeHandle) M:SharedWithYou.SWHighlightMentionEvent.Copy(Foundation.NSZone) M:SharedWithYou.SWHighlightMentionEvent.EncodeTo(Foundation.NSCoder) M:SharedWithYou.SWHighlightMentionEvent.get_ClassHandle +M:SharedWithYou.SWHighlightMentionEvent.get_HighlightUrl M:SharedWithYou.SWHighlightPersistenceEvent.#ctor(Foundation.NSCoder) M:SharedWithYou.SWHighlightPersistenceEvent.#ctor(Foundation.NSObjectFlag) M:SharedWithYou.SWHighlightPersistenceEvent.#ctor(ObjCRuntime.NativeHandle) M:SharedWithYou.SWHighlightPersistenceEvent.Copy(Foundation.NSZone) M:SharedWithYou.SWHighlightPersistenceEvent.EncodeTo(Foundation.NSCoder) M:SharedWithYou.SWHighlightPersistenceEvent.get_ClassHandle +M:SharedWithYou.SWHighlightPersistenceEvent.get_HighlightUrl M:SharedWithYou.SWRemoveParticipantAlert.#ctor(Foundation.NSObjectFlag) M:SharedWithYou.SWRemoveParticipantAlert.#ctor(ObjCRuntime.NativeHandle) M:SharedWithYou.SWRemoveParticipantAlert.get_ClassHandle @@ -94828,6 +98095,7 @@ M:SharedWithYouCore.SWAction.#ctor M:SharedWithYouCore.SWAction.#ctor(Foundation.NSCoder) M:SharedWithYouCore.SWAction.#ctor(Foundation.NSObjectFlag) M:SharedWithYouCore.SWAction.#ctor(ObjCRuntime.NativeHandle) +M:SharedWithYouCore.SWAction.Copy(Foundation.NSZone) M:SharedWithYouCore.SWAction.EncodeTo(Foundation.NSCoder) M:SharedWithYouCore.SWAction.get_ClassHandle M:SharedWithYouCore.SWAction.get_Complete @@ -94841,6 +98109,7 @@ M:SharedWithYouCore.SWCollaborationMetadata.#ctor(Foundation.NSObjectFlag) M:SharedWithYouCore.SWCollaborationMetadata.#ctor(ObjCRuntime.NativeHandle) M:SharedWithYouCore.SWCollaborationMetadata.#ctor(System.String,SharedWithYouCore.SWIdentifierType) M:SharedWithYouCore.SWCollaborationMetadata.#ctor(System.String) +M:SharedWithYouCore.SWCollaborationMetadata.Copy(Foundation.NSZone) M:SharedWithYouCore.SWCollaborationMetadata.EncodeTo(Foundation.NSCoder) M:SharedWithYouCore.SWCollaborationMetadata.get_ClassHandle M:SharedWithYouCore.SWCollaborationMetadata.get_ReadableTypeIdentifiers @@ -94851,6 +98120,7 @@ M:SharedWithYouCore.SWCollaborationMetadata.GetObject(Foundation.NSData,System.S M:SharedWithYouCore.SWCollaborationMetadata.LoadData(System.String,System.Action{Foundation.NSData,Foundation.NSError}) M:SharedWithYouCore.SWCollaborationMetadata.LoadDataAsync(System.String,Foundation.NSProgress@) M:SharedWithYouCore.SWCollaborationMetadata.LoadDataAsync(System.String) +M:SharedWithYouCore.SWCollaborationMetadata.MutableCopy(Foundation.NSZone) M:SharedWithYouCore.SWCollaborationMetadata.set_DefaultShareOptions(SharedWithYouCore.SWCollaborationShareOptions) M:SharedWithYouCore.SWCollaborationMetadata.set_InitiatorHandle(System.String) M:SharedWithYouCore.SWCollaborationMetadata.set_InitiatorNameComponents(Foundation.NSPersonNameComponents) @@ -94859,6 +98129,7 @@ M:SharedWithYouCore.SWCollaborationMetadata.set_UserSelectedShareOptions(SharedW M:SharedWithYouCore.SWCollaborationOption.#ctor(Foundation.NSCoder) M:SharedWithYouCore.SWCollaborationOption.#ctor(Foundation.NSObjectFlag) M:SharedWithYouCore.SWCollaborationOption.#ctor(ObjCRuntime.NativeHandle) +M:SharedWithYouCore.SWCollaborationOption.Copy(Foundation.NSZone) M:SharedWithYouCore.SWCollaborationOption.EncodeTo(Foundation.NSCoder) M:SharedWithYouCore.SWCollaborationOption.get_ClassHandle M:SharedWithYouCore.SWCollaborationOption.get_Selected @@ -94869,6 +98140,7 @@ M:SharedWithYouCore.SWCollaborationOption.set_Title(System.String) M:SharedWithYouCore.SWCollaborationOptionsGroup.#ctor(Foundation.NSCoder) M:SharedWithYouCore.SWCollaborationOptionsGroup.#ctor(Foundation.NSObjectFlag) M:SharedWithYouCore.SWCollaborationOptionsGroup.#ctor(ObjCRuntime.NativeHandle) +M:SharedWithYouCore.SWCollaborationOptionsGroup.Copy(Foundation.NSZone) M:SharedWithYouCore.SWCollaborationOptionsGroup.EncodeTo(Foundation.NSCoder) M:SharedWithYouCore.SWCollaborationOptionsGroup.get_ClassHandle M:SharedWithYouCore.SWCollaborationOptionsGroup.get_TypeIdentifier @@ -94884,6 +98156,7 @@ M:SharedWithYouCore.SWCollaborationOptionsPickerGroup.get_ClassHandle M:SharedWithYouCore.SWCollaborationOptionsPickerGroup.set_SelectedOptionIdentifier(System.String) M:SharedWithYouCore.SWCollaborationShareOptions.#ctor(Foundation.NSObjectFlag) M:SharedWithYouCore.SWCollaborationShareOptions.#ctor(ObjCRuntime.NativeHandle) +M:SharedWithYouCore.SWCollaborationShareOptions.Copy(Foundation.NSZone) M:SharedWithYouCore.SWCollaborationShareOptions.EncodeTo(Foundation.NSCoder) M:SharedWithYouCore.SWCollaborationShareOptions.get_ClassHandle M:SharedWithYouCore.SWCollaborationShareOptions.set_OptionsGroups(SharedWithYouCore.SWCollaborationOptionsGroup[]) @@ -94896,11 +98169,13 @@ M:SharedWithYouCore.SWPerson.get_ClassHandle M:SharedWithYouCore.SWPersonIdentity.#ctor(Foundation.NSCoder) M:SharedWithYouCore.SWPersonIdentity.#ctor(Foundation.NSObjectFlag) M:SharedWithYouCore.SWPersonIdentity.#ctor(ObjCRuntime.NativeHandle) +M:SharedWithYouCore.SWPersonIdentity.Copy(Foundation.NSZone) M:SharedWithYouCore.SWPersonIdentity.EncodeTo(Foundation.NSCoder) M:SharedWithYouCore.SWPersonIdentity.get_ClassHandle M:SharedWithYouCore.SWPersonIdentityProof.#ctor(Foundation.NSCoder) M:SharedWithYouCore.SWPersonIdentityProof.#ctor(Foundation.NSObjectFlag) M:SharedWithYouCore.SWPersonIdentityProof.#ctor(ObjCRuntime.NativeHandle) +M:SharedWithYouCore.SWPersonIdentityProof.Copy(Foundation.NSZone) M:SharedWithYouCore.SWPersonIdentityProof.EncodeTo(Foundation.NSCoder) M:SharedWithYouCore.SWPersonIdentityProof.get_ClassHandle M:SharedWithYouCore.SWSignedPersonIdentityProof.#ctor @@ -94911,11 +98186,13 @@ M:SharedWithYouCore.SWSignedPersonIdentityProof.get_ClassHandle M:SharedWithYouCore.SWStartCollaborationAction.#ctor(Foundation.NSCoder) M:SharedWithYouCore.SWStartCollaborationAction.#ctor(Foundation.NSObjectFlag) M:SharedWithYouCore.SWStartCollaborationAction.#ctor(ObjCRuntime.NativeHandle) +M:SharedWithYouCore.SWStartCollaborationAction.Copy(Foundation.NSZone) M:SharedWithYouCore.SWStartCollaborationAction.EncodeTo(Foundation.NSCoder) M:SharedWithYouCore.SWStartCollaborationAction.get_ClassHandle M:SharedWithYouCore.SWUpdateCollaborationParticipantsAction.#ctor(Foundation.NSCoder) M:SharedWithYouCore.SWUpdateCollaborationParticipantsAction.#ctor(Foundation.NSObjectFlag) M:SharedWithYouCore.SWUpdateCollaborationParticipantsAction.#ctor(ObjCRuntime.NativeHandle) +M:SharedWithYouCore.SWUpdateCollaborationParticipantsAction.Copy(Foundation.NSZone) M:SharedWithYouCore.SWUpdateCollaborationParticipantsAction.EncodeTo(Foundation.NSCoder) M:SharedWithYouCore.SWUpdateCollaborationParticipantsAction.get_ClassHandle M:ShazamKit.SHCatalog.#ctor(Foundation.NSObjectFlag) @@ -94938,6 +98215,7 @@ M:ShazamKit.SHMatchedMediaItem.get_ClassHandle M:ShazamKit.SHMediaItem.#ctor(Foundation.NSCoder) M:ShazamKit.SHMediaItem.#ctor(Foundation.NSObjectFlag) M:ShazamKit.SHMediaItem.#ctor(ObjCRuntime.NativeHandle) +M:ShazamKit.SHMediaItem.Copy(Foundation.NSZone) M:ShazamKit.SHMediaItem.EncodeTo(Foundation.NSCoder) M:ShazamKit.SHMediaItem.FetchMediaItemAsync(System.String) M:ShazamKit.SHMediaItem.get_ClassHandle @@ -94950,6 +98228,7 @@ M:ShazamKit.SHMediaLibrary.get_ClassHandle M:ShazamKit.SHRange.#ctor(Foundation.NSCoder) M:ShazamKit.SHRange.#ctor(Foundation.NSObjectFlag) M:ShazamKit.SHRange.#ctor(ObjCRuntime.NativeHandle) +M:ShazamKit.SHRange.Copy(Foundation.NSZone) M:ShazamKit.SHRange.EncodeTo(Foundation.NSCoder) M:ShazamKit.SHRange.get_ClassHandle M:ShazamKit.SHSession.#ctor(Foundation.NSObjectFlag) @@ -94969,6 +98248,7 @@ M:ShazamKit.SHSessionDelegate.DidNotFindMatch(ShazamKit.SHSession,ShazamKit.SHSi M:ShazamKit.SHSignature.#ctor(Foundation.NSCoder) M:ShazamKit.SHSignature.#ctor(Foundation.NSObjectFlag) M:ShazamKit.SHSignature.#ctor(ObjCRuntime.NativeHandle) +M:ShazamKit.SHSignature.Copy(Foundation.NSZone) M:ShazamKit.SHSignature.EncodeTo(Foundation.NSCoder) M:ShazamKit.SHSignature.get_ClassHandle M:ShazamKit.SHSignatureGenerator.#ctor @@ -94981,13 +98261,77 @@ M:Social.SLComposeServiceViewController.#ctor(Foundation.NSCoder) M:Social.SLComposeServiceViewController.#ctor(Foundation.NSObjectFlag) M:Social.SLComposeServiceViewController.#ctor(ObjCRuntime.NativeHandle) M:Social.SLComposeServiceViewController.#ctor(System.String,Foundation.NSBundle) +M:Social.SLComposeServiceViewController.Cancel +M:Social.SLComposeServiceViewController.CellClicked(AppKit.NSTextView,AppKit.NSTextAttachmentCell,CoreGraphics.CGRect,System.UIntPtr) +M:Social.SLComposeServiceViewController.CellDoubleClicked(AppKit.NSTextView,AppKit.NSTextAttachmentCell,CoreGraphics.CGRect,System.UIntPtr) +M:Social.SLComposeServiceViewController.Changed(UIKit.UITextView) +M:Social.SLComposeServiceViewController.DidChangeSelection(Foundation.NSNotification) +M:Social.SLComposeServiceViewController.DidChangeTypingAttributes(Foundation.NSNotification) +M:Social.SLComposeServiceViewController.DidCheckText(AppKit.NSTextView,Foundation.NSRange,Foundation.NSTextCheckingTypes,Foundation.NSDictionary,Foundation.NSTextCheckingResult[],Foundation.NSOrthography,System.IntPtr) +M:Social.SLComposeServiceViewController.DidSelectCancel +M:Social.SLComposeServiceViewController.DidSelectPost +M:Social.SLComposeServiceViewController.DoCommandBySelector(AppKit.NSTextView,ObjCRuntime.Selector) +M:Social.SLComposeServiceViewController.DraggedCell(AppKit.NSTextView,AppKit.NSTextAttachmentCell,CoreGraphics.CGRect,AppKit.NSEvent,System.UIntPtr) +M:Social.SLComposeServiceViewController.EditingEnded(UIKit.UITextView) +M:Social.SLComposeServiceViewController.EditingStarted(UIKit.UITextView) +M:Social.SLComposeServiceViewController.get_AutoCompletionViewController +M:Social.SLComposeServiceViewController.get_CharactersRemaining M:Social.SLComposeServiceViewController.get_ClassHandle +M:Social.SLComposeServiceViewController.get_ContentText +M:Social.SLComposeServiceViewController.get_Placeholder +M:Social.SLComposeServiceViewController.get_TextView +M:Social.SLComposeServiceViewController.GetCandidates(AppKit.NSTextView,Foundation.NSRange) +M:Social.SLComposeServiceViewController.GetCompletions(AppKit.NSTextView,System.String[],Foundation.NSRange,System.IntPtr@) +M:Social.SLComposeServiceViewController.GetConfigurationItems +M:Social.SLComposeServiceViewController.GetEditMenuForText(UIKit.UITextView,Foundation.NSRange,UIKit.UIMenuElement[]) +M:Social.SLComposeServiceViewController.GetMenuConfiguration(UIKit.UITextView,UIKit.UITextItem,UIKit.UIMenu) +M:Social.SLComposeServiceViewController.GetPrimaryAction(UIKit.UITextView,UIKit.UITextItem,UIKit.UIAction) +M:Social.SLComposeServiceViewController.GetTextCheckingCandidates(AppKit.NSTextView,Foundation.NSTextCheckingResult[],Foundation.NSRange) +M:Social.SLComposeServiceViewController.GetUndoManager(AppKit.NSTextView) +M:Social.SLComposeServiceViewController.GetWritablePasteboardTypes(AppKit.NSTextView,AppKit.NSTextAttachmentCell,System.UIntPtr) +M:Social.SLComposeServiceViewController.IsContentValid +M:Social.SLComposeServiceViewController.LinkClicked(AppKit.NSTextView,Foundation.NSObject,System.UIntPtr) +M:Social.SLComposeServiceViewController.LoadPreviewView +M:Social.SLComposeServiceViewController.MenuForEvent(AppKit.NSTextView,AppKit.NSMenu,AppKit.NSEvent,System.UIntPtr) +M:Social.SLComposeServiceViewController.PopConfigurationViewController +M:Social.SLComposeServiceViewController.PresentationAnimationDidFinish +M:Social.SLComposeServiceViewController.PushConfigurationViewController(UIKit.UIViewController) +M:Social.SLComposeServiceViewController.ReloadConfigurationItems +M:Social.SLComposeServiceViewController.SelectionChanged(UIKit.UITextView) M:Social.SLComposeServiceViewController.set_AutoCompletionViewController(UIKit.UIViewController) M:Social.SLComposeServiceViewController.set_CharactersRemaining(Foundation.NSNumber) M:Social.SLComposeServiceViewController.set_Placeholder(System.String) +M:Social.SLComposeServiceViewController.ShouldBeginEditing(UIKit.UITextView) +M:Social.SLComposeServiceViewController.ShouldChangeText(UIKit.UITextView,Foundation.NSRange,System.String) +M:Social.SLComposeServiceViewController.ShouldChangeTextInRange(AppKit.NSTextView,Foundation.NSRange,System.String) +M:Social.SLComposeServiceViewController.ShouldChangeTextInRanges(AppKit.NSTextView,Foundation.NSValue[],System.String[]) +M:Social.SLComposeServiceViewController.ShouldChangeTypingAttributes(AppKit.NSTextView,Foundation.NSDictionary,Foundation.NSDictionary) +M:Social.SLComposeServiceViewController.ShouldEndEditing(UIKit.UITextView) +M:Social.SLComposeServiceViewController.ShouldInteractWithTextAttachment(UIKit.UITextView,UIKit.NSTextAttachment,Foundation.NSRange,UIKit.UITextItemInteraction) +M:Social.SLComposeServiceViewController.ShouldInteractWithTextAttachment(UIKit.UITextView,UIKit.NSTextAttachment,Foundation.NSRange) +M:Social.SLComposeServiceViewController.ShouldInteractWithUrl(UIKit.UITextView,Foundation.NSUrl,Foundation.NSRange,UIKit.UITextItemInteraction) +M:Social.SLComposeServiceViewController.ShouldInteractWithUrl(UIKit.UITextView,Foundation.NSUrl,Foundation.NSRange) +M:Social.SLComposeServiceViewController.ShouldSelectCandidates(AppKit.NSTextView,System.UIntPtr) +M:Social.SLComposeServiceViewController.ShouldSetSpellingState(AppKit.NSTextView,System.IntPtr,Foundation.NSRange) +M:Social.SLComposeServiceViewController.ShouldUpdateTouchBarItemIdentifiers(AppKit.NSTextView,System.String[]) +M:Social.SLComposeServiceViewController.ValidateContent +M:Social.SLComposeServiceViewController.WillChangeSelection(AppKit.NSTextView,Foundation.NSRange,Foundation.NSRange) +M:Social.SLComposeServiceViewController.WillChangeSelectionFromRanges(AppKit.NSTextView,Foundation.NSValue[],Foundation.NSValue[]) +M:Social.SLComposeServiceViewController.WillCheckText(AppKit.NSTextView,Foundation.NSRange,Foundation.NSDictionary,Foundation.NSTextCheckingTypes) +M:Social.SLComposeServiceViewController.WillDismissEditMenu(UIKit.UITextView,UIKit.IUIEditMenuInteractionAnimating) +M:Social.SLComposeServiceViewController.WillDisplay(UIKit.UITextView,UIKit.UITextItem,UIKit.IUIContextMenuInteractionAnimating) +M:Social.SLComposeServiceViewController.WillDisplayToolTip(AppKit.NSTextView,System.String,System.UIntPtr) +M:Social.SLComposeServiceViewController.WillEnd(UIKit.UITextView,UIKit.UITextItem,UIKit.IUIContextMenuInteractionAnimating) +M:Social.SLComposeServiceViewController.WillPresentEditMenu(UIKit.UITextView,UIKit.IUIEditMenuInteractionAnimating) +M:Social.SLComposeServiceViewController.WriteCell(AppKit.NSTextView,AppKit.NSTextAttachmentCell,System.UIntPtr,AppKit.NSPasteboard,System.String) +M:Social.SLComposeSheetConfigurationItem.#ctor M:Social.SLComposeSheetConfigurationItem.#ctor(Foundation.NSObjectFlag) M:Social.SLComposeSheetConfigurationItem.#ctor(ObjCRuntime.NativeHandle) M:Social.SLComposeSheetConfigurationItem.get_ClassHandle +M:Social.SLComposeSheetConfigurationItem.get_TapHandler +M:Social.SLComposeSheetConfigurationItem.get_Title +M:Social.SLComposeSheetConfigurationItem.get_Value +M:Social.SLComposeSheetConfigurationItem.get_ValuePending M:Social.SLComposeSheetConfigurationItem.set_TapHandler(System.Action) M:Social.SLComposeSheetConfigurationItem.set_Title(System.String) M:Social.SLComposeSheetConfigurationItem.set_Value(System.String) @@ -94996,14 +98340,32 @@ M:Social.SLComposeViewController.#ctor(Foundation.NSCoder) M:Social.SLComposeViewController.#ctor(Foundation.NSObjectFlag) M:Social.SLComposeViewController.#ctor(ObjCRuntime.NativeHandle) M:Social.SLComposeViewController.#ctor(System.String,Foundation.NSBundle) +M:Social.SLComposeViewController.AddImage(UIKit.UIImage) +M:Social.SLComposeViewController.AddUrl(Foundation.NSUrl) +M:Social.SLComposeViewController.FromService(Foundation.NSString) M:Social.SLComposeViewController.FromService(Social.SLServiceKind) M:Social.SLComposeViewController.get_ClassHandle +M:Social.SLComposeViewController.get_CompletionHandler +M:Social.SLComposeViewController.get_ServiceType +M:Social.SLComposeViewController.IsAvailable(Foundation.NSString) M:Social.SLComposeViewController.IsAvailable(Social.SLServiceKind) +M:Social.SLComposeViewController.RemoveAllImages +M:Social.SLComposeViewController.RemoveAllUrls M:Social.SLComposeViewController.set_CompletionHandler(System.Action{Social.SLComposeViewControllerResult}) +M:Social.SLComposeViewController.SetInitialText(System.String) M:Social.SLRequest.#ctor(Foundation.NSObjectFlag) M:Social.SLRequest.#ctor(ObjCRuntime.NativeHandle) +M:Social.SLRequest.AddMultipartData(Foundation.NSData,System.String,System.String,System.String) +M:Social.SLRequest.AddMultipartData(Foundation.NSData,System.String,System.String) +M:Social.SLRequest.Create(Foundation.NSString,Social.SLRequestMethod,Foundation.NSUrl,Foundation.NSDictionary) M:Social.SLRequest.Create(Social.SLServiceKind,Social.SLRequestMethod,Foundation.NSUrl,Foundation.NSDictionary) +M:Social.SLRequest.get_Account M:Social.SLRequest.get_ClassHandle +M:Social.SLRequest.get_Parameters +M:Social.SLRequest.get_RequestMethod +M:Social.SLRequest.get_Url +M:Social.SLRequest.GetPreparedUrlRequest +M:Social.SLRequest.PerformRequest(System.Action{Foundation.NSData,Foundation.NSHttpUrlResponse,Foundation.NSError}) M:Social.SLRequest.PerformRequestAsync M:Social.SLRequest.set_Account(Accounts.ACAccount) M:Social.SLRequestResult.#ctor(Foundation.NSData,Foundation.NSHttpUrlResponse) @@ -95079,6 +98441,7 @@ M:SoundAnalysis.SNTimeDurationConstraint.get_Type M:Speech.SFAcousticFeature.#ctor(Foundation.NSCoder) M:Speech.SFAcousticFeature.#ctor(Foundation.NSObjectFlag) M:Speech.SFAcousticFeature.#ctor(ObjCRuntime.NativeHandle) +M:Speech.SFAcousticFeature.Copy(Foundation.NSZone) M:Speech.SFAcousticFeature.EncodeTo(Foundation.NSCoder) M:Speech.SFAcousticFeature.get_ClassHandle M:Speech.SFAnalysisContextTag.#ctor @@ -95098,10 +98461,12 @@ M:Speech.SFSpeechLanguageModel.PrepareCustomModelAsync(Foundation.NSUrl,System.S M:Speech.SFSpeechLanguageModelConfiguration.#ctor M:Speech.SFSpeechLanguageModelConfiguration.#ctor(Foundation.NSObjectFlag) M:Speech.SFSpeechLanguageModelConfiguration.#ctor(ObjCRuntime.NativeHandle) +M:Speech.SFSpeechLanguageModelConfiguration.Copy(Foundation.NSZone) M:Speech.SFSpeechLanguageModelConfiguration.get_ClassHandle M:Speech.SFSpeechRecognitionMetadata.#ctor(Foundation.NSCoder) M:Speech.SFSpeechRecognitionMetadata.#ctor(Foundation.NSObjectFlag) M:Speech.SFSpeechRecognitionMetadata.#ctor(ObjCRuntime.NativeHandle) +M:Speech.SFSpeechRecognitionMetadata.Copy(Foundation.NSZone) M:Speech.SFSpeechRecognitionMetadata.EncodeTo(Foundation.NSCoder) M:Speech.SFSpeechRecognitionMetadata.get_ClassHandle M:Speech.SFSpeechRecognitionRequest.#ctor(Foundation.NSObjectFlag) @@ -95118,6 +98483,7 @@ M:Speech.SFSpeechRecognitionResult.#ctor M:Speech.SFSpeechRecognitionResult.#ctor(Foundation.NSCoder) M:Speech.SFSpeechRecognitionResult.#ctor(Foundation.NSObjectFlag) M:Speech.SFSpeechRecognitionResult.#ctor(ObjCRuntime.NativeHandle) +M:Speech.SFSpeechRecognitionResult.Copy(Foundation.NSZone) M:Speech.SFSpeechRecognitionResult.EncodeTo(Foundation.NSCoder) M:Speech.SFSpeechRecognitionResult.get_ClassHandle M:Speech.SFSpeechRecognitionResult.get_Final @@ -95163,17 +98529,20 @@ M:Speech.SFTranscription.#ctor M:Speech.SFTranscription.#ctor(Foundation.NSCoder) M:Speech.SFTranscription.#ctor(Foundation.NSObjectFlag) M:Speech.SFTranscription.#ctor(ObjCRuntime.NativeHandle) +M:Speech.SFTranscription.Copy(Foundation.NSZone) M:Speech.SFTranscription.EncodeTo(Foundation.NSCoder) M:Speech.SFTranscription.get_ClassHandle M:Speech.SFTranscriptionSegment.#ctor M:Speech.SFTranscriptionSegment.#ctor(Foundation.NSCoder) M:Speech.SFTranscriptionSegment.#ctor(Foundation.NSObjectFlag) M:Speech.SFTranscriptionSegment.#ctor(ObjCRuntime.NativeHandle) +M:Speech.SFTranscriptionSegment.Copy(Foundation.NSZone) M:Speech.SFTranscriptionSegment.EncodeTo(Foundation.NSCoder) M:Speech.SFTranscriptionSegment.get_ClassHandle M:Speech.SFVoiceAnalytics.#ctor(Foundation.NSCoder) M:Speech.SFVoiceAnalytics.#ctor(Foundation.NSObjectFlag) M:Speech.SFVoiceAnalytics.#ctor(ObjCRuntime.NativeHandle) +M:Speech.SFVoiceAnalytics.Copy(Foundation.NSZone) M:Speech.SFVoiceAnalytics.EncodeTo(Foundation.NSCoder) M:Speech.SFVoiceAnalytics.get_ClassHandle M:SpriteKit.ISKWarpable.get_SubdivisionLevels @@ -95196,6 +98565,7 @@ M:SpriteKit.SK3DNode.set_ViewportSize(CoreGraphics.CGSize) M:SpriteKit.SKAction.#ctor(Foundation.NSCoder) M:SpriteKit.SKAction.#ctor(Foundation.NSObjectFlag) M:SpriteKit.SKAction.#ctor(ObjCRuntime.NativeHandle) +M:SpriteKit.SKAction.Copy(Foundation.NSZone) M:SpriteKit.SKAction.EncodeTo(Foundation.NSCoder) M:SpriteKit.SKAction.get_ClassHandle M:SpriteKit.SKAction.ResizeTo(CoreGraphics.CGSize,System.Double) @@ -95242,6 +98612,7 @@ M:SpriteKit.SKConstraint.#ctor M:SpriteKit.SKConstraint.#ctor(Foundation.NSCoder) M:SpriteKit.SKConstraint.#ctor(Foundation.NSObjectFlag) M:SpriteKit.SKConstraint.#ctor(ObjCRuntime.NativeHandle) +M:SpriteKit.SKConstraint.Copy(Foundation.NSZone) M:SpriteKit.SKConstraint.EncodeTo(Foundation.NSCoder) M:SpriteKit.SKConstraint.get_ClassHandle M:SpriteKit.SKConstraint.set_Enabled(System.Boolean) @@ -95258,6 +98629,8 @@ M:SpriteKit.SKEffectNode.#ctor(Foundation.NSObjectFlag) M:SpriteKit.SKEffectNode.#ctor(ObjCRuntime.NativeHandle) M:SpriteKit.SKEffectNode.Dispose(System.Boolean) M:SpriteKit.SKEffectNode.get_ClassHandle +M:SpriteKit.SKEffectNode.get_SubdivisionLevels +M:SpriteKit.SKEffectNode.get_WarpGeometry M:SpriteKit.SKEffectNode.set_AttributeValues(Foundation.NSDictionary{Foundation.NSString,SpriteKit.SKAttributeValue}) M:SpriteKit.SKEffectNode.set_BlendMode(SpriteKit.SKBlendMode) M:SpriteKit.SKEffectNode.set_Filter(CoreImage.CIFilter) @@ -95351,6 +98724,7 @@ M:SpriteKit.SKKeyframeSequence.#ctor(Foundation.NSObject[],System.Double[]) M:SpriteKit.SKKeyframeSequence.#ctor(Foundation.NSObject[],System.Single[]) M:SpriteKit.SKKeyframeSequence.#ctor(Foundation.NSObjectFlag) M:SpriteKit.SKKeyframeSequence.#ctor(ObjCRuntime.NativeHandle) +M:SpriteKit.SKKeyframeSequence.Copy(Foundation.NSZone) M:SpriteKit.SKKeyframeSequence.EncodeTo(Foundation.NSCoder) M:SpriteKit.SKKeyframeSequence.get_ClassHandle M:SpriteKit.SKKeyframeSequence.set_InterpolationMode(SpriteKit.SKInterpolationMode) @@ -95399,16 +98773,22 @@ M:SpriteKit.SKNode.#ctor(Foundation.NSObjectFlag) M:SpriteKit.SKNode.#ctor(ObjCRuntime.NativeHandle) M:SpriteKit.SKNode.Add(SpriteKit.SKNode) M:SpriteKit.SKNode.AddNodes(SpriteKit.SKNode[]) +M:SpriteKit.SKNode.Copy(Foundation.NSZone) M:SpriteKit.SKNode.Create(System.String,Foundation.NSSet{ObjCRuntime.Class},Foundation.NSError@) M:SpriteKit.SKNode.Create(System.String,System.Type[],Foundation.NSError@) +M:SpriteKit.SKNode.DidHintFocusMovement(UIKit.UIFocusMovementHint) M:SpriteKit.SKNode.DidUpdateFocus(UIKit.UIFocusUpdateContext,UIKit.UIFocusAnimationCoordinator) M:SpriteKit.SKNode.Dispose(System.Boolean) M:SpriteKit.SKNode.EncodeTo(Foundation.NSCoder) M:SpriteKit.SKNode.FromFile``1(System.String) +M:SpriteKit.SKNode.get_CanBecomeFocused M:SpriteKit.SKNode.get_ClassHandle +M:SpriteKit.SKNode.get_FocusEffect M:SpriteKit.SKNode.get_FocusGroupIdentifier +M:SpriteKit.SKNode.get_FocusGroupPriority M:SpriteKit.SKNode.get_FocusItemContainer M:SpriteKit.SKNode.get_Hidden +M:SpriteKit.SKNode.get_IsTransparentFocusItem M:SpriteKit.SKNode.get_ParentFocusEnvironment M:SpriteKit.SKNode.get_Paused M:SpriteKit.SKNode.get_PreferredFocusedView @@ -95452,6 +98832,7 @@ M:SpriteKit.SKNodeTouches_UITouch.PreviousLocationInNode(UIKit.UITouch,SpriteKit M:SpriteKit.SKPhysicsBody.#ctor(Foundation.NSCoder) M:SpriteKit.SKPhysicsBody.#ctor(Foundation.NSObjectFlag) M:SpriteKit.SKPhysicsBody.#ctor(ObjCRuntime.NativeHandle) +M:SpriteKit.SKPhysicsBody.Copy(Foundation.NSZone) M:SpriteKit.SKPhysicsBody.Dispose(System.Boolean) M:SpriteKit.SKPhysicsBody.EncodeTo(Foundation.NSCoder) M:SpriteKit.SKPhysicsBody.get_ClassHandle @@ -95552,6 +98933,7 @@ M:SpriteKit.SKRange.#ctor M:SpriteKit.SKRange.#ctor(Foundation.NSCoder) M:SpriteKit.SKRange.#ctor(Foundation.NSObjectFlag) M:SpriteKit.SKRange.#ctor(ObjCRuntime.NativeHandle) +M:SpriteKit.SKRange.Copy(Foundation.NSZone) M:SpriteKit.SKRange.EncodeTo(Foundation.NSCoder) M:SpriteKit.SKRange.get_ClassHandle M:SpriteKit.SKRange.set_LowerLimit(System.Runtime.InteropServices.NFloat) @@ -95571,6 +98953,7 @@ M:SpriteKit.SKRegion.#ctor M:SpriteKit.SKRegion.#ctor(Foundation.NSCoder) M:SpriteKit.SKRegion.#ctor(Foundation.NSObjectFlag) M:SpriteKit.SKRegion.#ctor(ObjCRuntime.NativeHandle) +M:SpriteKit.SKRegion.Copy(Foundation.NSZone) M:SpriteKit.SKRegion.EncodeTo(Foundation.NSCoder) M:SpriteKit.SKRegion.get_ClassHandle M:SpriteKit.SKRenderer.#ctor(Foundation.NSObjectFlag) @@ -95618,6 +99001,7 @@ M:SpriteKit.SKShader.#ctor M:SpriteKit.SKShader.#ctor(Foundation.NSCoder) M:SpriteKit.SKShader.#ctor(Foundation.NSObjectFlag) M:SpriteKit.SKShader.#ctor(ObjCRuntime.NativeHandle) +M:SpriteKit.SKShader.Copy(Foundation.NSZone) M:SpriteKit.SKShader.EncodeTo(Foundation.NSCoder) M:SpriteKit.SKShader.get_ClassHandle M:SpriteKit.SKShader.set_Attributes(SpriteKit.SKAttribute[]) @@ -95655,6 +99039,8 @@ M:SpriteKit.SKSpriteNode.#ctor(Foundation.NSObjectFlag) M:SpriteKit.SKSpriteNode.#ctor(ObjCRuntime.NativeHandle) M:SpriteKit.SKSpriteNode.Dispose(System.Boolean) M:SpriteKit.SKSpriteNode.get_ClassHandle +M:SpriteKit.SKSpriteNode.get_SubdivisionLevels +M:SpriteKit.SKSpriteNode.get_WarpGeometry M:SpriteKit.SKSpriteNode.set_AnchorPoint(CoreGraphics.CGPoint) M:SpriteKit.SKSpriteNode.set_AttributeValues(Foundation.NSDictionary{Foundation.NSString,SpriteKit.SKAttributeValue}) M:SpriteKit.SKSpriteNode.set_BlendMode(SpriteKit.SKBlendMode) @@ -95674,6 +99060,7 @@ M:SpriteKit.SKSpriteNode.set_WarpGeometry(SpriteKit.SKWarpGeometry) M:SpriteKit.SKTexture.#ctor(Foundation.NSCoder) M:SpriteKit.SKTexture.#ctor(Foundation.NSObjectFlag) M:SpriteKit.SKTexture.#ctor(ObjCRuntime.NativeHandle) +M:SpriteKit.SKTexture.Copy(Foundation.NSZone) M:SpriteKit.SKTexture.EncodeTo(Foundation.NSCoder) M:SpriteKit.SKTexture.FromNoiseMap(GameplayKit.GKNoiseMap) M:SpriteKit.SKTexture.get_ClassHandle @@ -95706,6 +99093,7 @@ M:SpriteKit.SKTextureModify.Invoke(System.IntPtr,System.UIntPtr) M:SpriteKit.SKTileDefinition.#ctor(Foundation.NSCoder) M:SpriteKit.SKTileDefinition.#ctor(Foundation.NSObjectFlag) M:SpriteKit.SKTileDefinition.#ctor(ObjCRuntime.NativeHandle) +M:SpriteKit.SKTileDefinition.Copy(Foundation.NSZone) M:SpriteKit.SKTileDefinition.EncodeTo(Foundation.NSCoder) M:SpriteKit.SKTileDefinition.get_ClassHandle M:SpriteKit.SKTileDefinition.set_FlipHorizontally(System.Boolean) @@ -95722,6 +99110,7 @@ M:SpriteKit.SKTileGroup.#ctor M:SpriteKit.SKTileGroup.#ctor(Foundation.NSCoder) M:SpriteKit.SKTileGroup.#ctor(Foundation.NSObjectFlag) M:SpriteKit.SKTileGroup.#ctor(ObjCRuntime.NativeHandle) +M:SpriteKit.SKTileGroup.Copy(Foundation.NSZone) M:SpriteKit.SKTileGroup.EncodeTo(Foundation.NSCoder) M:SpriteKit.SKTileGroup.get_ClassHandle M:SpriteKit.SKTileGroup.set_Name(System.String) @@ -95730,6 +99119,7 @@ M:SpriteKit.SKTileGroupRule.#ctor M:SpriteKit.SKTileGroupRule.#ctor(Foundation.NSCoder) M:SpriteKit.SKTileGroupRule.#ctor(Foundation.NSObjectFlag) M:SpriteKit.SKTileGroupRule.#ctor(ObjCRuntime.NativeHandle) +M:SpriteKit.SKTileGroupRule.Copy(Foundation.NSZone) M:SpriteKit.SKTileGroupRule.EncodeTo(Foundation.NSCoder) M:SpriteKit.SKTileGroupRule.get_ClassHandle M:SpriteKit.SKTileGroupRule.set_Adjacency(SpriteKit.SKTileAdjacencyMask) @@ -95739,6 +99129,7 @@ M:SpriteKit.SKTileMapNode.#ctor M:SpriteKit.SKTileMapNode.#ctor(Foundation.NSCoder) M:SpriteKit.SKTileMapNode.#ctor(Foundation.NSObjectFlag) M:SpriteKit.SKTileMapNode.#ctor(ObjCRuntime.NativeHandle) +M:SpriteKit.SKTileMapNode.Copy(Foundation.NSZone) M:SpriteKit.SKTileMapNode.Dispose(System.Boolean) M:SpriteKit.SKTileMapNode.EncodeTo(Foundation.NSCoder) M:SpriteKit.SKTileMapNode.FromTileSet(SpriteKit.SKTileSet,System.UIntPtr,System.UIntPtr,CoreGraphics.CGSize,GameplayKit.GKNoiseMap,Foundation.NSNumber[]) @@ -95760,6 +99151,7 @@ M:SpriteKit.SKTileSet.#ctor M:SpriteKit.SKTileSet.#ctor(Foundation.NSCoder) M:SpriteKit.SKTileSet.#ctor(Foundation.NSObjectFlag) M:SpriteKit.SKTileSet.#ctor(ObjCRuntime.NativeHandle) +M:SpriteKit.SKTileSet.Copy(Foundation.NSZone) M:SpriteKit.SKTileSet.Dispose(System.Boolean) M:SpriteKit.SKTileSet.EncodeTo(Foundation.NSCoder) M:SpriteKit.SKTileSet.get_ClassHandle @@ -95777,6 +99169,7 @@ M:SpriteKit.SKTransformNode.set_XRotation(System.Runtime.InteropServices.NFloat) M:SpriteKit.SKTransformNode.set_YRotation(System.Runtime.InteropServices.NFloat) M:SpriteKit.SKTransition.#ctor(Foundation.NSObjectFlag) M:SpriteKit.SKTransition.#ctor(ObjCRuntime.NativeHandle) +M:SpriteKit.SKTransition.Copy(Foundation.NSZone) M:SpriteKit.SKTransition.get_ClassHandle M:SpriteKit.SKTransition.set_PausesIncomingScene(System.Boolean) M:SpriteKit.SKTransition.set_PausesOutgoingScene(System.Boolean) @@ -95787,6 +99180,7 @@ M:SpriteKit.SKUniform.#ctor(ObjCRuntime.NativeHandle) M:SpriteKit.SKUniform.#ctor(System.String,System.Numerics.Vector2) M:SpriteKit.SKUniform.#ctor(System.String,System.Numerics.Vector3) M:SpriteKit.SKUniform.#ctor(System.String,System.Numerics.Vector4) +M:SpriteKit.SKUniform.Copy(Foundation.NSZone) M:SpriteKit.SKUniform.EncodeTo(Foundation.NSCoder) M:SpriteKit.SKUniform.get_ClassHandle M:SpriteKit.SKUniform.get_FloatVector2Value @@ -95851,6 +99245,7 @@ M:SpriteKit.SKWarpGeometry.#ctor M:SpriteKit.SKWarpGeometry.#ctor(Foundation.NSCoder) M:SpriteKit.SKWarpGeometry.#ctor(Foundation.NSObjectFlag) M:SpriteKit.SKWarpGeometry.#ctor(ObjCRuntime.NativeHandle) +M:SpriteKit.SKWarpGeometry.Copy(Foundation.NSZone) M:SpriteKit.SKWarpGeometry.EncodeTo(Foundation.NSCoder) M:SpriteKit.SKWarpGeometry.get_ClassHandle M:SpriteKit.SKWarpGeometryGrid.#ctor(Foundation.NSObjectFlag) @@ -96021,7 +99416,9 @@ M:StoreKit.SKOverlayTransitionContext.#ctor(ObjCRuntime.NativeHandle) M:StoreKit.SKOverlayTransitionContext.get_ClassHandle M:StoreKit.SKPayment.#ctor(Foundation.NSObjectFlag) M:StoreKit.SKPayment.#ctor(ObjCRuntime.NativeHandle) +M:StoreKit.SKPayment.Copy(Foundation.NSZone) M:StoreKit.SKPayment.get_ClassHandle +M:StoreKit.SKPayment.MutableCopy(Foundation.NSZone) M:StoreKit.SKPayment.set_PaymentDiscount(StoreKit.SKPaymentDiscount) M:StoreKit.SKPayment.set_RequestData(Foundation.NSData) M:StoreKit.SKPayment.set_SimulatesAskToBuyInSandbox(System.Boolean) @@ -96226,6 +99623,7 @@ M:Symbols.NSSymbolBounceEffect.get_ClassHandle M:Symbols.NSSymbolContentTransition.#ctor(Foundation.NSCoder) M:Symbols.NSSymbolContentTransition.#ctor(Foundation.NSObjectFlag) M:Symbols.NSSymbolContentTransition.#ctor(ObjCRuntime.NativeHandle) +M:Symbols.NSSymbolContentTransition.Copy(Foundation.NSZone) M:Symbols.NSSymbolContentTransition.EncodeTo(Foundation.NSCoder) M:Symbols.NSSymbolContentTransition.get_ClassHandle M:Symbols.NSSymbolDisappearEffect.#ctor(Foundation.NSCoder) @@ -96235,11 +99633,13 @@ M:Symbols.NSSymbolDisappearEffect.get_ClassHandle M:Symbols.NSSymbolEffect.#ctor(Foundation.NSCoder) M:Symbols.NSSymbolEffect.#ctor(Foundation.NSObjectFlag) M:Symbols.NSSymbolEffect.#ctor(ObjCRuntime.NativeHandle) +M:Symbols.NSSymbolEffect.Copy(Foundation.NSZone) M:Symbols.NSSymbolEffect.EncodeTo(Foundation.NSCoder) M:Symbols.NSSymbolEffect.get_ClassHandle M:Symbols.NSSymbolEffectOptions.#ctor(Foundation.NSCoder) M:Symbols.NSSymbolEffectOptions.#ctor(Foundation.NSObjectFlag) M:Symbols.NSSymbolEffectOptions.#ctor(ObjCRuntime.NativeHandle) +M:Symbols.NSSymbolEffectOptions.Copy(Foundation.NSZone) M:Symbols.NSSymbolEffectOptions.EncodeTo(Foundation.NSCoder) M:Symbols.NSSymbolEffectOptions.get_ClassHandle M:Symbols.NSSymbolPulseEffect.#ctor(Foundation.NSCoder) @@ -96349,23 +99749,43 @@ M:SystemConfiguration.StatusCodeError.GetErrorDescription(SystemConfiguration.St M:SystemConfiguration.StatusCodeExtensions.GetDomain(SystemConfiguration.StatusCode) M:SystemConfiguration.SystemConfigurationException.#ctor(SystemConfiguration.StatusCode) M:SystemConfiguration.SystemConfigurationException.get_StatusErrorCode +M:ThreadNetwork.THClient.#ctor M:ThreadNetwork.THClient.#ctor(Foundation.NSObjectFlag) M:ThreadNetwork.THClient.#ctor(ObjCRuntime.NativeHandle) +M:ThreadNetwork.THClient.CheckPreferredNetwork(Foundation.NSData,System.Action{System.Boolean}) M:ThreadNetwork.THClient.CheckPreferredNetworkAsync(Foundation.NSData) +M:ThreadNetwork.THClient.DeleteCredentialsForBorderAgent(Foundation.NSData,System.Action{Foundation.NSError}) M:ThreadNetwork.THClient.DeleteCredentialsForBorderAgentAsync(Foundation.NSData) M:ThreadNetwork.THClient.get_ClassHandle +M:ThreadNetwork.THClient.IsPreferredNetworkAvailable(System.Action{System.Boolean}) M:ThreadNetwork.THClient.IsPreferredNetworkAvailableAsync +M:ThreadNetwork.THClient.RetrieveAllActiveCredentials(System.Action{Foundation.NSSet{ThreadNetwork.THCredentials},Foundation.NSError}) M:ThreadNetwork.THClient.RetrieveAllActiveCredentialsAsync +M:ThreadNetwork.THClient.RetrieveAllCredentials(System.Action{Foundation.NSSet{ThreadNetwork.THCredentials},Foundation.NSError}) M:ThreadNetwork.THClient.RetrieveAllCredentialsAsync +M:ThreadNetwork.THClient.RetrieveCredentialsForBorderAgent(Foundation.NSData,System.Action{ThreadNetwork.THCredentials,Foundation.NSError}) M:ThreadNetwork.THClient.RetrieveCredentialsForBorderAgentAsync(Foundation.NSData) +M:ThreadNetwork.THClient.RetrieveCredentialsForExtendedPanId(Foundation.NSData,System.Action{ThreadNetwork.THCredentials,Foundation.NSError}) M:ThreadNetwork.THClient.RetrieveCredentialsForExtendedPanIdAsync(Foundation.NSData) +M:ThreadNetwork.THClient.RetrievePreferredCredentials(System.Action{ThreadNetwork.THCredentials,Foundation.NSError}) M:ThreadNetwork.THClient.RetrievePreferredCredentialsAsync +M:ThreadNetwork.THClient.StoreCredentialsForBorderAgent(Foundation.NSData,Foundation.NSData,System.Action{Foundation.NSError}) M:ThreadNetwork.THClient.StoreCredentialsForBorderAgentAsync(Foundation.NSData,Foundation.NSData) M:ThreadNetwork.THCredentials.#ctor(Foundation.NSCoder) M:ThreadNetwork.THCredentials.#ctor(Foundation.NSObjectFlag) M:ThreadNetwork.THCredentials.#ctor(ObjCRuntime.NativeHandle) M:ThreadNetwork.THCredentials.EncodeTo(Foundation.NSCoder) +M:ThreadNetwork.THCredentials.get_ActiveOperationalDataSet +M:ThreadNetwork.THCredentials.get_BorderAgentId +M:ThreadNetwork.THCredentials.get_Channel M:ThreadNetwork.THCredentials.get_ClassHandle +M:ThreadNetwork.THCredentials.get_CreationDate +M:ThreadNetwork.THCredentials.get_ExtendedPanId +M:ThreadNetwork.THCredentials.get_LastModificationDate +M:ThreadNetwork.THCredentials.get_NetworkKey +M:ThreadNetwork.THCredentials.get_NetworkName +M:ThreadNetwork.THCredentials.get_PanId +M:ThreadNetwork.THCredentials.get_Pskc M:ThreadNetwork.THCredentials.set_Channel(System.Byte) M:TVMLKit.ITVBrowserViewControllerDataSource.GetCorrespondingDocumentViewController(TVMLKit.TVBrowserViewController,TVMLKit.TVViewElement) M:TVMLKit.ITVPlaybackEventMarshaling.get_Properties @@ -96378,6 +99798,7 @@ M:TVMLKit.TVApplicationController.get_Delegate M:TVMLKit.TVApplicationControllerContext.#ctor M:TVMLKit.TVApplicationControllerContext.#ctor(Foundation.NSObjectFlag) M:TVMLKit.TVApplicationControllerContext.#ctor(ObjCRuntime.NativeHandle) +M:TVMLKit.TVApplicationControllerContext.Copy(Foundation.NSZone) M:TVMLKit.TVApplicationControllerContext.get_ClassHandle M:TVMLKit.TVApplicationControllerContext.set_JavaScriptApplicationUrl(Foundation.NSUrl) M:TVMLKit.TVApplicationControllerContext.set_LaunchOptions(Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject}) @@ -96398,7 +99819,11 @@ M:TVMLKit.TVApplicationControllerDelegate.EvaluateAppJavaScript(TVMLKit.TVApplic M:TVMLKit.TVApplicationControllerDelegate.GetPlayer(TVMLKit.TVApplicationController) M:TVMLKit.TVBrowserTransitionAnimator.#ctor(Foundation.NSObjectFlag) M:TVMLKit.TVBrowserTransitionAnimator.#ctor(ObjCRuntime.NativeHandle) +M:TVMLKit.TVBrowserTransitionAnimator.AnimateTransition(UIKit.IUIViewControllerContextTransitioning) +M:TVMLKit.TVBrowserTransitionAnimator.AnimationEnded(System.Boolean) M:TVMLKit.TVBrowserTransitionAnimator.get_ClassHandle +M:TVMLKit.TVBrowserTransitionAnimator.GetInterruptibleAnimator(UIKit.IUIViewControllerContextTransitioning) +M:TVMLKit.TVBrowserTransitionAnimator.TransitionDuration(UIKit.IUIViewControllerContextTransitioning) M:TVMLKit.TVBrowserViewController.#ctor(Foundation.NSCoder) M:TVMLKit.TVBrowserViewController.#ctor(Foundation.NSObjectFlag) M:TVMLKit.TVBrowserViewController.#ctor(ObjCRuntime.NativeHandle) @@ -96429,6 +99854,7 @@ M:TVMLKit.TVBrowserViewControllerDelegate.WillCenterOnViewElement(TVMLKit.TVBrow M:TVMLKit.TVColor.#ctor M:TVMLKit.TVColor.#ctor(Foundation.NSObjectFlag) M:TVMLKit.TVColor.#ctor(ObjCRuntime.NativeHandle) +M:TVMLKit.TVColor.Copy(Foundation.NSZone) M:TVMLKit.TVColor.get_ClassHandle M:TVMLKit.TVDocumentErrorExtensions.GetDomain(TVMLKit.TVDocumentError) M:TVMLKit.TVDocumentEventExtensions.GetConstant(TVMLKit.TVDocumentEvent) @@ -96478,6 +99904,12 @@ M:TVMLKit.TVInterfaceFactory.#ctor M:TVMLKit.TVInterfaceFactory.#ctor(Foundation.NSObjectFlag) M:TVMLKit.TVInterfaceFactory.#ctor(ObjCRuntime.NativeHandle) M:TVMLKit.TVInterfaceFactory.get_ClassHandle +M:TVMLKit.TVInterfaceFactory.GetCollectionViewCellClass(TVMLKit.TVViewElement) +M:TVMLKit.TVInterfaceFactory.GetImageForResource(System.String) +M:TVMLKit.TVInterfaceFactory.GetPlayerViewController(TVMLKit.TVPlayer) +M:TVMLKit.TVInterfaceFactory.GetUrlForResource(System.String) +M:TVMLKit.TVInterfaceFactory.GetViewControllerForElement(TVMLKit.TVViewElement,UIKit.UIViewController) +M:TVMLKit.TVInterfaceFactory.GetViewForElement(TVMLKit.TVViewElement,UIKit.UIView) M:TVMLKit.TVInterfaceFactory.set_ExtendedInterfaceCreator(TVMLKit.ITVInterfaceCreating) M:TVMLKit.TVMediaItem.#ctor(Foundation.NSObjectFlag) M:TVMLKit.TVMediaItem.#ctor(ObjCRuntime.NativeHandle) @@ -96492,6 +99924,8 @@ M:TVMLKit.TVMLKitErrorExtensions.GetDomain(TVMLKit.TVMLKitError) M:TVMLKit.TVPlaybackCustomEventUserInfo.#ctor(Foundation.NSObjectFlag) M:TVMLKit.TVPlaybackCustomEventUserInfo.#ctor(ObjCRuntime.NativeHandle) M:TVMLKit.TVPlaybackCustomEventUserInfo.get_ClassHandle +M:TVMLKit.TVPlaybackCustomEventUserInfo.get_Properties +M:TVMLKit.TVPlaybackCustomEventUserInfo.ProcessReturn(JavaScriptCore.JSValue,JavaScriptCore.JSContext) M:TVMLKit.TVPlaybackCustomEventUserInfo.set_ExpectsReturnValue(System.Boolean) M:TVMLKit.TVPlaybackEventMarshaling_Extensions.ProcessReturn(TVMLKit.ITVPlaybackEventMarshaling,JavaScriptCore.JSValue,JavaScriptCore.JSContext) M:TVMLKit.TVPlayer.#ctor(Foundation.NSObjectFlag) @@ -96515,6 +99949,7 @@ M:TVMLKit.TVTimeRange.get_ClassHandle M:TVMLKit.TVViewElement.#ctor M:TVMLKit.TVViewElement.#ctor(Foundation.NSObjectFlag) M:TVMLKit.TVViewElement.#ctor(ObjCRuntime.NativeHandle) +M:TVMLKit.TVViewElement.Copy(Foundation.NSZone) M:TVMLKit.TVViewElement.DispatchEventAsync(System.String,System.Boolean,System.Boolean,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject}) M:TVMLKit.TVViewElement.DispatchEventAsync(TVMLKit.TVElementEventType,System.Boolean,System.Boolean,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject}) M:TVMLKit.TVViewElement.Dispose(System.Boolean) @@ -96529,6 +99964,7 @@ M:TVMLKit.TVViewElementDispatchResult.set_IsDispatched(System.Boolean) M:TVMLKit.TVViewElementStyle.#ctor M:TVMLKit.TVViewElementStyle.#ctor(Foundation.NSObjectFlag) M:TVMLKit.TVViewElementStyle.#ctor(ObjCRuntime.NativeHandle) +M:TVMLKit.TVViewElementStyle.Copy(Foundation.NSZone) M:TVMLKit.TVViewElementStyle.get_ClassHandle M:TVServices.ITVTopShelfProvider.get_TopShelfItems M:TVServices.ITVTopShelfProvider.get_TopShelfStyle @@ -96797,6 +100233,7 @@ M:TVUIKit.TVLockupHeaderFooterView.GetAppearance``1(UIKit.UITraitCollection,Syst M:TVUIKit.TVLockupHeaderFooterView.GetAppearance``1(UIKit.UITraitCollection) M:TVUIKit.TVLockupHeaderFooterView.set_ShowsOnlyWhenAncestorFocused(System.Boolean) M:TVUIKit.TVLockupHeaderFooterView.TVLockupHeaderFooterViewAppearance.#ctor(System.IntPtr) +M:TVUIKit.TVLockupHeaderFooterView.UpdateAppearanceForLockupView(UIKit.UIControlState) M:TVUIKit.TVLockupView.#ctor(CoreGraphics.CGRect) M:TVUIKit.TVLockupView.#ctor(Foundation.NSCoder) M:TVUIKit.TVLockupView.#ctor(Foundation.NSObjectFlag) @@ -96819,6 +100256,7 @@ M:TVUIKit.TVLockupViewComponent_Extensions.UpdateAppearanceForLockupView(TVUIKit M:TVUIKit.TVMediaItemContentBadgeProperties.#ctor(Foundation.NSCoder) M:TVUIKit.TVMediaItemContentBadgeProperties.#ctor(Foundation.NSObjectFlag) M:TVUIKit.TVMediaItemContentBadgeProperties.#ctor(ObjCRuntime.NativeHandle) +M:TVUIKit.TVMediaItemContentBadgeProperties.Copy(Foundation.NSZone) M:TVUIKit.TVMediaItemContentBadgeProperties.EncodeTo(Foundation.NSCoder) M:TVUIKit.TVMediaItemContentBadgeProperties.get_ClassHandle M:TVUIKit.TVMediaItemContentBadgeProperties.set_BackgroundColor(UIKit.UIColor) @@ -96831,6 +100269,8 @@ M:TVUIKit.TVMediaItemContentConfiguration.#ctor(ObjCRuntime.NativeHandle) M:TVUIKit.TVMediaItemContentConfiguration.Copy(Foundation.NSZone) M:TVUIKit.TVMediaItemContentConfiguration.EncodeTo(Foundation.NSCoder) M:TVUIKit.TVMediaItemContentConfiguration.get_ClassHandle +M:TVUIKit.TVMediaItemContentConfiguration.GetUpdatedConfiguration(UIKit.IUIConfigurationState) +M:TVUIKit.TVMediaItemContentConfiguration.MakeContentView M:TVUIKit.TVMediaItemContentConfiguration.set_BadgeProperties(TVUIKit.TVMediaItemContentBadgeProperties) M:TVUIKit.TVMediaItemContentConfiguration.set_BadgeText(System.String) M:TVUIKit.TVMediaItemContentConfiguration.set_Image(UIKit.UIImage) @@ -96841,6 +100281,7 @@ M:TVUIKit.TVMediaItemContentConfiguration.set_Text(System.String) M:TVUIKit.TVMediaItemContentTextProperties.#ctor(Foundation.NSCoder) M:TVUIKit.TVMediaItemContentTextProperties.#ctor(Foundation.NSObjectFlag) M:TVUIKit.TVMediaItemContentTextProperties.#ctor(ObjCRuntime.NativeHandle) +M:TVUIKit.TVMediaItemContentTextProperties.Copy(Foundation.NSZone) M:TVUIKit.TVMediaItemContentTextProperties.EncodeTo(Foundation.NSCoder) M:TVUIKit.TVMediaItemContentTextProperties.get_ClassHandle M:TVUIKit.TVMediaItemContentTextProperties.set_Color(UIKit.UIColor) @@ -96859,6 +100300,7 @@ M:TVUIKit.TVMediaItemContentView.GetAppearance``1(UIKit.UITraitCollection,System M:TVUIKit.TVMediaItemContentView.GetAppearance``1(UIKit.UITraitCollection) M:TVUIKit.TVMediaItemContentView.GetConfiguration M:TVUIKit.TVMediaItemContentView.set_Configuration(UIKit.IUIContentConfiguration) +M:TVUIKit.TVMediaItemContentView.SupportsConfiguration(UIKit.IUIContentConfiguration) M:TVUIKit.TVMediaItemContentView.TVMediaItemContentViewAppearance.#ctor(System.IntPtr) M:TVUIKit.TVMonogramContentConfiguration.#ctor(Foundation.NSCoder) M:TVUIKit.TVMonogramContentConfiguration.#ctor(Foundation.NSObjectFlag) @@ -96866,6 +100308,8 @@ M:TVUIKit.TVMonogramContentConfiguration.#ctor(ObjCRuntime.NativeHandle) M:TVUIKit.TVMonogramContentConfiguration.Copy(Foundation.NSZone) M:TVUIKit.TVMonogramContentConfiguration.EncodeTo(Foundation.NSCoder) M:TVUIKit.TVMonogramContentConfiguration.get_ClassHandle +M:TVUIKit.TVMonogramContentConfiguration.GetUpdatedConfiguration(UIKit.IUIConfigurationState) +M:TVUIKit.TVMonogramContentConfiguration.MakeContentView M:TVUIKit.TVMonogramContentConfiguration.set_Image(UIKit.UIImage) M:TVUIKit.TVMonogramContentConfiguration.set_PersonNameComponents(Foundation.NSPersonNameComponents) M:TVUIKit.TVMonogramContentConfiguration.set_SecondaryText(System.String) @@ -96873,6 +100317,7 @@ M:TVUIKit.TVMonogramContentConfiguration.set_Text(System.String) M:TVUIKit.TVMonogramContentTextProperties.#ctor(Foundation.NSCoder) M:TVUIKit.TVMonogramContentTextProperties.#ctor(Foundation.NSObjectFlag) M:TVUIKit.TVMonogramContentTextProperties.#ctor(ObjCRuntime.NativeHandle) +M:TVUIKit.TVMonogramContentTextProperties.Copy(Foundation.NSZone) M:TVUIKit.TVMonogramContentTextProperties.EncodeTo(Foundation.NSCoder) M:TVUIKit.TVMonogramContentTextProperties.get_ClassHandle M:TVUIKit.TVMonogramContentTextProperties.set_Color(UIKit.UIColor) @@ -96890,6 +100335,7 @@ M:TVUIKit.TVMonogramContentView.GetAppearance``1(UIKit.UITraitCollection,System. M:TVUIKit.TVMonogramContentView.GetAppearance``1(UIKit.UITraitCollection) M:TVUIKit.TVMonogramContentView.GetConfiguration M:TVUIKit.TVMonogramContentView.set_Configuration(UIKit.IUIContentConfiguration) +M:TVUIKit.TVMonogramContentView.SupportsConfiguration(UIKit.IUIContentConfiguration) M:TVUIKit.TVMonogramContentView.TVMonogramContentViewAppearance.#ctor(System.IntPtr) M:TVUIKit.TVMonogramView.#ctor M:TVUIKit.TVMonogramView.#ctor(CoreGraphics.CGRect) @@ -97470,29 +100916,36 @@ M:UIKit.NSCoder_UIGeometryKeyedCoding.Encode(Foundation.NSCoder,UIKit.UIEdgeInse M:UIKit.NSCoder_UIGeometryKeyedCoding.Encode(Foundation.NSCoder,UIKit.UIOffset,System.String) M:UIKit.NSCollectionLayoutAnchor.#ctor(Foundation.NSObjectFlag) M:UIKit.NSCollectionLayoutAnchor.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.NSCollectionLayoutAnchor.Copy(Foundation.NSZone) M:UIKit.NSCollectionLayoutAnchor.get_ClassHandle M:UIKit.NSCollectionLayoutBoundarySupplementaryItem.#ctor(Foundation.NSObjectFlag) M:UIKit.NSCollectionLayoutBoundarySupplementaryItem.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.NSCollectionLayoutBoundarySupplementaryItem.Copy(Foundation.NSZone) M:UIKit.NSCollectionLayoutBoundarySupplementaryItem.get_ClassHandle M:UIKit.NSCollectionLayoutBoundarySupplementaryItem.set_ExtendsBoundary(System.Boolean) M:UIKit.NSCollectionLayoutBoundarySupplementaryItem.set_PinToVisibleBounds(System.Boolean) M:UIKit.NSCollectionLayoutDecorationItem.#ctor(Foundation.NSObjectFlag) M:UIKit.NSCollectionLayoutDecorationItem.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.NSCollectionLayoutDecorationItem.Copy(Foundation.NSZone) M:UIKit.NSCollectionLayoutDecorationItem.get_ClassHandle M:UIKit.NSCollectionLayoutDecorationItem.set_ZIndex(System.IntPtr) M:UIKit.NSCollectionLayoutDimension.#ctor(Foundation.NSObjectFlag) M:UIKit.NSCollectionLayoutDimension.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.NSCollectionLayoutDimension.Copy(Foundation.NSZone) M:UIKit.NSCollectionLayoutDimension.get_ClassHandle M:UIKit.NSCollectionLayoutEdgeSpacing.#ctor(Foundation.NSObjectFlag) M:UIKit.NSCollectionLayoutEdgeSpacing.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.NSCollectionLayoutEdgeSpacing.Copy(Foundation.NSZone) M:UIKit.NSCollectionLayoutEdgeSpacing.get_ClassHandle M:UIKit.NSCollectionLayoutGroup.#ctor(Foundation.NSObjectFlag) M:UIKit.NSCollectionLayoutGroup.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.NSCollectionLayoutGroup.Copy(Foundation.NSZone) M:UIKit.NSCollectionLayoutGroup.get_ClassHandle M:UIKit.NSCollectionLayoutGroup.set_InterItemSpacing(UIKit.NSCollectionLayoutSpacing) M:UIKit.NSCollectionLayoutGroup.set_SupplementaryItems(UIKit.NSCollectionLayoutSupplementaryItem[]) M:UIKit.NSCollectionLayoutGroupCustomItem.#ctor(Foundation.NSObjectFlag) M:UIKit.NSCollectionLayoutGroupCustomItem.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.NSCollectionLayoutGroupCustomItem.Copy(Foundation.NSZone) M:UIKit.NSCollectionLayoutGroupCustomItem.get_ClassHandle M:UIKit.NSCollectionLayoutGroupCustomItemProvider.#ctor(System.Object,System.IntPtr) M:UIKit.NSCollectionLayoutGroupCustomItemProvider.BeginInvoke(UIKit.INSCollectionLayoutEnvironment,System.AsyncCallback,System.Object) @@ -97500,11 +100953,13 @@ M:UIKit.NSCollectionLayoutGroupCustomItemProvider.EndInvoke(System.IAsyncResult) M:UIKit.NSCollectionLayoutGroupCustomItemProvider.Invoke(UIKit.INSCollectionLayoutEnvironment) M:UIKit.NSCollectionLayoutItem.#ctor(Foundation.NSObjectFlag) M:UIKit.NSCollectionLayoutItem.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.NSCollectionLayoutItem.Copy(Foundation.NSZone) M:UIKit.NSCollectionLayoutItem.get_ClassHandle M:UIKit.NSCollectionLayoutItem.set_ContentInsets(UIKit.NSDirectionalEdgeInsets) M:UIKit.NSCollectionLayoutItem.set_EdgeSpacing(UIKit.NSCollectionLayoutEdgeSpacing) M:UIKit.NSCollectionLayoutSection.#ctor(Foundation.NSObjectFlag) M:UIKit.NSCollectionLayoutSection.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.NSCollectionLayoutSection.Copy(Foundation.NSZone) M:UIKit.NSCollectionLayoutSection.get_ClassHandle M:UIKit.NSCollectionLayoutSection.GetOrthogonalLayoutSectionForMediaItems M:UIKit.NSCollectionLayoutSection.set_BoundarySupplementaryItems(UIKit.NSCollectionLayoutBoundarySupplementaryItem[]) @@ -97522,19 +100977,24 @@ M:UIKit.NSCollectionLayoutSectionVisibleItemsInvalidationHandler.EndInvoke(Syste M:UIKit.NSCollectionLayoutSectionVisibleItemsInvalidationHandler.Invoke(UIKit.INSCollectionLayoutVisibleItem[],CoreGraphics.CGPoint,UIKit.INSCollectionLayoutEnvironment) M:UIKit.NSCollectionLayoutSize.#ctor(Foundation.NSObjectFlag) M:UIKit.NSCollectionLayoutSize.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.NSCollectionLayoutSize.Copy(Foundation.NSZone) M:UIKit.NSCollectionLayoutSize.get_ClassHandle M:UIKit.NSCollectionLayoutSpacing.#ctor(Foundation.NSObjectFlag) M:UIKit.NSCollectionLayoutSpacing.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.NSCollectionLayoutSpacing.Copy(Foundation.NSZone) M:UIKit.NSCollectionLayoutSpacing.get_ClassHandle M:UIKit.NSCollectionLayoutSupplementaryItem.#ctor(Foundation.NSObjectFlag) M:UIKit.NSCollectionLayoutSupplementaryItem.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.NSCollectionLayoutSupplementaryItem.Copy(Foundation.NSZone) M:UIKit.NSCollectionLayoutSupplementaryItem.get_ClassHandle M:UIKit.NSCollectionLayoutSupplementaryItem.set_ZIndex(System.IntPtr) M:UIKit.NSDataAsset.#ctor(Foundation.NSObjectFlag) M:UIKit.NSDataAsset.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.NSDataAsset.Copy(Foundation.NSZone) M:UIKit.NSDataAsset.get_ClassHandle M:UIKit.NSDiffableDataSourceSectionSnapshot`1.#ctor(Foundation.NSObjectFlag) M:UIKit.NSDiffableDataSourceSectionSnapshot`1.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.NSDiffableDataSourceSectionSnapshot`1.Copy(Foundation.NSZone) M:UIKit.NSDiffableDataSourceSectionSnapshot`1.get_ClassHandle M:UIKit.NSDiffableDataSourceSectionTransaction`2.#ctor M:UIKit.NSDiffableDataSourceSectionTransaction`2.#ctor(Foundation.NSObjectFlag) @@ -97543,6 +101003,7 @@ M:UIKit.NSDiffableDataSourceSectionTransaction`2.get_ClassHandle M:UIKit.NSDiffableDataSourceSnapshot`2.#ctor M:UIKit.NSDiffableDataSourceSnapshot`2.#ctor(Foundation.NSObjectFlag) M:UIKit.NSDiffableDataSourceSnapshot`2.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.NSDiffableDataSourceSnapshot`2.Copy(Foundation.NSZone) M:UIKit.NSDiffableDataSourceSnapshot`2.get_ClassHandle M:UIKit.NSDiffableDataSourceTransaction`2.#ctor M:UIKit.NSDiffableDataSourceTransaction`2.#ctor(Foundation.NSObjectFlag) @@ -97562,8 +101023,11 @@ M:UIKit.NSExtendedStringDrawing.WeakDrawString(Foundation.NSString,CoreGraphics. M:UIKit.NSExtendedStringDrawing.WeakGetBoundingRect(Foundation.NSString,CoreGraphics.CGSize,Foundation.NSStringDrawingOptions,Foundation.NSDictionary,Foundation.NSStringDrawingContext) M:UIKit.NSIdentifier.GetIdentifier(UIKit.NSLayoutConstraint) M:UIKit.NSIdentifier.SetIdentifier(UIKit.NSLayoutConstraint,System.String) +M:UIKit.NSLayoutAnchor`1.#ctor(Foundation.NSCoder) M:UIKit.NSLayoutAnchor`1.#ctor(Foundation.NSObjectFlag) M:UIKit.NSLayoutAnchor`1.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.NSLayoutAnchor`1.Copy(Foundation.NSZone) +M:UIKit.NSLayoutAnchor`1.EncodeTo(Foundation.NSCoder) M:UIKit.NSLayoutAnchor`1.get_ClassHandle M:UIKit.NSLayoutConstraint.#ctor M:UIKit.NSLayoutConstraint.#ctor(Foundation.NSObjectFlag) @@ -97693,8 +101157,10 @@ M:UIKit.NSParagraphStyle.#ctor M:UIKit.NSParagraphStyle.#ctor(Foundation.NSCoder) M:UIKit.NSParagraphStyle.#ctor(Foundation.NSObjectFlag) M:UIKit.NSParagraphStyle.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.NSParagraphStyle.Copy(Foundation.NSZone) M:UIKit.NSParagraphStyle.EncodeTo(Foundation.NSCoder) M:UIKit.NSParagraphStyle.get_ClassHandle +M:UIKit.NSParagraphStyle.MutableCopy(Foundation.NSZone) M:UIKit.NSParagraphStyle.set_Alignment(UIKit.UITextAlignment) M:UIKit.NSParagraphStyle.set_AllowsDefaultTighteningForTruncation(System.Boolean) M:UIKit.NSParagraphStyle.set_BaseWritingDirection(Foundation.NSWritingDirection) @@ -97720,6 +101186,7 @@ M:UIKit.NSPreviewInteractionPreviewUpdateEventArgs.set_Ended(System.Boolean) M:UIKit.NSPreviewInteractionPreviewUpdateEventArgs.set_TransitionProgress(System.Runtime.InteropServices.NFloat) M:UIKit.NSShadow.#ctor(Foundation.NSObjectFlag) M:UIKit.NSShadow.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.NSShadow.Copy(Foundation.NSZone) M:UIKit.NSShadow.EncodeTo(Foundation.NSCoder) M:UIKit.NSShadow.get_ClassHandle M:UIKit.NSShadow.set_ShadowBlurRadius(System.Runtime.InteropServices.NFloat) @@ -97738,6 +101205,11 @@ M:UIKit.NSTextAttachment.#ctor(ObjCRuntime.NativeHandle) M:UIKit.NSTextAttachment.EncodeTo(Foundation.NSCoder) M:UIKit.NSTextAttachment.get_AdjustsImageSizeForAccessibilityContentSizeCategory M:UIKit.NSTextAttachment.get_ClassHandle +M:UIKit.NSTextAttachment.GetAttachmentBounds(Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},UIKit.INSTextLocation,UIKit.NSTextContainer,CoreGraphics.CGRect,CoreGraphics.CGPoint) +M:UIKit.NSTextAttachment.GetAttachmentBounds(UIKit.NSTextContainer,CoreGraphics.CGRect,CoreGraphics.CGPoint,System.UIntPtr) +M:UIKit.NSTextAttachment.GetImageForBounds(CoreGraphics.CGRect,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},UIKit.INSTextLocation,UIKit.NSTextContainer) +M:UIKit.NSTextAttachment.GetImageForBounds(CoreGraphics.CGRect,UIKit.NSTextContainer,System.UIntPtr) +M:UIKit.NSTextAttachment.GetViewProvider(UIKit.UIView,UIKit.INSTextLocation,UIKit.NSTextContainer) M:UIKit.NSTextAttachment.set_AdjustsImageSizeForAccessibilityContentSizeCategory(System.Boolean) M:UIKit.NSTextAttachment.set_AllowsTextAttachmentView(System.Boolean) M:UIKit.NSTextAttachment.set_Bounds(CoreGraphics.CGRect) @@ -97764,6 +101236,7 @@ M:UIKit.NSTextContainer.Dispose(System.Boolean) M:UIKit.NSTextContainer.EncodeTo(Foundation.NSCoder) M:UIKit.NSTextContainer.get_ClassHandle M:UIKit.NSTextContainer.get_IsSimpleRectangularTextContainer +M:UIKit.NSTextContainer.get_LayoutOrientation M:UIKit.NSTextContainer.set_ExclusionPaths(UIKit.UIBezierPath[]) M:UIKit.NSTextContainer.set_HeightTracksTextView(System.Boolean) M:UIKit.NSTextContainer.set_LayoutManager(UIKit.NSLayoutManager) @@ -97774,19 +101247,26 @@ M:UIKit.NSTextContainer.set_Size(CoreGraphics.CGSize) M:UIKit.NSTextContainer.set_WidthTracksTextView(System.Boolean) M:UIKit.NSTextContentManager.#ctor(Foundation.NSObjectFlag) M:UIKit.NSTextContentManager.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.NSTextContentManager.AdjustedRange(UIKit.NSTextRange,System.Boolean) M:UIKit.NSTextContentManager.Dispose(System.Boolean) M:UIKit.NSTextContentManager.EncodeTo(Foundation.NSCoder) +M:UIKit.NSTextContentManager.EnumerateTextElements(UIKit.INSTextLocation,UIKit.NSTextContentManagerEnumerationOptions,System.Func{UIKit.NSTextElement,System.Boolean}) M:UIKit.NSTextContentManager.get_ClassHandle M:UIKit.NSTextContentManager.get_Delegate +M:UIKit.NSTextContentManager.get_DocumentRange M:UIKit.NSTextContentManager.get_StorageUnsupportedAttributeAddedNotification +M:UIKit.NSTextContentManager.GetLocation(UIKit.INSTextLocation,System.IntPtr) +M:UIKit.NSTextContentManager.GetOffset(UIKit.INSTextLocation,UIKit.INSTextLocation) M:UIKit.NSTextContentManager.Notifications.ObserveStorageUnsupportedAttributeAdded(Foundation.NSObject,System.EventHandler{Foundation.NSNotificationEventArgs}) M:UIKit.NSTextContentManager.Notifications.ObserveStorageUnsupportedAttributeAdded(System.EventHandler{Foundation.NSNotificationEventArgs}) M:UIKit.NSTextContentManager.PerformEditingTransactionAsync +M:UIKit.NSTextContentManager.ReplaceContents(UIKit.NSTextRange,UIKit.NSTextElement[]) M:UIKit.NSTextContentManager.set_AutomaticallySynchronizesTextLayoutManagers(System.Boolean) M:UIKit.NSTextContentManager.set_AutomaticallySynchronizesToBackingStore(System.Boolean) M:UIKit.NSTextContentManager.set_Delegate(UIKit.INSTextContentManagerDelegate) M:UIKit.NSTextContentManager.set_PrimaryTextLayoutManager(UIKit.NSTextLayoutManager) M:UIKit.NSTextContentManager.set_WeakDelegate(Foundation.NSObject) +M:UIKit.NSTextContentManager.Synchronize(System.Action{Foundation.NSError}) M:UIKit.NSTextContentManager.SynchronizeTextLayoutManagersAsync M:UIKit.NSTextContentManagerDelegate_Extensions.GetTextContentManager(UIKit.INSTextContentManagerDelegate,UIKit.NSTextContentManager,UIKit.INSTextLocation) M:UIKit.NSTextContentManagerDelegate_Extensions.ShouldEnumerateTextElement(UIKit.INSTextContentManagerDelegate,UIKit.NSTextContentManager,UIKit.NSTextElement,UIKit.NSTextContentManagerEnumerationOptions) @@ -97802,6 +101282,9 @@ M:UIKit.NSTextContentStorage.#ctor(ObjCRuntime.NativeHandle) M:UIKit.NSTextContentStorage.Dispose(System.Boolean) M:UIKit.NSTextContentStorage.get_ClassHandle M:UIKit.NSTextContentStorage.get_Delegate +M:UIKit.NSTextContentStorage.get_TextStorage +M:UIKit.NSTextContentStorage.PerformEditingTransaction(UIKit.NSTextStorage,System.Action) +M:UIKit.NSTextContentStorage.ProcessEditing(UIKit.NSTextStorage,UIKit.NSTextStorageEditActions,Foundation.NSRange,System.IntPtr,Foundation.NSRange) M:UIKit.NSTextContentStorage.set_AttributedString(Foundation.NSAttributedString) M:UIKit.NSTextContentStorage.set_Delegate(UIKit.INSTextContentStorageDelegate) M:UIKit.NSTextContentStorage.set_TextStorage(UIKit.NSTextStorage) @@ -97841,8 +101324,18 @@ M:UIKit.NSTextLayoutManager.#ctor(Foundation.NSObjectFlag) M:UIKit.NSTextLayoutManager.#ctor(ObjCRuntime.NativeHandle) M:UIKit.NSTextLayoutManager.Dispose(System.Boolean) M:UIKit.NSTextLayoutManager.EncodeTo(Foundation.NSCoder) +M:UIKit.NSTextLayoutManager.EnumerateCaretOffsets(UIKit.INSTextLocation,UIKit.NSTextSelectionDataSourceEnumerateCaretOffsetsDelegate) +M:UIKit.NSTextLayoutManager.EnumerateContainerBoundaries(UIKit.INSTextLocation,System.Boolean,UIKit.NSTextSelectionDataSourceEnumerateContainerBoundariesDelegate) +M:UIKit.NSTextLayoutManager.EnumerateSubstrings(UIKit.INSTextLocation,Foundation.NSStringEnumerationOptions,UIKit.NSTextSelectionDataSourceEnumerateSubstringsDelegate) M:UIKit.NSTextLayoutManager.get_ClassHandle M:UIKit.NSTextLayoutManager.get_Delegate +M:UIKit.NSTextLayoutManager.get_DocumentRange +M:UIKit.NSTextLayoutManager.GetBaseWritingDirection(UIKit.INSTextLocation) +M:UIKit.NSTextLayoutManager.GetLineFragmentRange(CoreGraphics.CGPoint,UIKit.INSTextLocation) +M:UIKit.NSTextLayoutManager.GetLocation(UIKit.INSTextLocation,System.IntPtr) +M:UIKit.NSTextLayoutManager.GetOffsetFromLocation(UIKit.INSTextLocation,UIKit.INSTextLocation) +M:UIKit.NSTextLayoutManager.GetTextLayoutOrientation(UIKit.INSTextLocation) +M:UIKit.NSTextLayoutManager.GetTextRange(UIKit.NSTextSelectionGranularity,UIKit.INSTextLocation) M:UIKit.NSTextLayoutManager.set_Delegate(UIKit.INSTextLayoutManagerDelegate) M:UIKit.NSTextLayoutManager.set_LayoutQueue(Foundation.NSOperationQueue) M:UIKit.NSTextLayoutManager.set_LimitsLayoutForSuspiciousContents(System.Boolean) @@ -97880,6 +101373,7 @@ M:UIKit.NSTextList.#ctor(ObjCRuntime.NativeHandle) M:UIKit.NSTextList.#ctor(System.String) M:UIKit.NSTextList.#ctor(UIKit.NSTextListMarkerFormats,UIKit.NSTextListOptions) M:UIKit.NSTextList.#ctor(UIKit.NSTextListMarkerFormats) +M:UIKit.NSTextList.Copy(Foundation.NSZone) M:UIKit.NSTextList.EncodeTo(Foundation.NSCoder) M:UIKit.NSTextList.get_ClassHandle M:UIKit.NSTextList.get_CustomMarkerFormat @@ -97982,8 +101476,11 @@ M:UIKit.NSTextStorageEventArgs.set_Delta(System.IntPtr) M:UIKit.NSTextStorageEventArgs.set_EditedMask(UIKit.NSTextStorageEditActions) M:UIKit.NSTextStorageEventArgs.set_EditedRange(Foundation.NSRange) M:UIKit.NSTextTab.#ctor +M:UIKit.NSTextTab.#ctor(Foundation.NSCoder) M:UIKit.NSTextTab.#ctor(Foundation.NSObjectFlag) M:UIKit.NSTextTab.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.NSTextTab.Copy(Foundation.NSZone) +M:UIKit.NSTextTab.EncodeTo(Foundation.NSCoder) M:UIKit.NSTextTab.get_ClassHandle M:UIKit.NSTextTab.get_ColumnTerminatorsAttributeName M:UIKit.NSTextViewportLayoutController.#ctor(Foundation.NSObjectFlag) @@ -98126,6 +101623,7 @@ M:UIKit.UIAccessibilityCustomRotorSearchPredicate.set_SearchDirection(UIKit.UIAc M:UIKit.UIAccessibilityElement.#ctor(Foundation.NSObjectFlag) M:UIKit.UIAccessibilityElement.#ctor(ObjCRuntime.NativeHandle) M:UIKit.UIAccessibilityElement.Dispose(System.Boolean) +M:UIKit.UIAccessibilityElement.get_AccessibilityIdentifier M:UIKit.UIAccessibilityElement.get_ClassHandle M:UIKit.UIAccessibilityElement.set_AccessibilityContainer(Foundation.NSObject) M:UIKit.UIAccessibilityElement.set_AccessibilityFrame(CoreGraphics.CGRect) @@ -98152,12 +101650,15 @@ M:UIKit.UIAction.#ctor(Foundation.NSCoder) M:UIKit.UIAction.#ctor(Foundation.NSObjectFlag) M:UIKit.UIAction.#ctor(ObjCRuntime.NativeHandle) M:UIKit.UIAction.get_ClassHandle +M:UIKit.UIAction.get_PresentationSourceItem +M:UIKit.UIAction.get_SelectedImage M:UIKit.UIAction.set_Attributes(UIKit.UIMenuElementAttributes) M:UIKit.UIAction.set_DiscoverabilityTitle(System.String) M:UIKit.UIAction.set_Image(UIKit.UIImage) M:UIKit.UIAction.set_SelectedImage(UIKit.UIImage) M:UIKit.UIAction.set_State(UIKit.UIMenuElementState) M:UIKit.UIAction.set_Title(System.String) +M:UIKit.UIAction.Target(Foundation.NSObject,Foundation.NSObject) M:UIKit.UIActionHandler.#ctor(System.Object,System.IntPtr) M:UIKit.UIActionHandler.BeginInvoke(UIKit.UIAction,System.AsyncCallback,System.Object) M:UIKit.UIActionHandler.EndInvoke(System.IAsyncResult) @@ -98227,6 +101728,7 @@ M:UIKit.UIActivityIndicatorView.#ctor M:UIKit.UIActivityIndicatorView.#ctor(Foundation.NSObjectFlag) M:UIKit.UIActivityIndicatorView.#ctor(ObjCRuntime.NativeHandle) M:UIKit.UIActivityIndicatorView.AppearanceWhenContainedIn(System.Type[]) +M:UIKit.UIActivityIndicatorView.EncodeTo(Foundation.NSCoder) M:UIKit.UIActivityIndicatorView.get_Appearance M:UIKit.UIActivityIndicatorView.get_ClassHandle M:UIKit.UIActivityIndicatorView.get_IsAnimating @@ -98244,9 +101746,21 @@ M:UIKit.UIActivityIndicatorView.UIActivityIndicatorViewAppearance.set_Color(UIKi M:UIKit.UIActivityItemProvider.#ctor(Foundation.NSObjectFlag) M:UIKit.UIActivityItemProvider.#ctor(ObjCRuntime.NativeHandle) M:UIKit.UIActivityItemProvider.get_ClassHandle +M:UIKit.UIActivityItemProvider.GetDataTypeIdentifierForActivity(UIKit.UIActivityViewController,Foundation.NSString) +M:UIKit.UIActivityItemProvider.GetItemForActivity(UIKit.UIActivityViewController,Foundation.NSString) +M:UIKit.UIActivityItemProvider.GetLinkMetadata(UIKit.UIActivityViewController) +M:UIKit.UIActivityItemProvider.GetPlaceholderData(UIKit.UIActivityViewController) +M:UIKit.UIActivityItemProvider.GetSubjectForActivity(UIKit.UIActivityViewController,Foundation.NSString) +M:UIKit.UIActivityItemProvider.GetThumbnailImageForActivity(UIKit.UIActivityViewController,Foundation.NSString,CoreGraphics.CGSize) M:UIKit.UIActivityItemsConfiguration.#ctor(Foundation.NSObjectFlag) M:UIKit.UIActivityItemsConfiguration.#ctor(ObjCRuntime.NativeHandle) M:UIKit.UIActivityItemsConfiguration.get_ClassHandle +M:UIKit.UIActivityItemsConfiguration.get_ItemProvidersForActivityItemsConfiguration +M:UIKit.UIActivityItemsConfiguration.GetActivityItemsConfigurationMetadata(Foundation.NSString) +M:UIKit.UIActivityItemsConfiguration.GetActivityItemsConfigurationMetadata(System.IntPtr,Foundation.NSString) +M:UIKit.UIActivityItemsConfiguration.GetActivityItemsConfigurationPreview(System.IntPtr,Foundation.NSString,CoreGraphics.CGSize) +M:UIKit.UIActivityItemsConfiguration.GetActivityItemsConfigurationSupportsInteraction(Foundation.NSString) +M:UIKit.UIActivityItemsConfiguration.GetApplicationActivitiesForActivityItemsConfiguration M:UIKit.UIActivityItemsConfiguration.set_ApplicationActivitiesProvider(System.Func{UIKit.UIActivity[]}) M:UIKit.UIActivityItemsConfiguration.set_LocalObject(Foundation.NSObject) M:UIKit.UIActivityItemsConfiguration.set_MetadataProvider(UIKit.UIActivityItemsConfigurationMetadataProviderHandler) @@ -98346,6 +101860,7 @@ M:UIKit.UIAdaptivePresentationControllerDelegate.WillPresent(UIKit.UIPresentatio M:UIKit.UIAlertAction.#ctor M:UIKit.UIAlertAction.#ctor(Foundation.NSObjectFlag) M:UIKit.UIAlertAction.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UIAlertAction.Copy(Foundation.NSZone) M:UIKit.UIAlertAction.get_AccessibilityIdentifier M:UIKit.UIAlertAction.get_ClassHandle M:UIKit.UIAlertAction.get_Enabled @@ -98680,11 +102195,14 @@ M:UIKit.UIApplicationRestorationHandler.Invoke(Foundation.NSObject[]) M:UIKit.UIApplicationShortcutIcon.#ctor M:UIKit.UIApplicationShortcutIcon.#ctor(Foundation.NSObjectFlag) M:UIKit.UIApplicationShortcutIcon.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UIApplicationShortcutIcon.Copy(Foundation.NSZone) M:UIKit.UIApplicationShortcutIcon.FromContact(Contacts.CNContact) M:UIKit.UIApplicationShortcutIcon.get_ClassHandle M:UIKit.UIApplicationShortcutItem.#ctor(Foundation.NSObjectFlag) M:UIKit.UIApplicationShortcutItem.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UIApplicationShortcutItem.Copy(Foundation.NSZone) M:UIKit.UIApplicationShortcutItem.get_ClassHandle +M:UIKit.UIApplicationShortcutItem.MutableCopy(Foundation.NSZone) M:UIKit.UIApplicationShortcutItem.set_Icon(UIKit.UIApplicationShortcutIcon) M:UIKit.UIApplicationShortcutItem.set_LocalizedSubtitle(System.String) M:UIKit.UIApplicationShortcutItem.set_LocalizedTitle(System.String) @@ -98703,6 +102221,7 @@ M:UIKit.UIAttachmentBehavior.set_Length(System.Runtime.InteropServices.NFloat) M:UIKit.UIBackgroundConfiguration.#ctor(Foundation.NSCoder) M:UIKit.UIBackgroundConfiguration.#ctor(Foundation.NSObjectFlag) M:UIKit.UIBackgroundConfiguration.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UIBackgroundConfiguration.Copy(Foundation.NSZone) M:UIKit.UIBackgroundConfiguration.EncodeTo(Foundation.NSCoder) M:UIKit.UIBackgroundConfiguration.get_ClassHandle M:UIKit.UIBackgroundConfiguration.set_BackgroundColor(UIKit.UIColor) @@ -98720,17 +102239,21 @@ M:UIKit.UIBackgroundConfiguration.set_StrokeWidth(System.Runtime.InteropServices M:UIKit.UIBackgroundConfiguration.set_VisualEffect(UIKit.UIVisualEffect) M:UIKit.UIBandSelectionInteraction.#ctor(Foundation.NSObjectFlag) M:UIKit.UIBandSelectionInteraction.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UIBandSelectionInteraction.DidMoveToView(UIKit.UIView) M:UIKit.UIBandSelectionInteraction.Dispose(System.Boolean) M:UIKit.UIBandSelectionInteraction.get_ClassHandle M:UIKit.UIBandSelectionInteraction.get_Enabled +M:UIKit.UIBandSelectionInteraction.get_View M:UIKit.UIBandSelectionInteraction.set_Enabled(System.Boolean) M:UIKit.UIBandSelectionInteraction.set_ShouldBeginHandler(UIKit.UIBandSelectionInteractionShouldBeginHandler) +M:UIKit.UIBandSelectionInteraction.WillMoveToView(UIKit.UIView) M:UIKit.UIBandSelectionInteractionShouldBeginHandler.#ctor(System.Object,System.IntPtr) M:UIKit.UIBandSelectionInteractionShouldBeginHandler.BeginInvoke(UIKit.UIBandSelectionInteraction,CoreGraphics.CGPoint,System.AsyncCallback,System.Object) M:UIKit.UIBandSelectionInteractionShouldBeginHandler.EndInvoke(System.IAsyncResult) M:UIKit.UIBandSelectionInteractionShouldBeginHandler.Invoke(UIKit.UIBandSelectionInteraction,CoreGraphics.CGPoint) M:UIKit.UIBarAppearance.#ctor(Foundation.NSObjectFlag) M:UIKit.UIBarAppearance.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UIBarAppearance.Copy(Foundation.NSZone) M:UIKit.UIBarAppearance.EncodeTo(Foundation.NSCoder) M:UIKit.UIBarAppearance.get_ClassHandle M:UIKit.UIBarAppearance.set_BackgroundColor(UIKit.UIColor) @@ -98748,6 +102271,7 @@ M:UIKit.UIBarButtonItem.#ctor(UIKit.UIImage,UIKit.UIBarButtonItemStyle,System.Ev M:UIKit.UIBarButtonItem.add_Clicked(System.EventHandler) M:UIKit.UIBarButtonItem.AppearanceWhenContainedIn(System.Type[]) M:UIKit.UIBarButtonItem.Dispose(System.Boolean) +M:UIKit.UIBarButtonItem.EncodeTo(Foundation.NSCoder) M:UIKit.UIBarButtonItem.get_Appearance M:UIKit.UIBarButtonItem.get_ClassHandle M:UIKit.UIBarButtonItem.get_Enabled @@ -98806,11 +102330,13 @@ M:UIKit.UIBarButtonItem.UIBarButtonItemAppearance.SetBackgroundVerticalPositionA M:UIKit.UIBarButtonItem.UIBarButtonItemAppearance.SetTitlePositionAdjustment(UIKit.UIOffset,UIKit.UIBarMetrics) M:UIKit.UIBarButtonItemAppearance.#ctor(Foundation.NSObjectFlag) M:UIKit.UIBarButtonItemAppearance.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UIBarButtonItemAppearance.Copy(Foundation.NSZone) M:UIKit.UIBarButtonItemAppearance.EncodeTo(Foundation.NSCoder) M:UIKit.UIBarButtonItemAppearance.get_ClassHandle M:UIKit.UIBarButtonItemGroup.#ctor M:UIKit.UIBarButtonItemGroup.#ctor(Foundation.NSObjectFlag) M:UIKit.UIBarButtonItemGroup.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UIBarButtonItemGroup.EncodeTo(Foundation.NSCoder) M:UIKit.UIBarButtonItemGroup.get_ClassHandle M:UIKit.UIBarButtonItemGroup.get_DisplayingRepresentativeItem M:UIKit.UIBarButtonItemGroup.get_Hidden @@ -98830,6 +102356,7 @@ M:UIKit.UIBarItem.#ctor(Foundation.NSObjectFlag) M:UIKit.UIBarItem.#ctor(ObjCRuntime.NativeHandle) M:UIKit.UIBarItem.AccessibilityActivate M:UIKit.UIBarItem.AppearanceWhenContainedIn(System.Type[]) +M:UIKit.UIBarItem.EncodeTo(Foundation.NSCoder) M:UIKit.UIBarItem.get_AccessibilityActivationPoint M:UIKit.UIBarItem.get_AccessibilityAttributedHint M:UIKit.UIBarItem.get_AccessibilityAttributedLabel @@ -99024,6 +102551,7 @@ M:UIKit.UIBarPositioningDelegate.#ctor(ObjCRuntime.NativeHandle) M:UIKit.UIBarPositioningDelegate.GetPositionForBar(UIKit.IUIBarPositioning) M:UIKit.UIBezierPath.#ctor(Foundation.NSObjectFlag) M:UIKit.UIBezierPath.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UIBezierPath.Copy(Foundation.NSZone) M:UIKit.UIBezierPath.EncodeTo(Foundation.NSCoder) M:UIKit.UIBezierPath.get_ClassHandle M:UIKit.UIBezierPath.get_Empty @@ -99097,6 +102625,7 @@ M:UIKit.UIButton.UIButtonAppearance.TitleShadowColor(UIKit.UIControlState) M:UIKit.UIButtonConfiguration.#ctor(Foundation.NSCoder) M:UIKit.UIButtonConfiguration.#ctor(Foundation.NSObjectFlag) M:UIKit.UIButtonConfiguration.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UIButtonConfiguration.Copy(Foundation.NSZone) M:UIKit.UIButtonConfiguration.EncodeTo(Foundation.NSCoder) M:UIKit.UIButtonConfiguration.get_ClassHandle M:UIKit.UIButtonConfiguration.set_ActivityIndicatorColorTransformer(UIKit.UIConfigurationColorTransformerHandler) @@ -99206,6 +102735,7 @@ M:UIKit.UICalendarViewDelegate.DidChangeVisibleDateComponents(UIKit.UICalendarVi M:UIKit.UICalendarViewDelegate.GetDecoration(UIKit.UICalendarView,Foundation.NSDateComponents) M:UIKit.UICellAccessory.#ctor(Foundation.NSObjectFlag) M:UIKit.UICellAccessory.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UICellAccessory.Copy(Foundation.NSZone) M:UIKit.UICellAccessory.EncodeTo(Foundation.NSCoder) M:UIKit.UICellAccessory.get_ClassHandle M:UIKit.UICellAccessory.get_IsHidden @@ -99341,6 +102871,7 @@ M:UIKit.UICollectionElementKindSectionKey.get_Footer M:UIKit.UICollectionElementKindSectionKey.get_Header M:UIKit.UICollectionLayoutListConfiguration.#ctor(Foundation.NSObjectFlag) M:UIKit.UICollectionLayoutListConfiguration.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UICollectionLayoutListConfiguration.Copy(Foundation.NSZone) M:UIKit.UICollectionLayoutListConfiguration.Dispose(System.Boolean) M:UIKit.UICollectionLayoutListConfiguration.get_ClassHandle M:UIKit.UICollectionLayoutListConfiguration.set_BackgroundColor(UIKit.UIColor) @@ -99366,6 +102897,7 @@ M:UIKit.UICollectionLayoutSectionOrthogonalScrollingDecelerationRate.get_Normal M:UIKit.UICollectionLayoutSectionOrthogonalScrollingProperties.#ctor M:UIKit.UICollectionLayoutSectionOrthogonalScrollingProperties.#ctor(Foundation.NSObjectFlag) M:UIKit.UICollectionLayoutSectionOrthogonalScrollingProperties.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UICollectionLayoutSectionOrthogonalScrollingProperties.Copy(Foundation.NSZone) M:UIKit.UICollectionLayoutSectionOrthogonalScrollingProperties.get_ClassHandle M:UIKit.UICollectionLayoutSectionOrthogonalScrollingProperties.set_Bounce(UIKit.UICollectionLayoutSectionOrthogonalScrollingBounce) M:UIKit.UICollectionLayoutSectionOrthogonalScrollingProperties.set_DecelerationRate(System.Double) @@ -99405,7 +102937,12 @@ M:UIKit.UICollectionView.GetAppearance(UIKit.UITraitCollection) M:UIKit.UICollectionView.GetAppearance``1 M:UIKit.UICollectionView.GetAppearance``1(UIKit.UITraitCollection,System.Type[]) M:UIKit.UICollectionView.GetAppearance``1(UIKit.UITraitCollection) +M:UIKit.UICollectionView.GetDataSourceIndexPath(Foundation.NSIndexPath) +M:UIKit.UICollectionView.GetDataSourceSectionIndex(System.IntPtr) +M:UIKit.UICollectionView.GetPresentationIndexPath(Foundation.NSIndexPath) +M:UIKit.UICollectionView.GetPresentationSectionIndex(System.IntPtr) M:UIKit.UICollectionView.PerformBatchUpdatesAsync(System.Action) +M:UIKit.UICollectionView.PerformUsingPresentationValues(System.Action) M:UIKit.UICollectionView.RegisterClassForCell(System.Type,Foundation.NSString) M:UIKit.UICollectionView.RegisterClassForCell(System.Type,System.String) M:UIKit.UICollectionView.RegisterClassForSupplementaryView(System.Type,Foundation.NSString,Foundation.NSString) @@ -99489,6 +103026,7 @@ M:UIKit.UICollectionViewCompositionalLayout.set_Configuration(UIKit.UICollection M:UIKit.UICollectionViewCompositionalLayoutConfiguration.#ctor M:UIKit.UICollectionViewCompositionalLayoutConfiguration.#ctor(Foundation.NSObjectFlag) M:UIKit.UICollectionViewCompositionalLayoutConfiguration.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UICollectionViewCompositionalLayoutConfiguration.Copy(Foundation.NSZone) M:UIKit.UICollectionViewCompositionalLayoutConfiguration.get_ClassHandle M:UIKit.UICollectionViewCompositionalLayoutConfiguration.set_BoundarySupplementaryItems(UIKit.NSCollectionLayoutBoundarySupplementaryItem[]) M:UIKit.UICollectionViewCompositionalLayoutConfiguration.set_ContentInsetsReference(UIKit.UIContentInsetsReference) @@ -99501,14 +103039,48 @@ M:UIKit.UICollectionViewCompositionalLayoutSectionProvider.Invoke(System.IntPtr, M:UIKit.UICollectionViewController.#ctor M:UIKit.UICollectionViewController.#ctor(Foundation.NSObjectFlag) M:UIKit.UICollectionViewController.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UICollectionViewController.CanEditItem(UIKit.UICollectionView,Foundation.NSIndexPath) +M:UIKit.UICollectionViewController.CanFocusItem(UIKit.UICollectionView,Foundation.NSIndexPath) +M:UIKit.UICollectionViewController.CanMoveItem(UIKit.UICollectionView,Foundation.NSIndexPath) +M:UIKit.UICollectionViewController.CanPerformAction(UIKit.UICollectionView,ObjCRuntime.Selector,Foundation.NSIndexPath,Foundation.NSObject) +M:UIKit.UICollectionViewController.CanPerformPrimaryActionForItem(UIKit.UICollectionView,Foundation.NSIndexPath) +M:UIKit.UICollectionViewController.CellDisplayingEnded(UIKit.UICollectionView,UIKit.UICollectionViewCell,Foundation.NSIndexPath) M:UIKit.UICollectionViewController.DecelerationEnded(UIKit.UIScrollView) M:UIKit.UICollectionViewController.DecelerationStarted(UIKit.UIScrollView) +M:UIKit.UICollectionViewController.DidBeginMultipleSelectionInteraction(UIKit.UICollectionView,Foundation.NSIndexPath) M:UIKit.UICollectionViewController.DidChangeAdjustedContentInset(UIKit.UIScrollView) +M:UIKit.UICollectionViewController.DidEndMultipleSelectionInteraction(UIKit.UICollectionView) +M:UIKit.UICollectionViewController.DidUpdateFocus(UIKit.UICollectionView,UIKit.UICollectionViewFocusUpdateContext,UIKit.UIFocusAnimationCoordinator) M:UIKit.UICollectionViewController.DidZoom(UIKit.UIScrollView) M:UIKit.UICollectionViewController.DraggingEnded(UIKit.UIScrollView,System.Boolean) M:UIKit.UICollectionViewController.DraggingStarted(UIKit.UIScrollView) M:UIKit.UICollectionViewController.EncodeTo(Foundation.NSCoder) M:UIKit.UICollectionViewController.get_ClassHandle +M:UIKit.UICollectionViewController.GetCell(UIKit.UICollectionView,Foundation.NSIndexPath) +M:UIKit.UICollectionViewController.GetContextMenuConfiguration(UIKit.UICollectionView,Foundation.NSIndexPath,CoreGraphics.CGPoint) +M:UIKit.UICollectionViewController.GetContextMenuConfiguration(UIKit.UICollectionView,Foundation.NSIndexPath[],CoreGraphics.CGPoint) +M:UIKit.UICollectionViewController.GetContextMenuConfigurationDismissalPreview(UIKit.UICollectionView,UIKit.UIContextMenuConfiguration,Foundation.NSIndexPath) +M:UIKit.UICollectionViewController.GetContextMenuConfigurationHighlightPreview(UIKit.UICollectionView,UIKit.UIContextMenuConfiguration,Foundation.NSIndexPath) +M:UIKit.UICollectionViewController.GetIndexPath(UIKit.UICollectionView,System.String,System.IntPtr) +M:UIKit.UICollectionViewController.GetIndexPathForPreferredFocusedView(UIKit.UICollectionView) +M:UIKit.UICollectionViewController.GetIndexTitles(UIKit.UICollectionView) +M:UIKit.UICollectionViewController.GetItemsCount(UIKit.UICollectionView,System.IntPtr) +M:UIKit.UICollectionViewController.GetPreviewForDismissingContextMenu(UIKit.UICollectionView,UIKit.UIContextMenuConfiguration) +M:UIKit.UICollectionViewController.GetPreviewForHighlightingContextMenu(UIKit.UICollectionView,UIKit.UIContextMenuConfiguration) +M:UIKit.UICollectionViewController.GetSceneActivationConfigurationForItem(UIKit.UICollectionView,Foundation.NSIndexPath,CoreGraphics.CGPoint) +M:UIKit.UICollectionViewController.GetSelectionFollowsFocusForItem(UIKit.UICollectionView,Foundation.NSIndexPath) +M:UIKit.UICollectionViewController.GetTargetContentOffset(UIKit.UICollectionView,CoreGraphics.CGPoint) +M:UIKit.UICollectionViewController.GetTargetIndexPathForMove(UIKit.UICollectionView,Foundation.NSIndexPath,Foundation.NSIndexPath) +M:UIKit.UICollectionViewController.GetTargetIndexPathForMoveOfItemFromOriginalIndexPath(UIKit.UICollectionView,Foundation.NSIndexPath,Foundation.NSIndexPath,Foundation.NSIndexPath) +M:UIKit.UICollectionViewController.GetViewForSupplementaryElement(UIKit.UICollectionView,Foundation.NSString,Foundation.NSIndexPath) +M:UIKit.UICollectionViewController.ItemDeselected(UIKit.UICollectionView,Foundation.NSIndexPath) +M:UIKit.UICollectionViewController.ItemHighlighted(UIKit.UICollectionView,Foundation.NSIndexPath) +M:UIKit.UICollectionViewController.ItemSelected(UIKit.UICollectionView,Foundation.NSIndexPath) +M:UIKit.UICollectionViewController.ItemUnhighlighted(UIKit.UICollectionView,Foundation.NSIndexPath) +M:UIKit.UICollectionViewController.MoveItem(UIKit.UICollectionView,Foundation.NSIndexPath,Foundation.NSIndexPath) +M:UIKit.UICollectionViewController.NumberOfSections(UIKit.UICollectionView) +M:UIKit.UICollectionViewController.PerformAction(UIKit.UICollectionView,ObjCRuntime.Selector,Foundation.NSIndexPath,Foundation.NSObject) +M:UIKit.UICollectionViewController.PerformPrimaryActionForItem(UIKit.UICollectionView,Foundation.NSIndexPath) M:UIKit.UICollectionViewController.ScrollAnimationEnded(UIKit.UIScrollView) M:UIKit.UICollectionViewController.Scrolled(UIKit.UIScrollView) M:UIKit.UICollectionViewController.ScrolledToTop(UIKit.UIScrollView) @@ -99516,9 +103088,23 @@ M:UIKit.UICollectionViewController.set_ClearsSelectionOnViewWillAppear(System.Bo M:UIKit.UICollectionViewController.set_CollectionView(UIKit.UICollectionView) M:UIKit.UICollectionViewController.set_InstallsStandardGestureForInteractiveMovement(System.Boolean) M:UIKit.UICollectionViewController.set_UseLayoutToLayoutNavigationTransitions(System.Boolean) +M:UIKit.UICollectionViewController.ShouldBeginMultipleSelectionInteraction(UIKit.UICollectionView,Foundation.NSIndexPath) +M:UIKit.UICollectionViewController.ShouldDeselectItem(UIKit.UICollectionView,Foundation.NSIndexPath) +M:UIKit.UICollectionViewController.ShouldHighlightItem(UIKit.UICollectionView,Foundation.NSIndexPath) M:UIKit.UICollectionViewController.ShouldScrollToTop(UIKit.UIScrollView) +M:UIKit.UICollectionViewController.ShouldSelectItem(UIKit.UICollectionView,Foundation.NSIndexPath) +M:UIKit.UICollectionViewController.ShouldShowMenu(UIKit.UICollectionView,Foundation.NSIndexPath) +M:UIKit.UICollectionViewController.ShouldSpringLoadItem(UIKit.UICollectionView,Foundation.NSIndexPath,UIKit.IUISpringLoadedInteractionContext) +M:UIKit.UICollectionViewController.ShouldUpdateFocus(UIKit.UICollectionView,UIKit.UICollectionViewFocusUpdateContext) +M:UIKit.UICollectionViewController.SupplementaryViewDisplayingEnded(UIKit.UICollectionView,UIKit.UICollectionReusableView,Foundation.NSString,Foundation.NSIndexPath) +M:UIKit.UICollectionViewController.TransitionLayout(UIKit.UICollectionView,UIKit.UICollectionViewLayout,UIKit.UICollectionViewLayout) M:UIKit.UICollectionViewController.ViewForZoomingInScrollView(UIKit.UIScrollView) +M:UIKit.UICollectionViewController.WillDisplayCell(UIKit.UICollectionView,UIKit.UICollectionViewCell,Foundation.NSIndexPath) +M:UIKit.UICollectionViewController.WillDisplayContextMenu(UIKit.UICollectionView,UIKit.UIContextMenuConfiguration,UIKit.IUIContextMenuInteractionAnimating) +M:UIKit.UICollectionViewController.WillDisplaySupplementaryView(UIKit.UICollectionView,UIKit.UICollectionReusableView,System.String,Foundation.NSIndexPath) +M:UIKit.UICollectionViewController.WillEndContextMenuInteraction(UIKit.UICollectionView,UIKit.UIContextMenuConfiguration,UIKit.IUIContextMenuInteractionAnimating) M:UIKit.UICollectionViewController.WillEndDragging(UIKit.UIScrollView,CoreGraphics.CGPoint,CoreGraphics.CGPoint@) +M:UIKit.UICollectionViewController.WillPerformPreviewAction(UIKit.UICollectionView,UIKit.UIContextMenuConfiguration,UIKit.IUIContextMenuInteractionCommitAnimating) M:UIKit.UICollectionViewController.ZoomingEnded(UIKit.UIScrollView,UIKit.UIView,System.Runtime.InteropServices.NFloat) M:UIKit.UICollectionViewController.ZoomingStarted(UIKit.UIScrollView,UIKit.UIView) M:UIKit.UICollectionViewDataSource_Extensions.CanMoveItem(UIKit.IUICollectionViewDataSource,UIKit.UICollectionView,Foundation.NSIndexPath) @@ -99655,7 +103241,15 @@ M:UIKit.UICollectionViewDiffableDataSource`2.#ctor(Foundation.NSObjectFlag) M:UIKit.UICollectionViewDiffableDataSource`2.#ctor(ObjCRuntime.NativeHandle) M:UIKit.UICollectionViewDiffableDataSource`2.ApplySnapshotAsync(UIKit.NSDiffableDataSourceSnapshot{`0,`1},System.Boolean) M:UIKit.UICollectionViewDiffableDataSource`2.ApplySnapshotUsingReloadDataAsync(UIKit.NSDiffableDataSourceSnapshot{`0,`1}) +M:UIKit.UICollectionViewDiffableDataSource`2.CanMoveItem(UIKit.UICollectionView,Foundation.NSIndexPath) M:UIKit.UICollectionViewDiffableDataSource`2.get_ClassHandle +M:UIKit.UICollectionViewDiffableDataSource`2.GetCell(UIKit.UICollectionView,Foundation.NSIndexPath) +M:UIKit.UICollectionViewDiffableDataSource`2.GetIndexPath(UIKit.UICollectionView,System.String,System.IntPtr) +M:UIKit.UICollectionViewDiffableDataSource`2.GetIndexTitles(UIKit.UICollectionView) +M:UIKit.UICollectionViewDiffableDataSource`2.GetItemsCount(UIKit.UICollectionView,System.IntPtr) +M:UIKit.UICollectionViewDiffableDataSource`2.GetViewForSupplementaryElement(UIKit.UICollectionView,Foundation.NSString,Foundation.NSIndexPath) +M:UIKit.UICollectionViewDiffableDataSource`2.MoveItem(UIKit.UICollectionView,Foundation.NSIndexPath,Foundation.NSIndexPath) +M:UIKit.UICollectionViewDiffableDataSource`2.NumberOfSections(UIKit.UICollectionView) M:UIKit.UICollectionViewDiffableDataSource`2.set_ReorderingHandlers(UIKit.UICollectionViewDiffableDataSourceReorderingHandlers{`0,`1}) M:UIKit.UICollectionViewDiffableDataSource`2.set_SectionSnapshotHandlers(UIKit.UICollectionViewDiffableDataSourceSectionSnapshotHandlers{`1}) M:UIKit.UICollectionViewDiffableDataSource`2.set_SupplementaryViewProvider(UIKit.UICollectionViewDiffableDataSourceSupplementaryViewProvider) @@ -99666,10 +103260,12 @@ M:UIKit.UICollectionViewDiffableDataSourceCellProvider.Invoke(UIKit.UICollection M:UIKit.UICollectionViewDiffableDataSourceReorderingHandlers`2.#ctor M:UIKit.UICollectionViewDiffableDataSourceReorderingHandlers`2.#ctor(Foundation.NSObjectFlag) M:UIKit.UICollectionViewDiffableDataSourceReorderingHandlers`2.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UICollectionViewDiffableDataSourceReorderingHandlers`2.Copy(Foundation.NSZone) M:UIKit.UICollectionViewDiffableDataSourceReorderingHandlers`2.get_ClassHandle M:UIKit.UICollectionViewDiffableDataSourceSectionSnapshotHandlers`1.#ctor M:UIKit.UICollectionViewDiffableDataSourceSectionSnapshotHandlers`1.#ctor(Foundation.NSObjectFlag) M:UIKit.UICollectionViewDiffableDataSourceSectionSnapshotHandlers`1.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UICollectionViewDiffableDataSourceSectionSnapshotHandlers`1.Copy(Foundation.NSZone) M:UIKit.UICollectionViewDiffableDataSourceSectionSnapshotHandlers`1.get_ClassHandle M:UIKit.UICollectionViewDiffableDataSourceSupplementaryViewProvider.#ctor(System.Object,System.IntPtr) M:UIKit.UICollectionViewDiffableDataSourceSupplementaryViewProvider.BeginInvoke(UIKit.UICollectionView,System.String,Foundation.NSIndexPath,System.AsyncCallback,System.Object) @@ -99745,6 +103341,7 @@ M:UIKit.UICollectionViewFocusUpdateContext.#ctor(ObjCRuntime.NativeHandle) M:UIKit.UICollectionViewFocusUpdateContext.get_ClassHandle M:UIKit.UICollectionViewLayout.#ctor(Foundation.NSObjectFlag) M:UIKit.UICollectionViewLayout.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UICollectionViewLayout.EncodeTo(Foundation.NSCoder) M:UIKit.UICollectionViewLayout.get_AutomaticDimension M:UIKit.UICollectionViewLayout.get_ClassHandle M:UIKit.UICollectionViewLayout.LayoutAttributesForSupplementaryView(UIKit.UICollectionElementKindSection,Foundation.NSIndexPath) @@ -99752,12 +103349,15 @@ M:UIKit.UICollectionViewLayout.RegisterClassForDecorationView(System.Type,Founda M:UIKit.UICollectionViewLayoutAttributes.#ctor M:UIKit.UICollectionViewLayoutAttributes.#ctor(Foundation.NSObjectFlag) M:UIKit.UICollectionViewLayoutAttributes.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UICollectionViewLayoutAttributes.Copy(Foundation.NSZone) M:UIKit.UICollectionViewLayoutAttributes.CreateForCell``1(Foundation.NSIndexPath) M:UIKit.UICollectionViewLayoutAttributes.CreateForDecorationView``1(Foundation.NSString,Foundation.NSIndexPath) M:UIKit.UICollectionViewLayoutAttributes.CreateForSupplementaryView(UIKit.UICollectionElementKindSection,Foundation.NSIndexPath) M:UIKit.UICollectionViewLayoutAttributes.CreateForSupplementaryView``1(Foundation.NSString,Foundation.NSIndexPath) M:UIKit.UICollectionViewLayoutAttributes.CreateForSupplementaryView``1(UIKit.UICollectionElementKindSection,Foundation.NSIndexPath) M:UIKit.UICollectionViewLayoutAttributes.get_ClassHandle +M:UIKit.UICollectionViewLayoutAttributes.get_CollisionBoundingPath +M:UIKit.UICollectionViewLayoutAttributes.get_CollisionBoundsType M:UIKit.UICollectionViewLayoutAttributes.get_Hidden M:UIKit.UICollectionViewLayoutAttributes.set_Alpha(System.Runtime.InteropServices.NFloat) M:UIKit.UICollectionViewLayoutAttributes.set_Bounds(CoreGraphics.CGRect) @@ -99945,6 +103545,7 @@ M:UIKit.UICollisionEndedContactEventArgs.set_SecondItem(UIKit.IUIDynamicItem) M:UIKit.UIColor.#ctor(Foundation.NSCoder) M:UIKit.UIColor.#ctor(Foundation.NSObjectFlag) M:UIKit.UIColor.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UIColor.Copy(Foundation.NSZone) M:UIKit.UIColor.EncodeTo(Foundation.NSCoder) M:UIKit.UIColor.FromHSB(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat) M:UIKit.UIColor.FromRGB(System.Byte,System.Byte,System.Byte) @@ -100004,6 +103605,9 @@ M:UIKit.UIColorWell.UIColorWellAppearance.#ctor(System.IntPtr) M:UIKit.UICommand.#ctor(Foundation.NSObjectFlag) M:UIKit.UICommand.#ctor(ObjCRuntime.NativeHandle) M:UIKit.UICommand.get_ClassHandle +M:UIKit.UICommand.get_PresentationSourceItem +M:UIKit.UICommand.get_SelectedImage +M:UIKit.UICommand.get_Sender M:UIKit.UICommand.get_UICommandTagShare M:UIKit.UICommand.set_Attributes(UIKit.UIMenuElementAttributes) M:UIKit.UICommand.set_DiscoverabilityTitle(System.String) @@ -100011,8 +103615,10 @@ M:UIKit.UICommand.set_Image(UIKit.UIImage) M:UIKit.UICommand.set_SelectedImage(UIKit.UIImage) M:UIKit.UICommand.set_State(UIKit.UIMenuElementState) M:UIKit.UICommand.set_Title(System.String) +M:UIKit.UICommand.Target(Foundation.NSObject,Foundation.NSObject) M:UIKit.UICommandAlternate.#ctor(Foundation.NSObjectFlag) M:UIKit.UICommandAlternate.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UICommandAlternate.Copy(Foundation.NSZone) M:UIKit.UICommandAlternate.EncodeTo(Foundation.NSCoder) M:UIKit.UICommandAlternate.get_ClassHandle M:UIKit.UICompletionHandler.#ctor(System.Object,System.IntPtr) @@ -100052,6 +103658,7 @@ M:UIKit.UIContentUnavailableButtonProperties.#ctor M:UIKit.UIContentUnavailableButtonProperties.#ctor(Foundation.NSCoder) M:UIKit.UIContentUnavailableButtonProperties.#ctor(Foundation.NSObjectFlag) M:UIKit.UIContentUnavailableButtonProperties.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UIContentUnavailableButtonProperties.Copy(Foundation.NSZone) M:UIKit.UIContentUnavailableButtonProperties.EncodeTo(Foundation.NSCoder) M:UIKit.UIContentUnavailableButtonProperties.get_ClassHandle M:UIKit.UIContentUnavailableButtonProperties.get_Enabled @@ -100065,6 +103672,8 @@ M:UIKit.UIContentUnavailableConfiguration.#ctor(ObjCRuntime.NativeHandle) M:UIKit.UIContentUnavailableConfiguration.Copy(Foundation.NSZone) M:UIKit.UIContentUnavailableConfiguration.EncodeTo(Foundation.NSCoder) M:UIKit.UIContentUnavailableConfiguration.get_ClassHandle +M:UIKit.UIContentUnavailableConfiguration.GetUpdatedConfiguration(UIKit.IUIConfigurationState) +M:UIKit.UIContentUnavailableConfiguration.MakeContentView M:UIKit.UIContentUnavailableConfiguration.set_Alignment(UIKit.UIContentUnavailableAlignment) M:UIKit.UIContentUnavailableConfiguration.set_AttributedText(Foundation.NSAttributedString) M:UIKit.UIContentUnavailableConfiguration.set_AxesPreservingSuperviewLayoutMargins(UIKit.UIAxis) @@ -100085,12 +103694,17 @@ M:UIKit.UIContentUnavailableConfigurationState.#ctor(ObjCRuntime.NativeHandle) M:UIKit.UIContentUnavailableConfigurationState.Copy(Foundation.NSZone) M:UIKit.UIContentUnavailableConfigurationState.EncodeTo(Foundation.NSCoder) M:UIKit.UIContentUnavailableConfigurationState.get_ClassHandle +M:UIKit.UIContentUnavailableConfigurationState.GetCustomState(System.String) +M:UIKit.UIContentUnavailableConfigurationState.GetObject(System.String) M:UIKit.UIContentUnavailableConfigurationState.set_SearchText(System.String) M:UIKit.UIContentUnavailableConfigurationState.set_TraitCollection(UIKit.UITraitCollection) +M:UIKit.UIContentUnavailableConfigurationState.SetCustomState(Foundation.NSObject,System.String) +M:UIKit.UIContentUnavailableConfigurationState.SetObject(Foundation.NSObject,System.String) M:UIKit.UIContentUnavailableImageProperties.#ctor M:UIKit.UIContentUnavailableImageProperties.#ctor(Foundation.NSCoder) M:UIKit.UIContentUnavailableImageProperties.#ctor(Foundation.NSObjectFlag) M:UIKit.UIContentUnavailableImageProperties.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UIContentUnavailableImageProperties.Copy(Foundation.NSZone) M:UIKit.UIContentUnavailableImageProperties.EncodeTo(Foundation.NSCoder) M:UIKit.UIContentUnavailableImageProperties.get_ClassHandle M:UIKit.UIContentUnavailableImageProperties.set_AccessibilityIgnoresInvertColors(System.Boolean) @@ -100102,6 +103716,7 @@ M:UIKit.UIContentUnavailableTextProperties.#ctor M:UIKit.UIContentUnavailableTextProperties.#ctor(Foundation.NSCoder) M:UIKit.UIContentUnavailableTextProperties.#ctor(Foundation.NSObjectFlag) M:UIKit.UIContentUnavailableTextProperties.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UIContentUnavailableTextProperties.Copy(Foundation.NSZone) M:UIKit.UIContentUnavailableTextProperties.EncodeTo(Foundation.NSCoder) M:UIKit.UIContentUnavailableTextProperties.get_ClassHandle M:UIKit.UIContentUnavailableTextProperties.set_AdjustsFontSizeToFitWidth(System.Boolean) @@ -100124,6 +103739,7 @@ M:UIKit.UIContentUnavailableView.GetAppearance``1(UIKit.UITraitCollection,System M:UIKit.UIContentUnavailableView.GetAppearance``1(UIKit.UITraitCollection) M:UIKit.UIContentUnavailableView.set_Configuration(UIKit.IUIContentConfiguration) M:UIKit.UIContentUnavailableView.set_ScrollEnabled(System.Boolean) +M:UIKit.UIContentUnavailableView.SupportsConfiguration(UIKit.IUIContentConfiguration) M:UIKit.UIContentUnavailableView.UIContentUnavailableViewAppearance.#ctor(System.IntPtr) M:UIKit.UIContentView_Extensions.SupportsConfiguration(UIKit.IUIContentView,UIKit.IUIContentConfiguration) M:UIKit.UIContextMenuActionProvider.#ctor(System.Object,System.IntPtr) @@ -100143,9 +103759,12 @@ M:UIKit.UIContextMenuContentPreviewProvider.EndInvoke(System.IAsyncResult) M:UIKit.UIContextMenuContentPreviewProvider.Invoke M:UIKit.UIContextMenuInteraction.#ctor(Foundation.NSObjectFlag) M:UIKit.UIContextMenuInteraction.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UIContextMenuInteraction.DidMoveToView(UIKit.UIView) M:UIKit.UIContextMenuInteraction.Dispose(System.Boolean) M:UIKit.UIContextMenuInteraction.get_ClassHandle M:UIKit.UIContextMenuInteraction.get_Delegate +M:UIKit.UIContextMenuInteraction.get_View +M:UIKit.UIContextMenuInteraction.WillMoveToView(UIKit.UIView) M:UIKit.UIContextMenuInteractionDelegate_Extensions.GetDismissalPreview(UIKit.IUIContextMenuInteractionDelegate,UIKit.UIContextMenuInteraction,UIKit.UIContextMenuConfiguration,Foundation.INSCopying) M:UIKit.UIContextMenuInteractionDelegate_Extensions.GetHighlightPreview(UIKit.IUIContextMenuInteractionDelegate,UIKit.UIContextMenuInteraction,UIKit.UIContextMenuConfiguration,Foundation.INSCopying) M:UIKit.UIContextMenuInteractionDelegate_Extensions.GetPreviewForDismissingMenu(UIKit.IUIContextMenuInteractionDelegate,UIKit.UIContextMenuInteraction,UIKit.UIContextMenuConfiguration) @@ -100264,8 +103883,12 @@ M:UIKit.UICubicTimingParameters.#ctor(ObjCRuntime.NativeHandle) M:UIKit.UICubicTimingParameters.Copy(Foundation.NSZone) M:UIKit.UICubicTimingParameters.EncodeTo(Foundation.NSCoder) M:UIKit.UICubicTimingParameters.get_ClassHandle +M:UIKit.UICubicTimingParameters.get_CubicTimingParameters +M:UIKit.UICubicTimingParameters.get_SpringTimingParameters +M:UIKit.UICubicTimingParameters.get_TimingCurveType M:UIKit.UIDatePicker.#ctor M:UIKit.UIDatePicker.#ctor(CoreGraphics.CGRect) +M:UIKit.UIDatePicker.#ctor(Foundation.NSCoder) M:UIKit.UIDatePicker.#ctor(Foundation.NSObjectFlag) M:UIKit.UIDatePicker.#ctor(ObjCRuntime.NativeHandle) M:UIKit.UIDatePicker.AppearanceWhenContainedIn(System.Type[]) @@ -100332,17 +103955,37 @@ M:UIKit.UIDictationPhrase.#ctor(ObjCRuntime.NativeHandle) M:UIKit.UIDictationPhrase.get_ClassHandle M:UIKit.UIDocument.#ctor(Foundation.NSObjectFlag) M:UIKit.UIDocument.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UIDocument.AccommodatePresentedItemDeletion(System.Action{Foundation.NSError}) +M:UIKit.UIDocument.AccommodatePresentedSubitemDeletion(Foundation.NSUrl,System.Action{Foundation.NSError}) M:UIKit.UIDocument.AutoSaveAsync M:UIKit.UIDocument.CloseAsync M:UIKit.UIDocument.get_ClassHandle +M:UIKit.UIDocument.get_PresentedItemObservedUbiquityAttributes +M:UIKit.UIDocument.get_PresentedItemOperationQueue +M:UIKit.UIDocument.get_PresentedItemUrl M:UIKit.UIDocument.get_StateChangedNotification M:UIKit.UIDocument.get_UserActivityDocumentUrlKey M:UIKit.UIDocument.Notifications.ObserveStateChanged(Foundation.NSObject,System.EventHandler{Foundation.NSNotificationEventArgs}) M:UIKit.UIDocument.Notifications.ObserveStateChanged(System.EventHandler{Foundation.NSNotificationEventArgs}) M:UIKit.UIDocument.OpenAsync M:UIKit.UIDocument.PerformAsynchronousFileAccessAsync +M:UIKit.UIDocument.PresentedItemChanged +M:UIKit.UIDocument.PresentedItemChangedUbiquityAttributes(Foundation.NSSet{Foundation.NSString}) +M:UIKit.UIDocument.PresentedItemGainedVersion(Foundation.NSFileVersion) +M:UIKit.UIDocument.PresentedItemLostVersion(Foundation.NSFileVersion) +M:UIKit.UIDocument.PresentedItemMoved(Foundation.NSUrl) +M:UIKit.UIDocument.PresentedItemResolveConflictVersion(Foundation.NSFileVersion) +M:UIKit.UIDocument.PresentedSubitemAppeared(Foundation.NSUrl) +M:UIKit.UIDocument.PresentedSubitemChanged(Foundation.NSUrl) +M:UIKit.UIDocument.PresentedSubitemGainedVersion(Foundation.NSUrl,Foundation.NSFileVersion) +M:UIKit.UIDocument.PresentedSubitemLostVersion(Foundation.NSUrl,Foundation.NSFileVersion) +M:UIKit.UIDocument.PresentedSubitemMoved(Foundation.NSUrl,Foundation.NSUrl) +M:UIKit.UIDocument.PresentedSubitemResolvedConflictVersion(Foundation.NSUrl,Foundation.NSFileVersion) +M:UIKit.UIDocument.RelinquishPresentedItemToReader(Foundation.NSFilePresenterReacquirer) +M:UIKit.UIDocument.RelinquishPresentedItemToWriter(Foundation.NSFilePresenterReacquirer) M:UIKit.UIDocument.RevertToContentsOfUrlAsync(Foundation.NSUrl) M:UIKit.UIDocument.SaveAsync(Foundation.NSUrl,UIKit.UIDocumentSaveOperation) +M:UIKit.UIDocument.SavePresentedItemChanges(System.Action{Foundation.NSError}) M:UIKit.UIDocument.set_FileModificationDate(Foundation.NSDate) M:UIKit.UIDocument.set_UndoManager(Foundation.NSUndoManager) M:UIKit.UIDocument.set_UserActivity(Foundation.NSUserActivity) @@ -100355,14 +103998,20 @@ M:UIKit.UIDocumentBrowserAction.set_SupportsMultipleItems(System.Boolean) M:UIKit.UIDocumentBrowserErrorCodeExtensions.GetDomain(UIKit.UIDocumentBrowserErrorCode) M:UIKit.UIDocumentBrowserTransitionController.#ctor(Foundation.NSObjectFlag) M:UIKit.UIDocumentBrowserTransitionController.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UIDocumentBrowserTransitionController.AnimateTransition(UIKit.IUIViewControllerContextTransitioning) +M:UIKit.UIDocumentBrowserTransitionController.AnimationEnded(System.Boolean) M:UIKit.UIDocumentBrowserTransitionController.Dispose(System.Boolean) M:UIKit.UIDocumentBrowserTransitionController.get_ClassHandle +M:UIKit.UIDocumentBrowserTransitionController.GetInterruptibleAnimator(UIKit.IUIViewControllerContextTransitioning) M:UIKit.UIDocumentBrowserTransitionController.set_LoadingProgress(Foundation.NSProgress) M:UIKit.UIDocumentBrowserTransitionController.set_TargetView(UIKit.UIView) +M:UIKit.UIDocumentBrowserTransitionController.TransitionDuration(UIKit.IUIViewControllerContextTransitioning) M:UIKit.UIDocumentBrowserViewController.#ctor +M:UIKit.UIDocumentBrowserViewController.#ctor(Foundation.NSCoder) M:UIKit.UIDocumentBrowserViewController.#ctor(Foundation.NSObjectFlag) M:UIKit.UIDocumentBrowserViewController.#ctor(ObjCRuntime.NativeHandle) M:UIKit.UIDocumentBrowserViewController.Dispose(System.Boolean) +M:UIKit.UIDocumentBrowserViewController.EncodeTo(Foundation.NSCoder) M:UIKit.UIDocumentBrowserViewController.get_ClassHandle M:UIKit.UIDocumentBrowserViewController.GetTransitionController(Foundation.NSUrl) M:UIKit.UIDocumentBrowserViewController.ImportDocumentAsync(Foundation.NSUrl,Foundation.NSUrl,UIKit.UIDocumentBrowserImportMode) @@ -100560,12 +104209,15 @@ M:UIKit.UIDragDropSessionExtensions.CanLoadObjects(UIKit.IUIDragDropSession,Syst M:UIKit.UIDragDropSessionExtensions.LoadObjects``1(UIKit.IUIDropSession,System.Action{`0[]}) M:UIKit.UIDragInteraction.#ctor(Foundation.NSObjectFlag) M:UIKit.UIDragInteraction.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UIDragInteraction.DidMoveToView(UIKit.UIView) M:UIKit.UIDragInteraction.Dispose(System.Boolean) M:UIKit.UIDragInteraction.get_ClassHandle M:UIKit.UIDragInteraction.get_Enabled M:UIKit.UIDragInteraction.get_EnabledByDefault +M:UIKit.UIDragInteraction.get_View M:UIKit.UIDragInteraction.set_AllowsSimultaneousRecognitionDuringLift(System.Boolean) M:UIKit.UIDragInteraction.set_Enabled(System.Boolean) +M:UIKit.UIDragInteraction.WillMoveToView(UIKit.UIView) M:UIKit.UIDragInteractionDelegate_Extensions.GetItemsForAddingToSession(UIKit.IUIDragInteractionDelegate,UIKit.UIDragInteraction,UIKit.IUIDragSession,CoreGraphics.CGPoint) M:UIKit.UIDragInteractionDelegate_Extensions.GetPreviewForCancellingItem(UIKit.IUIDragInteractionDelegate,UIKit.UIDragInteraction,UIKit.UIDragItem,UIKit.UITargetedDragPreview) M:UIKit.UIDragInteractionDelegate_Extensions.GetPreviewForLiftingItem(UIKit.IUIDragInteractionDelegate,UIKit.UIDragInteraction,UIKit.UIDragItem,UIKit.IUIDragSession) @@ -100607,6 +104259,7 @@ M:UIKit.UIDragItem.set_LocalObject(Foundation.NSObject) M:UIKit.UIDragItem.set_PreviewProvider(System.Func{UIKit.UIDragPreview}) M:UIKit.UIDragPreview.#ctor(Foundation.NSObjectFlag) M:UIKit.UIDragPreview.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UIDragPreview.Copy(Foundation.NSZone) M:UIKit.UIDragPreview.get_ClassHandle M:UIKit.UIDragPreviewParameters.#ctor M:UIKit.UIDragPreviewParameters.#ctor(Foundation.NSObjectFlag) @@ -100622,9 +104275,12 @@ M:UIKit.UIDragPreviewTarget.Copy(Foundation.NSZone) M:UIKit.UIDragPreviewTarget.get_ClassHandle M:UIKit.UIDropInteraction.#ctor(Foundation.NSObjectFlag) M:UIKit.UIDropInteraction.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UIDropInteraction.DidMoveToView(UIKit.UIView) M:UIKit.UIDropInteraction.Dispose(System.Boolean) M:UIKit.UIDropInteraction.get_ClassHandle +M:UIKit.UIDropInteraction.get_View M:UIKit.UIDropInteraction.set_AllowsSimultaneousDropSessions(System.Boolean) +M:UIKit.UIDropInteraction.WillMoveToView(UIKit.UIView) M:UIKit.UIDropInteractionDelegate_Extensions.CanHandleSession(UIKit.IUIDropInteractionDelegate,UIKit.UIDropInteraction,UIKit.IUIDropSession) M:UIKit.UIDropInteractionDelegate_Extensions.ConcludeDrop(UIKit.IUIDropInteractionDelegate,UIKit.UIDropInteraction,UIKit.IUIDropSession) M:UIKit.UIDropInteractionDelegate_Extensions.GetPreviewForDroppingItem(UIKit.IUIDropInteractionDelegate,UIKit.UIDropInteraction,UIKit.UIDragItem,UIKit.UITargetedDragPreview) @@ -100648,6 +104304,7 @@ M:UIKit.UIDropInteractionDelegate.SessionDidUpdate(UIKit.UIDropInteraction,UIKit M:UIKit.UIDropInteractionDelegate.WillAnimateDrop(UIKit.UIDropInteraction,UIKit.UIDragItem,UIKit.IUIDragAnimating) M:UIKit.UIDropProposal.#ctor(Foundation.NSObjectFlag) M:UIKit.UIDropProposal.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UIDropProposal.Copy(Foundation.NSZone) M:UIKit.UIDropProposal.get_ClassHandle M:UIKit.UIDropProposal.get_Precise M:UIKit.UIDropProposal.set_Precise(System.Boolean) @@ -100704,7 +104361,12 @@ M:UIKit.UIDynamicItemBehavior.set_Resistance(System.Runtime.InteropServices.NFlo M:UIKit.UIDynamicItemGroup.#ctor M:UIKit.UIDynamicItemGroup.#ctor(Foundation.NSObjectFlag) M:UIKit.UIDynamicItemGroup.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UIDynamicItemGroup.get_Bounds +M:UIKit.UIDynamicItemGroup.get_Center M:UIKit.UIDynamicItemGroup.get_ClassHandle +M:UIKit.UIDynamicItemGroup.get_CollisionBoundingPath +M:UIKit.UIDynamicItemGroup.get_CollisionBoundsType +M:UIKit.UIDynamicItemGroup.get_Transform M:UIKit.UIDynamicItemGroup.set_Center(CoreGraphics.CGPoint) M:UIKit.UIDynamicItemGroup.set_Transform(CoreGraphics.CGAffineTransform) M:UIKit.UIEdgeInsets.#ctor(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat) @@ -100722,9 +104384,12 @@ M:UIKit.UIEditMenuConfiguration.get_ClassHandle M:UIKit.UIEditMenuConfiguration.set_PreferredArrowDirection(UIKit.UIEditMenuArrowDirection) M:UIKit.UIEditMenuInteraction.#ctor(Foundation.NSObjectFlag) M:UIKit.UIEditMenuInteraction.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UIEditMenuInteraction.DidMoveToView(UIKit.UIView) M:UIKit.UIEditMenuInteraction.Dispose(System.Boolean) M:UIKit.UIEditMenuInteraction.get_ClassHandle M:UIKit.UIEditMenuInteraction.get_Delegate +M:UIKit.UIEditMenuInteraction.get_View +M:UIKit.UIEditMenuInteraction.WillMoveToView(UIKit.UIView) M:UIKit.UIEditMenuInteractionDelegate_Extensions.GetMenu(UIKit.IUIEditMenuInteractionDelegate,UIKit.UIEditMenuInteraction,UIKit.UIEditMenuConfiguration,UIKit.UIMenuElement[]) M:UIKit.UIEditMenuInteractionDelegate_Extensions.GetTargetRect(UIKit.IUIEditMenuInteractionDelegate,UIKit.UIEditMenuInteraction,UIKit.UIEditMenuConfiguration) M:UIKit.UIEditMenuInteractionDelegate_Extensions.WillDismissMenu(UIKit.IUIEditMenuInteractionDelegate,UIKit.UIEditMenuInteraction,UIKit.UIEditMenuConfiguration,UIKit.IUIEditMenuInteractionAnimating) @@ -100743,6 +104408,7 @@ M:UIKit.UIEvent.get_ClassHandle M:UIKit.UIEvent.ToString M:UIKit.UIEventAttribution.#ctor(Foundation.NSObjectFlag) M:UIKit.UIEventAttribution.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UIEventAttribution.Copy(Foundation.NSZone) M:UIKit.UIEventAttribution.get_ClassHandle M:UIKit.UIEventAttributionView.#ctor M:UIKit.UIEventAttributionView.#ctor(CoreGraphics.CGRect) @@ -100780,13 +104446,16 @@ M:UIKit.UIFieldCustomEvaluator.EndInvoke(System.IAsyncResult) M:UIKit.UIFieldCustomEvaluator.Invoke(UIKit.UIFieldBehavior,CoreGraphics.CGPoint,CoreGraphics.CGVector,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Double) M:UIKit.UIFindInteraction.#ctor(Foundation.NSObjectFlag) M:UIKit.UIFindInteraction.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UIFindInteraction.DidMoveToView(UIKit.UIView) M:UIKit.UIFindInteraction.Dispose(System.Boolean) M:UIKit.UIFindInteraction.get_ClassHandle M:UIKit.UIFindInteraction.get_Delegate M:UIKit.UIFindInteraction.get_FindNavigatorVisible +M:UIKit.UIFindInteraction.get_View M:UIKit.UIFindInteraction.set_OptionsMenuProvider(UIKit.OptionsMenuProviderHandler) M:UIKit.UIFindInteraction.set_ReplacementText(System.String) M:UIKit.UIFindInteraction.set_SearchText(System.String) +M:UIKit.UIFindInteraction.WillMoveToView(UIKit.UIView) M:UIKit.UIFindInteractionDelegate_Extensions.DidBeginFindSession(UIKit.IUIFindInteractionDelegate,UIKit.UIFindInteraction,UIKit.UIFindSession) M:UIKit.UIFindInteractionDelegate_Extensions.DidEndFindSession(UIKit.IUIFindInteractionDelegate,UIKit.UIFindInteraction,UIKit.UIFindSession) M:UIKit.UIFindInteractionDelegate.#ctor @@ -100819,6 +104488,7 @@ M:UIKit.UIFocusDebugger.CheckFocusGroupTree(UIKit.IUIFocusEnvironment) M:UIKit.UIFocusDebugger.get_ClassHandle M:UIKit.UIFocusEffect.#ctor(Foundation.NSObjectFlag) M:UIKit.UIFocusEffect.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UIFocusEffect.Copy(Foundation.NSZone) M:UIKit.UIFocusEffect.get_ClassHandle M:UIKit.UIFocusEnvironment_Extensions.GetFocusGroupIdentifier(UIKit.IUIFocusEnvironment) M:UIKit.UIFocusEnvironment_Extensions.GetPreferredFocusedView(UIKit.IUIFocusEnvironment) @@ -100846,6 +104516,7 @@ M:UIKit.UIFocusItem_Extensions.GetFocusGroupPriority(UIKit.IUIFocusItem) M:UIKit.UIFocusItem_Extensions.GetIsTransparentFocusItem(UIKit.IUIFocusItem) M:UIKit.UIFocusMovementHint.#ctor(Foundation.NSObjectFlag) M:UIKit.UIFocusMovementHint.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UIFocusMovementHint.Copy(Foundation.NSZone) M:UIKit.UIFocusMovementHint.get_ClassHandle M:UIKit.UIFocusSoundIdentifierExtensions.GetConstant(UIKit.UIFocusSoundIdentifier) M:UIKit.UIFocusSoundIdentifierExtensions.GetValue(Foundation.NSString) @@ -100869,6 +104540,7 @@ M:UIKit.UIFont.#ctor(Foundation.NSCoder) M:UIKit.UIFont.#ctor(Foundation.NSObjectFlag) M:UIKit.UIFont.#ctor(ObjCRuntime.NativeHandle) M:UIKit.UIFont.BoldSystemFontOfSize(System.Runtime.InteropServices.NFloat) +M:UIKit.UIFont.Copy(Foundation.NSZone) M:UIKit.UIFont.EncodeTo(Foundation.NSCoder) M:UIKit.UIFont.Equals(System.Object) M:UIKit.UIFont.FromDescriptor(UIKit.UIFontDescriptor,System.Runtime.InteropServices.NFloat) @@ -100935,6 +104607,7 @@ M:UIKit.UIFontAttributes.set_WeakFeatureSettings(Foundation.NSDictionary[]) M:UIKit.UIFontDescriptor.#ctor(Foundation.NSObjectFlag) M:UIKit.UIFontDescriptor.#ctor(ObjCRuntime.NativeHandle) M:UIKit.UIFontDescriptor.#ctor(UIKit.UIFontAttributes) +M:UIKit.UIFontDescriptor.Copy(Foundation.NSZone) M:UIKit.UIFontDescriptor.CreateWithAttributes(UIKit.UIFontAttributes) M:UIKit.UIFontDescriptor.CreateWithDesign(UIKit.UIFontDescriptorSystemDesign) M:UIKit.UIFontDescriptor.EncodeTo(Foundation.NSCoder) @@ -101025,6 +104698,7 @@ M:UIKit.UIFontPickerViewController.set_WeakDelegate(Foundation.NSObject) M:UIKit.UIFontPickerViewControllerConfiguration.#ctor M:UIKit.UIFontPickerViewControllerConfiguration.#ctor(Foundation.NSObjectFlag) M:UIKit.UIFontPickerViewControllerConfiguration.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UIFontPickerViewControllerConfiguration.Copy(Foundation.NSZone) M:UIKit.UIFontPickerViewControllerConfiguration.get_ClassHandle M:UIKit.UIFontPickerViewControllerConfiguration.set_DisplayUsingSystemFont(System.Boolean) M:UIKit.UIFontPickerViewControllerConfiguration.set_FilteredLanguagesPredicate(Foundation.NSPredicate) @@ -101198,6 +104872,7 @@ M:UIKit.UIGraphicsRendererContext.get_ClassHandle M:UIKit.UIGraphicsRendererFormat.#ctor M:UIKit.UIGraphicsRendererFormat.#ctor(Foundation.NSObjectFlag) M:UIKit.UIGraphicsRendererFormat.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UIGraphicsRendererFormat.Copy(Foundation.NSZone) M:UIKit.UIGraphicsRendererFormat.get_ClassHandle M:UIKit.UIGravityBehavior.#ctor M:UIKit.UIGravityBehavior.#ctor(Foundation.NSObjectFlag) @@ -101235,6 +104910,7 @@ M:UIKit.UIHoverLiftEffect.Copy(Foundation.NSZone) M:UIKit.UIHoverLiftEffect.get_ClassHandle M:UIKit.UIHoverStyle.#ctor(Foundation.NSObjectFlag) M:UIKit.UIHoverStyle.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UIHoverStyle.Copy(Foundation.NSZone) M:UIKit.UIHoverStyle.get_ClassHandle M:UIKit.UIHoverStyle.get_Enabled M:UIKit.UIHoverStyle.set_Effect(UIKit.IUIHoverEffect) @@ -101439,9 +105115,11 @@ M:UIKit.UIImageAsset.get_ClassHandle M:UIKit.UIImageConfiguration.#ctor(Foundation.NSCoder) M:UIKit.UIImageConfiguration.#ctor(Foundation.NSObjectFlag) M:UIKit.UIImageConfiguration.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UIImageConfiguration.Copy(Foundation.NSZone) M:UIKit.UIImageConfiguration.EncodeTo(Foundation.NSCoder) M:UIKit.UIImageConfiguration.get_ClassHandle M:UIKit.UIImagePickerController.#ctor +M:UIKit.UIImagePickerController.#ctor(Foundation.NSCoder) M:UIKit.UIImagePickerController.#ctor(Foundation.NSObjectFlag) M:UIKit.UIImagePickerController.#ctor(ObjCRuntime.NativeHandle) M:UIKit.UIImagePickerController.add_Canceled(System.EventHandler) @@ -101507,6 +105185,7 @@ M:UIKit.UIImageReader.GetImageAsync(Foundation.NSUrl) M:UIKit.UIImageReaderConfiguration.#ctor M:UIKit.UIImageReaderConfiguration.#ctor(Foundation.NSObjectFlag) M:UIKit.UIImageReaderConfiguration.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UIImageReaderConfiguration.Copy(Foundation.NSZone) M:UIKit.UIImageReaderConfiguration.get_ClassHandle M:UIKit.UIImageReaderConfiguration.set_PixelsPerInch(System.Runtime.InteropServices.NFloat) M:UIKit.UIImageReaderConfiguration.set_PreferredThumbnailSize(CoreGraphics.CGSize) @@ -101556,10 +105235,13 @@ M:UIKit.UIImpactFeedbackGenerator.#ctor(ObjCRuntime.NativeHandle) M:UIKit.UIImpactFeedbackGenerator.get_ClassHandle M:UIKit.UIIndirectScribbleInteraction.#ctor(Foundation.NSObjectFlag) M:UIKit.UIIndirectScribbleInteraction.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UIIndirectScribbleInteraction.DidMoveToView(UIKit.UIView) M:UIKit.UIIndirectScribbleInteraction.Dispose(System.Boolean) M:UIKit.UIIndirectScribbleInteraction.get_ClassHandle M:UIKit.UIIndirectScribbleInteraction.get_Delegate M:UIKit.UIIndirectScribbleInteraction.get_HandlingWriting +M:UIKit.UIIndirectScribbleInteraction.get_View +M:UIKit.UIIndirectScribbleInteraction.WillMoveToView(UIKit.UIView) M:UIKit.UIIndirectScribbleInteractionDelegate_Extensions.DidFinishWriting(UIKit.IUIIndirectScribbleInteractionDelegate,UIKit.UIIndirectScribbleInteraction,Foundation.NSObject) M:UIKit.UIIndirectScribbleInteractionDelegate_Extensions.ShouldDelayFocus(UIKit.IUIIndirectScribbleInteractionDelegate,UIKit.UIIndirectScribbleInteraction,Foundation.NSObject) M:UIKit.UIIndirectScribbleInteractionDelegate_Extensions.WillBeginWriting(UIKit.IUIIndirectScribbleInteractionDelegate,UIKit.UIIndirectScribbleInteraction,Foundation.NSObject) @@ -101595,9 +105277,13 @@ M:UIKit.UIInputViewController.#ctor(ObjCRuntime.NativeHandle) M:UIKit.UIInputViewController.#ctor(System.String,Foundation.NSBundle) M:UIKit.UIInputViewController.get_ClassHandle M:UIKit.UIInputViewController.RequestSupplementaryLexiconAsync +M:UIKit.UIInputViewController.SelectionDidChange(UIKit.IUITextInput) +M:UIKit.UIInputViewController.SelectionWillChange(UIKit.IUITextInput) M:UIKit.UIInputViewController.set_HasDictationKey(System.Boolean) M:UIKit.UIInputViewController.set_InputView(UIKit.UIInputView) M:UIKit.UIInputViewController.set_PrimaryLanguage(System.String) +M:UIKit.UIInputViewController.TextDidChange(UIKit.IUITextInput) +M:UIKit.UIInputViewController.TextWillChange(UIKit.IUITextInput) M:UIKit.UIInterfaceOrientationExtensions.IsLandscape(UIKit.UIInterfaceOrientation) M:UIKit.UIInterfaceOrientationExtensions.IsPortrait(UIKit.UIInterfaceOrientation) M:UIKit.UIInterpolatingMotionEffect.#ctor @@ -101607,8 +105293,11 @@ M:UIKit.UIInterpolatingMotionEffect.EncodeTo(Foundation.NSCoder) M:UIKit.UIInterpolatingMotionEffect.get_ClassHandle M:UIKit.UIInterpolatingMotionEffect.set_MaximumRelativeValue(Foundation.NSObject) M:UIKit.UIInterpolatingMotionEffect.set_MinimumRelativeValue(Foundation.NSObject) +M:UIKit.UIKey.#ctor(Foundation.NSCoder) M:UIKit.UIKey.#ctor(Foundation.NSObjectFlag) M:UIKit.UIKey.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UIKey.Copy(Foundation.NSZone) +M:UIKit.UIKey.EncodeTo(Foundation.NSCoder) M:UIKit.UIKey.get_ClassHandle M:UIKit.UIKeyboard.#ctor M:UIKit.UIKeyboard.AnimationCurveFromNotification(Foundation.NSNotification) @@ -101687,13 +105376,16 @@ M:UIKit.UIKeyCommand.set_WantsPriorityOverSystemBehavior(System.Boolean) M:UIKit.UIKitThreadAccessException.#ctor M:UIKit.UILabel.#ctor M:UIKit.UILabel.#ctor(CoreGraphics.CGRect) +M:UIKit.UILabel.#ctor(Foundation.NSCoder) M:UIKit.UILabel.#ctor(Foundation.NSObjectFlag) M:UIKit.UILabel.#ctor(ObjCRuntime.NativeHandle) M:UIKit.UILabel.AppearanceWhenContainedIn(System.Type[]) +M:UIKit.UILabel.get_AdjustsFontForContentSizeCategory M:UIKit.UILabel.get_Appearance M:UIKit.UILabel.get_ClassHandle M:UIKit.UILabel.get_Enabled M:UIKit.UILabel.get_Highlighted +M:UIKit.UILabel.get_SizingRule M:UIKit.UILabel.GetAppearance(UIKit.UITraitCollection,System.Type[]) M:UIKit.UILabel.GetAppearance(UIKit.UITraitCollection) M:UIKit.UILabel.GetAppearance``1 @@ -101739,13 +105431,16 @@ M:UIKit.UILabel.UILabelAppearance.set_ShadowOffset(CoreGraphics.CGSize) M:UIKit.UILabel.UILabelAppearance.set_TextColor(UIKit.UIColor) M:UIKit.UILargeContentViewerInteraction.#ctor(Foundation.NSObjectFlag) M:UIKit.UILargeContentViewerInteraction.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UILargeContentViewerInteraction.DidMoveToView(UIKit.UIView) M:UIKit.UILargeContentViewerInteraction.Dispose(System.Boolean) M:UIKit.UILargeContentViewerInteraction.get_ClassHandle M:UIKit.UILargeContentViewerInteraction.get_Delegate M:UIKit.UILargeContentViewerInteraction.get_Enabled M:UIKit.UILargeContentViewerInteraction.get_InteractionEnabledStatusDidChangeNotification +M:UIKit.UILargeContentViewerInteraction.get_View M:UIKit.UILargeContentViewerInteraction.Notifications.ObserveInteractionEnabledStatusDidChange(Foundation.NSObject,System.EventHandler{Foundation.NSNotificationEventArgs}) M:UIKit.UILargeContentViewerInteraction.Notifications.ObserveInteractionEnabledStatusDidChange(System.EventHandler{Foundation.NSNotificationEventArgs}) +M:UIKit.UILargeContentViewerInteraction.WillMoveToView(UIKit.UIView) M:UIKit.UILargeContentViewerInteractionDelegate_Extensions.DidEnd(UIKit.IUILargeContentViewerInteractionDelegate,UIKit.UILargeContentViewerInteraction,UIKit.IUILargeContentViewerItem,CoreGraphics.CGPoint) M:UIKit.UILargeContentViewerInteractionDelegate_Extensions.GetItem(UIKit.IUILargeContentViewerInteractionDelegate,UIKit.UILargeContentViewerInteraction,CoreGraphics.CGPoint) M:UIKit.UILargeContentViewerInteractionDelegate_Extensions.GetViewController(UIKit.IUILargeContentViewerInteractionDelegate,UIKit.UILargeContentViewerInteraction) @@ -101758,9 +105453,11 @@ M:UIKit.UILargeContentViewerInteractionDelegate.GetViewController(UIKit.UILargeC M:UIKit.UILayoutGuide_UIConstraintBasedLayoutDebugging.GetConstraintsAffectingLayout(UIKit.UILayoutGuide,UIKit.UILayoutConstraintAxis) M:UIKit.UILayoutGuide_UIConstraintBasedLayoutDebugging.GetHasAmbiguousLayout(UIKit.UILayoutGuide) M:UIKit.UILayoutGuide.#ctor +M:UIKit.UILayoutGuide.#ctor(Foundation.NSCoder) M:UIKit.UILayoutGuide.#ctor(Foundation.NSObjectFlag) M:UIKit.UILayoutGuide.#ctor(ObjCRuntime.NativeHandle) M:UIKit.UILayoutGuide.Dispose(System.Boolean) +M:UIKit.UILayoutGuide.EncodeTo(Foundation.NSCoder) M:UIKit.UILayoutGuide.get_ClassHandle M:UIKit.UILayoutGuide.GetFrame(UIKit.UIView) M:UIKit.UILayoutGuide.set_Identifier(System.String) @@ -101775,10 +105472,12 @@ M:UIKit.UILayoutSupport.get_TopAnchor M:UIKit.UILexicon.#ctor M:UIKit.UILexicon.#ctor(Foundation.NSObjectFlag) M:UIKit.UILexicon.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UILexicon.Copy(Foundation.NSZone) M:UIKit.UILexicon.get_ClassHandle M:UIKit.UILexiconEntry.#ctor M:UIKit.UILexiconEntry.#ctor(Foundation.NSObjectFlag) M:UIKit.UILexiconEntry.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UILexiconEntry.Copy(Foundation.NSZone) M:UIKit.UILexiconEntry.get_ClassHandle M:UIKit.UIListContentConfiguration.#ctor(Foundation.NSCoder) M:UIKit.UIListContentConfiguration.#ctor(Foundation.NSObjectFlag) @@ -101786,6 +105485,8 @@ M:UIKit.UIListContentConfiguration.#ctor(ObjCRuntime.NativeHandle) M:UIKit.UIListContentConfiguration.Copy(Foundation.NSZone) M:UIKit.UIListContentConfiguration.EncodeTo(Foundation.NSCoder) M:UIKit.UIListContentConfiguration.get_ClassHandle +M:UIKit.UIListContentConfiguration.GetUpdatedConfiguration(UIKit.IUIConfigurationState) +M:UIKit.UIListContentConfiguration.MakeContentView M:UIKit.UIListContentConfiguration.set_AttributedText(Foundation.NSAttributedString) M:UIKit.UIListContentConfiguration.set_AxesPreservingSuperviewLayoutMargins(UIKit.UIAxis) M:UIKit.UIListContentConfiguration.set_DirectionalLayoutMargins(UIKit.NSDirectionalEdgeInsets) @@ -101800,6 +105501,7 @@ M:UIKit.UIListContentConfiguration.set_TextToSecondaryTextVerticalPadding(System M:UIKit.UIListContentImageProperties.#ctor(Foundation.NSCoder) M:UIKit.UIListContentImageProperties.#ctor(Foundation.NSObjectFlag) M:UIKit.UIListContentImageProperties.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UIListContentImageProperties.Copy(Foundation.NSZone) M:UIKit.UIListContentImageProperties.EncodeTo(Foundation.NSCoder) M:UIKit.UIListContentImageProperties.get_ClassHandle M:UIKit.UIListContentImageProperties.get_StandardDimension @@ -101813,6 +105515,7 @@ M:UIKit.UIListContentImageProperties.set_TintColorTransformer(UIKit.UIConfigurat M:UIKit.UIListContentTextProperties.#ctor(Foundation.NSCoder) M:UIKit.UIListContentTextProperties.#ctor(Foundation.NSObjectFlag) M:UIKit.UIListContentTextProperties.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UIListContentTextProperties.Copy(Foundation.NSZone) M:UIKit.UIListContentTextProperties.EncodeTo(Foundation.NSCoder) M:UIKit.UIListContentTextProperties.get_ClassHandle M:UIKit.UIListContentTextProperties.set_AdjustsFontForContentSizeCategory(System.Boolean) @@ -101840,10 +105543,12 @@ M:UIKit.UIListContentView.GetAppearance``1(UIKit.UITraitCollection,System.Type[] M:UIKit.UIListContentView.GetAppearance``1(UIKit.UITraitCollection) M:UIKit.UIListContentView.set_Configuration(UIKit.IUIContentConfiguration) M:UIKit.UIListContentView.set_ListContentConfiguration(UIKit.UIListContentConfiguration) +M:UIKit.UIListContentView.SupportsConfiguration(UIKit.IUIContentConfiguration) M:UIKit.UIListContentView.UIListContentViewAppearance.#ctor(System.IntPtr) M:UIKit.UIListSeparatorConfiguration.#ctor(Foundation.NSCoder) M:UIKit.UIListSeparatorConfiguration.#ctor(Foundation.NSObjectFlag) M:UIKit.UIListSeparatorConfiguration.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UIListSeparatorConfiguration.Copy(Foundation.NSZone) M:UIKit.UIListSeparatorConfiguration.EncodeTo(Foundation.NSCoder) M:UIKit.UIListSeparatorConfiguration.get_AutomaticInsets M:UIKit.UIListSeparatorConfiguration.get_ClassHandle @@ -101860,6 +105565,8 @@ M:UIKit.UILocalizedIndexedCollation.#ctor(ObjCRuntime.NativeHandle) M:UIKit.UILocalizedIndexedCollation.get_ClassHandle M:UIKit.UILocalNotification.#ctor(Foundation.NSObjectFlag) M:UIKit.UILocalNotification.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UILocalNotification.Copy(Foundation.NSZone) +M:UIKit.UILocalNotification.EncodeTo(Foundation.NSCoder) M:UIKit.UILocalNotification.get_ClassHandle M:UIKit.UILocalNotification.get_DefaultSoundName M:UIKit.UILocalNotification.set_AlertAction(System.String) @@ -101927,6 +105634,7 @@ M:UIKit.UIMenuController.set_ArrowDirection(UIKit.UIMenuControllerArrowDirection M:UIKit.UIMenuController.set_MenuItems(UIKit.UIMenuItem[]) M:UIKit.UIMenuElement.#ctor(Foundation.NSObjectFlag) M:UIKit.UIMenuElement.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UIMenuElement.Copy(Foundation.NSZone) M:UIKit.UIMenuElement.EncodeTo(Foundation.NSCoder) M:UIKit.UIMenuElement.get_AccessibilityIdentifier M:UIKit.UIMenuElement.get_ClassHandle @@ -101947,6 +105655,8 @@ M:UIKit.UIMenuSystem.#ctor(ObjCRuntime.NativeHandle) M:UIKit.UIMenuSystem.get_ClassHandle M:UIKit.UIMotionEffect.#ctor(Foundation.NSObjectFlag) M:UIKit.UIMotionEffect.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UIMotionEffect.Copy(Foundation.NSZone) +M:UIKit.UIMotionEffect.EncodeTo(Foundation.NSCoder) M:UIKit.UIMotionEffect.get_ClassHandle M:UIKit.UIMotionEffectGroup.#ctor M:UIKit.UIMotionEffectGroup.#ctor(Foundation.NSCoder) @@ -102030,11 +105740,14 @@ M:UIKit.UIMutableUserNotificationCategory.get_ClassHandle M:UIKit.UIMutableUserNotificationCategory.set_Identifier(System.String) M:UIKit.UINavigationBar.#ctor M:UIKit.UINavigationBar.#ctor(CoreGraphics.CGRect) +M:UIKit.UINavigationBar.#ctor(Foundation.NSCoder) M:UIKit.UINavigationBar.#ctor(Foundation.NSObjectFlag) M:UIKit.UINavigationBar.#ctor(ObjCRuntime.NativeHandle) M:UIKit.UINavigationBar.AppearanceWhenContainedIn(System.Type[]) M:UIKit.UINavigationBar.Dispose(System.Boolean) +M:UIKit.UINavigationBar.EncodeTo(Foundation.NSCoder) M:UIKit.UINavigationBar.get_Appearance +M:UIKit.UINavigationBar.get_BarPosition M:UIKit.UINavigationBar.get_ClassHandle M:UIKit.UINavigationBar.get_Delegate M:UIKit.UINavigationBar.get_LargeTitleTextAttributes @@ -102165,6 +105878,7 @@ M:UIKit.UINavigationItem.#ctor M:UIKit.UINavigationItem.#ctor(Foundation.NSObjectFlag) M:UIKit.UINavigationItem.#ctor(ObjCRuntime.NativeHandle) M:UIKit.UINavigationItem.Dispose(System.Boolean) +M:UIKit.UINavigationItem.EncodeTo(Foundation.NSCoder) M:UIKit.UINavigationItem.get_ClassHandle M:UIKit.UINavigationItem.get_RenameDelegate M:UIKit.UINavigationItem.set_AdditionalOverflowItems(UIKit.UIDeferredMenuElement) @@ -102457,6 +106171,7 @@ M:UIKit.UIPasteConfiguration.#ctor(Foundation.NSObjectFlag) M:UIKit.UIPasteConfiguration.#ctor(ObjCRuntime.NativeHandle) M:UIKit.UIPasteConfiguration.#ctor(System.Type) M:UIKit.UIPasteConfiguration.AddTypeIdentifiers(System.Type) +M:UIKit.UIPasteConfiguration.Copy(Foundation.NSZone) M:UIKit.UIPasteConfiguration.EncodeTo(Foundation.NSCoder) M:UIKit.UIPasteConfiguration.get_ClassHandle M:UIKit.UIPasteConfiguration.set_AcceptableTypeIdentifiers(System.String[]) @@ -102493,13 +106208,16 @@ M:UIKit.UIPathEventArgs.set_Path(System.String) M:UIKit.UIPencilInteraction.#ctor M:UIKit.UIPencilInteraction.#ctor(Foundation.NSObjectFlag) M:UIKit.UIPencilInteraction.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UIPencilInteraction.DidMoveToView(UIKit.UIView) M:UIKit.UIPencilInteraction.Dispose(System.Boolean) M:UIKit.UIPencilInteraction.get_ClassHandle M:UIKit.UIPencilInteraction.get_Delegate M:UIKit.UIPencilInteraction.get_Enabled +M:UIKit.UIPencilInteraction.get_View M:UIKit.UIPencilInteraction.set_Delegate(UIKit.IUIPencilInteractionDelegate) M:UIKit.UIPencilInteraction.set_Enabled(System.Boolean) M:UIKit.UIPencilInteraction.set_WeakDelegate(Foundation.NSObject) +M:UIKit.UIPencilInteraction.WillMoveToView(UIKit.UIView) M:UIKit.UIPencilInteractionDelegate_Extensions.DidTap(UIKit.IUIPencilInteractionDelegate,UIKit.UIPencilInteraction) M:UIKit.UIPencilInteractionDelegate.#ctor M:UIKit.UIPencilInteractionDelegate.#ctor(Foundation.NSObjectFlag) @@ -102513,8 +106231,10 @@ M:UIKit.UIPercentDrivenInteractiveTransition.set_CompletionCurve(UIKit.UIViewAni M:UIKit.UIPercentDrivenInteractiveTransition.set_CompletionSpeed(System.Runtime.InteropServices.NFloat) M:UIKit.UIPercentDrivenInteractiveTransition.set_TimingCurve(UIKit.IUITimingCurveProvider) M:UIKit.UIPercentDrivenInteractiveTransition.set_WantsInteractiveStart(System.Boolean) +M:UIKit.UIPercentDrivenInteractiveTransition.StartInteractiveTransition(UIKit.IUIViewControllerContextTransitioning) M:UIKit.UIPickerView.#ctor M:UIKit.UIPickerView.#ctor(CoreGraphics.CGRect) +M:UIKit.UIPickerView.#ctor(Foundation.NSCoder) M:UIKit.UIPickerView.#ctor(Foundation.NSObjectFlag) M:UIKit.UIPickerView.#ctor(ObjCRuntime.NativeHandle) M:UIKit.UIPickerView.AppearanceWhenContainedIn(System.Type[]) @@ -102594,6 +106314,7 @@ M:UIKit.UIPinchGestureRecognizer.get_ClassHandle M:UIKit.UIPinchGestureRecognizer.set_Scale(System.Runtime.InteropServices.NFloat) M:UIKit.UIPointerAccessory.#ctor(Foundation.NSObjectFlag) M:UIKit.UIPointerAccessory.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UIPointerAccessory.Copy(Foundation.NSZone) M:UIKit.UIPointerAccessory.get_ClassHandle M:UIKit.UIPointerAccessory.set_OrientationMatchesAngle(System.Boolean) M:UIKit.UIPointerAccessoryPosition.#ctor(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat) @@ -102607,6 +106328,7 @@ M:UIKit.UIPointerAccessoryPosition.get_TopLeft M:UIKit.UIPointerAccessoryPosition.get_TopRight M:UIKit.UIPointerEffect.#ctor(Foundation.NSObjectFlag) M:UIKit.UIPointerEffect.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UIPointerEffect.Copy(Foundation.NSZone) M:UIKit.UIPointerEffect.get_ClassHandle M:UIKit.UIPointerHighlightEffect.#ctor M:UIKit.UIPointerHighlightEffect.#ctor(Foundation.NSObjectFlag) @@ -102621,10 +106343,13 @@ M:UIKit.UIPointerHoverEffect.set_PrefersScaledContent(System.Boolean) M:UIKit.UIPointerHoverEffect.set_PrefersShadow(System.Boolean) M:UIKit.UIPointerInteraction.#ctor(Foundation.NSObjectFlag) M:UIKit.UIPointerInteraction.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UIPointerInteraction.DidMoveToView(UIKit.UIView) M:UIKit.UIPointerInteraction.Dispose(System.Boolean) M:UIKit.UIPointerInteraction.get_ClassHandle M:UIKit.UIPointerInteraction.get_Enabled +M:UIKit.UIPointerInteraction.get_View M:UIKit.UIPointerInteraction.set_Enabled(System.Boolean) +M:UIKit.UIPointerInteraction.WillMoveToView(UIKit.UIView) M:UIKit.UIPointerInteractionDelegate_Extensions.GetRegionForRequest(UIKit.IUIPointerInteractionDelegate,UIKit.UIPointerInteraction,UIKit.UIPointerRegionRequest,UIKit.UIPointerRegion) M:UIKit.UIPointerInteractionDelegate_Extensions.GetStyleForRegion(UIKit.IUIPointerInteractionDelegate,UIKit.UIPointerInteraction,UIKit.UIPointerRegion) M:UIKit.UIPointerInteractionDelegate_Extensions.WillEnterRegion(UIKit.IUIPointerInteractionDelegate,UIKit.UIPointerInteraction,UIKit.UIPointerRegion,UIKit.IUIPointerInteractionAnimating) @@ -102651,6 +106376,7 @@ M:UIKit.UIPointerLockStateDidChangeEventArgs.#ctor(Foundation.NSNotification) M:UIKit.UIPointerLockStateDidChangeEventArgs.get_Scene M:UIKit.UIPointerRegion.#ctor(Foundation.NSObjectFlag) M:UIKit.UIPointerRegion.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UIPointerRegion.Copy(Foundation.NSZone) M:UIKit.UIPointerRegion.get_ClassHandle M:UIKit.UIPointerRegion.set_LatchingAxes(UIKit.UIAxis) M:UIKit.UIPointerRegionRequest.#ctor(Foundation.NSObjectFlag) @@ -102658,9 +106384,11 @@ M:UIKit.UIPointerRegionRequest.#ctor(ObjCRuntime.NativeHandle) M:UIKit.UIPointerRegionRequest.get_ClassHandle M:UIKit.UIPointerShape.#ctor(Foundation.NSObjectFlag) M:UIKit.UIPointerShape.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UIPointerShape.Copy(Foundation.NSZone) M:UIKit.UIPointerShape.get_ClassHandle M:UIKit.UIPointerStyle.#ctor(Foundation.NSObjectFlag) M:UIKit.UIPointerStyle.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UIPointerStyle.Copy(Foundation.NSZone) M:UIKit.UIPointerStyle.get_ClassHandle M:UIKit.UIPointerStyle.set_Accessories(UIKit.UIPointerAccessory[]) M:UIKit.UIPopoverBackgroundView.#ctor @@ -102676,6 +106404,9 @@ M:UIKit.UIPopoverBackgroundView.GetAppearance(UIKit.UITraitCollection) M:UIKit.UIPopoverBackgroundView.GetAppearance``1 M:UIKit.UIPopoverBackgroundView.GetAppearance``1(UIKit.UITraitCollection,System.Type[]) M:UIKit.UIPopoverBackgroundView.GetAppearance``1(UIKit.UITraitCollection) +M:UIKit.UIPopoverBackgroundView.GetArrowBase +M:UIKit.UIPopoverBackgroundView.GetArrowHeight +M:UIKit.UIPopoverBackgroundView.GetContentViewInsets M:UIKit.UIPopoverBackgroundView.set_ArrowDirection(UIKit.UIPopoverArrowDirection) M:UIKit.UIPopoverBackgroundView.set_ArrowOffset(System.Runtime.InteropServices.NFloat) M:UIKit.UIPopoverBackgroundView.UIPopoverBackgroundViewAppearance.#ctor(System.IntPtr) @@ -102764,16 +106495,34 @@ M:UIKit.UIPopoverPresentationControllerRepositionEventArgs.set_TargetRect(CoreGr M:UIKit.UIPopoverPresentationControllerSourceItem_Extensions.GetFrame(UIKit.IUIPopoverPresentationControllerSourceItem,UIKit.UIView) M:UIKit.UIPresentationController.#ctor(Foundation.NSObjectFlag) M:UIKit.UIPresentationController.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UIPresentationController.DidUpdateFocus(UIKit.UIFocusUpdateContext,UIKit.UIFocusAnimationCoordinator) M:UIKit.UIPresentationController.Dispose(System.Boolean) M:UIKit.UIPresentationController.get_ClassHandle M:UIKit.UIPresentationController.get_Delegate +M:UIKit.UIPresentationController.get_FocusGroupIdentifier +M:UIKit.UIPresentationController.get_FocusItemContainer +M:UIKit.UIPresentationController.get_ParentFocusEnvironment +M:UIKit.UIPresentationController.get_PreferredContentSize +M:UIKit.UIPresentationController.get_PreferredFocusedView +M:UIKit.UIPresentationController.get_PreferredFocusEnvironments +M:UIKit.UIPresentationController.get_TraitCollection +M:UIKit.UIPresentationController.GetSizeForChildContentContainer(UIKit.IUIContentContainer,CoreGraphics.CGSize) +M:UIKit.UIPresentationController.GetSoundIdentifier(UIKit.UIFocusUpdateContext) +M:UIKit.UIPresentationController.PreferredContentSizeDidChangeForChildContentContainer(UIKit.IUIContentContainer) M:UIKit.UIPresentationController.RegisterForTraitChanges(UIKit.IUITraitDefinition[],Foundation.NSObject,ObjCRuntime.Selector) M:UIKit.UIPresentationController.RegisterForTraitChanges(UIKit.IUITraitDefinition[],ObjCRuntime.Selector) M:UIKit.UIPresentationController.RegisterForTraitChanges(UIKit.IUITraitDefinition[],System.Action{UIKit.IUITraitEnvironment,UIKit.UITraitCollection}) M:UIKit.UIPresentationController.set_Delegate(UIKit.IUIAdaptivePresentationControllerDelegate) M:UIKit.UIPresentationController.set_OverrideTraitCollection(UIKit.UITraitCollection) M:UIKit.UIPresentationController.set_WeakDelegate(Foundation.NSObject) +M:UIKit.UIPresentationController.SetNeedsFocusUpdate +M:UIKit.UIPresentationController.ShouldUpdateFocus(UIKit.UIFocusUpdateContext) +M:UIKit.UIPresentationController.SystemLayoutFittingSizeDidChangeForChildContentContainer(UIKit.IUIContentContainer) +M:UIKit.UIPresentationController.TraitCollectionDidChange(UIKit.UITraitCollection) M:UIKit.UIPresentationController.UnregisterForTraitChanges(UIKit.IUITraitChangeRegistration) +M:UIKit.UIPresentationController.UpdateFocusIfNeeded +M:UIKit.UIPresentationController.ViewWillTransitionToSize(CoreGraphics.CGSize,UIKit.IUIViewControllerTransitionCoordinator) +M:UIKit.UIPresentationController.WillTransitionToTraitCollection(UIKit.UITraitCollection,UIKit.IUIViewControllerTransitionCoordinator) M:UIKit.UIPress.#ctor M:UIKit.UIPress.#ctor(Foundation.NSObjectFlag) M:UIKit.UIPress.#ctor(ObjCRuntime.NativeHandle) @@ -102785,11 +106534,15 @@ M:UIKit.UIPressesEvent.get_ClassHandle M:UIKit.UIPreviewAction.#ctor M:UIKit.UIPreviewAction.#ctor(Foundation.NSObjectFlag) M:UIKit.UIPreviewAction.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UIPreviewAction.Copy(Foundation.NSZone) M:UIKit.UIPreviewAction.get_ClassHandle +M:UIKit.UIPreviewAction.get_Title M:UIKit.UIPreviewActionGroup.#ctor M:UIKit.UIPreviewActionGroup.#ctor(Foundation.NSObjectFlag) M:UIKit.UIPreviewActionGroup.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UIPreviewActionGroup.Copy(Foundation.NSZone) M:UIKit.UIPreviewActionGroup.get_ClassHandle +M:UIKit.UIPreviewActionGroup.get_Title M:UIKit.UIPreviewHandler.#ctor(System.Object,System.IntPtr) M:UIKit.UIPreviewHandler.BeginInvoke(UIKit.UIPreviewAction,UIKit.UIViewController,System.AsyncCallback,System.Object) M:UIKit.UIPreviewHandler.EndInvoke(System.IAsyncResult) @@ -102818,12 +106571,14 @@ M:UIKit.UIPreviewInteractionDelegate.DidUpdatePreviewTransition(UIKit.UIPreviewI M:UIKit.UIPreviewInteractionDelegate.ShouldBegin(UIKit.UIPreviewInteraction) M:UIKit.UIPreviewParameters.#ctor(Foundation.NSObjectFlag) M:UIKit.UIPreviewParameters.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UIPreviewParameters.Copy(Foundation.NSZone) M:UIKit.UIPreviewParameters.get_ClassHandle M:UIKit.UIPreviewParameters.set_BackgroundColor(UIKit.UIColor) M:UIKit.UIPreviewParameters.set_ShadowPath(UIKit.UIBezierPath) M:UIKit.UIPreviewParameters.set_VisiblePath(UIKit.UIBezierPath) M:UIKit.UIPreviewTarget.#ctor(Foundation.NSObjectFlag) M:UIKit.UIPreviewTarget.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UIPreviewTarget.Copy(Foundation.NSZone) M:UIKit.UIPreviewTarget.get_ClassHandle M:UIKit.UIPrinter.#ctor(Foundation.NSObjectFlag) M:UIKit.UIPrinter.#ctor(ObjCRuntime.NativeHandle) @@ -102884,6 +106639,7 @@ M:UIKit.UIPrintErrorExtensions.GetDomain(UIKit.UIPrintError) M:UIKit.UIPrintFormatter.#ctor M:UIKit.UIPrintFormatter.#ctor(Foundation.NSObjectFlag) M:UIKit.UIPrintFormatter.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UIPrintFormatter.Copy(Foundation.NSZone) M:UIKit.UIPrintFormatter.Dispose(System.Boolean) M:UIKit.UIPrintFormatter.get_ClassHandle M:UIKit.UIPrintFormatter.set_ContentInsets(UIKit.UIEdgeInsets) @@ -102893,6 +106649,8 @@ M:UIKit.UIPrintFormatter.set_PerPageContentInsets(UIKit.UIEdgeInsets) M:UIKit.UIPrintFormatter.set_StartPage(System.IntPtr) M:UIKit.UIPrintInfo.#ctor(Foundation.NSObjectFlag) M:UIKit.UIPrintInfo.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UIPrintInfo.Copy(Foundation.NSZone) +M:UIKit.UIPrintInfo.EncodeTo(Foundation.NSCoder) M:UIKit.UIPrintInfo.get_ClassHandle M:UIKit.UIPrintInfo.set_Duplex(UIKit.UIPrintInfoDuplex) M:UIKit.UIPrintInfo.set_JobName(System.String) @@ -103012,6 +106770,7 @@ M:UIKit.UIProgressView.#ctor M:UIKit.UIProgressView.#ctor(Foundation.NSObjectFlag) M:UIKit.UIProgressView.#ctor(ObjCRuntime.NativeHandle) M:UIKit.UIProgressView.AppearanceWhenContainedIn(System.Type[]) +M:UIKit.UIProgressView.EncodeTo(Foundation.NSCoder) M:UIKit.UIProgressView.get_Appearance M:UIKit.UIProgressView.get_ClassHandle M:UIKit.UIProgressView.GetAppearance(UIKit.UITraitCollection,System.Type[]) @@ -103066,11 +106825,15 @@ M:UIKit.UIRefreshControl.UIRefreshControlAppearance.#ctor(System.IntPtr) M:UIKit.UIRefreshControl.UIRefreshControlAppearance.get_AttributedTitle M:UIKit.UIRefreshControl.UIRefreshControlAppearance.set_AttributedTitle(Foundation.NSAttributedString) M:UIKit.UIRegion.#ctor +M:UIKit.UIRegion.#ctor(Foundation.NSCoder) M:UIKit.UIRegion.#ctor(Foundation.NSObjectFlag) M:UIKit.UIRegion.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UIRegion.Copy(Foundation.NSZone) +M:UIKit.UIRegion.EncodeTo(Foundation.NSCoder) M:UIKit.UIRegion.get_ClassHandle M:UIKit.UIResolvedShape.#ctor(Foundation.NSObjectFlag) M:UIKit.UIResolvedShape.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UIResolvedShape.Copy(Foundation.NSZone) M:UIKit.UIResolvedShape.get_ClassHandle M:UIKit.UIResponder.#ctor M:UIKit.UIResponder.#ctor(Foundation.NSObjectFlag) @@ -103084,13 +106847,35 @@ M:UIKit.UIResponder.AccessibilityPerformEscape M:UIKit.UIResponder.AccessibilityPerformMagicTap M:UIKit.UIResponder.AccessibilityScroll(UIKit.UIAccessibilityScrollDirection) M:UIKit.UIResponder.CanPaste(Foundation.NSItemProvider[]) +M:UIKit.UIResponder.Copy(Foundation.NSObject) +M:UIKit.UIResponder.Cut(Foundation.NSObject) +M:UIKit.UIResponder.DecreaseSize(Foundation.NSObject) +M:UIKit.UIResponder.Delete(Foundation.NSObject) +M:UIKit.UIResponder.Duplicate(Foundation.NSObject) +M:UIKit.UIResponder.Export(Foundation.NSObject) +M:UIKit.UIResponder.Find(Foundation.NSObject) +M:UIKit.UIResponder.FindAndReplace(Foundation.NSObject) +M:UIKit.UIResponder.FindNext(Foundation.NSObject) +M:UIKit.UIResponder.FindPrevious(Foundation.NSObject) M:UIKit.UIResponder.get_AccessibilityAssistiveTechnologyFocusedIdentifiers M:UIKit.UIResponder.get_AccessibilityCustomActions M:UIKit.UIResponder.get_AccessibilityDragSourceDescriptors M:UIKit.UIResponder.get_AccessibilityDropPointDescriptors M:UIKit.UIResponder.get_ClassHandle M:UIKit.UIResponder.get_PasteConfiguration +M:UIKit.UIResponder.IncreaseSize(Foundation.NSObject) +M:UIKit.UIResponder.MakeTextWritingDirectionLeftToRight(Foundation.NSObject) +M:UIKit.UIResponder.MakeTextWritingDirectionRightToLeft(Foundation.NSObject) +M:UIKit.UIResponder.Move(Foundation.NSObject) M:UIKit.UIResponder.Paste(Foundation.NSItemProvider[]) +M:UIKit.UIResponder.Paste(Foundation.NSObject) +M:UIKit.UIResponder.PasteAndGo(Foundation.NSObject) +M:UIKit.UIResponder.PasteAndMatchStyle(Foundation.NSObject) +M:UIKit.UIResponder.PasteAndSearch(Foundation.NSObject) +M:UIKit.UIResponder.Print(Foundation.NSObject) +M:UIKit.UIResponder.Rename(Foundation.NSObject) +M:UIKit.UIResponder.Select(Foundation.NSObject) +M:UIKit.UIResponder.SelectAll(Foundation.NSObject) M:UIKit.UIResponder.set_AccessibilityCustomActions(UIKit.UIAccessibilityCustomAction[]) M:UIKit.UIResponder.set_AccessibilityDragSourceDescriptors(UIKit.UIAccessibilityLocationDescriptor[]) M:UIKit.UIResponder.set_AccessibilityDropPointDescriptors(UIKit.UIAccessibilityLocationDescriptor[]) @@ -103098,6 +106883,11 @@ M:UIKit.UIResponder.set_ActivityItemsConfiguration(UIKit.IUIActivityItemsConfigu M:UIKit.UIResponder.set_PasteConfiguration(UIKit.UIPasteConfiguration) M:UIKit.UIResponder.set_TouchBar(AppKit.NSTouchBar) M:UIKit.UIResponder.set_UserActivity(Foundation.NSUserActivity) +M:UIKit.UIResponder.ToggleBoldface(Foundation.NSObject) +M:UIKit.UIResponder.ToggleItalics(Foundation.NSObject) +M:UIKit.UIResponder.ToggleUnderline(Foundation.NSObject) +M:UIKit.UIResponder.UpdateTextAttributes(UIKit.UITextAttributesConversionHandler) +M:UIKit.UIResponder.UseSelectionForFind(Foundation.NSObject) M:UIKit.UIResponderStandardEditActions_Extensions.Copy(UIKit.IUIResponderStandardEditActions,Foundation.NSObject) M:UIKit.UIResponderStandardEditActions_Extensions.Cut(UIKit.IUIResponderStandardEditActions,Foundation.NSObject) M:UIKit.UIResponderStandardEditActions_Extensions.DecreaseSize(UIKit.IUIResponderStandardEditActions,Foundation.NSObject) @@ -103177,6 +106967,7 @@ M:UIKit.UISceneActivationRequestOptions.set_RequestingScene(UIKit.UIScene) M:UIKit.UISceneConfiguration.#ctor(Foundation.NSCoder) M:UIKit.UISceneConfiguration.#ctor(Foundation.NSObjectFlag) M:UIKit.UISceneConfiguration.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UISceneConfiguration.Copy(Foundation.NSZone) M:UIKit.UISceneConfiguration.EncodeTo(Foundation.NSCoder) M:UIKit.UISceneConfiguration.get_ClassHandle M:UIKit.UISceneConfiguration.get_DelegateType @@ -103241,6 +107032,7 @@ M:UIKit.UISceneSession.set_StateRestorationActivity(Foundation.NSUserActivity) M:UIKit.UISceneSession.set_UserInfo(Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject}) M:UIKit.UISceneSessionActivationRequest.#ctor(Foundation.NSObjectFlag) M:UIKit.UISceneSessionActivationRequest.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UISceneSessionActivationRequest.Copy(Foundation.NSZone) M:UIKit.UISceneSessionActivationRequest.get_ClassHandle M:UIKit.UISceneSessionActivationRequest.set_Options(UIKit.UISceneActivationRequestOptions) M:UIKit.UISceneSessionActivationRequest.set_UserActivity(Foundation.NSUserActivity) @@ -103271,6 +107063,7 @@ M:UIKit.UIScreen.get_DidConnectNotification M:UIKit.UIScreen.get_DidDisconnectNotification M:UIKit.UIScreen.get_ModeDidChangeNotification M:UIKit.UIScreen.get_ReferenceDisplayModeStatusDidChangeNotification +M:UIKit.UIScreen.get_TraitCollection M:UIKit.UIScreen.Notifications.ObserveBrightnessDidChange(Foundation.NSObject,System.EventHandler{Foundation.NSNotificationEventArgs}) M:UIKit.UIScreen.Notifications.ObserveBrightnessDidChange(System.EventHandler{Foundation.NSNotificationEventArgs}) M:UIKit.UIScreen.Notifications.ObserveCapturedDidChange(Foundation.NSObject,System.EventHandler{Foundation.NSNotificationEventArgs}) @@ -103287,6 +107080,7 @@ M:UIKit.UIScreen.set_Brightness(System.Runtime.InteropServices.NFloat) M:UIKit.UIScreen.set_CurrentMode(UIKit.UIScreenMode) M:UIKit.UIScreen.set_OverscanCompensation(UIKit.UIScreenOverscanCompensation) M:UIKit.UIScreen.set_WantsSoftwareDimming(System.Boolean) +M:UIKit.UIScreen.TraitCollectionDidChange(UIKit.UITraitCollection) M:UIKit.UIScreenEdgePanGestureRecognizer.#ctor M:UIKit.UIScreenEdgePanGestureRecognizer.#ctor(Foundation.NSObject,ObjCRuntime.Selector) M:UIKit.UIScreenEdgePanGestureRecognizer.#ctor(Foundation.NSObjectFlag) @@ -103317,11 +107111,14 @@ M:UIKit.UIScreenshotServiceDelegatePdfHandler.EndInvoke(System.IAsyncResult) M:UIKit.UIScreenshotServiceDelegatePdfHandler.Invoke(Foundation.NSData,System.IntPtr,CoreGraphics.CGRect) M:UIKit.UIScribbleInteraction.#ctor(Foundation.NSObjectFlag) M:UIKit.UIScribbleInteraction.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UIScribbleInteraction.DidMoveToView(UIKit.UIView) M:UIKit.UIScribbleInteraction.Dispose(System.Boolean) M:UIKit.UIScribbleInteraction.get_ClassHandle M:UIKit.UIScribbleInteraction.get_Delegate M:UIKit.UIScribbleInteraction.get_HandlingWriting M:UIKit.UIScribbleInteraction.get_PencilInputExpected +M:UIKit.UIScribbleInteraction.get_View +M:UIKit.UIScribbleInteraction.WillMoveToView(UIKit.UIView) M:UIKit.UIScribbleInteractionDelegate_Extensions.DidFinishWriting(UIKit.IUIScribbleInteractionDelegate,UIKit.UIScribbleInteraction) M:UIKit.UIScribbleInteractionDelegate_Extensions.ShouldBegin(UIKit.IUIScribbleInteractionDelegate,UIKit.UIScribbleInteraction,CoreGraphics.CGPoint) M:UIKit.UIScribbleInteractionDelegate_Extensions.ShouldDelayFocus(UIKit.IUIScribbleInteractionDelegate,UIKit.UIScribbleInteraction) @@ -103335,6 +107132,7 @@ M:UIKit.UIScribbleInteractionDelegate.ShouldDelayFocus(UIKit.UIScribbleInteracti M:UIKit.UIScribbleInteractionDelegate.WillBeginWriting(UIKit.UIScribbleInteraction) M:UIKit.UIScrollView.#ctor M:UIKit.UIScrollView.#ctor(CoreGraphics.CGRect) +M:UIKit.UIScrollView.#ctor(Foundation.NSCoder) M:UIKit.UIScrollView.#ctor(Foundation.NSObjectFlag) M:UIKit.UIScrollView.#ctor(ObjCRuntime.NativeHandle) M:UIKit.UIScrollView.add_DecelerationEnded(System.EventHandler) @@ -103365,6 +107163,7 @@ M:UIKit.UIScrollView.get_ScrollEnabled M:UIKit.UIScrollView.get_ShouldScrollToTop M:UIKit.UIScrollView.get_Tracking M:UIKit.UIScrollView.get_ViewForZoomingInScrollView +M:UIKit.UIScrollView.get_VisibleSize M:UIKit.UIScrollView.get_ZoomBouncing M:UIKit.UIScrollView.get_Zooming M:UIKit.UIScrollView.GetAppearance(UIKit.UITraitCollection,System.Type[]) @@ -103482,15 +107281,29 @@ M:UIKit.UISearchBar.AppearanceWhenContainedIn(System.Type[]) M:UIKit.UISearchBar.Dispose(System.Boolean) M:UIKit.UISearchBar.EncodeTo(Foundation.NSCoder) M:UIKit.UISearchBar.get_Appearance +M:UIKit.UISearchBar.get_AutocapitalizationType +M:UIKit.UISearchBar.get_AutocorrectionType +M:UIKit.UISearchBar.get_BarPosition M:UIKit.UISearchBar.get_ClassHandle M:UIKit.UISearchBar.get_Delegate M:UIKit.UISearchBar.get_Enabled +M:UIKit.UISearchBar.get_EnablesReturnKeyAutomatically +M:UIKit.UISearchBar.get_InlinePredictionType +M:UIKit.UISearchBar.get_KeyboardAppearance +M:UIKit.UISearchBar.get_KeyboardType M:UIKit.UISearchBar.get_LookToDictateEnabled +M:UIKit.UISearchBar.get_PasswordRules +M:UIKit.UISearchBar.get_ReturnKeyType M:UIKit.UISearchBar.get_SearchResultsButtonSelected M:UIKit.UISearchBar.get_SecureTextEntry M:UIKit.UISearchBar.get_ShouldBeginEditing M:UIKit.UISearchBar.get_ShouldChangeTextInRange M:UIKit.UISearchBar.get_ShouldEndEditing +M:UIKit.UISearchBar.get_SmartDashesType +M:UIKit.UISearchBar.get_SmartInsertDeleteType +M:UIKit.UISearchBar.get_SmartQuotesType +M:UIKit.UISearchBar.get_SpellCheckingType +M:UIKit.UISearchBar.get_TextContentType M:UIKit.UISearchBar.get_Translucent M:UIKit.UISearchBar.GetAppearance(UIKit.UITraitCollection,System.Type[]) M:UIKit.UISearchBar.GetAppearance(UIKit.UITraitCollection) @@ -103620,11 +107433,19 @@ M:UIKit.UISearchContainerViewController.get_ClassHandle M:UIKit.UISearchController.#ctor M:UIKit.UISearchController.#ctor(Foundation.NSObjectFlag) M:UIKit.UISearchController.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UISearchController.AnimateTransition(UIKit.IUIViewControllerContextTransitioning) +M:UIKit.UISearchController.AnimationEnded(System.Boolean) M:UIKit.UISearchController.Dispose(System.Boolean) M:UIKit.UISearchController.get_Active M:UIKit.UISearchController.get_ClassHandle M:UIKit.UISearchController.get_Delegate M:UIKit.UISearchController.get_SearchResultsUpdater +M:UIKit.UISearchController.GetAnimationControllerForDismissedController(UIKit.UIViewController) +M:UIKit.UISearchController.GetAnimationControllerForPresentedController(UIKit.UIViewController,UIKit.UIViewController,UIKit.UIViewController) +M:UIKit.UISearchController.GetInteractionControllerForDismissal(UIKit.IUIViewControllerAnimatedTransitioning) +M:UIKit.UISearchController.GetInteractionControllerForPresentation(UIKit.IUIViewControllerAnimatedTransitioning) +M:UIKit.UISearchController.GetInterruptibleAnimator(UIKit.IUIViewControllerContextTransitioning) +M:UIKit.UISearchController.GetPresentationControllerForPresentedViewController(UIKit.UIViewController,UIKit.UIViewController,UIKit.UIViewController) M:UIKit.UISearchController.set_Active(System.Boolean) M:UIKit.UISearchController.set_AutomaticallyShowsCancelButton(System.Boolean) M:UIKit.UISearchController.set_AutomaticallyShowsScopeBar(System.Boolean) @@ -103642,6 +107463,7 @@ M:UIKit.UISearchController.set_ShowsSearchResultsController(System.Boolean) M:UIKit.UISearchController.set_WeakDelegate(Foundation.NSObject) M:UIKit.UISearchController.set_WeakSearchResultsUpdater(Foundation.NSObject) M:UIKit.UISearchController.SetSearchResultsUpdater(System.Action{UIKit.UISearchController}) +M:UIKit.UISearchController.TransitionDuration(UIKit.IUIViewControllerContextTransitioning) M:UIKit.UISearchControllerDelegate_Extensions.DidChangeFromSearchBarPlacement(UIKit.IUISearchControllerDelegate,UIKit.UISearchController,UIKit.UINavigationItemSearchBarPlacement) M:UIKit.UISearchControllerDelegate_Extensions.DidDismissSearchController(UIKit.IUISearchControllerDelegate,UIKit.UISearchController) M:UIKit.UISearchControllerDelegate_Extensions.DidPresentSearchController(UIKit.IUISearchControllerDelegate,UIKit.UISearchController) @@ -103805,6 +107627,7 @@ M:UIKit.UISelectionFeedbackGenerator.#ctor(ObjCRuntime.NativeHandle) M:UIKit.UISelectionFeedbackGenerator.get_ClassHandle M:UIKit.UIShape.#ctor(Foundation.NSObjectFlag) M:UIKit.UIShape.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UIShape.Copy(Foundation.NSZone) M:UIKit.UIShape.get_ClassHandle M:UIKit.UIShapeResolutionContext.#ctor(Foundation.NSObjectFlag) M:UIKit.UIShapeResolutionContext.#ctor(ObjCRuntime.NativeHandle) @@ -103858,6 +107681,7 @@ M:UIKit.UISimpleTextPrintFormatter.set_Text(System.String) M:UIKit.UISimpleTextPrintFormatter.set_TextAlignment(UIKit.UITextAlignment) M:UIKit.UISlider.#ctor M:UIKit.UISlider.#ctor(CoreGraphics.CGRect) +M:UIKit.UISlider.#ctor(Foundation.NSCoder) M:UIKit.UISlider.#ctor(Foundation.NSObjectFlag) M:UIKit.UISlider.#ctor(ObjCRuntime.NativeHandle) M:UIKit.UISlider.AppearanceWhenContainedIn(System.Type[]) @@ -104078,14 +107902,20 @@ M:UIKit.UISplitViewShowEventArgs.set_AViewController(UIKit.UIViewController) M:UIKit.UISplitViewShowEventArgs.set_Button(UIKit.UIBarButtonItem) M:UIKit.UISpringLoadedInteraction.#ctor(Foundation.NSObjectFlag) M:UIKit.UISpringLoadedInteraction.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UISpringLoadedInteraction.DidMoveToView(UIKit.UIView) M:UIKit.UISpringLoadedInteraction.Dispose(System.Boolean) M:UIKit.UISpringLoadedInteraction.get_ClassHandle +M:UIKit.UISpringLoadedInteraction.get_View +M:UIKit.UISpringLoadedInteraction.WillMoveToView(UIKit.UIView) M:UIKit.UISpringLoadedInteractionBehavior_Extensions.InteractionDidFinish(UIKit.IUISpringLoadedInteractionBehavior,UIKit.UISpringLoadedInteraction) M:UIKit.UISpringTimingParameters.#ctor(Foundation.NSObjectFlag) M:UIKit.UISpringTimingParameters.#ctor(ObjCRuntime.NativeHandle) M:UIKit.UISpringTimingParameters.Copy(Foundation.NSZone) M:UIKit.UISpringTimingParameters.EncodeTo(Foundation.NSCoder) M:UIKit.UISpringTimingParameters.get_ClassHandle +M:UIKit.UISpringTimingParameters.get_CubicTimingParameters +M:UIKit.UISpringTimingParameters.get_SpringTimingParameters +M:UIKit.UISpringTimingParameters.get_TimingCurveType M:UIKit.UIStackView.#ctor M:UIKit.UIStackView.#ctor(Foundation.NSObjectFlag) M:UIKit.UIStackView.#ctor(ObjCRuntime.NativeHandle) @@ -104284,6 +108114,7 @@ M:UIKit.UISwitch.#ctor M:UIKit.UISwitch.#ctor(Foundation.NSObjectFlag) M:UIKit.UISwitch.#ctor(ObjCRuntime.NativeHandle) M:UIKit.UISwitch.AppearanceWhenContainedIn(System.Type[]) +M:UIKit.UISwitch.EncodeTo(Foundation.NSCoder) M:UIKit.UISwitch.get_Appearance M:UIKit.UISwitch.get_ClassHandle M:UIKit.UISwitch.get_On @@ -104400,6 +108231,7 @@ M:UIKit.UITabBarAppearance.set_StackedItemSpacing(System.Runtime.InteropServices M:UIKit.UITabBarAppearance.set_StackedItemWidth(System.Runtime.InteropServices.NFloat) M:UIKit.UITabBarAppearance.set_StackedLayoutAppearance(UIKit.UITabBarItemAppearance) M:UIKit.UITabBarController.#ctor +M:UIKit.UITabBarController.#ctor(Foundation.NSCoder) M:UIKit.UITabBarController.#ctor(Foundation.NSObjectFlag) M:UIKit.UITabBarController.#ctor(ObjCRuntime.NativeHandle) M:UIKit.UITabBarController.#ctor(System.String,Foundation.NSBundle) @@ -104407,6 +108239,8 @@ M:UIKit.UITabBarController.add_FinishedCustomizingViewControllers(System.EventHa M:UIKit.UITabBarController.add_OnCustomizingViewControllers(System.EventHandler{UIKit.UITabBarCustomizeEventArgs}) M:UIKit.UITabBarController.add_OnEndCustomizingViewControllers(System.EventHandler{UIKit.UITabBarCustomizeChangeEventArgs}) M:UIKit.UITabBarController.add_ViewControllerSelected(System.EventHandler{UIKit.UITabBarSelectionEventArgs}) +M:UIKit.UITabBarController.DidBeginCustomizingItems(UIKit.UITabBar,UIKit.UITabBarItem[]) +M:UIKit.UITabBarController.DidEndCustomizingItems(UIKit.UITabBar,UIKit.UITabBarItem[],System.Boolean) M:UIKit.UITabBarController.Dispose(System.Boolean) M:UIKit.UITabBarController.get_ClassHandle M:UIKit.UITabBarController.get_Delegate @@ -104415,6 +108249,7 @@ M:UIKit.UITabBarController.get_GetInteractionControllerForAnimationController M:UIKit.UITabBarController.get_GetPreferredInterfaceOrientation M:UIKit.UITabBarController.get_ShouldSelectViewController M:UIKit.UITabBarController.get_SupportedInterfaceOrientations +M:UIKit.UITabBarController.ItemSelected(UIKit.UITabBar,UIKit.UITabBarItem) M:UIKit.UITabBarController.remove_FinishedCustomizingViewControllers(System.EventHandler{UIKit.UITabBarCustomizeChangeEventArgs}) M:UIKit.UITabBarController.remove_OnCustomizingViewControllers(System.EventHandler{UIKit.UITabBarCustomizeEventArgs}) M:UIKit.UITabBarController.remove_OnEndCustomizingViewControllers(System.EventHandler{UIKit.UITabBarCustomizeChangeEventArgs}) @@ -104430,6 +108265,8 @@ M:UIKit.UITabBarController.set_ShouldSelectViewController(UIKit.UITabBarSelectio M:UIKit.UITabBarController.set_SupportedInterfaceOrientations(System.Func{UIKit.UITabBarController,UIKit.UIInterfaceOrientationMask}) M:UIKit.UITabBarController.set_ViewControllers(UIKit.UIViewController[]) M:UIKit.UITabBarController.set_WeakDelegate(Foundation.NSObject) +M:UIKit.UITabBarController.WillBeginCustomizingItems(UIKit.UITabBar,UIKit.UITabBarItem[]) +M:UIKit.UITabBarController.WillEndCustomizingItems(UIKit.UITabBar,UIKit.UITabBarItem[],System.Boolean) M:UIKit.UITabBarControllerDelegate_Extensions.FinishedCustomizingViewControllers(UIKit.IUITabBarControllerDelegate,UIKit.UITabBarController,UIKit.UIViewController[],System.Boolean) M:UIKit.UITabBarControllerDelegate_Extensions.GetAnimationControllerForTransition(UIKit.IUITabBarControllerDelegate,UIKit.UITabBarController,UIKit.UIViewController,UIKit.UIViewController) M:UIKit.UITabBarControllerDelegate_Extensions.GetInteractionControllerForAnimationController(UIKit.IUITabBarControllerDelegate,UIKit.UITabBarController,UIKit.IUIViewControllerAnimatedTransitioning) @@ -104521,6 +108358,7 @@ M:UIKit.UITabBarItem.UITabBarItemAppearance.set_StandardAppearance(UIKit.UITabBa M:UIKit.UITabBarItem.UITabBarItemAppearance.set_TitlePositionAdjustment(UIKit.UIOffset) M:UIKit.UITabBarItemAppearance.#ctor(Foundation.NSObjectFlag) M:UIKit.UITabBarItemAppearance.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UITabBarItemAppearance.Copy(Foundation.NSZone) M:UIKit.UITabBarItemAppearance.EncodeTo(Foundation.NSCoder) M:UIKit.UITabBarItemAppearance.get_ClassHandle M:UIKit.UITabBarItemEventArgs.#ctor(UIKit.UITabBarItem) @@ -104559,6 +108397,7 @@ M:UIKit.UITableView.DequeueReusableCell(Foundation.NSString) M:UIKit.UITableView.DequeueReusableCell(System.String,Foundation.NSIndexPath) M:UIKit.UITableView.DequeueReusableHeaderFooterView(System.String) M:UIKit.UITableView.Dispose(System.Boolean) +M:UIKit.UITableView.EncodeTo(Foundation.NSCoder) M:UIKit.UITableView.get_Appearance M:UIKit.UITableView.get_AutomaticDimension M:UIKit.UITableView.get_ClassHandle @@ -104575,9 +108414,14 @@ M:UIKit.UITableView.GetAppearance(UIKit.UITraitCollection) M:UIKit.UITableView.GetAppearance``1 M:UIKit.UITableView.GetAppearance``1(UIKit.UITraitCollection,System.Type[]) M:UIKit.UITableView.GetAppearance``1(UIKit.UITraitCollection) +M:UIKit.UITableView.GetDataSourceIndexPath(Foundation.NSIndexPath) +M:UIKit.UITableView.GetDataSourceSectionIndex(System.IntPtr) +M:UIKit.UITableView.GetPresentationIndexPath(Foundation.NSIndexPath) +M:UIKit.UITableView.GetPresentationSectionIndex(System.IntPtr) M:UIKit.UITableView.Notifications.ObserveSelectionDidChange(Foundation.NSObject,System.EventHandler{Foundation.NSNotificationEventArgs}) M:UIKit.UITableView.Notifications.ObserveSelectionDidChange(System.EventHandler{Foundation.NSNotificationEventArgs}) M:UIKit.UITableView.PerformBatchUpdatesAsync(System.Action) +M:UIKit.UITableView.PerformUsingPresentationValues(System.Action) M:UIKit.UITableView.RegisterClassForCellReuse(System.Type,Foundation.NSString) M:UIKit.UITableView.RegisterClassForCellReuse(System.Type,System.String) M:UIKit.UITableView.RegisterClassForHeaderFooterViewReuse(System.Type,Foundation.NSString) @@ -104646,6 +108490,7 @@ M:UIKit.UITableViewCell.#ctor(Foundation.NSObjectFlag) M:UIKit.UITableViewCell.#ctor(ObjCRuntime.NativeHandle) M:UIKit.UITableViewCell.#ctor(UIKit.UITableViewCellStyle,System.String) M:UIKit.UITableViewCell.AppearanceWhenContainedIn(System.Type[]) +M:UIKit.UITableViewCell.EncodeTo(Foundation.NSCoder) M:UIKit.UITableViewCell.get_Appearance M:UIKit.UITableViewCell.get_ClassHandle M:UIKit.UITableViewCell.get_Editing @@ -104680,6 +108525,13 @@ M:UIKit.UITableViewCell.set_ShouldIndentWhileEditing(System.Boolean) M:UIKit.UITableViewCell.set_ShowingDeleteConfirmation(System.Boolean) M:UIKit.UITableViewCell.set_ShowsReorderControl(System.Boolean) M:UIKit.UITableViewCell.set_UserInteractionEnabledWhileDragging(System.Boolean) +M:UIKit.UITableViewCell.ShouldBegin(UIKit.UIGestureRecognizer) +M:UIKit.UITableViewCell.ShouldBeRequiredToFailBy(UIKit.UIGestureRecognizer,UIKit.UIGestureRecognizer) +M:UIKit.UITableViewCell.ShouldReceiveEvent(UIKit.UIGestureRecognizer,UIKit.UIEvent) +M:UIKit.UITableViewCell.ShouldReceivePress(UIKit.UIGestureRecognizer,UIKit.UIPress) +M:UIKit.UITableViewCell.ShouldReceiveTouch(UIKit.UIGestureRecognizer,UIKit.UITouch) +M:UIKit.UITableViewCell.ShouldRecognizeSimultaneously(UIKit.UIGestureRecognizer,UIKit.UIGestureRecognizer) +M:UIKit.UITableViewCell.ShouldRequireFailureOf(UIKit.UIGestureRecognizer,UIKit.UIGestureRecognizer) M:UIKit.UITableViewCell.UITableViewCellAppearance.#ctor(System.IntPtr) M:UIKit.UITableViewCell.UITableViewCellAppearance.get_FocusStyle M:UIKit.UITableViewCell.UITableViewCellAppearance.get_SeparatorInset @@ -104692,10 +108544,73 @@ M:UIKit.UITableViewCellConfigurationUpdateHandler.Invoke(UIKit.UITableViewCell,U M:UIKit.UITableViewController.#ctor M:UIKit.UITableViewController.#ctor(Foundation.NSObjectFlag) M:UIKit.UITableViewController.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UITableViewController.AccessoryButtonTapped(UIKit.UITableView,Foundation.NSIndexPath) +M:UIKit.UITableViewController.CanEditRow(UIKit.UITableView,Foundation.NSIndexPath) +M:UIKit.UITableViewController.CanFocusRow(UIKit.UITableView,Foundation.NSIndexPath) +M:UIKit.UITableViewController.CanMoveRow(UIKit.UITableView,Foundation.NSIndexPath) +M:UIKit.UITableViewController.CanPerformAction(UIKit.UITableView,ObjCRuntime.Selector,Foundation.NSIndexPath,Foundation.NSObject) +M:UIKit.UITableViewController.CanPerformPrimaryAction(UIKit.UITableView,Foundation.NSIndexPath) +M:UIKit.UITableViewController.CellDisplayingEnded(UIKit.UITableView,UIKit.UITableViewCell,Foundation.NSIndexPath) +M:UIKit.UITableViewController.CommitEditingStyle(UIKit.UITableView,UIKit.UITableViewCellEditingStyle,Foundation.NSIndexPath) +M:UIKit.UITableViewController.CustomizeMoveTarget(UIKit.UITableView,Foundation.NSIndexPath,Foundation.NSIndexPath) +M:UIKit.UITableViewController.DidBeginMultipleSelectionInteraction(UIKit.UITableView,Foundation.NSIndexPath) +M:UIKit.UITableViewController.DidEndEditing(UIKit.UITableView,Foundation.NSIndexPath) +M:UIKit.UITableViewController.DidEndMultipleSelectionInteraction(UIKit.UITableView) +M:UIKit.UITableViewController.DidUpdateFocus(UIKit.UITableView,UIKit.UITableViewFocusUpdateContext,UIKit.UIFocusAnimationCoordinator) +M:UIKit.UITableViewController.EditActionsForRow(UIKit.UITableView,Foundation.NSIndexPath) +M:UIKit.UITableViewController.EditingStyleForRow(UIKit.UITableView,Foundation.NSIndexPath) +M:UIKit.UITableViewController.EstimatedHeight(UIKit.UITableView,Foundation.NSIndexPath) +M:UIKit.UITableViewController.EstimatedHeightForFooter(UIKit.UITableView,System.IntPtr) +M:UIKit.UITableViewController.EstimatedHeightForHeader(UIKit.UITableView,System.IntPtr) +M:UIKit.UITableViewController.FooterViewDisplayingEnded(UIKit.UITableView,UIKit.UIView,System.IntPtr) M:UIKit.UITableViewController.get_ClassHandle +M:UIKit.UITableViewController.GetCell(UIKit.UITableView,Foundation.NSIndexPath) +M:UIKit.UITableViewController.GetContextMenuConfiguration(UIKit.UITableView,Foundation.NSIndexPath,CoreGraphics.CGPoint) +M:UIKit.UITableViewController.GetHeightForFooter(UIKit.UITableView,System.IntPtr) +M:UIKit.UITableViewController.GetHeightForHeader(UIKit.UITableView,System.IntPtr) +M:UIKit.UITableViewController.GetHeightForRow(UIKit.UITableView,Foundation.NSIndexPath) +M:UIKit.UITableViewController.GetIndexPathForPreferredFocusedView(UIKit.UITableView) +M:UIKit.UITableViewController.GetLeadingSwipeActionsConfiguration(UIKit.UITableView,Foundation.NSIndexPath) +M:UIKit.UITableViewController.GetPreviewForDismissingContextMenu(UIKit.UITableView,UIKit.UIContextMenuConfiguration) +M:UIKit.UITableViewController.GetPreviewForHighlightingContextMenu(UIKit.UITableView,UIKit.UIContextMenuConfiguration) +M:UIKit.UITableViewController.GetSelectionFollowsFocusForRow(UIKit.UITableView,Foundation.NSIndexPath) +M:UIKit.UITableViewController.GetTrailingSwipeActionsConfiguration(UIKit.UITableView,Foundation.NSIndexPath) +M:UIKit.UITableViewController.GetViewForFooter(UIKit.UITableView,System.IntPtr) +M:UIKit.UITableViewController.GetViewForHeader(UIKit.UITableView,System.IntPtr) +M:UIKit.UITableViewController.HeaderViewDisplayingEnded(UIKit.UITableView,UIKit.UIView,System.IntPtr) +M:UIKit.UITableViewController.IndentationLevel(UIKit.UITableView,Foundation.NSIndexPath) +M:UIKit.UITableViewController.MoveRow(UIKit.UITableView,Foundation.NSIndexPath,Foundation.NSIndexPath) +M:UIKit.UITableViewController.NumberOfSections(UIKit.UITableView) +M:UIKit.UITableViewController.PerformAction(UIKit.UITableView,ObjCRuntime.Selector,Foundation.NSIndexPath,Foundation.NSObject) +M:UIKit.UITableViewController.PerformPrimaryAction(UIKit.UITableView,Foundation.NSIndexPath) +M:UIKit.UITableViewController.RowDeselected(UIKit.UITableView,Foundation.NSIndexPath) +M:UIKit.UITableViewController.RowHighlighted(UIKit.UITableView,Foundation.NSIndexPath) +M:UIKit.UITableViewController.RowSelected(UIKit.UITableView,Foundation.NSIndexPath) +M:UIKit.UITableViewController.RowsInSection(UIKit.UITableView,System.IntPtr) +M:UIKit.UITableViewController.RowUnhighlighted(UIKit.UITableView,Foundation.NSIndexPath) +M:UIKit.UITableViewController.SectionFor(UIKit.UITableView,System.String,System.IntPtr) +M:UIKit.UITableViewController.SectionIndexTitles(UIKit.UITableView) M:UIKit.UITableViewController.set_ClearsSelectionOnViewWillAppear(System.Boolean) M:UIKit.UITableViewController.set_RefreshControl(UIKit.UIRefreshControl) M:UIKit.UITableViewController.set_TableView(UIKit.UITableView) +M:UIKit.UITableViewController.ShouldBeginMultipleSelectionInteraction(UIKit.UITableView,Foundation.NSIndexPath) +M:UIKit.UITableViewController.ShouldHighlightRow(UIKit.UITableView,Foundation.NSIndexPath) +M:UIKit.UITableViewController.ShouldIndentWhileEditing(UIKit.UITableView,Foundation.NSIndexPath) +M:UIKit.UITableViewController.ShouldShowMenu(UIKit.UITableView,Foundation.NSIndexPath) +M:UIKit.UITableViewController.ShouldSpringLoadRow(UIKit.UITableView,Foundation.NSIndexPath,UIKit.IUISpringLoadedInteractionContext) +M:UIKit.UITableViewController.ShouldUpdateFocus(UIKit.UITableView,UIKit.UITableViewFocusUpdateContext) +M:UIKit.UITableViewController.TitleForDeleteConfirmation(UIKit.UITableView,Foundation.NSIndexPath) +M:UIKit.UITableViewController.TitleForFooter(UIKit.UITableView,System.IntPtr) +M:UIKit.UITableViewController.TitleForHeader(UIKit.UITableView,System.IntPtr) +M:UIKit.UITableViewController.WillBeginEditing(UIKit.UITableView,Foundation.NSIndexPath) +M:UIKit.UITableViewController.WillDeselectRow(UIKit.UITableView,Foundation.NSIndexPath) +M:UIKit.UITableViewController.WillDisplay(UIKit.UITableView,UIKit.UITableViewCell,Foundation.NSIndexPath) +M:UIKit.UITableViewController.WillDisplayContextMenu(UIKit.UITableView,UIKit.UIContextMenuConfiguration,UIKit.IUIContextMenuInteractionAnimating) +M:UIKit.UITableViewController.WillDisplayFooterView(UIKit.UITableView,UIKit.UIView,System.IntPtr) +M:UIKit.UITableViewController.WillDisplayHeaderView(UIKit.UITableView,UIKit.UIView,System.IntPtr) +M:UIKit.UITableViewController.WillEndContextMenuInteraction(UIKit.UITableView,UIKit.UIContextMenuConfiguration,UIKit.IUIContextMenuInteractionAnimating) +M:UIKit.UITableViewController.WillPerformPreviewAction(UIKit.UITableView,UIKit.UIContextMenuConfiguration,UIKit.IUIContextMenuInteractionCommitAnimating) +M:UIKit.UITableViewController.WillSelectRow(UIKit.UITableView,Foundation.NSIndexPath) M:UIKit.UITableViewDataSource_Extensions.CanEditRow(UIKit.IUITableViewDataSource,UIKit.UITableView,Foundation.NSIndexPath) M:UIKit.UITableViewDataSource_Extensions.CanMoveRow(UIKit.IUITableViewDataSource,UIKit.UITableView,Foundation.NSIndexPath) M:UIKit.UITableViewDataSource_Extensions.CommitEditingStyle(UIKit.IUITableViewDataSource,UIKit.UITableView,UIKit.UITableViewCellEditingStyle,Foundation.NSIndexPath) @@ -104831,8 +108746,19 @@ M:UIKit.UITableViewDiffableDataSource`2.#ctor(Foundation.NSObjectFlag) M:UIKit.UITableViewDiffableDataSource`2.#ctor(ObjCRuntime.NativeHandle) M:UIKit.UITableViewDiffableDataSource`2.ApplySnapshotAsync(UIKit.NSDiffableDataSourceSnapshot{`0,`1},System.Boolean) M:UIKit.UITableViewDiffableDataSource`2.ApplySnapshotUsingReloadDataAsync(UIKit.NSDiffableDataSourceSnapshot{`0,`1}) +M:UIKit.UITableViewDiffableDataSource`2.CanEditRow(UIKit.UITableView,Foundation.NSIndexPath) +M:UIKit.UITableViewDiffableDataSource`2.CanMoveRow(UIKit.UITableView,Foundation.NSIndexPath) +M:UIKit.UITableViewDiffableDataSource`2.CommitEditingStyle(UIKit.UITableView,UIKit.UITableViewCellEditingStyle,Foundation.NSIndexPath) M:UIKit.UITableViewDiffableDataSource`2.get_ClassHandle +M:UIKit.UITableViewDiffableDataSource`2.GetCell(UIKit.UITableView,Foundation.NSIndexPath) +M:UIKit.UITableViewDiffableDataSource`2.MoveRow(UIKit.UITableView,Foundation.NSIndexPath,Foundation.NSIndexPath) +M:UIKit.UITableViewDiffableDataSource`2.NumberOfSections(UIKit.UITableView) +M:UIKit.UITableViewDiffableDataSource`2.RowsInSection(UIKit.UITableView,System.IntPtr) +M:UIKit.UITableViewDiffableDataSource`2.SectionFor(UIKit.UITableView,System.String,System.IntPtr) +M:UIKit.UITableViewDiffableDataSource`2.SectionIndexTitles(UIKit.UITableView) M:UIKit.UITableViewDiffableDataSource`2.set_DefaultRowAnimation(UIKit.UITableViewRowAnimation) +M:UIKit.UITableViewDiffableDataSource`2.TitleForFooter(UIKit.UITableView,System.IntPtr) +M:UIKit.UITableViewDiffableDataSource`2.TitleForHeader(UIKit.UITableView,System.IntPtr) M:UIKit.UITableViewDiffableDataSourceCellProvider.#ctor(System.Object,System.IntPtr) M:UIKit.UITableViewDiffableDataSourceCellProvider.BeginInvoke(UIKit.UITableView,Foundation.NSIndexPath,Foundation.NSObject,System.AsyncCallback,System.Object) M:UIKit.UITableViewDiffableDataSourceCellProvider.EndInvoke(System.IAsyncResult) @@ -104914,6 +108840,7 @@ M:UIKit.UITableViewPlaceholder.set_CellUpdateHandler(System.Action{UIKit.UITable M:UIKit.UITableViewRowAction.#ctor M:UIKit.UITableViewRowAction.#ctor(Foundation.NSObjectFlag) M:UIKit.UITableViewRowAction.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UITableViewRowAction.Copy(Foundation.NSZone) M:UIKit.UITableViewRowAction.get_ClassHandle M:UIKit.UITableViewRowAction.set_BackgroundColor(UIKit.UIColor) M:UIKit.UITableViewRowAction.set_BackgroundEffect(UIKit.UIVisualEffect) @@ -105007,6 +108934,7 @@ M:UIKit.UITargetedDragPreview.get_Target M:UIKit.UITargetedDragPreview.get_View M:UIKit.UITargetedPreview.#ctor(Foundation.NSObjectFlag) M:UIKit.UITargetedPreview.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UITargetedPreview.Copy(Foundation.NSZone) M:UIKit.UITargetedPreview.get_ClassHandle M:UIKit.UITextAlignmentExtensions.ToManaged(System.IntPtr) M:UIKit.UITextAlignmentExtensions.ToNative(UIKit.UITextAlignment) @@ -105143,6 +109071,7 @@ M:UIKit.UITextDropDelegate.WillPerformDrop(UIKit.IUITextDroppable,UIKit.IUITextD M:UIKit.UITextDropProposal.#ctor(Foundation.NSObjectFlag) M:UIKit.UITextDropProposal.#ctor(ObjCRuntime.NativeHandle) M:UIKit.UITextDropProposal.#ctor(UIKit.UIDropOperation) +M:UIKit.UITextDropProposal.Copy(Foundation.NSZone) M:UIKit.UITextDropProposal.get_ClassHandle M:UIKit.UITextDropProposal.set_DropAction(UIKit.UITextDropAction) M:UIKit.UITextDropProposal.set_DropPerformer(UIKit.UITextDropPerformer) @@ -105150,39 +109079,53 @@ M:UIKit.UITextDropProposal.set_DropProgressMode(UIKit.UITextDropProgressMode) M:UIKit.UITextDropProposal.set_UseFastSameViewOperations(System.Boolean) M:UIKit.UITextField.#ctor M:UIKit.UITextField.#ctor(CoreGraphics.CGRect) +M:UIKit.UITextField.#ctor(Foundation.NSCoder) M:UIKit.UITextField.#ctor(Foundation.NSObjectFlag) M:UIKit.UITextField.#ctor(ObjCRuntime.NativeHandle) M:UIKit.UITextField.add_Ended(System.EventHandler) M:UIKit.UITextField.add_EndedWithReason(System.EventHandler{UIKit.UITextFieldEditingEndedEventArgs}) M:UIKit.UITextField.add_Started(System.EventHandler) M:UIKit.UITextField.AppearanceWhenContainedIn(System.Type[]) +M:UIKit.UITextField.BeginFloatingCursor(CoreGraphics.CGPoint) M:UIKit.UITextField.CanPaste(Foundation.NSItemProvider[]) +M:UIKit.UITextField.ComparePosition(UIKit.UITextPosition,UIKit.UITextPosition) M:UIKit.UITextField.DeleteBackward +M:UIKit.UITextField.DictationRecognitionFailed +M:UIKit.UITextField.DictationRecordingDidEnd M:UIKit.UITextField.Dispose(System.Boolean) +M:UIKit.UITextField.EndFloatingCursor +M:UIKit.UITextField.get_AdjustsFontForContentSizeCategory M:UIKit.UITextField.get_Appearance M:UIKit.UITextField.get_AutocapitalizationType M:UIKit.UITextField.get_AutocorrectionType +M:UIKit.UITextField.get_BeginningOfDocument M:UIKit.UITextField.get_ClassHandle M:UIKit.UITextField.get_CurrentInputModeDidChangeNotification M:UIKit.UITextField.get_Delegate M:UIKit.UITextField.get_DidEndEditingReasonKey M:UIKit.UITextField.get_EnablesReturnKeyAutomatically +M:UIKit.UITextField.get_EndOfDocument M:UIKit.UITextField.get_HasText M:UIKit.UITextField.get_InlinePredictionType M:UIKit.UITextField.get_InputDelegate M:UIKit.UITextField.get_IsEditing M:UIKit.UITextField.get_KeyboardAppearance M:UIKit.UITextField.get_KeyboardType +M:UIKit.UITextField.get_MarkedTextRange +M:UIKit.UITextField.get_MarkedTextStyle M:UIKit.UITextField.get_PasswordRules M:UIKit.UITextField.get_PasteConfiguration M:UIKit.UITextField.get_PasteDelegate M:UIKit.UITextField.get_ReturnKeyType M:UIKit.UITextField.get_SecureTextEntry +M:UIKit.UITextField.get_SelectedTextRange +M:UIKit.UITextField.get_SelectionAffinity M:UIKit.UITextField.get_ShouldBeginEditing M:UIKit.UITextField.get_ShouldChangeCharacters M:UIKit.UITextField.get_ShouldClear M:UIKit.UITextField.get_ShouldEndEditing M:UIKit.UITextField.get_ShouldReturn +M:UIKit.UITextField.get_SizingRule M:UIKit.UITextField.get_SmartDashesType M:UIKit.UITextField.get_SmartInsertDeleteType M:UIKit.UITextField.get_SmartQuotesType @@ -105201,13 +109144,38 @@ M:UIKit.UITextField.get_TextDropDelegate M:UIKit.UITextField.get_TextDropInteraction M:UIKit.UITextField.get_TextFieldTextDidChangeNotification M:UIKit.UITextField.get_TextFontKey +M:UIKit.UITextField.get_TextInputView M:UIKit.UITextField.get_Tokenizer +M:UIKit.UITextField.get_WeakInputDelegate +M:UIKit.UITextField.get_WeakTokenizer M:UIKit.UITextField.GetAppearance(UIKit.UITraitCollection,System.Type[]) M:UIKit.UITextField.GetAppearance(UIKit.UITraitCollection) M:UIKit.UITextField.GetAppearance``1 M:UIKit.UITextField.GetAppearance``1(UIKit.UITraitCollection,System.Type[]) M:UIKit.UITextField.GetAppearance``1(UIKit.UITraitCollection) +M:UIKit.UITextField.GetBaseWritingDirection(UIKit.UITextPosition,UIKit.UITextStorageDirection) +M:UIKit.UITextField.GetCaretRectForPosition(UIKit.UITextPosition) +M:UIKit.UITextField.GetCharacterOffsetOfPosition(UIKit.UITextPosition,UIKit.UITextRange) +M:UIKit.UITextField.GetCharacterRange(UIKit.UITextPosition,UIKit.UITextLayoutDirection) +M:UIKit.UITextField.GetCharacterRangeAtPoint(CoreGraphics.CGPoint) +M:UIKit.UITextField.GetClosestPositionToPoint(CoreGraphics.CGPoint,UIKit.UITextRange) +M:UIKit.UITextField.GetClosestPositionToPoint(CoreGraphics.CGPoint) +M:UIKit.UITextField.GetEditMenu(UIKit.UITextRange,UIKit.UIMenuElement[]) +M:UIKit.UITextField.GetFirstRectForRange(UIKit.UITextRange) +M:UIKit.UITextField.GetFrameForDictationResultPlaceholder(Foundation.NSObject) +M:UIKit.UITextField.GetOffsetFromPosition(UIKit.UITextPosition,UIKit.UITextPosition) +M:UIKit.UITextField.GetPosition(UIKit.UITextPosition,System.IntPtr) +M:UIKit.UITextField.GetPosition(UIKit.UITextPosition,UIKit.UITextLayoutDirection,System.IntPtr) +M:UIKit.UITextField.GetPosition(UIKit.UITextRange,System.IntPtr) +M:UIKit.UITextField.GetPositionWithinRange(UIKit.UITextRange,UIKit.UITextLayoutDirection) +M:UIKit.UITextField.GetSelectionRects(UIKit.UITextRange) +M:UIKit.UITextField.GetTextRange(UIKit.UITextPosition,UIKit.UITextPosition) +M:UIKit.UITextField.GetTextStyling(UIKit.UITextPosition,UIKit.UITextStorageDirection) +M:UIKit.UITextField.InsertDictationResult(Foundation.NSArray) +M:UIKit.UITextField.InsertDictationResultPlaceholder +M:UIKit.UITextField.InsertText(System.String,System.String[],UIKit.UITextAlternativeStyle) M:UIKit.UITextField.InsertText(System.String) +M:UIKit.UITextField.InsertTextPlaceholder(CoreGraphics.CGSize) M:UIKit.UITextField.Notifications.ObserveCurrentInputModeDidChange(Foundation.NSObject,System.EventHandler{Foundation.NSNotificationEventArgs}) M:UIKit.UITextField.Notifications.ObserveCurrentInputModeDidChange(System.EventHandler{Foundation.NSNotificationEventArgs}) M:UIKit.UITextField.Notifications.ObserveTextDidBeginEditing(Foundation.NSObject,System.EventHandler{Foundation.NSNotificationEventArgs}) @@ -105220,6 +109188,9 @@ M:UIKit.UITextField.Paste(Foundation.NSItemProvider[]) M:UIKit.UITextField.remove_Ended(System.EventHandler) M:UIKit.UITextField.remove_EndedWithReason(System.EventHandler{UIKit.UITextFieldEditingEndedEventArgs}) M:UIKit.UITextField.remove_Started(System.EventHandler) +M:UIKit.UITextField.RemoveDictationResultPlaceholder(Foundation.NSObject,System.Boolean) +M:UIKit.UITextField.RemoveTextPlaceholder(UIKit.UITextPlaceholder) +M:UIKit.UITextField.ReplaceText(UIKit.UITextRange,System.String) M:UIKit.UITextField.set_AdjustsFontForContentSizeCategory(System.Boolean) M:UIKit.UITextField.set_AdjustsFontSizeToFitWidth(System.Boolean) M:UIKit.UITextField.set_AllowsEditingTextAttributes(System.Boolean) @@ -105278,7 +109249,16 @@ M:UIKit.UITextField.set_TypingAttributes(Foundation.NSDictionary) M:UIKit.UITextField.set_WeakDefaultTextAttributes(Foundation.NSDictionary) M:UIKit.UITextField.set_WeakDelegate(Foundation.NSObject) M:UIKit.UITextField.set_WeakInputDelegate(Foundation.NSObject) +M:UIKit.UITextField.SetAttributedMarkedText(Foundation.NSAttributedString,Foundation.NSRange) +M:UIKit.UITextField.SetBaseWritingDirectionforRange(Foundation.NSWritingDirection,UIKit.UITextRange) +M:UIKit.UITextField.SetMarkedText(System.String,Foundation.NSRange) +M:UIKit.UITextField.ShouldChangeTextInRange(UIKit.UITextRange,System.String) +M:UIKit.UITextField.TextInRange(UIKit.UITextRange) M:UIKit.UITextField.UITextFieldAppearance.#ctor(System.IntPtr) +M:UIKit.UITextField.UnmarkText +M:UIKit.UITextField.UpdateFloatingCursor(CoreGraphics.CGPoint) +M:UIKit.UITextField.WillDismissEditMenu(UIKit.IUIEditMenuInteractionAnimating) +M:UIKit.UITextField.WillPresentEditMenu(UIKit.IUIEditMenuInteractionAnimating) M:UIKit.UITextFieldChange.#ctor(System.Object,System.IntPtr) M:UIKit.UITextFieldChange.BeginInvoke(UIKit.UITextField,Foundation.NSRange,System.String,System.AsyncCallback,System.Object) M:UIKit.UITextFieldChange.EndInvoke(System.IAsyncResult) @@ -105319,6 +109299,8 @@ M:UIKit.UITextFieldEditingEndedEventArgs.get_Reason M:UIKit.UITextFieldEditingEndedEventArgs.set_Reason(UIKit.UITextFieldDidEndEditingReason) M:UIKit.UITextFormattingCoordinator.#ctor(Foundation.NSObjectFlag) M:UIKit.UITextFormattingCoordinator.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UITextFormattingCoordinator.DidCancel(UIKit.UIFontPickerViewController) +M:UIKit.UITextFormattingCoordinator.DidPickFont(UIKit.UIFontPickerViewController) M:UIKit.UITextFormattingCoordinator.Dispose(System.Boolean) M:UIKit.UITextFormattingCoordinator.get_ClassHandle M:UIKit.UITextFormattingCoordinator.get_Delegate @@ -105387,12 +109369,17 @@ M:UIKit.UITextInputMode.Notifications.ObserveCurrentInputModeDidChange(System.Ev M:UIKit.UITextInputPasswordRules.#ctor(Foundation.NSCoder) M:UIKit.UITextInputPasswordRules.#ctor(Foundation.NSObjectFlag) M:UIKit.UITextInputPasswordRules.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UITextInputPasswordRules.Copy(Foundation.NSZone) M:UIKit.UITextInputPasswordRules.EncodeTo(Foundation.NSCoder) M:UIKit.UITextInputPasswordRules.get_ClassHandle M:UIKit.UITextInputStringTokenizer.#ctor M:UIKit.UITextInputStringTokenizer.#ctor(Foundation.NSObjectFlag) M:UIKit.UITextInputStringTokenizer.#ctor(ObjCRuntime.NativeHandle) M:UIKit.UITextInputStringTokenizer.get_ClassHandle +M:UIKit.UITextInputStringTokenizer.GetPosition(UIKit.UITextPosition,UIKit.UITextGranularity,UIKit.UITextDirection) +M:UIKit.UITextInputStringTokenizer.GetRangeEnclosingPosition(UIKit.UITextPosition,UIKit.UITextGranularity,UIKit.UITextDirection) +M:UIKit.UITextInputStringTokenizer.ProbeDirection(UIKit.UITextPosition,UIKit.UITextGranularity,UIKit.UITextDirection) +M:UIKit.UITextInputStringTokenizer.ProbeDirectionWithinTextUnit(UIKit.UITextPosition,UIKit.UITextGranularity,UIKit.UITextDirection) M:UIKit.UITextInputTokenizer.#ctor M:UIKit.UITextInputTokenizer.#ctor(Foundation.NSObjectFlag) M:UIKit.UITextInputTokenizer.#ctor(ObjCRuntime.NativeHandle) @@ -105430,12 +109417,15 @@ M:UIKit.UITextInputTraits_Extensions.SetSpellCheckingType(UIKit.IUITextInputTrai M:UIKit.UITextInputTraits_Extensions.SetTextContentType(UIKit.IUITextInputTraits,Foundation.NSString) M:UIKit.UITextInteraction.#ctor(Foundation.NSObjectFlag) M:UIKit.UITextInteraction.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UITextInteraction.DidMoveToView(UIKit.UIView) M:UIKit.UITextInteraction.Dispose(System.Boolean) M:UIKit.UITextInteraction.get_ClassHandle M:UIKit.UITextInteraction.get_Delegate +M:UIKit.UITextInteraction.get_View M:UIKit.UITextInteraction.set_Delegate(UIKit.IUITextInteractionDelegate) M:UIKit.UITextInteraction.set_TextInput(UIKit.IUITextInput) M:UIKit.UITextInteraction.set_WeakDelegate(Foundation.NSObject) +M:UIKit.UITextInteraction.WillMoveToView(UIKit.UIView) M:UIKit.UITextInteractionDelegate_Extensions.DidEnd(UIKit.IUITextInteractionDelegate,UIKit.UITextInteraction) M:UIKit.UITextInteractionDelegate_Extensions.ShouldBegin(UIKit.IUITextInteractionDelegate,UIKit.UITextInteraction,CoreGraphics.CGPoint) M:UIKit.UITextInteractionDelegate_Extensions.WillBegin(UIKit.IUITextInteractionDelegate,UIKit.UITextInteraction) @@ -105500,14 +109490,17 @@ M:UIKit.UITextSearchOptions.#ctor(ObjCRuntime.NativeHandle) M:UIKit.UITextSearchOptions.get_ClassHandle M:UIKit.UITextSelectionDisplayInteraction.#ctor(Foundation.NSObjectFlag) M:UIKit.UITextSelectionDisplayInteraction.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UITextSelectionDisplayInteraction.DidMoveToView(UIKit.UIView) M:UIKit.UITextSelectionDisplayInteraction.Dispose(System.Boolean) M:UIKit.UITextSelectionDisplayInteraction.get_Activated M:UIKit.UITextSelectionDisplayInteraction.get_ClassHandle M:UIKit.UITextSelectionDisplayInteraction.get_Delegate +M:UIKit.UITextSelectionDisplayInteraction.get_View M:UIKit.UITextSelectionDisplayInteraction.set_Activated(System.Boolean) M:UIKit.UITextSelectionDisplayInteraction.set_CursorView(UIKit.IUITextCursorView) M:UIKit.UITextSelectionDisplayInteraction.set_HandleViews(UIKit.IUITextSelectionHandleView[]) M:UIKit.UITextSelectionDisplayInteraction.set_HighlightView(UIKit.IUITextSelectionHighlightView) +M:UIKit.UITextSelectionDisplayInteraction.WillMoveToView(UIKit.UIView) M:UIKit.UITextSelectionDisplayInteractionDelegate_Extensions.GetSelectionContainerViewBelowText(UIKit.IUITextSelectionDisplayInteractionDelegate,UIKit.UITextSelectionDisplayInteraction) M:UIKit.UITextSelectionDisplayInteractionDelegate.#ctor M:UIKit.UITextSelectionDisplayInteractionDelegate.#ctor(Foundation.NSObjectFlag) @@ -105526,37 +109519,50 @@ M:UIKit.UITextView.add_Ended(System.EventHandler) M:UIKit.UITextView.add_SelectionChanged(System.EventHandler) M:UIKit.UITextView.add_Started(System.EventHandler) M:UIKit.UITextView.AppearanceWhenContainedIn(System.Type[]) +M:UIKit.UITextView.BeginFloatingCursor(CoreGraphics.CGPoint) M:UIKit.UITextView.CanPaste(Foundation.NSItemProvider[]) +M:UIKit.UITextView.ComparePosition(UIKit.UITextPosition,UIKit.UITextPosition) M:UIKit.UITextView.DeleteBackward +M:UIKit.UITextView.DictationRecognitionFailed +M:UIKit.UITextView.DictationRecordingDidEnd M:UIKit.UITextView.Dispose(System.Boolean) M:UIKit.UITextView.EncodeTo(Foundation.NSCoder) +M:UIKit.UITextView.EndFloatingCursor +M:UIKit.UITextView.get_AdjustsFontForContentSizeCategory M:UIKit.UITextView.get_AllowTextAttachmentInteraction M:UIKit.UITextView.get_AllowUrlInteraction M:UIKit.UITextView.get_Appearance M:UIKit.UITextView.get_AutocapitalizationType M:UIKit.UITextView.get_AutocorrectionType +M:UIKit.UITextView.get_BeginningOfDocument M:UIKit.UITextView.get_ClassHandle M:UIKit.UITextView.get_CurrentInputModeDidChangeNotification M:UIKit.UITextView.get_Delegate M:UIKit.UITextView.get_Editable M:UIKit.UITextView.get_EnablesReturnKeyAutomatically +M:UIKit.UITextView.get_EndOfDocument M:UIKit.UITextView.get_FindInteractionEnabled M:UIKit.UITextView.get_HasText M:UIKit.UITextView.get_InlinePredictionType M:UIKit.UITextView.get_InputDelegate M:UIKit.UITextView.get_KeyboardAppearance M:UIKit.UITextView.get_KeyboardType +M:UIKit.UITextView.get_MarkedTextRange +M:UIKit.UITextView.get_MarkedTextStyle M:UIKit.UITextView.get_PasswordRules M:UIKit.UITextView.get_PasteConfiguration M:UIKit.UITextView.get_PasteDelegate M:UIKit.UITextView.get_ReturnKeyType M:UIKit.UITextView.get_SecureTextEntry M:UIKit.UITextView.get_Selectable +M:UIKit.UITextView.get_SelectedTextRange +M:UIKit.UITextView.get_SelectionAffinity M:UIKit.UITextView.get_ShouldBeginEditing M:UIKit.UITextView.get_ShouldChangeText M:UIKit.UITextView.get_ShouldEndEditing M:UIKit.UITextView.get_ShouldInteractWithTextAttachment M:UIKit.UITextView.get_ShouldInteractWithUrl +M:UIKit.UITextView.get_SizingRule M:UIKit.UITextView.get_SmartDashesType M:UIKit.UITextView.get_SmartInsertDeleteType M:UIKit.UITextView.get_SmartQuotesType @@ -105575,14 +109581,39 @@ M:UIKit.UITextView.get_TextDropActive M:UIKit.UITextView.get_TextDropDelegate M:UIKit.UITextView.get_TextDropInteraction M:UIKit.UITextView.get_TextFontKey +M:UIKit.UITextView.get_TextInputView M:UIKit.UITextView.get_Tokenizer M:UIKit.UITextView.get_TypingAttributes2 +M:UIKit.UITextView.get_WeakInputDelegate +M:UIKit.UITextView.get_WeakTokenizer M:UIKit.UITextView.GetAppearance(UIKit.UITraitCollection,System.Type[]) M:UIKit.UITextView.GetAppearance(UIKit.UITraitCollection) M:UIKit.UITextView.GetAppearance``1 M:UIKit.UITextView.GetAppearance``1(UIKit.UITraitCollection,System.Type[]) M:UIKit.UITextView.GetAppearance``1(UIKit.UITraitCollection) +M:UIKit.UITextView.GetBaseWritingDirection(UIKit.UITextPosition,UIKit.UITextStorageDirection) +M:UIKit.UITextView.GetCaretRectForPosition(UIKit.UITextPosition) +M:UIKit.UITextView.GetCharacterOffsetOfPosition(UIKit.UITextPosition,UIKit.UITextRange) +M:UIKit.UITextView.GetCharacterRange(UIKit.UITextPosition,UIKit.UITextLayoutDirection) +M:UIKit.UITextView.GetCharacterRangeAtPoint(CoreGraphics.CGPoint) +M:UIKit.UITextView.GetClosestPositionToPoint(CoreGraphics.CGPoint,UIKit.UITextRange) +M:UIKit.UITextView.GetClosestPositionToPoint(CoreGraphics.CGPoint) +M:UIKit.UITextView.GetEditMenu(UIKit.UITextRange,UIKit.UIMenuElement[]) +M:UIKit.UITextView.GetFirstRectForRange(UIKit.UITextRange) +M:UIKit.UITextView.GetFrameForDictationResultPlaceholder(Foundation.NSObject) +M:UIKit.UITextView.GetOffsetFromPosition(UIKit.UITextPosition,UIKit.UITextPosition) +M:UIKit.UITextView.GetPosition(UIKit.UITextPosition,System.IntPtr) +M:UIKit.UITextView.GetPosition(UIKit.UITextPosition,UIKit.UITextLayoutDirection,System.IntPtr) +M:UIKit.UITextView.GetPosition(UIKit.UITextRange,System.IntPtr) +M:UIKit.UITextView.GetPositionWithinRange(UIKit.UITextRange,UIKit.UITextLayoutDirection) +M:UIKit.UITextView.GetSelectionRects(UIKit.UITextRange) +M:UIKit.UITextView.GetTextRange(UIKit.UITextPosition,UIKit.UITextPosition) +M:UIKit.UITextView.GetTextStyling(UIKit.UITextPosition,UIKit.UITextStorageDirection) +M:UIKit.UITextView.InsertDictationResult(Foundation.NSArray) +M:UIKit.UITextView.InsertDictationResultPlaceholder +M:UIKit.UITextView.InsertText(System.String,System.String[],UIKit.UITextAlternativeStyle) M:UIKit.UITextView.InsertText(System.String) +M:UIKit.UITextView.InsertTextPlaceholder(CoreGraphics.CGSize) M:UIKit.UITextView.Notifications.ObserveCurrentInputModeDidChange(Foundation.NSObject,System.EventHandler{Foundation.NSNotificationEventArgs}) M:UIKit.UITextView.Notifications.ObserveCurrentInputModeDidChange(System.EventHandler{Foundation.NSNotificationEventArgs}) M:UIKit.UITextView.Notifications.ObserveTextDidBeginEditing(Foundation.NSObject,System.EventHandler{Foundation.NSNotificationEventArgs}) @@ -105596,6 +109627,9 @@ M:UIKit.UITextView.remove_Changed(System.EventHandler) M:UIKit.UITextView.remove_Ended(System.EventHandler) M:UIKit.UITextView.remove_SelectionChanged(System.EventHandler) M:UIKit.UITextView.remove_Started(System.EventHandler) +M:UIKit.UITextView.RemoveDictationResultPlaceholder(Foundation.NSObject,System.Boolean) +M:UIKit.UITextView.RemoveTextPlaceholder(UIKit.UITextPlaceholder) +M:UIKit.UITextView.ReplaceText(UIKit.UITextRange,System.String) M:UIKit.UITextView.set_AdjustsFontForContentSizeCategory(System.Boolean) M:UIKit.UITextView.set_AllowsEditingTextAttributes(System.Boolean) M:UIKit.UITextView.set_AllowTextAttachmentInteraction(UIKit.UITextViewDelegateShouldInteractTextDelegate) @@ -105652,7 +109686,16 @@ M:UIKit.UITextView.set_UsesStandardTextScaling(System.Boolean) M:UIKit.UITextView.set_WeakDelegate(Foundation.NSObject) M:UIKit.UITextView.set_WeakInputDelegate(Foundation.NSObject) M:UIKit.UITextView.set_WeakLinkTextAttributes(Foundation.NSDictionary) +M:UIKit.UITextView.SetAttributedMarkedText(Foundation.NSAttributedString,Foundation.NSRange) +M:UIKit.UITextView.SetBaseWritingDirectionforRange(Foundation.NSWritingDirection,UIKit.UITextRange) +M:UIKit.UITextView.SetMarkedText(System.String,Foundation.NSRange) +M:UIKit.UITextView.ShouldChangeTextInRange(UIKit.UITextRange,System.String) +M:UIKit.UITextView.TextInRange(UIKit.UITextRange) M:UIKit.UITextView.UITextViewAppearance.#ctor(System.IntPtr) +M:UIKit.UITextView.UnmarkText +M:UIKit.UITextView.UpdateFloatingCursor(CoreGraphics.CGPoint) +M:UIKit.UITextView.WillDismissEditMenu(UIKit.IUIEditMenuInteractionAnimating) +M:UIKit.UITextView.WillPresentEditMenu(UIKit.IUIEditMenuInteractionAnimating) M:UIKit.UITextViewChange.#ctor(System.Object,System.IntPtr) M:UIKit.UITextViewChange.BeginInvoke(UIKit.UITextView,Foundation.NSRange,System.String,System.AsyncCallback,System.Object) M:UIKit.UITextViewChange.EndInvoke(System.IAsyncResult) @@ -105726,6 +109769,7 @@ M:UIKit.UIToolbar.#ctor(ObjCRuntime.NativeHandle) M:UIKit.UIToolbar.AppearanceWhenContainedIn(System.Type[]) M:UIKit.UIToolbar.Dispose(System.Boolean) M:UIKit.UIToolbar.get_Appearance +M:UIKit.UIToolbar.get_BarPosition M:UIKit.UIToolbar.get_ClassHandle M:UIKit.UIToolbar.get_Delegate M:UIKit.UIToolbar.get_Translucent @@ -105780,14 +109824,17 @@ M:UIKit.UIToolTipConfiguration.#ctor(ObjCRuntime.NativeHandle) M:UIKit.UIToolTipConfiguration.get_ClassHandle M:UIKit.UIToolTipInteraction.#ctor(Foundation.NSObjectFlag) M:UIKit.UIToolTipInteraction.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UIToolTipInteraction.DidMoveToView(UIKit.UIView) M:UIKit.UIToolTipInteraction.Dispose(System.Boolean) M:UIKit.UIToolTipInteraction.get_ClassHandle M:UIKit.UIToolTipInteraction.get_Delegate M:UIKit.UIToolTipInteraction.get_Enabled +M:UIKit.UIToolTipInteraction.get_View M:UIKit.UIToolTipInteraction.set_DefaultToolTip(System.String) M:UIKit.UIToolTipInteraction.set_Delegate(UIKit.IUIToolTipInteractionDelegate) M:UIKit.UIToolTipInteraction.set_Enabled(System.Boolean) M:UIKit.UIToolTipInteraction.set_WeakDelegate(Foundation.NSObject) +M:UIKit.UIToolTipInteraction.WillMoveToView(UIKit.UIView) M:UIKit.UIToolTipInteractionDelegate_Extensions.GetConfiguration(UIKit.IUIToolTipInteractionDelegate,UIKit.UIToolTipInteraction,CoreGraphics.CGPoint) M:UIKit.UIToolTipInteractionDelegate.#ctor M:UIKit.UIToolTipInteractionDelegate.#ctor(Foundation.NSObjectFlag) @@ -105811,6 +109858,7 @@ M:UIKit.UITraitAccessibilityContrast.#ctor(Foundation.NSObjectFlag) M:UIKit.UITraitAccessibilityContrast.#ctor(ObjCRuntime.NativeHandle) M:UIKit.UITraitAccessibilityContrast.get_AffectsColorAppearance M:UIKit.UITraitAccessibilityContrast.get_ClassHandle +M:UIKit.UITraitAccessibilityContrast.get_DefaultValue M:UIKit.UITraitAccessibilityContrast.get_Identifier M:UIKit.UITraitAccessibilityContrast.get_Name M:UIKit.UITraitActiveAppearance.#ctor @@ -105818,6 +109866,7 @@ M:UIKit.UITraitActiveAppearance.#ctor(Foundation.NSObjectFlag) M:UIKit.UITraitActiveAppearance.#ctor(ObjCRuntime.NativeHandle) M:UIKit.UITraitActiveAppearance.get_AffectsColorAppearance M:UIKit.UITraitActiveAppearance.get_ClassHandle +M:UIKit.UITraitActiveAppearance.get_DefaultValue M:UIKit.UITraitActiveAppearance.get_Identifier M:UIKit.UITraitActiveAppearance.get_Name M:UIKit.UITraitChangeObservable_Extensions.RegisterForTraitChanges(UIKit.IUITraitChangeObservable,UIKit.IUITraitDefinition[],Foundation.NSObject,ObjCRuntime.Selector) @@ -105825,6 +109874,7 @@ M:UIKit.UITraitChangeObservable_Extensions.RegisterForTraitChanges(UIKit.IUITrai M:UIKit.UITraitChangeObservable_Extensions.RegisterForTraitChanges(UIKit.IUITraitChangeObservable,UIKit.IUITraitDefinition[],System.Action{UIKit.IUITraitEnvironment,UIKit.UITraitCollection}) M:UIKit.UITraitCollection.#ctor(Foundation.NSObjectFlag) M:UIKit.UITraitCollection.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UITraitCollection.Copy(Foundation.NSZone) M:UIKit.UITraitCollection.Create(UIKit.UIContentSizeCategory) M:UIKit.UITraitCollection.EncodeTo(Foundation.NSCoder) M:UIKit.UITraitCollection.get_ClassHandle @@ -105837,6 +109887,7 @@ M:UIKit.UITraitDisplayGamut.#ctor(Foundation.NSObjectFlag) M:UIKit.UITraitDisplayGamut.#ctor(ObjCRuntime.NativeHandle) M:UIKit.UITraitDisplayGamut.get_AffectsColorAppearance M:UIKit.UITraitDisplayGamut.get_ClassHandle +M:UIKit.UITraitDisplayGamut.get_DefaultValue M:UIKit.UITraitDisplayGamut.get_Identifier M:UIKit.UITraitDisplayGamut.get_Name M:UIKit.UITraitDisplayScale.#ctor @@ -105844,6 +109895,7 @@ M:UIKit.UITraitDisplayScale.#ctor(Foundation.NSObjectFlag) M:UIKit.UITraitDisplayScale.#ctor(ObjCRuntime.NativeHandle) M:UIKit.UITraitDisplayScale.get_AffectsColorAppearance M:UIKit.UITraitDisplayScale.get_ClassHandle +M:UIKit.UITraitDisplayScale.get_DefaultValue M:UIKit.UITraitDisplayScale.get_Identifier M:UIKit.UITraitDisplayScale.get_Name M:UIKit.UITraitEnvironment.#ctor @@ -105856,6 +109908,7 @@ M:UIKit.UITraitForceTouchCapability.#ctor(Foundation.NSObjectFlag) M:UIKit.UITraitForceTouchCapability.#ctor(ObjCRuntime.NativeHandle) M:UIKit.UITraitForceTouchCapability.get_AffectsColorAppearance M:UIKit.UITraitForceTouchCapability.get_ClassHandle +M:UIKit.UITraitForceTouchCapability.get_DefaultValue M:UIKit.UITraitForceTouchCapability.get_Identifier M:UIKit.UITraitForceTouchCapability.get_Name M:UIKit.UITraitHorizontalSizeClass.#ctor @@ -105863,6 +109916,7 @@ M:UIKit.UITraitHorizontalSizeClass.#ctor(Foundation.NSObjectFlag) M:UIKit.UITraitHorizontalSizeClass.#ctor(ObjCRuntime.NativeHandle) M:UIKit.UITraitHorizontalSizeClass.get_AffectsColorAppearance M:UIKit.UITraitHorizontalSizeClass.get_ClassHandle +M:UIKit.UITraitHorizontalSizeClass.get_DefaultValue M:UIKit.UITraitHorizontalSizeClass.get_Identifier M:UIKit.UITraitHorizontalSizeClass.get_Name M:UIKit.UITraitImageDynamicRange.#ctor @@ -105870,6 +109924,7 @@ M:UIKit.UITraitImageDynamicRange.#ctor(Foundation.NSObjectFlag) M:UIKit.UITraitImageDynamicRange.#ctor(ObjCRuntime.NativeHandle) M:UIKit.UITraitImageDynamicRange.get_AffectsColorAppearance M:UIKit.UITraitImageDynamicRange.get_ClassHandle +M:UIKit.UITraitImageDynamicRange.get_DefaultValue M:UIKit.UITraitImageDynamicRange.get_Identifier M:UIKit.UITraitImageDynamicRange.get_Name M:UIKit.UITraitLayoutDirection.#ctor @@ -105877,6 +109932,7 @@ M:UIKit.UITraitLayoutDirection.#ctor(Foundation.NSObjectFlag) M:UIKit.UITraitLayoutDirection.#ctor(ObjCRuntime.NativeHandle) M:UIKit.UITraitLayoutDirection.get_AffectsColorAppearance M:UIKit.UITraitLayoutDirection.get_ClassHandle +M:UIKit.UITraitLayoutDirection.get_DefaultValue M:UIKit.UITraitLayoutDirection.get_Identifier M:UIKit.UITraitLayoutDirection.get_Name M:UIKit.UITraitLegibilityWeight.#ctor @@ -105884,6 +109940,7 @@ M:UIKit.UITraitLegibilityWeight.#ctor(Foundation.NSObjectFlag) M:UIKit.UITraitLegibilityWeight.#ctor(ObjCRuntime.NativeHandle) M:UIKit.UITraitLegibilityWeight.get_AffectsColorAppearance M:UIKit.UITraitLegibilityWeight.get_ClassHandle +M:UIKit.UITraitLegibilityWeight.get_DefaultValue M:UIKit.UITraitLegibilityWeight.get_Identifier M:UIKit.UITraitLegibilityWeight.get_Name M:UIKit.UITraitPreferredContentSizeCategory.#ctor @@ -105891,6 +109948,7 @@ M:UIKit.UITraitPreferredContentSizeCategory.#ctor(Foundation.NSObjectFlag) M:UIKit.UITraitPreferredContentSizeCategory.#ctor(ObjCRuntime.NativeHandle) M:UIKit.UITraitPreferredContentSizeCategory.get_AffectsColorAppearance M:UIKit.UITraitPreferredContentSizeCategory.get_ClassHandle +M:UIKit.UITraitPreferredContentSizeCategory.get_DefaultValue M:UIKit.UITraitPreferredContentSizeCategory.get_Identifier M:UIKit.UITraitPreferredContentSizeCategory.get_Name M:UIKit.UITraitSceneCaptureState.#ctor @@ -105898,6 +109956,7 @@ M:UIKit.UITraitSceneCaptureState.#ctor(Foundation.NSObjectFlag) M:UIKit.UITraitSceneCaptureState.#ctor(ObjCRuntime.NativeHandle) M:UIKit.UITraitSceneCaptureState.get_AffectsColorAppearance M:UIKit.UITraitSceneCaptureState.get_ClassHandle +M:UIKit.UITraitSceneCaptureState.get_DefaultValue M:UIKit.UITraitSceneCaptureState.get_Identifier M:UIKit.UITraitSceneCaptureState.get_Name M:UIKit.UITraitToolbarItemPresentationSize.#ctor @@ -105905,6 +109964,7 @@ M:UIKit.UITraitToolbarItemPresentationSize.#ctor(Foundation.NSObjectFlag) M:UIKit.UITraitToolbarItemPresentationSize.#ctor(ObjCRuntime.NativeHandle) M:UIKit.UITraitToolbarItemPresentationSize.get_AffectsColorAppearance M:UIKit.UITraitToolbarItemPresentationSize.get_ClassHandle +M:UIKit.UITraitToolbarItemPresentationSize.get_DefaultValue M:UIKit.UITraitToolbarItemPresentationSize.get_Identifier M:UIKit.UITraitToolbarItemPresentationSize.get_Name M:UIKit.UITraitTypesettingLanguage.#ctor @@ -105912,6 +109972,7 @@ M:UIKit.UITraitTypesettingLanguage.#ctor(Foundation.NSObjectFlag) M:UIKit.UITraitTypesettingLanguage.#ctor(ObjCRuntime.NativeHandle) M:UIKit.UITraitTypesettingLanguage.get_AffectsColorAppearance M:UIKit.UITraitTypesettingLanguage.get_ClassHandle +M:UIKit.UITraitTypesettingLanguage.get_DefaultValue M:UIKit.UITraitTypesettingLanguage.get_Identifier M:UIKit.UITraitTypesettingLanguage.get_Name M:UIKit.UITraitUserInterfaceIdiom.#ctor @@ -105919,6 +109980,7 @@ M:UIKit.UITraitUserInterfaceIdiom.#ctor(Foundation.NSObjectFlag) M:UIKit.UITraitUserInterfaceIdiom.#ctor(ObjCRuntime.NativeHandle) M:UIKit.UITraitUserInterfaceIdiom.get_AffectsColorAppearance M:UIKit.UITraitUserInterfaceIdiom.get_ClassHandle +M:UIKit.UITraitUserInterfaceIdiom.get_DefaultValue M:UIKit.UITraitUserInterfaceIdiom.get_Identifier M:UIKit.UITraitUserInterfaceIdiom.get_Name M:UIKit.UITraitUserInterfaceLevel.#ctor @@ -105926,6 +109988,7 @@ M:UIKit.UITraitUserInterfaceLevel.#ctor(Foundation.NSObjectFlag) M:UIKit.UITraitUserInterfaceLevel.#ctor(ObjCRuntime.NativeHandle) M:UIKit.UITraitUserInterfaceLevel.get_AffectsColorAppearance M:UIKit.UITraitUserInterfaceLevel.get_ClassHandle +M:UIKit.UITraitUserInterfaceLevel.get_DefaultValue M:UIKit.UITraitUserInterfaceLevel.get_Identifier M:UIKit.UITraitUserInterfaceLevel.get_Name M:UIKit.UITraitUserInterfaceStyle.#ctor @@ -105933,6 +109996,7 @@ M:UIKit.UITraitUserInterfaceStyle.#ctor(Foundation.NSObjectFlag) M:UIKit.UITraitUserInterfaceStyle.#ctor(ObjCRuntime.NativeHandle) M:UIKit.UITraitUserInterfaceStyle.get_AffectsColorAppearance M:UIKit.UITraitUserInterfaceStyle.get_ClassHandle +M:UIKit.UITraitUserInterfaceStyle.get_DefaultValue M:UIKit.UITraitUserInterfaceStyle.get_Identifier M:UIKit.UITraitUserInterfaceStyle.get_Name M:UIKit.UITraitVerticalSizeClass.#ctor @@ -105940,6 +110004,7 @@ M:UIKit.UITraitVerticalSizeClass.#ctor(Foundation.NSObjectFlag) M:UIKit.UITraitVerticalSizeClass.#ctor(ObjCRuntime.NativeHandle) M:UIKit.UITraitVerticalSizeClass.get_AffectsColorAppearance M:UIKit.UITraitVerticalSizeClass.get_ClassHandle +M:UIKit.UITraitVerticalSizeClass.get_DefaultValue M:UIKit.UITraitVerticalSizeClass.get_Identifier M:UIKit.UITraitVerticalSizeClass.get_Name M:UIKit.UITransitionContext.get_FromViewControllerKey @@ -105948,18 +110013,22 @@ M:UIKit.UITransitionContext.get_ToViewControllerKey M:UIKit.UITransitionContext.get_ToViewKey M:UIKit.UIUserNotificationAction.#ctor(Foundation.NSObjectFlag) M:UIKit.UIUserNotificationAction.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UIUserNotificationAction.Copy(Foundation.NSZone) M:UIKit.UIUserNotificationAction.EncodeTo(Foundation.NSCoder) M:UIKit.UIUserNotificationAction.get_AuthenticationRequired M:UIKit.UIUserNotificationAction.get_ClassHandle M:UIKit.UIUserNotificationAction.get_Destructive M:UIKit.UIUserNotificationAction.get_ResponseTypedTextKey M:UIKit.UIUserNotificationAction.get_TextInputActionButtonTitleKey +M:UIKit.UIUserNotificationAction.MutableCopy(Foundation.NSZone) M:UIKit.UIUserNotificationAction.set_Behavior(UIKit.UIUserNotificationActionBehavior) M:UIKit.UIUserNotificationAction.set_Parameters(Foundation.NSDictionary) M:UIKit.UIUserNotificationCategory.#ctor(Foundation.NSObjectFlag) M:UIKit.UIUserNotificationCategory.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UIUserNotificationCategory.Copy(Foundation.NSZone) M:UIKit.UIUserNotificationCategory.EncodeTo(Foundation.NSCoder) M:UIKit.UIUserNotificationCategory.get_ClassHandle +M:UIKit.UIUserNotificationCategory.MutableCopy(Foundation.NSZone) M:UIKit.UIUserNotificationSettings.#ctor M:UIKit.UIUserNotificationSettings.#ctor(Foundation.NSCoder) M:UIKit.UIUserNotificationSettings.#ctor(Foundation.NSObjectFlag) @@ -106014,6 +110083,7 @@ M:UIKit.UIView.#ctor M:UIKit.UIView.#ctor(Foundation.NSObjectFlag) M:UIKit.UIView.#ctor(ObjCRuntime.NativeHandle) M:UIKit.UIView.AccessibilityActivate +M:UIKit.UIView.ActionForLayer(CoreAnimation.CALayer,System.String) M:UIKit.UIView.add_AnimationWillEnd(System.Action) M:UIKit.UIView.add_AnimationWillStart(System.Action) M:UIKit.UIView.Add(UIKit.UIView) @@ -106029,8 +110099,16 @@ M:UIKit.UIView.AnimateNotifyAsync(System.Double,System.Double,UIKit.UIViewAnimat M:UIKit.UIView.AppearanceWhenContainedIn(System.Type[]) M:UIKit.UIView.BeginAnimations(System.String) M:UIKit.UIView.Capture(System.Boolean) +M:UIKit.UIView.ConvertPointFromCoordinateSpace(CoreGraphics.CGPoint,UIKit.IUICoordinateSpace) +M:UIKit.UIView.ConvertPointToCoordinateSpace(CoreGraphics.CGPoint,UIKit.IUICoordinateSpace) +M:UIKit.UIView.ConvertRectFromCoordinateSpace(CoreGraphics.CGRect,UIKit.IUICoordinateSpace) +M:UIKit.UIView.ConvertRectToCoordinateSpace(CoreGraphics.CGRect,UIKit.IUICoordinateSpace) +M:UIKit.UIView.DidHintFocusMovement(UIKit.UIFocusMovementHint) M:UIKit.UIView.DidUpdateFocus(UIKit.UIFocusUpdateContext,UIKit.UIFocusAnimationCoordinator) +M:UIKit.UIView.DisplayLayer(CoreAnimation.CALayer) M:UIKit.UIView.Dispose(System.Boolean) +M:UIKit.UIView.DrawLayer(CoreAnimation.CALayer,CoreGraphics.CGContext) +M:UIKit.UIView.EncodeTo(Foundation.NSCoder) M:UIKit.UIView.get_AccessibilityActivationPoint M:UIKit.UIView.get_AccessibilityAttributedHint M:UIKit.UIView.get_AccessibilityAttributedLabel @@ -106061,6 +110139,9 @@ M:UIKit.UIView.get_BoldTextStatusDidChangeNotification M:UIKit.UIView.get_ButtonShapesEnabledStatusDidChangeNotification M:UIKit.UIView.get_ClassHandle M:UIKit.UIView.get_ClosedCaptioningStatusDidChangeNotification +M:UIKit.UIView.get_CollisionBoundingPath +M:UIKit.UIView.get_CollisionBoundsType +M:UIKit.UIView.get_CoordinateSpace M:UIKit.UIView.get_DarkerSystemColorsStatusDidChangeNotification M:UIKit.UIView.get_ElementFocusedNotification M:UIKit.UIView.get_ExclusiveTouch @@ -106073,6 +110154,7 @@ M:UIKit.UIView.get_HearingDevicePairedEarDidChangeNotification M:UIKit.UIView.get_Hidden M:UIKit.UIView.get_InvertColorsStatusDidChangeNotification M:UIKit.UIView.get_IsAccessibilityElement +M:UIKit.UIView.get_IsTransparentFocusItem M:UIKit.UIView.get_LayoutChangedNotification M:UIKit.UIView.get_MonoAudioStatusDidChangeNotification M:UIKit.UIView.get_MultipleTouchEnabled @@ -106111,6 +110193,7 @@ M:UIKit.UIView.get_TraitAdjustable M:UIKit.UIView.get_TraitAllowsDirectInteraction M:UIKit.UIView.get_TraitButton M:UIKit.UIView.get_TraitCausesPageTurn +M:UIKit.UIView.get_TraitCollection M:UIKit.UIView.get_TraitHeader M:UIKit.UIView.get_TraitImage M:UIKit.UIView.get_TraitKeyboardKey @@ -106138,8 +110221,10 @@ M:UIKit.UIView.GetAppearance``1 M:UIKit.UIView.GetAppearance``1(UIKit.UITraitCollection,System.Type[]) M:UIKit.UIView.GetAppearance``1(UIKit.UITraitCollection) M:UIKit.UIView.GetEnumerator +M:UIKit.UIView.GetFocusItems(CoreGraphics.CGRect) M:UIKit.UIView.GetFrame(UIKit.UIView) M:UIKit.UIView.GetSoundIdentifier(UIKit.UIFocusUpdateContext) +M:UIKit.UIView.LayoutSublayersOfLayer(CoreAnimation.CALayer) M:UIKit.UIView.Notifications.ObserveAnnouncementDidFinish(Foundation.NSObject,System.EventHandler{UIKit.UIAccessibilityAnnouncementFinishedEventArgs}) M:UIKit.UIView.Notifications.ObserveAnnouncementDidFinish(System.EventHandler{UIKit.UIAccessibilityAnnouncementFinishedEventArgs}) M:UIKit.UIView.Notifications.ObserveAssistiveTechnologyKey(Foundation.NSObject,System.EventHandler{Foundation.NSNotificationEventArgs}) @@ -106270,6 +110355,7 @@ M:UIKit.UIView.set_TranslatesAutoresizingMaskIntoConstraints(System.Boolean) M:UIKit.UIView.set_UserInteractionEnabled(System.Boolean) M:UIKit.UIView.SetNeedsFocusUpdate M:UIKit.UIView.ShouldUpdateFocus(UIKit.UIFocusUpdateContext) +M:UIKit.UIView.TraitCollectionDidChange(UIKit.UITraitCollection) M:UIKit.UIView.Transition(UIKit.UIView,System.Double,UIKit.UIViewAnimationOptions,System.Action,System.Action) M:UIKit.UIView.Transition(UIKit.UIView,UIKit.UIView,System.Double,UIKit.UIViewAnimationOptions,System.Action) M:UIKit.UIView.TransitionNotifyAsync(UIKit.UIView,System.Double,UIKit.UIViewAnimationOptions,System.Action) @@ -106281,6 +110367,7 @@ M:UIKit.UIView.UIViewAppearance.set_BackgroundColor(UIKit.UIColor) M:UIKit.UIView.UIViewAppearance.set_TintColor(UIKit.UIColor) M:UIKit.UIView.UnregisterForTraitChanges(UIKit.IUITraitChangeRegistration) M:UIKit.UIView.UpdateFocusIfNeeded +M:UIKit.UIView.WillDrawLayer(CoreAnimation.CALayer) M:UIKit.UIViewConfigurationState.#ctor(Foundation.NSObjectFlag) M:UIKit.UIViewConfigurationState.#ctor(ObjCRuntime.NativeHandle) M:UIKit.UIViewConfigurationState.Copy(Foundation.NSZone) @@ -106291,22 +110378,29 @@ M:UIKit.UIViewConfigurationState.get_Focused M:UIKit.UIViewConfigurationState.get_Highlighted M:UIKit.UIViewConfigurationState.get_Pinned M:UIKit.UIViewConfigurationState.get_Selected +M:UIKit.UIViewConfigurationState.GetCustomState(System.String) +M:UIKit.UIViewConfigurationState.GetObject(System.String) M:UIKit.UIViewConfigurationState.set_Disabled(System.Boolean) M:UIKit.UIViewConfigurationState.set_Focused(System.Boolean) M:UIKit.UIViewConfigurationState.set_Highlighted(System.Boolean) M:UIKit.UIViewConfigurationState.set_Pinned(System.Boolean) M:UIKit.UIViewConfigurationState.set_Selected(System.Boolean) M:UIKit.UIViewConfigurationState.set_TraitCollection(UIKit.UITraitCollection) +M:UIKit.UIViewConfigurationState.SetCustomState(Foundation.NSObject,System.String) +M:UIKit.UIViewConfigurationState.SetObject(Foundation.NSObject,System.String) M:UIKit.UIViewController.#ctor M:UIKit.UIViewController.#ctor(Foundation.NSObjectFlag) M:UIKit.UIViewController.#ctor(ObjCRuntime.NativeHandle) M:UIKit.UIViewController.Add(UIKit.UIView) M:UIKit.UIViewController.BeginRequestWithExtensionContext(Foundation.NSExtensionContext) +M:UIKit.UIViewController.DidUpdateFocus(UIKit.UIFocusUpdateContext,UIKit.UIFocusAnimationCoordinator) M:UIKit.UIViewController.DismissMoviePlayerViewController M:UIKit.UIViewController.DismissViewControllerAsync(System.Boolean) M:UIKit.UIViewController.Dispose(System.Boolean) +M:UIKit.UIViewController.EncodeTo(Foundation.NSCoder) M:UIKit.UIViewController.get_ClassHandle M:UIKit.UIViewController.get_Editing +M:UIKit.UIViewController.get_FocusItemContainer M:UIKit.UIViewController.get_HierarchyInconsistencyException M:UIKit.UIViewController.get_IsBeingDismissed M:UIKit.UIViewController.get_IsBeingPresented @@ -106315,11 +110409,18 @@ M:UIKit.UIViewController.get_IsMovingToParentViewController M:UIKit.UIViewController.get_IsViewLoaded M:UIKit.UIViewController.get_ModalInPopover M:UIKit.UIViewController.get_ModalInPresentation +M:UIKit.UIViewController.get_ParentFocusEnvironment +M:UIKit.UIViewController.get_PreferredFocusedView +M:UIKit.UIViewController.get_PreferredFocusEnvironments M:UIKit.UIViewController.get_ShowDetailTargetDidChangeNotification +M:UIKit.UIViewController.get_TraitCollection M:UIKit.UIViewController.get_TransitioningDelegate M:UIKit.UIViewController.GetEnumerator +M:UIKit.UIViewController.GetSizeForChildContentContainer(UIKit.IUIContentContainer,CoreGraphics.CGSize) +M:UIKit.UIViewController.GetSoundIdentifier(UIKit.UIFocusUpdateContext) M:UIKit.UIViewController.Notifications.ObserveShowDetailTargetDidChange(Foundation.NSObject,System.EventHandler{Foundation.NSNotificationEventArgs}) M:UIKit.UIViewController.Notifications.ObserveShowDetailTargetDidChange(System.EventHandler{Foundation.NSNotificationEventArgs}) +M:UIKit.UIViewController.PreferredContentSizeDidChangeForChildContentContainer(UIKit.IUIContentContainer) M:UIKit.UIViewController.PresentMoviePlayerViewController(MediaPlayer.MPMoviePlayerViewController) M:UIKit.UIViewController.PresentViewControllerAsync(UIKit.UIViewController,System.Boolean) M:UIKit.UIViewController.RegisterForTraitChanges(UIKit.IUITraitDefinition[],Foundation.NSObject,ObjCRuntime.Selector) @@ -106356,8 +110457,15 @@ M:UIKit.UIViewController.set_View(UIKit.UIView) M:UIKit.UIViewController.set_ViewRespectsSystemMinimumLayoutMargins(System.Boolean) M:UIKit.UIViewController.set_WantsFullScreenLayout(System.Boolean) M:UIKit.UIViewController.set_WeakTransitioningDelegate(Foundation.NSObject) +M:UIKit.UIViewController.SetNeedsFocusUpdate +M:UIKit.UIViewController.ShouldUpdateFocus(UIKit.UIFocusUpdateContext) +M:UIKit.UIViewController.SystemLayoutFittingSizeDidChangeForChildContentContainer(UIKit.IUIContentContainer) +M:UIKit.UIViewController.TraitCollectionDidChange(UIKit.UITraitCollection) M:UIKit.UIViewController.TransitionAsync(UIKit.UIViewController,UIKit.UIViewController,System.Double,UIKit.UIViewAnimationOptions,System.Action) M:UIKit.UIViewController.UnregisterForTraitChanges(UIKit.IUITraitChangeRegistration) +M:UIKit.UIViewController.UpdateFocusIfNeeded +M:UIKit.UIViewController.ViewWillTransitionToSize(CoreGraphics.CGSize,UIKit.IUIViewControllerTransitionCoordinator) +M:UIKit.UIViewController.WillTransitionToTraitCollection(UIKit.UITraitCollection,UIKit.IUIViewControllerTransitionCoordinator) M:UIKit.UIViewControllerAnimatedTransitioning_Extensions.AnimationEnded(UIKit.IUIViewControllerAnimatedTransitioning,System.Boolean) M:UIKit.UIViewControllerAnimatedTransitioning_Extensions.GetInterruptibleAnimator(UIKit.IUIViewControllerAnimatedTransitioning,UIKit.IUIViewControllerContextTransitioning) M:UIKit.UIViewControllerAnimatedTransitioning.#ctor @@ -106425,6 +110533,7 @@ M:UIKit.UIViewPrintFormatter.get_ClassHandle M:UIKit.UIViewPropertyAnimator.#ctor M:UIKit.UIViewPropertyAnimator.#ctor(Foundation.NSObjectFlag) M:UIKit.UIViewPropertyAnimator.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UIViewPropertyAnimator.Copy(Foundation.NSZone) M:UIKit.UIViewPropertyAnimator.FinishAnimation(UIKit.UIViewAnimatingPosition) M:UIKit.UIViewPropertyAnimator.get_ClassHandle M:UIKit.UIViewPropertyAnimator.get_FractionComplete @@ -106449,6 +110558,7 @@ M:UIKit.UIVisualEffect.#ctor M:UIKit.UIVisualEffect.#ctor(Foundation.NSCoder) M:UIKit.UIVisualEffect.#ctor(Foundation.NSObjectFlag) M:UIKit.UIVisualEffect.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UIVisualEffect.Copy(Foundation.NSZone) M:UIKit.UIVisualEffect.EncodeTo(Foundation.NSCoder) M:UIKit.UIVisualEffect.get_ClassHandle M:UIKit.UIVisualEffectView.#ctor @@ -106474,13 +110584,20 @@ M:UIKit.UIWebLoaderControl.EndInvoke(System.IAsyncResult) M:UIKit.UIWebLoaderControl.Invoke(UIKit.UIWebView,Foundation.NSUrlRequest,UIKit.UIWebViewNavigationType) M:UIKit.UIWebView.#ctor M:UIKit.UIWebView.#ctor(CoreGraphics.CGRect) +M:UIKit.UIWebView.#ctor(Foundation.NSCoder) M:UIKit.UIWebView.#ctor(Foundation.NSObjectFlag) M:UIKit.UIWebView.#ctor(ObjCRuntime.NativeHandle) M:UIKit.UIWebView.add_LoadError(System.EventHandler{UIKit.UIWebErrorArgs}) M:UIKit.UIWebView.add_LoadFinished(System.EventHandler) M:UIKit.UIWebView.add_LoadStarted(System.EventHandler) M:UIKit.UIWebView.AppearanceWhenContainedIn(System.Type[]) +M:UIKit.UIWebView.DecelerationEnded(UIKit.UIScrollView) +M:UIKit.UIWebView.DecelerationStarted(UIKit.UIScrollView) +M:UIKit.UIWebView.DidChangeAdjustedContentInset(UIKit.UIScrollView) +M:UIKit.UIWebView.DidZoom(UIKit.UIScrollView) M:UIKit.UIWebView.Dispose(System.Boolean) +M:UIKit.UIWebView.DraggingEnded(UIKit.UIScrollView,System.Boolean) +M:UIKit.UIWebView.DraggingStarted(UIKit.UIScrollView) M:UIKit.UIWebView.get_Appearance M:UIKit.UIWebView.get_ClassHandle M:UIKit.UIWebView.get_Delegate @@ -106494,6 +110611,9 @@ M:UIKit.UIWebView.GetAppearance``1(UIKit.UITraitCollection) M:UIKit.UIWebView.remove_LoadError(System.EventHandler{UIKit.UIWebErrorArgs}) M:UIKit.UIWebView.remove_LoadFinished(System.EventHandler) M:UIKit.UIWebView.remove_LoadStarted(System.EventHandler) +M:UIKit.UIWebView.ScrollAnimationEnded(UIKit.UIScrollView) +M:UIKit.UIWebView.Scrolled(UIKit.UIScrollView) +M:UIKit.UIWebView.ScrolledToTop(UIKit.UIScrollView) M:UIKit.UIWebView.set_AllowsInlineMediaPlayback(System.Boolean) M:UIKit.UIWebView.set_AllowsLinkPreview(System.Boolean) M:UIKit.UIWebView.set_AllowsPictureInPictureMediaPlayback(System.Boolean) @@ -106510,7 +110630,12 @@ M:UIKit.UIWebView.set_ScalesPageToFit(System.Boolean) M:UIKit.UIWebView.set_ShouldStartLoad(UIKit.UIWebLoaderControl) M:UIKit.UIWebView.set_SuppressesIncrementalRendering(System.Boolean) M:UIKit.UIWebView.set_WeakDelegate(Foundation.NSObject) +M:UIKit.UIWebView.ShouldScrollToTop(UIKit.UIScrollView) M:UIKit.UIWebView.UIWebViewAppearance.#ctor(System.IntPtr) +M:UIKit.UIWebView.ViewForZoomingInScrollView(UIKit.UIScrollView) +M:UIKit.UIWebView.WillEndDragging(UIKit.UIScrollView,CoreGraphics.CGPoint,CoreGraphics.CGPoint@) +M:UIKit.UIWebView.ZoomingEnded(UIKit.UIScrollView,UIKit.UIView,System.Runtime.InteropServices.NFloat) +M:UIKit.UIWebView.ZoomingStarted(UIKit.UIScrollView,UIKit.UIView) M:UIKit.UIWebViewDelegate_Extensions.LoadFailed(UIKit.IUIWebViewDelegate,UIKit.UIWebView,Foundation.NSError) M:UIKit.UIWebViewDelegate_Extensions.LoadingFinished(UIKit.IUIWebViewDelegate,UIKit.UIWebView) M:UIKit.UIWebViewDelegate_Extensions.LoadStarted(UIKit.IUIWebViewDelegate,UIKit.UIWebView) @@ -106585,8 +110710,11 @@ M:UIKit.UIWindowSceneActivationConfiguration.set_Options(UIKit.UIWindowSceneActi M:UIKit.UIWindowSceneActivationConfiguration.set_Preview(UIKit.UITargetedPreview) M:UIKit.UIWindowSceneActivationInteraction.#ctor(Foundation.NSObjectFlag) M:UIKit.UIWindowSceneActivationInteraction.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UIWindowSceneActivationInteraction.DidMoveToView(UIKit.UIView) M:UIKit.UIWindowSceneActivationInteraction.Dispose(System.Boolean) M:UIKit.UIWindowSceneActivationInteraction.get_ClassHandle +M:UIKit.UIWindowSceneActivationInteraction.get_View +M:UIKit.UIWindowSceneActivationInteraction.WillMoveToView(UIKit.UIView) M:UIKit.UIWindowSceneActivationInteractionConfigurationProvider.#ctor(System.Object,System.IntPtr) M:UIKit.UIWindowSceneActivationInteractionConfigurationProvider.BeginInvoke(UIKit.UIWindowSceneActivationInteraction,CoreGraphics.CGPoint,System.AsyncCallback,System.Object) M:UIKit.UIWindowSceneActivationInteractionConfigurationProvider.EndInvoke(System.IAsyncResult) @@ -106631,10 +110759,14 @@ M:UIKit.UIWindowSceneDestructionRequestOptions.set_WindowDismissalAnimation(UIKi M:UIKit.UIWindowSceneDragInteraction.#ctor M:UIKit.UIWindowSceneDragInteraction.#ctor(Foundation.NSObjectFlag) M:UIKit.UIWindowSceneDragInteraction.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UIWindowSceneDragInteraction.DidMoveToView(UIKit.UIView) M:UIKit.UIWindowSceneDragInteraction.Dispose(System.Boolean) M:UIKit.UIWindowSceneDragInteraction.get_ClassHandle +M:UIKit.UIWindowSceneDragInteraction.get_View +M:UIKit.UIWindowSceneDragInteraction.WillMoveToView(UIKit.UIView) M:UIKit.UIWindowSceneGeometry.#ctor(Foundation.NSObjectFlag) M:UIKit.UIWindowSceneGeometry.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UIWindowSceneGeometry.Copy(Foundation.NSZone) M:UIKit.UIWindowSceneGeometry.get_ClassHandle M:UIKit.UIWindowSceneGeometryPreferences.#ctor M:UIKit.UIWindowSceneGeometryPreferences.#ctor(Foundation.NSObjectFlag) @@ -106651,6 +110783,7 @@ M:UIKit.UIWindowSceneGeometryPreferencesMac.set_SystemFrame(CoreGraphics.CGRect) M:UIKit.UIWindowScenePlacement.#ctor M:UIKit.UIWindowScenePlacement.#ctor(Foundation.NSObjectFlag) M:UIKit.UIWindowScenePlacement.#ctor(ObjCRuntime.NativeHandle) +M:UIKit.UIWindowScenePlacement.Copy(Foundation.NSZone) M:UIKit.UIWindowScenePlacement.get_ClassHandle M:UIKit.UIWindowSceneProminentPlacement.#ctor M:UIKit.UIWindowSceneProminentPlacement.#ctor(Foundation.NSObjectFlag) @@ -107825,6 +111958,7 @@ M:Vision.VNBarcodeSymbologyExtensions.GetValues(Foundation.NSString[]) M:Vision.VNCircle.#ctor(Foundation.NSCoder) M:Vision.VNCircle.#ctor(Foundation.NSObjectFlag) M:Vision.VNCircle.#ctor(ObjCRuntime.NativeHandle) +M:Vision.VNCircle.Copy(Foundation.NSZone) M:Vision.VNCircle.CreateUsingDiameter(Vision.VNPoint,System.Double) M:Vision.VNCircle.CreateUsingRadius(Vision.VNPoint,System.Double) M:Vision.VNCircle.EncodeTo(Foundation.NSCoder) @@ -107847,7 +111981,9 @@ M:Vision.VNComputeStageExtensions.GetConstant(Vision.VNComputeStage) M:Vision.VNComputeStageExtensions.GetValue(Foundation.NSString) M:Vision.VNContour.#ctor(Foundation.NSObjectFlag) M:Vision.VNContour.#ctor(ObjCRuntime.NativeHandle) +M:Vision.VNContour.Copy(Foundation.NSZone) M:Vision.VNContour.get_ClassHandle +M:Vision.VNContour.get_RequestRevision M:Vision.VNContoursObservation.#ctor(Foundation.NSCoder) M:Vision.VNContoursObservation.#ctor(Foundation.NSObjectFlag) M:Vision.VNContoursObservation.#ctor(ObjCRuntime.NativeHandle) @@ -107927,6 +112063,7 @@ M:Vision.VNDetectFaceCaptureQualityRequest.#ctor(Vision.VNRequestCompletionHandl M:Vision.VNDetectFaceCaptureQualityRequest.get_ClassHandle M:Vision.VNDetectFaceCaptureQualityRequest.get_CurrentRevision M:Vision.VNDetectFaceCaptureQualityRequest.get_DefaultRevision +M:Vision.VNDetectFaceCaptureQualityRequest.get_InputFaceObservations M:Vision.VNDetectFaceCaptureQualityRequest.get_Revision M:Vision.VNDetectFaceCaptureQualityRequest.get_SupportedRevisions M:Vision.VNDetectFaceCaptureQualityRequest.get_WeakSupportedRevisions @@ -107938,6 +112075,7 @@ M:Vision.VNDetectFaceLandmarksRequest.#ctor(Vision.VNRequestCompletionHandler) M:Vision.VNDetectFaceLandmarksRequest.get_ClassHandle M:Vision.VNDetectFaceLandmarksRequest.get_CurrentRevision M:Vision.VNDetectFaceLandmarksRequest.get_DefaultRevision +M:Vision.VNDetectFaceLandmarksRequest.get_InputFaceObservations M:Vision.VNDetectFaceLandmarksRequest.get_Revision M:Vision.VNDetectFaceLandmarksRequest.get_SupportedRevisions M:Vision.VNDetectFaceLandmarksRequest.get_WeakSupportedRevisions @@ -108048,8 +112186,10 @@ M:Vision.VNErrorCodeExtensions.GetDomain(Vision.VNErrorCode) M:Vision.VNFaceLandmarkRegion.#ctor(Foundation.NSCoder) M:Vision.VNFaceLandmarkRegion.#ctor(Foundation.NSObjectFlag) M:Vision.VNFaceLandmarkRegion.#ctor(ObjCRuntime.NativeHandle) +M:Vision.VNFaceLandmarkRegion.Copy(Foundation.NSZone) M:Vision.VNFaceLandmarkRegion.EncodeTo(Foundation.NSCoder) M:Vision.VNFaceLandmarkRegion.get_ClassHandle +M:Vision.VNFaceLandmarkRegion.get_RequestRevision M:Vision.VNFaceLandmarkRegion2D.#ctor(Foundation.NSCoder) M:Vision.VNFaceLandmarkRegion2D.#ctor(Foundation.NSObjectFlag) M:Vision.VNFaceLandmarkRegion2D.#ctor(ObjCRuntime.NativeHandle) @@ -108059,8 +112199,10 @@ M:Vision.VNFaceLandmarkRegion2D.GetPointsInImage(CoreGraphics.CGSize) M:Vision.VNFaceLandmarks.#ctor(Foundation.NSCoder) M:Vision.VNFaceLandmarks.#ctor(Foundation.NSObjectFlag) M:Vision.VNFaceLandmarks.#ctor(ObjCRuntime.NativeHandle) +M:Vision.VNFaceLandmarks.Copy(Foundation.NSZone) M:Vision.VNFaceLandmarks.EncodeTo(Foundation.NSCoder) M:Vision.VNFaceLandmarks.get_ClassHandle +M:Vision.VNFaceLandmarks.get_RequestRevision M:Vision.VNFaceLandmarks2D.#ctor(Foundation.NSCoder) M:Vision.VNFaceLandmarks2D.#ctor(Foundation.NSObjectFlag) M:Vision.VNFaceLandmarks2D.#ctor(ObjCRuntime.NativeHandle) @@ -108356,8 +112498,10 @@ M:Vision.VNInstanceMaskObservation.get_ClassHandle M:Vision.VNObservation.#ctor(Foundation.NSCoder) M:Vision.VNObservation.#ctor(Foundation.NSObjectFlag) M:Vision.VNObservation.#ctor(ObjCRuntime.NativeHandle) +M:Vision.VNObservation.Copy(Foundation.NSZone) M:Vision.VNObservation.EncodeTo(Foundation.NSCoder) M:Vision.VNObservation.get_ClassHandle +M:Vision.VNObservation.get_RequestRevision M:Vision.VNPixelBufferObservation.#ctor(Foundation.NSCoder) M:Vision.VNPixelBufferObservation.#ctor(Foundation.NSObjectFlag) M:Vision.VNPixelBufferObservation.#ctor(ObjCRuntime.NativeHandle) @@ -108365,11 +112509,13 @@ M:Vision.VNPixelBufferObservation.get_ClassHandle M:Vision.VNPoint.#ctor(Foundation.NSCoder) M:Vision.VNPoint.#ctor(Foundation.NSObjectFlag) M:Vision.VNPoint.#ctor(ObjCRuntime.NativeHandle) +M:Vision.VNPoint.Copy(Foundation.NSZone) M:Vision.VNPoint.EncodeTo(Foundation.NSCoder) M:Vision.VNPoint.get_ClassHandle M:Vision.VNPoint3D.#ctor(Foundation.NSCoder) M:Vision.VNPoint3D.#ctor(Foundation.NSObjectFlag) M:Vision.VNPoint3D.#ctor(ObjCRuntime.NativeHandle) +M:Vision.VNPoint3D.Copy(Foundation.NSZone) M:Vision.VNPoint3D.EncodeTo(Foundation.NSCoder) M:Vision.VNPoint3D.get_ClassHandle M:Vision.VNRecognizeAnimalsRequest.#ctor(Foundation.NSObjectFlag) @@ -108415,8 +112561,10 @@ M:Vision.VNRecognizedPointsObservation.GetRecognizedPoints(Vision.VNHumanHandPos M:Vision.VNRecognizedText.#ctor(Foundation.NSCoder) M:Vision.VNRecognizedText.#ctor(Foundation.NSObjectFlag) M:Vision.VNRecognizedText.#ctor(ObjCRuntime.NativeHandle) +M:Vision.VNRecognizedText.Copy(Foundation.NSZone) M:Vision.VNRecognizedText.EncodeTo(Foundation.NSCoder) M:Vision.VNRecognizedText.get_ClassHandle +M:Vision.VNRecognizedText.get_RequestRevision M:Vision.VNRecognizedTextObservation.#ctor(Foundation.NSCoder) M:Vision.VNRecognizedTextObservation.#ctor(Foundation.NSObjectFlag) M:Vision.VNRecognizedTextObservation.#ctor(ObjCRuntime.NativeHandle) @@ -108428,6 +112576,8 @@ M:Vision.VNRecognizeTextRequest.#ctor(Vision.VNRequestCompletionHandler) M:Vision.VNRecognizeTextRequest.get_ClassHandle M:Vision.VNRecognizeTextRequest.get_CurrentRevision M:Vision.VNRecognizeTextRequest.get_DefaultRevision +M:Vision.VNRecognizeTextRequest.get_Indeterminate +M:Vision.VNRecognizeTextRequest.get_ProgressHandler M:Vision.VNRecognizeTextRequest.get_Revision M:Vision.VNRecognizeTextRequest.get_SupportedRevisions M:Vision.VNRecognizeTextRequest.get_WeakSupportedRevisions @@ -108447,6 +112597,7 @@ M:Vision.VNRectangleObservation.FromBoundingBox(Vision.VNRectangleObservationReq M:Vision.VNRectangleObservation.get_ClassHandle M:Vision.VNRequest.#ctor(Foundation.NSObjectFlag) M:Vision.VNRequest.#ctor(ObjCRuntime.NativeHandle) +M:Vision.VNRequest.Copy(Foundation.NSZone) M:Vision.VNRequest.get_ClassHandle M:Vision.VNRequest.GetResults``1 M:Vision.VNRequest.set_PreferBackgroundProcessing(System.Boolean) @@ -108627,6 +112778,7 @@ M:Vision.VNUtils.IsIdentityRect(CoreGraphics.CGRect) M:Vision.VNVector.#ctor(Foundation.NSCoder) M:Vision.VNVector.#ctor(Foundation.NSObjectFlag) M:Vision.VNVector.#ctor(ObjCRuntime.NativeHandle) +M:Vision.VNVector.Copy(Foundation.NSZone) M:Vision.VNVector.Create(System.Double,System.Double) M:Vision.VNVector.EncodeTo(Foundation.NSCoder) M:Vision.VNVector.get_ClassHandle @@ -108635,6 +112787,7 @@ M:Vision.VNVideoProcessor.#ctor(ObjCRuntime.NativeHandle) M:Vision.VNVideoProcessor.get_ClassHandle M:Vision.VNVideoProcessorCadence.#ctor(Foundation.NSObjectFlag) M:Vision.VNVideoProcessorCadence.#ctor(ObjCRuntime.NativeHandle) +M:Vision.VNVideoProcessorCadence.Copy(Foundation.NSZone) M:Vision.VNVideoProcessorCadence.get_ClassHandle M:Vision.VNVideoProcessorFrameRateCadence.#ctor(Foundation.NSObjectFlag) M:Vision.VNVideoProcessorFrameRateCadence.#ctor(ObjCRuntime.NativeHandle) @@ -108642,6 +112795,7 @@ M:Vision.VNVideoProcessorFrameRateCadence.get_ClassHandle M:Vision.VNVideoProcessorRequestProcessingOptions.#ctor M:Vision.VNVideoProcessorRequestProcessingOptions.#ctor(Foundation.NSObjectFlag) M:Vision.VNVideoProcessorRequestProcessingOptions.#ctor(ObjCRuntime.NativeHandle) +M:Vision.VNVideoProcessorRequestProcessingOptions.Copy(Foundation.NSZone) M:Vision.VNVideoProcessorRequestProcessingOptions.get_ClassHandle M:Vision.VNVideoProcessorRequestProcessingOptions.set_Cadence(Vision.VNVideoProcessorCadence) M:Vision.VNVideoProcessorTimeIntervalCadence.#ctor(Foundation.NSObjectFlag) @@ -108650,6 +112804,9 @@ M:Vision.VNVideoProcessorTimeIntervalCadence.get_ClassHandle M:VisionKit.VNDocumentCameraScan.#ctor(Foundation.NSObjectFlag) M:VisionKit.VNDocumentCameraScan.#ctor(ObjCRuntime.NativeHandle) M:VisionKit.VNDocumentCameraScan.get_ClassHandle +M:VisionKit.VNDocumentCameraScan.get_PageCount +M:VisionKit.VNDocumentCameraScan.get_Title +M:VisionKit.VNDocumentCameraScan.GetImage(System.UIntPtr) M:VisionKit.VNDocumentCameraViewController.#ctor M:VisionKit.VNDocumentCameraViewController.#ctor(Foundation.NSCoder) M:VisionKit.VNDocumentCameraViewController.#ctor(Foundation.NSObjectFlag) @@ -108658,6 +112815,7 @@ M:VisionKit.VNDocumentCameraViewController.Dispose(System.Boolean) M:VisionKit.VNDocumentCameraViewController.get_ClassHandle M:VisionKit.VNDocumentCameraViewController.get_Delegate M:VisionKit.VNDocumentCameraViewController.get_Supported +M:VisionKit.VNDocumentCameraViewController.get_WeakDelegate M:VisionKit.VNDocumentCameraViewController.set_Delegate(VisionKit.IVNDocumentCameraViewControllerDelegate) M:VisionKit.VNDocumentCameraViewController.set_WeakDelegate(Foundation.NSObject) M:VisionKit.VNDocumentCameraViewControllerDelegate_Extensions.DidCancel(VisionKit.IVNDocumentCameraViewControllerDelegate,VisionKit.VNDocumentCameraViewController) @@ -109365,8 +113523,11 @@ M:WebKit.DomNode.#ctor(Foundation.NSObjectFlag) M:WebKit.DomNode.#ctor(ObjCRuntime.NativeHandle) M:WebKit.DomNode.AddEventListener(System.String,System.Action{WebKit.DomEvent},System.Boolean) M:WebKit.DomNode.AddEventListener(System.String,WebKit.DomEventListenerHandler,System.Boolean) +M:WebKit.DomNode.AddEventListener(System.String,WebKit.IDomEventListener,System.Boolean) M:WebKit.DomNode.Copy(Foundation.NSZone) +M:WebKit.DomNode.DispatchEvent(WebKit.DomEvent) M:WebKit.DomNode.get_ClassHandle +M:WebKit.DomNode.RemoveEventListener(System.String,WebKit.IDomEventListener,System.Boolean) M:WebKit.DomNode.set_NodeValue(System.String) M:WebKit.DomNode.set_Prefix(System.String) M:WebKit.DomNode.set_TextContent(System.String) @@ -109384,6 +113545,7 @@ M:WebKit.DomNodeList.get_Item(System.Int32) M:WebKit.DomNodeList.GetEnumerator M:WebKit.DomObject.#ctor(Foundation.NSObjectFlag) M:WebKit.DomObject.#ctor(ObjCRuntime.NativeHandle) +M:WebKit.DomObject.Copy(Foundation.NSZone) M:WebKit.DomObject.get_ClassHandle M:WebKit.DomOverflowEvent.#ctor(Foundation.NSObjectFlag) M:WebKit.DomOverflowEvent.#ctor(ObjCRuntime.NativeHandle) @@ -109457,8 +113619,11 @@ M:WebKit.IWKUrlSchemeTask.DidReceiveData(Foundation.NSData) M:WebKit.IWKUrlSchemeTask.DidReceiveResponse(Foundation.NSUrlResponse) M:WebKit.IWKUrlSchemeTask.get_Request M:WebKit.WebArchive.#ctor +M:WebKit.WebArchive.#ctor(Foundation.NSCoder) M:WebKit.WebArchive.#ctor(Foundation.NSObjectFlag) M:WebKit.WebArchive.#ctor(ObjCRuntime.NativeHandle) +M:WebKit.WebArchive.Copy(Foundation.NSZone) +M:WebKit.WebArchive.EncodeTo(Foundation.NSCoder) M:WebKit.WebArchive.get_ClassHandle M:WebKit.WebBackForwardList.#ctor M:WebKit.WebBackForwardList.#ctor(Foundation.NSObjectFlag) @@ -109591,6 +113756,7 @@ M:WebKit.WebHistory.set_HistoryItemLimit(System.Int32) M:WebKit.WebHistoryItem.#ctor M:WebKit.WebHistoryItem.#ctor(Foundation.NSObjectFlag) M:WebKit.WebHistoryItem.#ctor(ObjCRuntime.NativeHandle) +M:WebKit.WebHistoryItem.Copy(Foundation.NSZone) M:WebKit.WebHistoryItem.get_ChangedNotification M:WebKit.WebHistoryItem.get_ClassHandle M:WebKit.WebHistoryItem.Notifications.ObserveChanged(Foundation.NSObject,System.EventHandler{Foundation.NSNotificationEventArgs}) @@ -109660,8 +113826,10 @@ M:WebKit.WebPolicyDelegate.get_WebActionNavigationTypeKey M:WebKit.WebPolicyDelegate.get_WebActionOriginalUrlKey M:WebKit.WebPolicyDelegate.UnableToImplementPolicy(WebKit.WebView,Foundation.NSError,WebKit.WebFrame) M:WebKit.WebPreferences.#ctor +M:WebKit.WebPreferences.#ctor(Foundation.NSCoder) M:WebKit.WebPreferences.#ctor(Foundation.NSObjectFlag) M:WebKit.WebPreferences.#ctor(ObjCRuntime.NativeHandle) +M:WebKit.WebPreferences.EncodeTo(Foundation.NSCoder) M:WebKit.WebPreferences.get_ClassHandle M:WebKit.WebPreferences.get_JavaEnabled M:WebKit.WebPreferences.get_JavaScriptEnabled @@ -109693,8 +113861,11 @@ M:WebKit.WebPreferences.set_UserStyleSheetEnabled(System.Boolean) M:WebKit.WebPreferences.set_UserStyleSheetLocation(Foundation.NSUrl) M:WebKit.WebPreferences.set_UsesPageCache(System.Boolean) M:WebKit.WebResource.#ctor +M:WebKit.WebResource.#ctor(Foundation.NSCoder) M:WebKit.WebResource.#ctor(Foundation.NSObjectFlag) M:WebKit.WebResource.#ctor(ObjCRuntime.NativeHandle) +M:WebKit.WebResource.Copy(Foundation.NSZone) +M:WebKit.WebResource.EncodeTo(Foundation.NSCoder) M:WebKit.WebResource.get_ClassHandle M:WebKit.WebResourceAuthenticationChallengeEventArgs.#ctor(Foundation.NSObject,Foundation.NSUrlAuthenticationChallenge,WebKit.WebDataSource) M:WebKit.WebResourceAuthenticationChallengeEventArgs.get_Challenge @@ -110208,6 +114379,7 @@ M:WebKit.WKDownload.CancelAsync M:WebKit.WKDownload.Dispose(System.Boolean) M:WebKit.WKDownload.get_ClassHandle M:WebKit.WKDownload.get_Delegate +M:WebKit.WKDownload.get_Progress M:WebKit.WKDownload.set_Delegate(WebKit.IWKDownloadDelegate) M:WebKit.WKDownload.set_WeakDelegate(Foundation.NSObject) M:WebKit.WKDownloadDelegate_Extensions.DidFail(WebKit.IWKDownloadDelegate,WebKit.WKDownload,Foundation.NSError,Foundation.NSData) @@ -110226,16 +114398,19 @@ M:WebKit.WKErrorCodeExtensions.GetDomain(WebKit.WKErrorCode) M:WebKit.WKFindConfiguration.#ctor M:WebKit.WKFindConfiguration.#ctor(Foundation.NSObjectFlag) M:WebKit.WKFindConfiguration.#ctor(ObjCRuntime.NativeHandle) +M:WebKit.WKFindConfiguration.Copy(Foundation.NSZone) M:WebKit.WKFindConfiguration.get_ClassHandle M:WebKit.WKFindConfiguration.set_Backwards(System.Boolean) M:WebKit.WKFindConfiguration.set_CaseSensitive(System.Boolean) M:WebKit.WKFindConfiguration.set_Wraps(System.Boolean) M:WebKit.WKFindResult.#ctor(Foundation.NSObjectFlag) M:WebKit.WKFindResult.#ctor(ObjCRuntime.NativeHandle) +M:WebKit.WKFindResult.Copy(Foundation.NSZone) M:WebKit.WKFindResult.get_ClassHandle M:WebKit.WKFrameInfo.#ctor M:WebKit.WKFrameInfo.#ctor(Foundation.NSObjectFlag) M:WebKit.WKFrameInfo.#ctor(ObjCRuntime.NativeHandle) +M:WebKit.WKFrameInfo.Copy(Foundation.NSZone) M:WebKit.WKFrameInfo.Dispose(System.Boolean) M:WebKit.WKFrameInfo.get_ClassHandle M:WebKit.WKFrameInfo.get_MainFrame @@ -110303,6 +114478,7 @@ M:WebKit.WKOpenPanelParameters.get_ClassHandle M:WebKit.WKPdfConfiguration.#ctor M:WebKit.WKPdfConfiguration.#ctor(Foundation.NSObjectFlag) M:WebKit.WKPdfConfiguration.#ctor(ObjCRuntime.NativeHandle) +M:WebKit.WKPdfConfiguration.Copy(Foundation.NSZone) M:WebKit.WKPdfConfiguration.get_ClassHandle M:WebKit.WKPdfConfiguration.set_AllowTransparentBackground(System.Boolean) M:WebKit.WKPdfConfiguration.set_Rect(CoreGraphics.CGRect) @@ -110335,6 +114511,7 @@ M:WebKit.WKPreviewActionItemIdentifier.get_Share M:WebKit.WKPreviewElementInfo.#ctor M:WebKit.WKPreviewElementInfo.#ctor(Foundation.NSObjectFlag) M:WebKit.WKPreviewElementInfo.#ctor(ObjCRuntime.NativeHandle) +M:WebKit.WKPreviewElementInfo.Copy(Foundation.NSZone) M:WebKit.WKPreviewElementInfo.get_ClassHandle M:WebKit.WKProcessPool.#ctor M:WebKit.WKProcessPool.#ctor(Foundation.NSCoder) @@ -110357,6 +114534,7 @@ M:WebKit.WKSecurityOrigin.get_ClassHandle M:WebKit.WKSnapshotConfiguration.#ctor M:WebKit.WKSnapshotConfiguration.#ctor(Foundation.NSObjectFlag) M:WebKit.WKSnapshotConfiguration.#ctor(ObjCRuntime.NativeHandle) +M:WebKit.WKSnapshotConfiguration.Copy(Foundation.NSZone) M:WebKit.WKSnapshotConfiguration.get_ClassHandle M:WebKit.WKSnapshotConfiguration.set_AfterScreenUpdates(System.Boolean) M:WebKit.WKSnapshotConfiguration.set_Rect(CoreGraphics.CGRect) @@ -110411,6 +114589,7 @@ M:WebKit.WKUserContentController.EncodeTo(Foundation.NSCoder) M:WebKit.WKUserContentController.get_ClassHandle M:WebKit.WKUserScript.#ctor(Foundation.NSObjectFlag) M:WebKit.WKUserScript.#ctor(ObjCRuntime.NativeHandle) +M:WebKit.WKUserScript.Copy(Foundation.NSZone) M:WebKit.WKUserScript.get_ClassHandle M:WebKit.WKUserScript.get_IsForMainFrameOnly M:WebKit.WKWebpagePreferences.#ctor @@ -110505,6 +114684,7 @@ M:WebKit.WKWebViewConfiguration.#ctor M:WebKit.WKWebViewConfiguration.#ctor(Foundation.NSCoder) M:WebKit.WKWebViewConfiguration.#ctor(Foundation.NSObjectFlag) M:WebKit.WKWebViewConfiguration.#ctor(ObjCRuntime.NativeHandle) +M:WebKit.WKWebViewConfiguration.Copy(Foundation.NSZone) M:WebKit.WKWebViewConfiguration.EncodeTo(Foundation.NSCoder) M:WebKit.WKWebViewConfiguration.get_ClassHandle M:WebKit.WKWebViewConfiguration.set_AllowsAirPlayForMediaPlayback(System.Boolean) @@ -152101,7 +156281,6 @@ T:AddressBookUI.IABPersonViewControllerDelegate T:AddressBookUI.IABUnknownPersonViewControllerDelegate T:AdServices.AAAttributionErrorCode T:AdServices.AAAttributionErrorCodeExtensions -T:AdSupport.ASIdentifierManager T:AppClip.APActivationPayload T:AppClip.APActivationPayloadErrorCode T:AppClip.APActivationPayloadErrorCodeExtensions From e74a5a01d0fb7e7a531c257dfcc6163df2c535dd Mon Sep 17 00:00:00 2001 From: Alex Soto Date: Tue, 5 Mar 2024 13:29:21 -0500 Subject: [PATCH 23/73] [xcode15.3] Bump Xcode 15.3 RC 2 --- Make.config | 4 ++-- .../xtro-sharpie/api-annotations-dotnet/macOS-MetalFX.todo | 7 +++++++ tests/xtro-sharpie/macOS-MetalFX.todo | 7 +++++++ 3 files changed, 16 insertions(+), 2 deletions(-) create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/macOS-MetalFX.todo create mode 100644 tests/xtro-sharpie/macOS-MetalFX.todo diff --git a/Make.config b/Make.config index 47c575919e58..c7884598615f 100644 --- a/Make.config +++ b/Make.config @@ -213,8 +213,8 @@ MACCATALYST_NUGET_VERSION_FULL=$(MACCATALYST_NUGET_VERSION_NO_METADATA)+$(NUGET_ # Xcode version should have both a major and a minor version (even if the minor version is 0) XCODE_VERSION=15.3 -XCODE_URL=https://dl.internalx.com/internal-files/xcodes/Xcode_15.3_Release_Candidate.xip -XCODE_DEVELOPER_ROOT=/Applications/Xcode_15.3.0-rc.app/Contents/Developer +XCODE_URL=https://dl.internalx.com/internal-files/xcodes/Xcode_15.3_Release_Candidate_2.xip +XCODE_DEVELOPER_ROOT=/Applications/Xcode_15.3.0-rc2.app/Contents/Developer XCODE_PRODUCT_BUILD_VERSION:=$(shell /usr/libexec/PlistBuddy -c 'Print :ProductBuildVersion' $(XCODE_DEVELOPER_ROOT)/../version.plist 2>/dev/null || echo " $(shell tput setaf 1 2>/dev/null)The required Xcode ($(XCODE_VERSION)) is not installed in $(basename $(basename $(XCODE_DEVELOPER_ROOT)))$(shell tput sgr0 2>/dev/null)" >&2) # We define stable Xcode as the Xcode app being named like "Xcode_#.#[.#].app" diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-MetalFX.todo b/tests/xtro-sharpie/api-annotations-dotnet/macOS-MetalFX.todo new file mode 100644 index 000000000000..0fa60384da65 --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/macOS-MetalFX.todo @@ -0,0 +1,7 @@ +!missing-protocol-member! MTLFXTemporalScaler::reactiveMaskTexture not found +!missing-protocol-member! MTLFXTemporalScaler::reactiveTextureUsage not found +!missing-protocol-member! MTLFXTemporalScaler::setReactiveMaskTexture: not found +!missing-selector! MTLFXTemporalScalerDescriptor::isReactiveMaskTextureEnabled not bound +!missing-selector! MTLFXTemporalScalerDescriptor::reactiveMaskTextureFormat not bound +!missing-selector! MTLFXTemporalScalerDescriptor::setReactiveMaskTextureEnabled: not bound +!missing-selector! MTLFXTemporalScalerDescriptor::setReactiveMaskTextureFormat: not bound diff --git a/tests/xtro-sharpie/macOS-MetalFX.todo b/tests/xtro-sharpie/macOS-MetalFX.todo new file mode 100644 index 000000000000..0fa60384da65 --- /dev/null +++ b/tests/xtro-sharpie/macOS-MetalFX.todo @@ -0,0 +1,7 @@ +!missing-protocol-member! MTLFXTemporalScaler::reactiveMaskTexture not found +!missing-protocol-member! MTLFXTemporalScaler::reactiveTextureUsage not found +!missing-protocol-member! MTLFXTemporalScaler::setReactiveMaskTexture: not found +!missing-selector! MTLFXTemporalScalerDescriptor::isReactiveMaskTextureEnabled not bound +!missing-selector! MTLFXTemporalScalerDescriptor::reactiveMaskTextureFormat not bound +!missing-selector! MTLFXTemporalScalerDescriptor::setReactiveMaskTextureEnabled: not bound +!missing-selector! MTLFXTemporalScalerDescriptor::setReactiveMaskTextureFormat: not bound From 49f9c8b51d62cb4755d0e1c5de4069535b602648 Mon Sep 17 00:00:00 2001 From: Alex Soto Date: Wed, 6 Mar 2024 07:28:18 -0500 Subject: [PATCH 24/73] [xcode15.3] Use stable Xcode 15.3 --- Make.config | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Make.config b/Make.config index c7884598615f..7f494f6f7a9c 100644 --- a/Make.config +++ b/Make.config @@ -213,8 +213,8 @@ MACCATALYST_NUGET_VERSION_FULL=$(MACCATALYST_NUGET_VERSION_NO_METADATA)+$(NUGET_ # Xcode version should have both a major and a minor version (even if the minor version is 0) XCODE_VERSION=15.3 -XCODE_URL=https://dl.internalx.com/internal-files/xcodes/Xcode_15.3_Release_Candidate_2.xip -XCODE_DEVELOPER_ROOT=/Applications/Xcode_15.3.0-rc2.app/Contents/Developer +XCODE_URL=https://dl.internalx.com/internal-files/xcodes/Xcode_15.3.xip +XCODE_DEVELOPER_ROOT=/Applications/Xcode_15.3.0.app/Contents/Developer XCODE_PRODUCT_BUILD_VERSION:=$(shell /usr/libexec/PlistBuddy -c 'Print :ProductBuildVersion' $(XCODE_DEVELOPER_ROOT)/../version.plist 2>/dev/null || echo " $(shell tput setaf 1 2>/dev/null)The required Xcode ($(XCODE_VERSION)) is not installed in $(basename $(basename $(XCODE_DEVELOPER_ROOT)))$(shell tput sgr0 2>/dev/null)" >&2) # We define stable Xcode as the Xcode app being named like "Xcode_#.#[.#].app" From 60eda1434ef13d6dc763e2a2bfb6e869d534a843 Mon Sep 17 00:00:00 2001 From: Alex Soto Date: Wed, 3 Apr 2024 21:49:12 -0400 Subject: [PATCH 25/73] [AuthenticationServices] Update bindings to Xcode 15.3 --- src/authenticationservices.cs | 126 +++++++++++++++++- .../Documentation.KnownFailures.txt | 67 ++++++++++ tests/introspection/ApiProtocolTest.cs | 6 + tests/introspection/ApiSelectorTest.cs | 6 + .../iOS-AuthenticationServices.todo | 40 ------ .../macOS-AuthenticationServices.todo | 21 --- .../tvOS-AuthenticationServices.todo | 10 -- .../iOS-AuthenticationServices.todo | 40 ------ .../macOS-AuthenticationServices.todo | 21 --- .../tvOS-AuthenticationServices.todo | 10 -- .../watchOS-AuthenticationServices.todo | 10 -- 11 files changed, 199 insertions(+), 158 deletions(-) delete mode 100644 tests/xtro-sharpie/api-annotations-dotnet/iOS-AuthenticationServices.todo delete mode 100644 tests/xtro-sharpie/api-annotations-dotnet/macOS-AuthenticationServices.todo delete mode 100644 tests/xtro-sharpie/api-annotations-dotnet/tvOS-AuthenticationServices.todo delete mode 100644 tests/xtro-sharpie/iOS-AuthenticationServices.todo delete mode 100644 tests/xtro-sharpie/macOS-AuthenticationServices.todo delete mode 100644 tests/xtro-sharpie/tvOS-AuthenticationServices.todo delete mode 100644 tests/xtro-sharpie/watchOS-AuthenticationServices.todo diff --git a/src/authenticationservices.cs b/src/authenticationservices.cs index 64f71d2bff9d..7ee3ddc1a459 100644 --- a/src/authenticationservices.cs +++ b/src/authenticationservices.cs @@ -153,6 +153,8 @@ public enum ASAuthorizationProviderExtensionRequestOptions : ulong { RegistrationSharedDeviceKeys = 1uL << 2, [Mac (14, 0)] RegistrationDeviceKeyMigration = 1uL << 3, + [Mac (14, 4)] + UserKeyInvalid = 1uL << 5, } [Watch (10, 0), TV (17, 0), iOS (17, 0), MacCatalyst (16, 4), Mac (13, 3)] @@ -170,7 +172,28 @@ public enum ASCredentialRequestType : long { PasskeyAssertion, } + [NoWatch, NoTV, Mac (14, 0), iOS (17, 0), MacCatalyst (14, 0)] + [Flags] + [Native] + public enum ASCredentialIdentityTypes : ulong { + All = 0, + Password = 1, + Passkey = 1uL << 1, + } + + [NoWatch, NoTV, Mac (14, 4), NoiOS, NoMacCatalyst] + [Flags] + [Native] + public enum ASAuthorizationProviderExtensionUserSecureEnclaveKeyBiometricPolicy : ulong { + None = 0x0, + TouchIdOrWatchCurrentSet = 1uL << 0, + TouchIdOrWatchAny = 1uL << 1, + ReuseDuringUnlock = 1uL << 2, + PasswordFallback = 1uL << 3 + } + delegate void ASCredentialIdentityStoreCompletionHandler (bool success, NSError error); + delegate void ASCredentialIdentityStoreGetCredentialIdentitiesHandler (IASCredentialIdentity [] credentialIdentities); [Introduced (PlatformName.MacCatalyst, 14, 0)] [NoTV] @@ -188,6 +211,11 @@ interface ASCredentialIdentityStore { [Export ("getCredentialIdentityStoreStateWithCompletion:")] void GetCredentialIdentityStoreState (Action completion); + [Async] + [Mac (14, 4), iOS (17, 4), MacCatalyst (17, 4)] + [Export ("getCredentialIdentitiesForService:credentialIdentityTypes:completionHandler:")] + void GetCredentialIdentities ([NullAllowed] ASCredentialServiceIdentifier serviceIdentifier, [NullAllowed] ASCredentialIdentityTypes credentialIdentityTypes, ASCredentialIdentityStoreGetCredentialIdentitiesHandler completion); + [Async] [Deprecated (PlatformName.MacOSX, 14, 0, message: "Use 'SaveCredentialIdentityEntries (ASCredentialIdentity [])' instead.")] [Deprecated (PlatformName.iOS, 17, 0, message: "Use 'SaveCredentialIdentityEntries (ASCredentialIdentity [])' instead.")] @@ -396,9 +424,19 @@ interface ASPasswordCredential : NSCopying, NSSecureCoding, ASAuthorizationCrede [BaseType (typeof (NSObject))] [DisableDefaultCtor] interface ASWebAuthenticationSession { + + [Deprecated (PlatformName.iOS, 17, 4, message: "Use the 'ASWebAuthenticationSessionCallback' overload instead.")] + [Deprecated (PlatformName.MacCatalyst, 17, 4, message: "Use the 'ASWebAuthenticationSessionCallback' overload instead.")] + [Deprecated (PlatformName.MacOSX, 14, 4, message: "Use the 'ASWebAuthenticationSessionCallback' overload instead.")] + [Deprecated (PlatformName.TvOS, 17, 4, message: "Use the 'ASWebAuthenticationSessionCallback' overload instead.")] + [Deprecated (PlatformName.WatchOS, 10, 4, message: "Use the 'ASWebAuthenticationSessionCallback' overload instead.")] [Export ("initWithURL:callbackURLScheme:completionHandler:")] NativeHandle Constructor (NSUrl url, [NullAllowed] string callbackUrlScheme, ASWebAuthenticationSessionCompletionHandler completionHandler); + [Watch (10, 4), TV (17, 4), Mac (14, 4), iOS (17, 4), MacCatalyst (17, 4)] + [Export ("initWithURL:callback:completionHandler:")] + NativeHandle Constructor (NSUrl url, ASWebAuthenticationSessionCallback callback, ASWebAuthenticationSessionCompletionHandler completionHandler); + [Export ("start")] bool Start (); @@ -417,6 +455,10 @@ interface ASWebAuthenticationSession { [Export ("prefersEphemeralWebBrowserSession")] bool PrefersEphemeralWebBrowserSession { get; set; } + [Watch (10, 4), TV (17, 4), Mac (14, 4), iOS (17, 4), MacCatalyst (17, 4)] + [NullAllowed, Export ("additionalHeaderFields", ArgumentSemantic.Assign)] + NSDictionary AdditionalHeaderFields { get; set; } + [iOS (13, 4)] [MacCatalyst (13, 1)] [Export ("canStart")] @@ -499,6 +541,14 @@ public enum ASAuthorizationProviderExtensionFederationType : long { DynamicWSTrust = 2, } + [Watch (10, 4), TV (17, 4), Mac (14, 4), iOS (17, 4), MacCatalyst (17, 4)] + [Native] + public enum ASUserAgeRange : long { + Unknown, + Child, + NotChild, + } + [Watch (6, 0), TV (13, 0), iOS (13, 0)] [MacCatalyst (13, 1)] [BaseType (typeof (NSObject), Name = "ASAuthorizationAppleIDCredential")] @@ -529,6 +579,10 @@ interface ASAuthorizationAppleIdCredential : ASAuthorizationCredential { [Export ("realUserStatus")] ASUserDetectionStatus RealUserStatus { get; } + + [Watch (10, 4), TV (17, 4), Mac (14, 4), iOS (17, 4), MacCatalyst (17, 4)] + [Export ("userAgeRange")] + ASUserAgeRange UserAgeRange { get; } } [Watch (6, 0), TV (13, 0), iOS (13, 0)] @@ -1053,6 +1107,14 @@ interface ASWebAuthenticationSessionRequest : NSSecureCoding, NSCopying { [NullAllowed, Export ("delegate", ArgumentSemantic.Weak)] NSObject WeakDelegate { get; set; } + [MacCatalyst (17, 4), Mac (14, 4)] + [NullAllowed, Export ("additionalHeaderFields")] + NSDictionary AdditionalHeaderFields { get; } + + [MacCatalyst (17, 4), Mac (14, 4)] + [NullAllowed, Export ("callback")] + ASWebAuthenticationSessionCallback Callback { get; } + [Export ("cancelWithError:")] void Cancel (NSError error); @@ -1724,6 +1786,10 @@ interface ASAuthorizationProviderExtensionLoginConfiguration { [Export ("deviceContext", ArgumentSemantic.Copy)] NSData DeviceContext { get; set; } + [Mac (14, 4)] + [Export ("userSecureEnclaveKeyBiometricPolicy", ArgumentSemantic.Assign)] + ASAuthorizationProviderExtensionUserSecureEnclaveKeyBiometricPolicy UserSecureEnclaveKeyBiometricPolicy { get; set; } + [Mac (14, 0)] [Export ("jwksTrustedRootCertificates", ArgumentSemantic.Copy)] NSObject [] JwksTrustedRootCertificates { get; set; } @@ -1980,7 +2046,7 @@ interface ASAuthorizationWebBrowserExternallyAuthenticatableRequest { LAContext AuthenticatedContext { get; set; } } - [NoWatch, NoTV, NoiOS, MacCatalyst (16, 4), Mac (13, 3)] + [NoWatch, NoTV, iOS (17, 4), MacCatalyst (16, 4), Mac (13, 3)] [BaseType (typeof (NSObject))] [DisableDefaultCtor] interface ASAuthorizationWebBrowserPlatformPublicKeyCredential { @@ -2006,7 +2072,7 @@ interface ASAuthorizationWebBrowserPlatformPublicKeyCredential { string CustomTitle { get; } } - [NoWatch, NoTV, NoiOS, MacCatalyst (16, 4), Mac (13, 3)] + [NoWatch, NoTV, iOS (17, 4), MacCatalyst (16, 4), Mac (13, 3)] [BaseType (typeof (NSObject))] [DesignatedDefaultCtor] interface ASAuthorizationWebBrowserPublicKeyCredentialManager { @@ -2253,7 +2319,7 @@ interface ASAuthorizationPublicKeyCredentialLargeBlobRegistrationOutput { bool IsSupported { get; } } - [NoWatch, NoTV, NoiOS, MacCatalyst (17, 0), Mac (14, 0)] + [NoWatch, NoTV, iOS (17, 4), MacCatalyst (17, 0), Mac (14, 0)] [BaseType (typeof (NSObject))] [DisableDefaultCtor] interface ASPublicKeyCredentialClientData { @@ -2296,7 +2362,7 @@ interface ASAuthorizationProviderExtensionUserLoginConfiguration { bool SetCustomLoginRequestBodyClaims (NSDictionary claims, [NullAllowed] out NSError error); } - [NoWatch, NoTV, NoiOS, MacCatalyst (17, 0), Mac (14, 0)] + [NoWatch, NoTV, iOS (17, 4), MacCatalyst (17, 0), Mac (14, 0)] [Protocol] interface ASAuthorizationWebBrowserPlatformPublicKeyCredentialProvider { [Abstract] @@ -2308,7 +2374,7 @@ interface ASAuthorizationWebBrowserPlatformPublicKeyCredentialProvider { ASAuthorizationPlatformPublicKeyCredentialAssertionRequest CreateCredentialAssertionRequest (ASPublicKeyCredentialClientData clientData); } - [NoWatch, NoTV, NoiOS, MacCatalyst (17, 0), Mac (14, 0)] + [NoWatch, NoTV, iOS (17, 4), MacCatalyst (17, 0), Mac (14, 0)] [Protocol] interface ASAuthorizationWebBrowserPlatformPublicKeyCredentialRegistrationRequest { [Abstract] @@ -2319,12 +2385,13 @@ interface ASAuthorizationWebBrowserPlatformPublicKeyCredentialRegistrationReques [NullAllowed, Export ("excludedCredentials", ArgumentSemantic.Copy)] ASAuthorizationPlatformPublicKeyCredentialDescriptor [] ExcludedCredentials { get; set; } + [NoiOS, NoMacCatalyst] [Abstract] [Export ("shouldShowHybridTransport")] bool ShouldShowHybridTransport { get; set; } } - [NoWatch, NoTV, NoiOS, MacCatalyst (17, 0), Mac (14, 0)] + [NoWatch, NoTV, iOS (17, 4), MacCatalyst (17, 0), Mac (14, 0)] [Protocol] interface ASAuthorizationWebBrowserPlatformPublicKeyCredentialAssertionRequest { [Abstract] @@ -2336,4 +2403,51 @@ interface ASAuthorizationWebBrowserPlatformPublicKeyCredentialAssertionRequest { bool ShouldShowHybridTransport { get; set; } } + [NoWatch, NoTV, iOS (17, 4), MacCatalyst (17, 4), Mac (14, 4)] + [Protocol] + interface ASAuthorizationWebBrowserSecurityKeyPublicKeyCredentialAssertionRequest { + + [Abstract] + [Export ("clientData")] + ASPublicKeyCredentialClientData ClientData { get; } + } + + [NoWatch, NoTV, iOS (17, 4), MacCatalyst (17, 4), Mac (14, 4)] + [Protocol] + interface ASAuthorizationWebBrowserSecurityKeyPublicKeyCredentialProvider { + + [Abstract] + [Export ("createCredentialRegistrationRequestWithClientData:displayName:name:userID:")] + ASAuthorizationSecurityKeyPublicKeyCredentialRegistrationRequest CreateCredentialRegistrationRequest (ASPublicKeyCredentialClientData clientData, string displayName, string name, NSData userId); + + [Abstract] + [Export ("createCredentialAssertionRequestWithClientData:")] + ASAuthorizationSecurityKeyPublicKeyCredentialAssertionRequest CreateCredentialAssertionRequest (ASPublicKeyCredentialClientData clientData); + } + + [NoWatch, NoTV, iOS (17, 4), MacCatalyst (17, 4), Mac (14, 4)] + [Protocol] + interface ASAuthorizationWebBrowserSecurityKeyPublicKeyCredentialRegistrationRequest { + + [Abstract] + [Export ("clientData")] + ASPublicKeyCredentialClientData ClientData { get; } + } + + [Watch (10, 4), TV (17, 4), Mac (14, 4), iOS (17, 4), MacCatalyst (17, 4)] + [BaseType (typeof (NSObject))] + [DisableDefaultCtor] + interface ASWebAuthenticationSessionCallback { + + [Static] + [Export ("callbackWithCustomScheme:")] + ASWebAuthenticationSessionCallback Create (string customScheme); + + [Static] + [Export ("callbackWithHTTPSHost:path:")] + ASWebAuthenticationSessionCallback Create (string httpsHost, string path); + + [Export ("matchesURL:")] + bool MatchesUrl (NSUrl url); + } } diff --git a/tests/cecil-tests/Documentation.KnownFailures.txt b/tests/cecil-tests/Documentation.KnownFailures.txt index eac6fad16e31..cf25698c7f52 100644 --- a/tests/cecil-tests/Documentation.KnownFailures.txt +++ b/tests/cecil-tests/Documentation.KnownFailures.txt @@ -5212,6 +5212,7 @@ F:AuthenticationServices.ASAuthorizationProviderExtensionRequestOptions.Registra F:AuthenticationServices.ASAuthorizationProviderExtensionRequestOptions.RegistrationRepair F:AuthenticationServices.ASAuthorizationProviderExtensionRequestOptions.RegistrationSharedDeviceKeys F:AuthenticationServices.ASAuthorizationProviderExtensionRequestOptions.UserInteractionEnabled +F:AuthenticationServices.ASAuthorizationProviderExtensionRequestOptions.UserKeyInvalid F:AuthenticationServices.ASAuthorizationProviderExtensionRequestOptions.value__ F:AuthenticationServices.ASAuthorizationProviderExtensionSupportedGrantTypes.JwtBearer F:AuthenticationServices.ASAuthorizationProviderExtensionSupportedGrantTypes.None @@ -5219,6 +5220,12 @@ F:AuthenticationServices.ASAuthorizationProviderExtensionSupportedGrantTypes.Pas F:AuthenticationServices.ASAuthorizationProviderExtensionSupportedGrantTypes.Saml11 F:AuthenticationServices.ASAuthorizationProviderExtensionSupportedGrantTypes.Saml20 F:AuthenticationServices.ASAuthorizationProviderExtensionSupportedGrantTypes.value__ +F:AuthenticationServices.ASAuthorizationProviderExtensionUserSecureEnclaveKeyBiometricPolicy.None +F:AuthenticationServices.ASAuthorizationProviderExtensionUserSecureEnclaveKeyBiometricPolicy.PasswordFallback +F:AuthenticationServices.ASAuthorizationProviderExtensionUserSecureEnclaveKeyBiometricPolicy.ReuseDuringUnlock +F:AuthenticationServices.ASAuthorizationProviderExtensionUserSecureEnclaveKeyBiometricPolicy.TouchIdOrWatchAny +F:AuthenticationServices.ASAuthorizationProviderExtensionUserSecureEnclaveKeyBiometricPolicy.TouchIdOrWatchCurrentSet +F:AuthenticationServices.ASAuthorizationProviderExtensionUserSecureEnclaveKeyBiometricPolicy.value__ F:AuthenticationServices.ASAuthorizationPublicKeyCredentialAttachment.CrossPlatform F:AuthenticationServices.ASAuthorizationPublicKeyCredentialAttachment.Platform F:AuthenticationServices.ASAuthorizationPublicKeyCredentialAttachment.value__ @@ -5249,6 +5256,10 @@ F:AuthenticationServices.ASCredentialIdentityStoreErrorCode.InternalError F:AuthenticationServices.ASCredentialIdentityStoreErrorCode.StoreBusy F:AuthenticationServices.ASCredentialIdentityStoreErrorCode.StoreDisabled F:AuthenticationServices.ASCredentialIdentityStoreErrorCode.value__ +F:AuthenticationServices.ASCredentialIdentityTypes.All +F:AuthenticationServices.ASCredentialIdentityTypes.Passkey +F:AuthenticationServices.ASCredentialIdentityTypes.Password +F:AuthenticationServices.ASCredentialIdentityTypes.value__ F:AuthenticationServices.ASCredentialRequestType.PasskeyAssertion F:AuthenticationServices.ASCredentialRequestType.Password F:AuthenticationServices.ASCredentialRequestType.value__ @@ -5264,6 +5275,10 @@ F:AuthenticationServices.ASPublicKeyCredentialClientDataCrossOriginValue.CrossOr F:AuthenticationServices.ASPublicKeyCredentialClientDataCrossOriginValue.NotSet F:AuthenticationServices.ASPublicKeyCredentialClientDataCrossOriginValue.SameOriginWithAncestors F:AuthenticationServices.ASPublicKeyCredentialClientDataCrossOriginValue.value__ +F:AuthenticationServices.ASUserAgeRange.Child +F:AuthenticationServices.ASUserAgeRange.NotChild +F:AuthenticationServices.ASUserAgeRange.Unknown +F:AuthenticationServices.ASUserAgeRange.value__ F:AuthenticationServices.ASUserDetectionStatus.LikelyReal F:AuthenticationServices.ASUserDetectionStatus.Unknown F:AuthenticationServices.ASUserDetectionStatus.Unsupported @@ -39416,6 +39431,7 @@ M:AuthenticationServices.ASAuthorizationAppleIdCredential.get_IdentityToken M:AuthenticationServices.ASAuthorizationAppleIdCredential.get_RealUserStatus M:AuthenticationServices.ASAuthorizationAppleIdCredential.get_State M:AuthenticationServices.ASAuthorizationAppleIdCredential.get_User +M:AuthenticationServices.ASAuthorizationAppleIdCredential.get_UserAgeRange M:AuthenticationServices.ASAuthorizationAppleIdProvider.#ctor M:AuthenticationServices.ASAuthorizationAppleIdProvider.#ctor(Foundation.NSObjectFlag) M:AuthenticationServices.ASAuthorizationAppleIdProvider.#ctor(ObjCRuntime.NativeHandle) @@ -39677,6 +39693,7 @@ M:AuthenticationServices.ASAuthorizationProviderExtensionLoginConfiguration.get_ M:AuthenticationServices.ASAuthorizationProviderExtensionLoginConfiguration.get_ServerNonceClaimName M:AuthenticationServices.ASAuthorizationProviderExtensionLoginConfiguration.get_TokenEndpointUrl M:AuthenticationServices.ASAuthorizationProviderExtensionLoginConfiguration.get_UniqueIdentifierClaimName +M:AuthenticationServices.ASAuthorizationProviderExtensionLoginConfiguration.get_UserSecureEnclaveKeyBiometricPolicy M:AuthenticationServices.ASAuthorizationProviderExtensionLoginConfiguration.set_AccountDisplayName(System.String) M:AuthenticationServices.ASAuthorizationProviderExtensionLoginConfiguration.set_AdditionalAuthorizationScopes(System.String) M:AuthenticationServices.ASAuthorizationProviderExtensionLoginConfiguration.set_AdditionalScopes(System.String) @@ -39712,6 +39729,7 @@ M:AuthenticationServices.ASAuthorizationProviderExtensionLoginConfiguration.set_ M:AuthenticationServices.ASAuthorizationProviderExtensionLoginConfiguration.set_ServerNonceClaimName(System.String) M:AuthenticationServices.ASAuthorizationProviderExtensionLoginConfiguration.set_TokenEndpointUrl(Foundation.NSUrl) M:AuthenticationServices.ASAuthorizationProviderExtensionLoginConfiguration.set_UniqueIdentifierClaimName(System.String) +M:AuthenticationServices.ASAuthorizationProviderExtensionLoginConfiguration.set_UserSecureEnclaveKeyBiometricPolicy(AuthenticationServices.ASAuthorizationProviderExtensionUserSecureEnclaveKeyBiometricPolicy) M:AuthenticationServices.ASAuthorizationProviderExtensionLoginConfiguration.SetCustomAssertionRequestBodyClaims(Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},Foundation.NSError@) M:AuthenticationServices.ASAuthorizationProviderExtensionLoginConfiguration.SetCustomAssertionRequestHeaderClaims(Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},Foundation.NSError@) M:AuthenticationServices.ASAuthorizationProviderExtensionLoginConfiguration.SetCustomKeyExchangeRequestBodyClaims(Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},Foundation.NSError@) @@ -39961,6 +39979,8 @@ M:AuthenticationServices.ASCredentialIdentityStore.#ctor(Foundation.NSObjectFlag M:AuthenticationServices.ASCredentialIdentityStore.#ctor(ObjCRuntime.NativeHandle) M:AuthenticationServices.ASCredentialIdentityStore.get_ClassHandle M:AuthenticationServices.ASCredentialIdentityStore.get_SharedStore +M:AuthenticationServices.ASCredentialIdentityStore.GetCredentialIdentities(AuthenticationServices.ASCredentialServiceIdentifier,AuthenticationServices.ASCredentialIdentityTypes,AuthenticationServices.ASCredentialIdentityStoreGetCredentialIdentitiesHandler) +M:AuthenticationServices.ASCredentialIdentityStore.GetCredentialIdentitiesAsync(AuthenticationServices.ASCredentialServiceIdentifier,AuthenticationServices.ASCredentialIdentityTypes) M:AuthenticationServices.ASCredentialIdentityStore.GetCredentialIdentityStoreState(System.Action{AuthenticationServices.ASCredentialIdentityStoreState}) M:AuthenticationServices.ASCredentialIdentityStore.GetCredentialIdentityStoreStateAsync M:AuthenticationServices.ASCredentialIdentityStore.RemoveAllCredentialIdentities(System.Action{System.Boolean,Foundation.NSError}) @@ -39982,6 +40002,10 @@ M:AuthenticationServices.ASCredentialIdentityStoreCompletionHandler.BeginInvoke( M:AuthenticationServices.ASCredentialIdentityStoreCompletionHandler.EndInvoke(System.IAsyncResult) M:AuthenticationServices.ASCredentialIdentityStoreCompletionHandler.Invoke(System.Boolean,Foundation.NSError) M:AuthenticationServices.ASCredentialIdentityStoreErrorCodeExtensions.GetDomain(AuthenticationServices.ASCredentialIdentityStoreErrorCode) +M:AuthenticationServices.ASCredentialIdentityStoreGetCredentialIdentitiesHandler.#ctor(System.Object,System.IntPtr) +M:AuthenticationServices.ASCredentialIdentityStoreGetCredentialIdentitiesHandler.BeginInvoke(AuthenticationServices.IASCredentialIdentity[],System.AsyncCallback,System.Object) +M:AuthenticationServices.ASCredentialIdentityStoreGetCredentialIdentitiesHandler.EndInvoke(System.IAsyncResult) +M:AuthenticationServices.ASCredentialIdentityStoreGetCredentialIdentitiesHandler.Invoke(AuthenticationServices.IASCredentialIdentity[]) M:AuthenticationServices.ASCredentialIdentityStoreState.#ctor(Foundation.NSObjectFlag) M:AuthenticationServices.ASCredentialIdentityStoreState.#ctor(ObjCRuntime.NativeHandle) M:AuthenticationServices.ASCredentialIdentityStoreState.get_ClassHandle @@ -40149,17 +40173,26 @@ M:AuthenticationServices.ASSettingsHelper.OpenCredentialProviderAppSettingsAsync M:AuthenticationServices.ASSettingsHelper.OpenVerificationCodeAppSettings(System.Action{Foundation.NSError}) M:AuthenticationServices.ASSettingsHelper.OpenVerificationCodeAppSettingsAsync M:AuthenticationServices.ASWebAuthenticationSession.#ctor(Foundation.NSObjectFlag) +M:AuthenticationServices.ASWebAuthenticationSession.#ctor(Foundation.NSUrl,AuthenticationServices.ASWebAuthenticationSessionCallback,AuthenticationServices.ASWebAuthenticationSessionCompletionHandler) M:AuthenticationServices.ASWebAuthenticationSession.#ctor(Foundation.NSUrl,System.String,AuthenticationServices.ASWebAuthenticationSessionCompletionHandler) M:AuthenticationServices.ASWebAuthenticationSession.#ctor(ObjCRuntime.NativeHandle) M:AuthenticationServices.ASWebAuthenticationSession.Cancel M:AuthenticationServices.ASWebAuthenticationSession.Dispose(System.Boolean) +M:AuthenticationServices.ASWebAuthenticationSession.get_AdditionalHeaderFields M:AuthenticationServices.ASWebAuthenticationSession.get_CanStart M:AuthenticationServices.ASWebAuthenticationSession.get_ClassHandle M:AuthenticationServices.ASWebAuthenticationSession.get_PrefersEphemeralWebBrowserSession M:AuthenticationServices.ASWebAuthenticationSession.get_PresentationContextProvider +M:AuthenticationServices.ASWebAuthenticationSession.set_AdditionalHeaderFields(Foundation.NSDictionary) M:AuthenticationServices.ASWebAuthenticationSession.set_PrefersEphemeralWebBrowserSession(System.Boolean) M:AuthenticationServices.ASWebAuthenticationSession.set_PresentationContextProvider(AuthenticationServices.IASWebAuthenticationPresentationContextProviding) M:AuthenticationServices.ASWebAuthenticationSession.Start +M:AuthenticationServices.ASWebAuthenticationSessionCallback.#ctor(Foundation.NSObjectFlag) +M:AuthenticationServices.ASWebAuthenticationSessionCallback.#ctor(ObjCRuntime.NativeHandle) +M:AuthenticationServices.ASWebAuthenticationSessionCallback.Create(System.String,System.String) +M:AuthenticationServices.ASWebAuthenticationSessionCallback.Create(System.String) +M:AuthenticationServices.ASWebAuthenticationSessionCallback.get_ClassHandle +M:AuthenticationServices.ASWebAuthenticationSessionCallback.MatchesUrl(Foundation.NSUrl) M:AuthenticationServices.ASWebAuthenticationSessionCompletionHandler.#ctor(System.Object,System.IntPtr) M:AuthenticationServices.ASWebAuthenticationSessionCompletionHandler.BeginInvoke(Foundation.NSUrl,Foundation.NSError,System.AsyncCallback,System.Object) M:AuthenticationServices.ASWebAuthenticationSessionCompletionHandler.EndInvoke(System.IAsyncResult) @@ -40173,6 +40206,8 @@ M:AuthenticationServices.ASWebAuthenticationSessionRequest.Complete(Foundation.N M:AuthenticationServices.ASWebAuthenticationSessionRequest.Copy(Foundation.NSZone) M:AuthenticationServices.ASWebAuthenticationSessionRequest.Dispose(System.Boolean) M:AuthenticationServices.ASWebAuthenticationSessionRequest.EncodeTo(Foundation.NSCoder) +M:AuthenticationServices.ASWebAuthenticationSessionRequest.get_AdditionalHeaderFields +M:AuthenticationServices.ASWebAuthenticationSessionRequest.get_Callback M:AuthenticationServices.ASWebAuthenticationSessionRequest.get_CallbackUrlScheme M:AuthenticationServices.ASWebAuthenticationSessionRequest.get_ClassHandle M:AuthenticationServices.ASWebAuthenticationSessionRequest.get_Delegate @@ -40242,6 +40277,10 @@ M:AuthenticationServices.IASAuthorizationWebBrowserPlatformPublicKeyCredentialRe M:AuthenticationServices.IASAuthorizationWebBrowserPlatformPublicKeyCredentialRegistrationRequest.get_ShouldShowHybridTransport M:AuthenticationServices.IASAuthorizationWebBrowserPlatformPublicKeyCredentialRegistrationRequest.set_ExcludedCredentials(AuthenticationServices.ASAuthorizationPlatformPublicKeyCredentialDescriptor[]) M:AuthenticationServices.IASAuthorizationWebBrowserPlatformPublicKeyCredentialRegistrationRequest.set_ShouldShowHybridTransport(System.Boolean) +M:AuthenticationServices.IASAuthorizationWebBrowserSecurityKeyPublicKeyCredentialAssertionRequest.get_ClientData +M:AuthenticationServices.IASAuthorizationWebBrowserSecurityKeyPublicKeyCredentialProvider.CreateCredentialAssertionRequest(AuthenticationServices.ASPublicKeyCredentialClientData) +M:AuthenticationServices.IASAuthorizationWebBrowserSecurityKeyPublicKeyCredentialProvider.CreateCredentialRegistrationRequest(AuthenticationServices.ASPublicKeyCredentialClientData,System.String,System.String,Foundation.NSData) +M:AuthenticationServices.IASAuthorizationWebBrowserSecurityKeyPublicKeyCredentialRegistrationRequest.get_ClientData M:AuthenticationServices.IASCredentialIdentity.get_Rank M:AuthenticationServices.IASCredentialIdentity.get_RecordIdentifier M:AuthenticationServices.IASCredentialIdentity.get_ServiceIdentifier @@ -44730,10 +44769,13 @@ M:AVKit.AVCaptureEvent.#ctor(ObjCRuntime.NativeHandle) M:AVKit.AVCaptureEvent.get_ClassHandle M:AVKit.AVCaptureEventInteraction.#ctor(Foundation.NSObjectFlag) M:AVKit.AVCaptureEventInteraction.#ctor(ObjCRuntime.NativeHandle) +M:AVKit.AVCaptureEventInteraction.DidMoveToView(UIKit.UIView) M:AVKit.AVCaptureEventInteraction.Dispose(System.Boolean) M:AVKit.AVCaptureEventInteraction.get_ClassHandle M:AVKit.AVCaptureEventInteraction.get_Enabled +M:AVKit.AVCaptureEventInteraction.get_View M:AVKit.AVCaptureEventInteraction.set_Enabled(System.Boolean) +M:AVKit.AVCaptureEventInteraction.WillMoveToView(UIKit.UIView) M:AVKit.AVCaptureView.#ctor M:AVKit.AVCaptureView.#ctor(CoreGraphics.CGRect) M:AVKit.AVCaptureView.#ctor(Foundation.NSCoder) @@ -95066,15 +95108,22 @@ M:SafetyKit.SACrashDetectionDelegate.DidDetectEvent(SafetyKit.SACrashDetectionMa M:SafetyKit.SACrashDetectionEvent.#ctor(Foundation.NSCoder) M:SafetyKit.SACrashDetectionEvent.#ctor(Foundation.NSObjectFlag) M:SafetyKit.SACrashDetectionEvent.#ctor(ObjCRuntime.NativeHandle) +M:SafetyKit.SACrashDetectionEvent.Copy(Foundation.NSZone) M:SafetyKit.SACrashDetectionEvent.EncodeTo(Foundation.NSCoder) M:SafetyKit.SACrashDetectionEvent.get_ClassHandle +M:SafetyKit.SACrashDetectionEvent.get_Date +M:SafetyKit.SACrashDetectionEvent.get_Location +M:SafetyKit.SACrashDetectionEvent.get_Response M:SafetyKit.SACrashDetectionManager.#ctor M:SafetyKit.SACrashDetectionManager.#ctor(Foundation.NSObjectFlag) M:SafetyKit.SACrashDetectionManager.#ctor(ObjCRuntime.NativeHandle) M:SafetyKit.SACrashDetectionManager.Dispose(System.Boolean) +M:SafetyKit.SACrashDetectionManager.get_AuthorizationStatus M:SafetyKit.SACrashDetectionManager.get_Available M:SafetyKit.SACrashDetectionManager.get_ClassHandle M:SafetyKit.SACrashDetectionManager.get_Delegate +M:SafetyKit.SACrashDetectionManager.get_WeakDelegate +M:SafetyKit.SACrashDetectionManager.RequestAuthorization(SafetyKit.SACrashDetectionManagerRequestAuthorizationCompletionHandler) M:SafetyKit.SACrashDetectionManager.RequestAuthorizationAsync M:SafetyKit.SACrashDetectionManager.set_Delegate(SafetyKit.ISACrashDetectionDelegate) M:SafetyKit.SACrashDetectionManager.set_WeakDelegate(Foundation.NSObject) @@ -95090,10 +95139,12 @@ M:SafetyKit.SAEmergencyResponseDelegate.DidUpdateVoiceCallStatus(SafetyKit.SAEme M:SafetyKit.SAEmergencyResponseManager.#ctor M:SafetyKit.SAEmergencyResponseManager.#ctor(Foundation.NSObjectFlag) M:SafetyKit.SAEmergencyResponseManager.#ctor(ObjCRuntime.NativeHandle) +M:SafetyKit.SAEmergencyResponseManager.DialVoiceCall(System.String,SafetyKit.SAEmergencyResponseManagerDialVoiceCallCompletionHandler) M:SafetyKit.SAEmergencyResponseManager.DialVoiceCallAsync(System.String) M:SafetyKit.SAEmergencyResponseManager.Dispose(System.Boolean) M:SafetyKit.SAEmergencyResponseManager.get_ClassHandle M:SafetyKit.SAEmergencyResponseManager.get_Delegate +M:SafetyKit.SAEmergencyResponseManager.get_WeakDelegate M:SafetyKit.SAEmergencyResponseManager.set_Delegate(SafetyKit.ISAEmergencyResponseDelegate) M:SafetyKit.SAEmergencyResponseManager.set_WeakDelegate(Foundation.NSObject) M:SafetyKit.SAEmergencyResponseManagerDialVoiceCallCompletionHandler.#ctor(System.Object,System.IntPtr) @@ -121830,6 +121881,7 @@ P:AuthenticationServices.ASAuthorizationAppleIdCredential.IdentityToken P:AuthenticationServices.ASAuthorizationAppleIdCredential.RealUserStatus P:AuthenticationServices.ASAuthorizationAppleIdCredential.State P:AuthenticationServices.ASAuthorizationAppleIdCredential.User +P:AuthenticationServices.ASAuthorizationAppleIdCredential.UserAgeRange P:AuthenticationServices.ASAuthorizationAppleIdProvider.ClassHandle P:AuthenticationServices.ASAuthorizationAppleIdProvider.CredentialRevokedNotification P:AuthenticationServices.ASAuthorizationAppleIdRequest.ClassHandle @@ -121951,6 +122003,7 @@ P:AuthenticationServices.ASAuthorizationProviderExtensionLoginConfiguration.Refr P:AuthenticationServices.ASAuthorizationProviderExtensionLoginConfiguration.ServerNonceClaimName P:AuthenticationServices.ASAuthorizationProviderExtensionLoginConfiguration.TokenEndpointUrl P:AuthenticationServices.ASAuthorizationProviderExtensionLoginConfiguration.UniqueIdentifierClaimName +P:AuthenticationServices.ASAuthorizationProviderExtensionLoginConfiguration.UserSecureEnclaveKeyBiometricPolicy P:AuthenticationServices.ASAuthorizationProviderExtensionLoginManager.ClassHandle P:AuthenticationServices.ASAuthorizationProviderExtensionLoginManager.DeviceRegistered P:AuthenticationServices.ASAuthorizationProviderExtensionLoginManager.ExtensionData @@ -122100,10 +122153,14 @@ P:AuthenticationServices.ASPublicKeyCredentialClientData.CrossOrigin P:AuthenticationServices.ASPublicKeyCredentialClientData.Origin P:AuthenticationServices.ASPublicKeyCredentialClientData.TopOrigin P:AuthenticationServices.ASSettingsHelper.ClassHandle +P:AuthenticationServices.ASWebAuthenticationSession.AdditionalHeaderFields P:AuthenticationServices.ASWebAuthenticationSession.CanStart P:AuthenticationServices.ASWebAuthenticationSession.ClassHandle P:AuthenticationServices.ASWebAuthenticationSession.PrefersEphemeralWebBrowserSession P:AuthenticationServices.ASWebAuthenticationSession.PresentationContextProvider +P:AuthenticationServices.ASWebAuthenticationSessionCallback.ClassHandle +P:AuthenticationServices.ASWebAuthenticationSessionRequest.AdditionalHeaderFields +P:AuthenticationServices.ASWebAuthenticationSessionRequest.Callback P:AuthenticationServices.ASWebAuthenticationSessionRequest.CallbackUrlScheme P:AuthenticationServices.ASWebAuthenticationSessionRequest.ClassHandle P:AuthenticationServices.ASWebAuthenticationSessionRequest.Delegate @@ -122137,6 +122194,8 @@ P:AuthenticationServices.IASAuthorizationWebBrowserPlatformPublicKeyCredentialAs P:AuthenticationServices.IASAuthorizationWebBrowserPlatformPublicKeyCredentialRegistrationRequest.ClientData P:AuthenticationServices.IASAuthorizationWebBrowserPlatformPublicKeyCredentialRegistrationRequest.ExcludedCredentials P:AuthenticationServices.IASAuthorizationWebBrowserPlatformPublicKeyCredentialRegistrationRequest.ShouldShowHybridTransport +P:AuthenticationServices.IASAuthorizationWebBrowserSecurityKeyPublicKeyCredentialAssertionRequest.ClientData +P:AuthenticationServices.IASAuthorizationWebBrowserSecurityKeyPublicKeyCredentialRegistrationRequest.ClientData P:AuthenticationServices.IASCredentialIdentity.Rank P:AuthenticationServices.IASCredentialIdentity.RecordIdentifier P:AuthenticationServices.IASCredentialIdentity.ServiceIdentifier @@ -157775,6 +157834,7 @@ T:AuthenticationServices.ASAuthorizationProviderExtensionRegistrationResult T:AuthenticationServices.ASAuthorizationProviderExtensionRequestOptions T:AuthenticationServices.ASAuthorizationProviderExtensionSupportedGrantTypes T:AuthenticationServices.ASAuthorizationProviderExtensionUserLoginConfiguration +T:AuthenticationServices.ASAuthorizationProviderExtensionUserSecureEnclaveKeyBiometricPolicy T:AuthenticationServices.ASAuthorizationPublicKeyCredentialAttachment T:AuthenticationServices.ASAuthorizationPublicKeyCredentialAttestationKind T:AuthenticationServices.ASAuthorizationPublicKeyCredentialLargeBlobAssertionInput @@ -157809,7 +157869,9 @@ T:AuthenticationServices.ASCredentialIdentityStore T:AuthenticationServices.ASCredentialIdentityStoreCompletionHandler T:AuthenticationServices.ASCredentialIdentityStoreErrorCode T:AuthenticationServices.ASCredentialIdentityStoreErrorCodeExtensions +T:AuthenticationServices.ASCredentialIdentityStoreGetCredentialIdentitiesHandler T:AuthenticationServices.ASCredentialIdentityStoreState +T:AuthenticationServices.ASCredentialIdentityTypes T:AuthenticationServices.ASCredentialProviderExtensionContext T:AuthenticationServices.ASCredentialProviderExtensionRequestCompletionHandler T:AuthenticationServices.ASCredentialProviderViewController @@ -157829,8 +157891,10 @@ T:AuthenticationServices.ASPasswordCredentialRequest T:AuthenticationServices.ASPublicKeyCredentialClientData T:AuthenticationServices.ASPublicKeyCredentialClientDataCrossOriginValue T:AuthenticationServices.ASSettingsHelper +T:AuthenticationServices.ASUserAgeRange T:AuthenticationServices.ASUserDetectionStatus T:AuthenticationServices.ASWebAuthenticationSession +T:AuthenticationServices.ASWebAuthenticationSessionCallback T:AuthenticationServices.ASWebAuthenticationSessionCompletionHandler T:AuthenticationServices.ASWebAuthenticationSessionErrorCode T:AuthenticationServices.ASWebAuthenticationSessionErrorCodeExtensions @@ -157855,6 +157919,9 @@ T:AuthenticationServices.IASAuthorizationWebBrowserExternallyAuthenticatableRequ T:AuthenticationServices.IASAuthorizationWebBrowserPlatformPublicKeyCredentialAssertionRequest T:AuthenticationServices.IASAuthorizationWebBrowserPlatformPublicKeyCredentialProvider T:AuthenticationServices.IASAuthorizationWebBrowserPlatformPublicKeyCredentialRegistrationRequest +T:AuthenticationServices.IASAuthorizationWebBrowserSecurityKeyPublicKeyCredentialAssertionRequest +T:AuthenticationServices.IASAuthorizationWebBrowserSecurityKeyPublicKeyCredentialProvider +T:AuthenticationServices.IASAuthorizationWebBrowserSecurityKeyPublicKeyCredentialRegistrationRequest T:AuthenticationServices.IASCredentialIdentity T:AuthenticationServices.IASCredentialRequest T:AuthenticationServices.IASPublicKeyCredential diff --git a/tests/introspection/ApiProtocolTest.cs b/tests/introspection/ApiProtocolTest.cs index 380bf0bd5434..ae76822f2f3c 100644 --- a/tests/introspection/ApiProtocolTest.cs +++ b/tests/introspection/ApiProtocolTest.cs @@ -361,6 +361,9 @@ protected virtual bool Skip (Type type, string protocolName) case "MKPolylineRenderer": case "AVAudioPcmBuffer": return true; + // Xcode 15.3, Conformance not in headers + case "ASWebAuthenticationSessionCallback": + return true; } break; case "NSSecureCoding": @@ -530,6 +533,9 @@ protected virtual bool Skip (Type type, string protocolName) case "MKPolylineRenderer": case "AVAudioPcmBuffer": return true; + // Xcode 15.3, Conformance not in headers + case "ASWebAuthenticationSessionCallback": + return true; } break; // conformance added in Xcode 8 (iOS 10 / macOS 10.12) diff --git a/tests/introspection/ApiSelectorTest.cs b/tests/introspection/ApiSelectorTest.cs index 723cdd07cccc..66d8e0cbabf2 100644 --- a/tests/introspection/ApiSelectorTest.cs +++ b/tests/introspection/ApiSelectorTest.cs @@ -989,6 +989,12 @@ protected virtual bool Skip (Type type, string selectorName) return TestRuntime.CheckXcodeVersion (14, 3); } break; + case "GCMouse": + switch (selectorName) { + case "encodeWithCoder:": + return true; + } + break; } // old binding mistake diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-AuthenticationServices.todo b/tests/xtro-sharpie/api-annotations-dotnet/iOS-AuthenticationServices.todo deleted file mode 100644 index 0a98b7e19b25..000000000000 --- a/tests/xtro-sharpie/api-annotations-dotnet/iOS-AuthenticationServices.todo +++ /dev/null @@ -1,40 +0,0 @@ -!deprecated-attribute-missing! ASWebAuthenticationSession::initWithURL:callbackURLScheme:completionHandler: missing a [Deprecated] attribute -!missing-enum! ASCredentialIdentityTypes not bound -!missing-enum! ASUserAgeRange not bound -!missing-protocol! ASAuthorizationWebBrowserPlatformPublicKeyCredentialAssertionRequest not bound -!missing-protocol! ASAuthorizationWebBrowserPlatformPublicKeyCredentialProvider not bound -!missing-protocol! ASAuthorizationWebBrowserPlatformPublicKeyCredentialRegistrationRequest not bound -!missing-protocol! ASAuthorizationWebBrowserSecurityKeyPublicKeyCredentialAssertionRequest not bound -!missing-protocol! ASAuthorizationWebBrowserSecurityKeyPublicKeyCredentialProvider not bound -!missing-protocol! ASAuthorizationWebBrowserSecurityKeyPublicKeyCredentialRegistrationRequest not bound -!missing-selector! +ASWebAuthenticationSessionCallback::callbackWithCustomScheme: not bound -!missing-selector! +ASWebAuthenticationSessionCallback::callbackWithHTTPSHost:path: not bound -!missing-selector! ASAuthorizationAppleIDCredential::userAgeRange not bound -!missing-selector! ASAuthorizationWebBrowserPlatformPublicKeyCredential::credentialID not bound -!missing-selector! ASAuthorizationWebBrowserPlatformPublicKeyCredential::customTitle not bound -!missing-selector! ASAuthorizationWebBrowserPlatformPublicKeyCredential::name not bound -!missing-selector! ASAuthorizationWebBrowserPlatformPublicKeyCredential::providerName not bound -!missing-selector! ASAuthorizationWebBrowserPlatformPublicKeyCredential::relyingParty not bound -!missing-selector! ASAuthorizationWebBrowserPlatformPublicKeyCredential::userHandle not bound -!missing-selector! ASAuthorizationWebBrowserPublicKeyCredentialManager::authorizationStateForPlatformCredentials not bound -!missing-selector! ASAuthorizationWebBrowserPublicKeyCredentialManager::init not bound -!missing-selector! ASAuthorizationWebBrowserPublicKeyCredentialManager::platformCredentialsForRelyingParty:completionHandler: not bound -!missing-selector! ASAuthorizationWebBrowserPublicKeyCredentialManager::requestAuthorizationForPublicKeyCredentials: not bound -!missing-selector! ASCredentialIdentityStore::getCredentialIdentitiesForService:credentialIdentityTypes:completionHandler: not bound -!missing-selector! ASPublicKeyCredentialClientData::challenge not bound -!missing-selector! ASPublicKeyCredentialClientData::crossOrigin not bound -!missing-selector! ASPublicKeyCredentialClientData::initWithChallenge:origin: not bound -!missing-selector! ASPublicKeyCredentialClientData::origin not bound -!missing-selector! ASPublicKeyCredentialClientData::setChallenge: not bound -!missing-selector! ASPublicKeyCredentialClientData::setCrossOrigin: not bound -!missing-selector! ASPublicKeyCredentialClientData::setOrigin: not bound -!missing-selector! ASPublicKeyCredentialClientData::setTopOrigin: not bound -!missing-selector! ASPublicKeyCredentialClientData::topOrigin not bound -!missing-selector! ASWebAuthenticationSession::additionalHeaderFields not bound -!missing-selector! ASWebAuthenticationSession::initWithURL:callback:completionHandler: not bound -!missing-selector! ASWebAuthenticationSession::setAdditionalHeaderFields: not bound -!missing-selector! ASWebAuthenticationSessionCallback::matchesURL: not bound -!missing-type! ASAuthorizationWebBrowserPlatformPublicKeyCredential not bound -!missing-type! ASAuthorizationWebBrowserPublicKeyCredentialManager not bound -!missing-type! ASPublicKeyCredentialClientData not bound -!missing-type! ASWebAuthenticationSessionCallback not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-AuthenticationServices.todo b/tests/xtro-sharpie/api-annotations-dotnet/macOS-AuthenticationServices.todo deleted file mode 100644 index 4e3c5c889d32..000000000000 --- a/tests/xtro-sharpie/api-annotations-dotnet/macOS-AuthenticationServices.todo +++ /dev/null @@ -1,21 +0,0 @@ -!deprecated-attribute-missing! ASWebAuthenticationSession::initWithURL:callbackURLScheme:completionHandler: missing a [Deprecated] attribute -!missing-enum! ASAuthorizationProviderExtensionUserSecureEnclaveKeyBiometricPolicy not bound -!missing-enum! ASCredentialIdentityTypes not bound -!missing-enum! ASUserAgeRange not bound -!missing-enum-value! ASAuthorizationProviderExtensionRequestOptions native value ASAuthorizationProviderExtensionRequestOptionsUserKeyInvalid = 32 not bound -!missing-protocol! ASAuthorizationWebBrowserSecurityKeyPublicKeyCredentialAssertionRequest not bound -!missing-protocol! ASAuthorizationWebBrowserSecurityKeyPublicKeyCredentialProvider not bound -!missing-protocol! ASAuthorizationWebBrowserSecurityKeyPublicKeyCredentialRegistrationRequest not bound -!missing-selector! +ASWebAuthenticationSessionCallback::callbackWithCustomScheme: not bound -!missing-selector! +ASWebAuthenticationSessionCallback::callbackWithHTTPSHost:path: not bound -!missing-selector! ASAuthorizationAppleIDCredential::userAgeRange not bound -!missing-selector! ASAuthorizationProviderExtensionLoginConfiguration::setUserSecureEnclaveKeyBiometricPolicy: not bound -!missing-selector! ASAuthorizationProviderExtensionLoginConfiguration::userSecureEnclaveKeyBiometricPolicy not bound -!missing-selector! ASCredentialIdentityStore::getCredentialIdentitiesForService:credentialIdentityTypes:completionHandler: not bound -!missing-selector! ASWebAuthenticationSession::additionalHeaderFields not bound -!missing-selector! ASWebAuthenticationSession::initWithURL:callback:completionHandler: not bound -!missing-selector! ASWebAuthenticationSession::setAdditionalHeaderFields: not bound -!missing-selector! ASWebAuthenticationSessionCallback::matchesURL: not bound -!missing-selector! ASWebAuthenticationSessionRequest::additionalHeaderFields not bound -!missing-selector! ASWebAuthenticationSessionRequest::callback not bound -!missing-type! ASWebAuthenticationSessionCallback not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-AuthenticationServices.todo b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-AuthenticationServices.todo deleted file mode 100644 index bd7c6c12fce1..000000000000 --- a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-AuthenticationServices.todo +++ /dev/null @@ -1,10 +0,0 @@ -!deprecated-attribute-missing! ASWebAuthenticationSession::initWithURL:callbackURLScheme:completionHandler: missing a [Deprecated] attribute -!missing-enum! ASUserAgeRange not bound -!missing-selector! +ASWebAuthenticationSessionCallback::callbackWithCustomScheme: not bound -!missing-selector! +ASWebAuthenticationSessionCallback::callbackWithHTTPSHost:path: not bound -!missing-selector! ASAuthorizationAppleIDCredential::userAgeRange not bound -!missing-selector! ASWebAuthenticationSession::additionalHeaderFields not bound -!missing-selector! ASWebAuthenticationSession::initWithURL:callback:completionHandler: not bound -!missing-selector! ASWebAuthenticationSession::setAdditionalHeaderFields: not bound -!missing-selector! ASWebAuthenticationSessionCallback::matchesURL: not bound -!missing-type! ASWebAuthenticationSessionCallback not bound diff --git a/tests/xtro-sharpie/iOS-AuthenticationServices.todo b/tests/xtro-sharpie/iOS-AuthenticationServices.todo deleted file mode 100644 index 0a98b7e19b25..000000000000 --- a/tests/xtro-sharpie/iOS-AuthenticationServices.todo +++ /dev/null @@ -1,40 +0,0 @@ -!deprecated-attribute-missing! ASWebAuthenticationSession::initWithURL:callbackURLScheme:completionHandler: missing a [Deprecated] attribute -!missing-enum! ASCredentialIdentityTypes not bound -!missing-enum! ASUserAgeRange not bound -!missing-protocol! ASAuthorizationWebBrowserPlatformPublicKeyCredentialAssertionRequest not bound -!missing-protocol! ASAuthorizationWebBrowserPlatformPublicKeyCredentialProvider not bound -!missing-protocol! ASAuthorizationWebBrowserPlatformPublicKeyCredentialRegistrationRequest not bound -!missing-protocol! ASAuthorizationWebBrowserSecurityKeyPublicKeyCredentialAssertionRequest not bound -!missing-protocol! ASAuthorizationWebBrowserSecurityKeyPublicKeyCredentialProvider not bound -!missing-protocol! ASAuthorizationWebBrowserSecurityKeyPublicKeyCredentialRegistrationRequest not bound -!missing-selector! +ASWebAuthenticationSessionCallback::callbackWithCustomScheme: not bound -!missing-selector! +ASWebAuthenticationSessionCallback::callbackWithHTTPSHost:path: not bound -!missing-selector! ASAuthorizationAppleIDCredential::userAgeRange not bound -!missing-selector! ASAuthorizationWebBrowserPlatformPublicKeyCredential::credentialID not bound -!missing-selector! ASAuthorizationWebBrowserPlatformPublicKeyCredential::customTitle not bound -!missing-selector! ASAuthorizationWebBrowserPlatformPublicKeyCredential::name not bound -!missing-selector! ASAuthorizationWebBrowserPlatformPublicKeyCredential::providerName not bound -!missing-selector! ASAuthorizationWebBrowserPlatformPublicKeyCredential::relyingParty not bound -!missing-selector! ASAuthorizationWebBrowserPlatformPublicKeyCredential::userHandle not bound -!missing-selector! ASAuthorizationWebBrowserPublicKeyCredentialManager::authorizationStateForPlatformCredentials not bound -!missing-selector! ASAuthorizationWebBrowserPublicKeyCredentialManager::init not bound -!missing-selector! ASAuthorizationWebBrowserPublicKeyCredentialManager::platformCredentialsForRelyingParty:completionHandler: not bound -!missing-selector! ASAuthorizationWebBrowserPublicKeyCredentialManager::requestAuthorizationForPublicKeyCredentials: not bound -!missing-selector! ASCredentialIdentityStore::getCredentialIdentitiesForService:credentialIdentityTypes:completionHandler: not bound -!missing-selector! ASPublicKeyCredentialClientData::challenge not bound -!missing-selector! ASPublicKeyCredentialClientData::crossOrigin not bound -!missing-selector! ASPublicKeyCredentialClientData::initWithChallenge:origin: not bound -!missing-selector! ASPublicKeyCredentialClientData::origin not bound -!missing-selector! ASPublicKeyCredentialClientData::setChallenge: not bound -!missing-selector! ASPublicKeyCredentialClientData::setCrossOrigin: not bound -!missing-selector! ASPublicKeyCredentialClientData::setOrigin: not bound -!missing-selector! ASPublicKeyCredentialClientData::setTopOrigin: not bound -!missing-selector! ASPublicKeyCredentialClientData::topOrigin not bound -!missing-selector! ASWebAuthenticationSession::additionalHeaderFields not bound -!missing-selector! ASWebAuthenticationSession::initWithURL:callback:completionHandler: not bound -!missing-selector! ASWebAuthenticationSession::setAdditionalHeaderFields: not bound -!missing-selector! ASWebAuthenticationSessionCallback::matchesURL: not bound -!missing-type! ASAuthorizationWebBrowserPlatformPublicKeyCredential not bound -!missing-type! ASAuthorizationWebBrowserPublicKeyCredentialManager not bound -!missing-type! ASPublicKeyCredentialClientData not bound -!missing-type! ASWebAuthenticationSessionCallback not bound diff --git a/tests/xtro-sharpie/macOS-AuthenticationServices.todo b/tests/xtro-sharpie/macOS-AuthenticationServices.todo deleted file mode 100644 index 4e3c5c889d32..000000000000 --- a/tests/xtro-sharpie/macOS-AuthenticationServices.todo +++ /dev/null @@ -1,21 +0,0 @@ -!deprecated-attribute-missing! ASWebAuthenticationSession::initWithURL:callbackURLScheme:completionHandler: missing a [Deprecated] attribute -!missing-enum! ASAuthorizationProviderExtensionUserSecureEnclaveKeyBiometricPolicy not bound -!missing-enum! ASCredentialIdentityTypes not bound -!missing-enum! ASUserAgeRange not bound -!missing-enum-value! ASAuthorizationProviderExtensionRequestOptions native value ASAuthorizationProviderExtensionRequestOptionsUserKeyInvalid = 32 not bound -!missing-protocol! ASAuthorizationWebBrowserSecurityKeyPublicKeyCredentialAssertionRequest not bound -!missing-protocol! ASAuthorizationWebBrowserSecurityKeyPublicKeyCredentialProvider not bound -!missing-protocol! ASAuthorizationWebBrowserSecurityKeyPublicKeyCredentialRegistrationRequest not bound -!missing-selector! +ASWebAuthenticationSessionCallback::callbackWithCustomScheme: not bound -!missing-selector! +ASWebAuthenticationSessionCallback::callbackWithHTTPSHost:path: not bound -!missing-selector! ASAuthorizationAppleIDCredential::userAgeRange not bound -!missing-selector! ASAuthorizationProviderExtensionLoginConfiguration::setUserSecureEnclaveKeyBiometricPolicy: not bound -!missing-selector! ASAuthorizationProviderExtensionLoginConfiguration::userSecureEnclaveKeyBiometricPolicy not bound -!missing-selector! ASCredentialIdentityStore::getCredentialIdentitiesForService:credentialIdentityTypes:completionHandler: not bound -!missing-selector! ASWebAuthenticationSession::additionalHeaderFields not bound -!missing-selector! ASWebAuthenticationSession::initWithURL:callback:completionHandler: not bound -!missing-selector! ASWebAuthenticationSession::setAdditionalHeaderFields: not bound -!missing-selector! ASWebAuthenticationSessionCallback::matchesURL: not bound -!missing-selector! ASWebAuthenticationSessionRequest::additionalHeaderFields not bound -!missing-selector! ASWebAuthenticationSessionRequest::callback not bound -!missing-type! ASWebAuthenticationSessionCallback not bound diff --git a/tests/xtro-sharpie/tvOS-AuthenticationServices.todo b/tests/xtro-sharpie/tvOS-AuthenticationServices.todo deleted file mode 100644 index bd7c6c12fce1..000000000000 --- a/tests/xtro-sharpie/tvOS-AuthenticationServices.todo +++ /dev/null @@ -1,10 +0,0 @@ -!deprecated-attribute-missing! ASWebAuthenticationSession::initWithURL:callbackURLScheme:completionHandler: missing a [Deprecated] attribute -!missing-enum! ASUserAgeRange not bound -!missing-selector! +ASWebAuthenticationSessionCallback::callbackWithCustomScheme: not bound -!missing-selector! +ASWebAuthenticationSessionCallback::callbackWithHTTPSHost:path: not bound -!missing-selector! ASAuthorizationAppleIDCredential::userAgeRange not bound -!missing-selector! ASWebAuthenticationSession::additionalHeaderFields not bound -!missing-selector! ASWebAuthenticationSession::initWithURL:callback:completionHandler: not bound -!missing-selector! ASWebAuthenticationSession::setAdditionalHeaderFields: not bound -!missing-selector! ASWebAuthenticationSessionCallback::matchesURL: not bound -!missing-type! ASWebAuthenticationSessionCallback not bound diff --git a/tests/xtro-sharpie/watchOS-AuthenticationServices.todo b/tests/xtro-sharpie/watchOS-AuthenticationServices.todo deleted file mode 100644 index bd7c6c12fce1..000000000000 --- a/tests/xtro-sharpie/watchOS-AuthenticationServices.todo +++ /dev/null @@ -1,10 +0,0 @@ -!deprecated-attribute-missing! ASWebAuthenticationSession::initWithURL:callbackURLScheme:completionHandler: missing a [Deprecated] attribute -!missing-enum! ASUserAgeRange not bound -!missing-selector! +ASWebAuthenticationSessionCallback::callbackWithCustomScheme: not bound -!missing-selector! +ASWebAuthenticationSessionCallback::callbackWithHTTPSHost:path: not bound -!missing-selector! ASAuthorizationAppleIDCredential::userAgeRange not bound -!missing-selector! ASWebAuthenticationSession::additionalHeaderFields not bound -!missing-selector! ASWebAuthenticationSession::initWithURL:callback:completionHandler: not bound -!missing-selector! ASWebAuthenticationSession::setAdditionalHeaderFields: not bound -!missing-selector! ASWebAuthenticationSessionCallback::matchesURL: not bound -!missing-type! ASWebAuthenticationSessionCallback not bound From 4e8f1cdc6805f692844bc1d75d8086d82450e482 Mon Sep 17 00:00:00 2001 From: GitHub Actions Autoformatter Date: Thu, 4 Apr 2024 01:52:29 +0000 Subject: [PATCH 26/73] Auto-format source code --- src/authenticationservices.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/authenticationservices.cs b/src/authenticationservices.cs index 7ee3ddc1a459..be29a570c927 100644 --- a/src/authenticationservices.cs +++ b/src/authenticationservices.cs @@ -2434,7 +2434,7 @@ interface ASAuthorizationWebBrowserSecurityKeyPublicKeyCredentialRegistrationReq ASPublicKeyCredentialClientData ClientData { get; } } - [Watch (10, 4), TV (17, 4), Mac (14, 4), iOS (17, 4), MacCatalyst (17, 4)] + [Watch (10, 4), TV (17, 4), Mac (14, 4), iOS (17, 4), MacCatalyst (17, 4)] [BaseType (typeof (NSObject))] [DisableDefaultCtor] interface ASWebAuthenticationSessionCallback { From 7265e39b2b70f11cd1c86643271d4f561696f85e Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Thu, 18 Apr 2024 09:56:37 +0200 Subject: [PATCH 27/73] [dotnet] Track dotnet/runtime separately to get fix for #dotnet/runtime@98941. --- Make.config | 2 +- NuGet.config | 2 ++ eng/Version.Details.xml | 18 +++++++++--------- eng/Versions.props | 8 ++++---- 4 files changed, 16 insertions(+), 14 deletions(-) diff --git a/Make.config b/Make.config index 934afcec4c37..3fc02758d7c3 100644 --- a/Make.config +++ b/Make.config @@ -713,7 +713,7 @@ EMSCRIPTEN_MANIFEST_VERSION_BAND=$(DOTNET_MANIFEST_VERSION_BAND_WITH_PRERELEASE_ MACIOS_MANIFEST_VERSION_BAND=$(DOTNET_MANIFEST_VERSION_BAND_WITH_PRERELEASE_COMPONENT) # Set this to 1 if the Microsoft.NETCore.App.Ref dependency in eng/Version.Details.xml does *not* specify a CoherentParentDependency on Microsoft.Dotnet.Sdk.Internal. -TRACKING_DOTNET_RUNTIME_SEPARATELY= +TRACKING_DOTNET_RUNTIME_SEPARATELY=1 # The location of csc changes depending on whether we're using a preview or a stable/service release :/ DOTNET_CSC_PATH_PREVIEW=$(DOTNET_DIR)/sdk/$(DOTNET_VERSION)/Roslyn/bincore/csc.dll diff --git a/NuGet.config b/NuGet.config index 9d2a2ba0547a..f5a9185e37dd 100644 --- a/NuGet.config +++ b/NuGet.config @@ -10,10 +10,12 @@ + + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index d98f2714ff39..dc47371e69b9 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -4,27 +4,27 @@ https://github.com/dotnet/installer 79797800a3fadfd33361cc387fb247f90835a357 - + https://github.com/dotnet/runtime - 59edaad404d1b8e47080015ae8d0787f94c970df + ca4f0fe37455882baa00c75b1ef30a7ff1494457 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 2d7eea252964e69be94cb9c847b371b23e4dd470 - - https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 2d7eea252964e69be94cb9c847b371b23e4dd470 + + https://github.com/dotnet/runtime + ca4f0fe37455882baa00c75b1ef30a7ff1494457 https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore 8486d31e24f30e3fa1809a95699a0adc16f448d7 - + https://github.com/dotnet/emsdk - 08a90ca2c88b17f1b5d081318354a41db0882cff + 71359b18c2d83c01a68bf155244a65962a7e8c8e https://github.com/dotnet/cecil @@ -64,9 +64,9 @@ https://github.com/xamarin/xamarin-macios 492e53f5b423c6e9cbdb48f3d57c92a1f97b5005 - + https://github.com/dotnet/runtime - 59edaad404d1b8e47080015ae8d0787f94c970df + ca4f0fe37455882baa00c75b1ef30a7ff1494457 diff --git a/eng/Versions.props b/eng/Versions.props index f269ee1938ad..354097a63c0a 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -4,11 +4,11 @@ 8.0.105-servicing.24216.7 8.0.4 - 8.0.0-rtm.23524.7 + 8.0.5-servicing.24216.14 6.0.0-beta.21212.6 - 8.0.4 - 8.0.0-rtm.23511.3 - 8.0.0 + 8.0.5 + 8.0.5 + 8.0.5 7.0.100-alpha.1.21601.1 0.11.4-alpha.23509.2 9.0.0-prerelease.24208.1 From d3982adcacdc0cc181c7ba8159ea8761ed7eb3b9 Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Thu, 18 Apr 2024 14:40:32 +0200 Subject: [PATCH 28/73] [tests] Update 'KnownFrameworkReference' and 'KnownRuntimePack' to the reference any custom dotnet/runtime. --- Make.config | 7 ++++--- tests/Directory.Build.props | 4 ++++ tests/Directory.Build.targets | 17 +++++++++++++++++ 3 files changed, 25 insertions(+), 3 deletions(-) create mode 100644 tests/Directory.Build.props diff --git a/Make.config b/Make.config index 3fc02758d7c3..f75e824d18e5 100644 --- a/Make.config +++ b/Make.config @@ -633,6 +633,9 @@ endif ALL_PLATFORMS=iOS tvOS watchOS macOS ALL_DOTNET_PLATFORMS=iOS macOS tvOS MacCatalyst +# Set this to 1 if the Microsoft.NETCore.App.Ref dependency in eng/Version.Details.xml does *not* specify a CoherentParentDependency on Microsoft.Dotnet.Sdk.Internal. +TRACKING_DOTNET_RUNTIME_SEPARATELY=1 + -include $(TOP)/dotnet.config $(TOP)/dotnet.config: $(TOP)/eng/Versions.props $(TOP)/Build.props $(Q) grep MicrosoftDotnetSdkInternalPackageVersion $(TOP)/eng/Versions.props | sed -e 's/<*\/*MicrosoftDotnetSdkInternalPackageVersion>//g' -e 's/[ \t]*/DOTNET_VERSION=/' >> $@.tmp @@ -652,6 +655,7 @@ else ifeq ($(XCODE_IS_STABLE),false) else $(error "The variable XCODE_IS_STABLE is not set!") endif + $(Q) printf "\t\t$(TRACKING_DOTNET_RUNTIME_SEPARATELY)\n" >> $@.tmp $(Q) printf "\t\n" >> $@.tmp $(Q) printf "\n" >> $@.tmp $(Q) mv $@.tmp $@ @@ -712,9 +716,6 @@ EMSCRIPTEN_MANIFEST_VERSION_BAND=$(DOTNET_MANIFEST_VERSION_BAND_WITH_PRERELEASE_ # It should typically be $(DOTNET_MANIFEST_VERSION_BAND_WITH_PRERELEASE_COMPONENT), unless we decide to hardcode it to something else MACIOS_MANIFEST_VERSION_BAND=$(DOTNET_MANIFEST_VERSION_BAND_WITH_PRERELEASE_COMPONENT) -# Set this to 1 if the Microsoft.NETCore.App.Ref dependency in eng/Version.Details.xml does *not* specify a CoherentParentDependency on Microsoft.Dotnet.Sdk.Internal. -TRACKING_DOTNET_RUNTIME_SEPARATELY=1 - # The location of csc changes depending on whether we're using a preview or a stable/service release :/ DOTNET_CSC_PATH_PREVIEW=$(DOTNET_DIR)/sdk/$(DOTNET_VERSION)/Roslyn/bincore/csc.dll DOTNET_CSC_PATH_STABLE=$(DOTNET_DIR)/sdk/$(DOTNET_VERSION_BAND)/Roslyn/bincore/csc.dll diff --git a/tests/Directory.Build.props b/tests/Directory.Build.props new file mode 100644 index 000000000000..ebe09e79953d --- /dev/null +++ b/tests/Directory.Build.props @@ -0,0 +1,4 @@ + + + + diff --git a/tests/Directory.Build.targets b/tests/Directory.Build.targets index 4388b6123566..9e1b1fc03963 100644 --- a/tests/Directory.Build.targets +++ b/tests/Directory.Build.targets @@ -8,4 +8,21 @@ + + + + $(MicrosoftNETCoreAppRefPackageVersion) + + + + + + + $(MicrosoftNETCoreAppRefPackageVersion) + + + From 5ccba336e72a46a0780ad37856bfde8d5175ba9a Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Thu, 18 Apr 2024 19:55:09 +0200 Subject: [PATCH 29/73] Limit fix to .NET 8. --- tests/Directory.Build.targets | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/tests/Directory.Build.targets b/tests/Directory.Build.targets index 9e1b1fc03963..d58934cd17af 100644 --- a/tests/Directory.Build.targets +++ b/tests/Directory.Build.targets @@ -9,19 +9,16 @@ - - - $(MicrosoftNETCoreAppRefPackageVersion) - - - - - $(MicrosoftNETCoreAppRefPackageVersion) + + $(MicrosoftNETCoreAppRefPackageVersion) + + + $(MicrosoftNETCoreAppRefPackageVersion) From f206c4f9fb870cbee0a42db2cba5d1a459199f99 Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Fri, 19 Apr 2024 15:27:57 +0200 Subject: [PATCH 30/73] [devops] Bump macOS requirement to Sonoma for remote testing. Xcode 15.3 requires Sonoma. --- tools/devops/automation/templates/windows/stage.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/devops/automation/templates/windows/stage.yml b/tools/devops/automation/templates/windows/stage.yml index a88d00d9bb37..464d1c1d7412 100644 --- a/tools/devops/automation/templates/windows/stage.yml +++ b/tools/devops/automation/templates/windows/stage.yml @@ -60,7 +60,7 @@ stages: - agent.os -equals Darwin - SSH.Enabled -equals True - macOS.Architecture -equals arm64 - - macOS.Name -equals Ventura + - macOS.Name -equals Sonoma steps: - template: reserve-mac.yml From d4b2a30c25d70dc03b61ca7ce63ba6ecf68d6602 Mon Sep 17 00:00:00 2001 From: Alex Soto Date: Thu, 25 Apr 2024 21:26:22 -0400 Subject: [PATCH 31/73] [CarPlay] Update bindings to Xcode 15.3 --- src/carplay.cs | 227 ++++++++++++++++++ .../Documentation.KnownFailures.txt | 156 ++++++++++++ .../api-annotations-dotnet/iOS-CarPlay.todo | 58 ----- tests/xtro-sharpie/iOS-CarPlay.todo | 58 ----- 4 files changed, 383 insertions(+), 116 deletions(-) delete mode 100644 tests/xtro-sharpie/api-annotations-dotnet/iOS-CarPlay.todo delete mode 100644 tests/xtro-sharpie/iOS-CarPlay.todo diff --git a/src/carplay.cs b/src/carplay.cs index 570fb7e910f4..f8996541770f 100644 --- a/src/carplay.cs +++ b/src/carplay.cs @@ -22,6 +22,7 @@ namespace CarPlay { // Just to please the generator that at this point does not know the hierarchy interface NSUnitLength : NSUnit { } + interface NSUnitAngle : NSUnit { } [NoWatch, NoTV, NoMac, iOS (12, 0)] [Native] @@ -192,6 +193,96 @@ public enum CPInstrumentClusterSetting : ulong { UserPreference, } + [NoWatch, NoTV, NoMac, iOS (17, 4), MacCatalyst (17, 4)] + [Native] + public enum CPLaneStatus : long { + NotGood = 0, + Good, + Preferred, + } + + [NoWatch, NoTV, NoMac, iOS (17, 4), MacCatalyst (17, 4)] + [Native] + public enum CPManeuverType : ulong { + NoTurn = 0, + LeftTurn = 1, + RightTurn = 2, + StraightAhead = 3, + UTurn = 4, + FollowRoad = 5, + EnterRoundabout = 6, + ExitRoundabout = 7, + OffRamp = 8, + OnRamp = 9, + ArriveEndOfNavigation = 10, + StartRoute = 11, + ArriveAtDestination = 12, + KeepLeft = 13, + KeepRight = 14, + EnterFerry = 15, + ExitFerry = 16, + ChangeFerry = 17, + StartRouteWithUTurn = 18, + UTurnAtRoundabout = 19, + LeftTurnAtEnd = 20, + RightTurnAtEnd = 21, + HighwayOffRampLeft = 22, + HighwayOffRampRight = 23, + ArriveAtDestinationLeft = 24, + ArriveAtDestinationRight = 25, + UTurnWhenPossible = 26, + ArriveEndOfDirections = 27, + RoundaboutExit1 = 28, + RoundaboutExit2 = 29, + RoundaboutExit3 = 30, + RoundaboutExit4 = 31, + RoundaboutExit5 = 32, + RoundaboutExit6 = 33, + RoundaboutExit7 = 34, + RoundaboutExit8 = 35, + RoundaboutExit9 = 36, + RoundaboutExit10 = 37, + RoundaboutExit11 = 38, + RoundaboutExit12 = 39, + RoundaboutExit13 = 40, + RoundaboutExit14 = 41, + RoundaboutExit15 = 42, + RoundaboutExit16 = 43, + RoundaboutExit17 = 44, + RoundaboutExit18 = 45, + RoundaboutExit19 = 46, + SharpLeftTurn = 47, + SharpRightTurn = 48, + SlightLeftTurn = 49, + SlightRightTurn = 50, + ChangeHighway = 51, + ChangeHighwayLeft = 52, + ChangeHighwayRight = 53, + } + + [NoWatch, NoTV, NoMac, iOS (17, 4), MacCatalyst (17, 4)] + [Native] + public enum CPJunctionType : ulong { + Intersection = 0, + Roundabout = 1, + } + + [NoWatch, NoTV, NoMac, iOS (17, 4), MacCatalyst (17, 4)] + [Native] + public enum CPTrafficSide : ulong { + Right = 0, + Left = 1, + } + + [NoWatch, NoTV, NoMac, iOS (17, 4), MacCatalyst (17, 4)] + [Native] + public enum CPManeuverState : long { + Continue = 0, + Initial, + Prepare, + Execute, + } + [NoWatch, NoTV, NoMac, iOS (12, 0)] [BaseType (typeof (NSObject))] [DisableDefaultCtor] @@ -773,6 +864,41 @@ interface CPManeuver : NSCopying, NSSecureCoding { [iOS (14, 0)] [Export ("notificationAttributedInstructionVariants", ArgumentSemantic.Copy)] NSAttributedString [] NotificationAttributedInstructionVariants { get; set; } + + [iOS (17, 4), MacCatalyst (17, 4)] + [Export ("maneuverType", ArgumentSemantic.Assign)] + CPManeuverType ManeuverType { get; set; } + + [iOS (17, 4), MacCatalyst (17, 4)] + [NullAllowed] + [Export ("roadFollowingManeuverVariants", ArgumentSemantic.Copy)] + string[] RoadFollowingManeuverVariants { get; set; } + + [iOS (17, 4), MacCatalyst (17, 4)] + [Export ("trafficSide", ArgumentSemantic.Assign)] + CPTrafficSide TrafficSide { get; set; } + + [iOS (17, 4), MacCatalyst (17, 4)] + [Export ("junctionType", ArgumentSemantic.Assign)] + CPJunctionType JunctionType { get; set; } + + [iOS (17, 4), MacCatalyst (17, 4)] + [NullAllowed] + [Export ("junctionExitAngle", ArgumentSemantic.Copy)] + NSMeasurement JunctionExitAngle { get; set; } + + [iOS (17, 4), MacCatalyst (17, 4)] + [NullAllowed] + [Export ("junctionElementAngles", ArgumentSemantic.Copy)] + NSSet> JunctionElementAngles { get; set; } + + [iOS (17, 4), MacCatalyst (17, 4)] + [Export ("linkedLaneGuidance", ArgumentSemantic.Assign)] + CPLaneGuidance LinkedLaneGuidance { get; set; } + + [iOS (17, 4), MacCatalyst (17, 4)] + [Export ("highwayExitLabel")] + string HighwayExitLabel { get; set; } } [NoWatch, NoTV, NoMac, iOS (12, 0)] @@ -877,6 +1003,10 @@ interface ICPMapTemplateDelegate { } [BaseType (typeof (NSObject))] interface CPMapTemplateDelegate { + [iOS (17, 4), MacCatalyst (17, 4)] + [Export ("mapTemplateShouldProvideNavigationMetadata:")] + bool ShouldProvideNavigationMetadata (CPMapTemplate mapTemplate); + [Export ("mapTemplate:shouldShowNotificationForManeuver:")] bool ShouldShowNotificationForManeuver (CPMapTemplate mapTemplate, CPManeuver maneuver); @@ -990,6 +1120,10 @@ interface CPNavigationSession { [Export ("pauseTripForReason:description:turnCardColor:")] void PauseTrip (CPTripPauseReason reason, [NullAllowed] string description, [NullAllowed] UIColor turnCardColor); + [iOS (17, 4), MacCatalyst (17, 4)] + [Export ("resumeTripWithUpdatedRouteInformation:")] + void ResumeTrip (CPRouteInformation routeInformation); + [Export ("finishTrip")] void FinishTrip (); @@ -999,6 +1133,26 @@ interface CPNavigationSession { [Export ("upcomingManeuvers", ArgumentSemantic.Copy)] CPManeuver [] UpcomingManeuvers { get; set; } + [iOS (17, 4), MacCatalyst (17, 4)] + [NullAllowed, Export ("currentLaneGuidance", ArgumentSemantic.Copy)] + CPLaneGuidance CurrentLaneGuidance { get; set; } + + [iOS (17, 4), MacCatalyst (17, 4)] + [Export ("addManeuvers:")] + void AddManeuvers (CPManeuver[] maneuvers); + + [iOS (17, 4), MacCatalyst (17, 4)] + [Export ("addLaneGuidances:")] + void AddLaneGuidances (CPLaneGuidance[] laneGuidances); + + [iOS (17, 4), MacCatalyst (17, 4)] + [Export ("currentRoadNameVariants", ArgumentSemantic.Copy)] + string[] CurrentRoadNameVariants { get; set; } + + [iOS (17, 4), MacCatalyst (17, 4)] + [Export ("maneuverState", ArgumentSemantic.Assign)] + CPManeuverState ManeuverState { get; set; } + [Export ("trip", ArgumentSemantic.Strong)] CPTrip Trip { get; } @@ -1158,6 +1312,9 @@ interface CPTrip : NSSecureCoding { [NullAllowed, Export ("userInfo", ArgumentSemantic.Strong)] NSObject UserInfo { get; set; } + + [NullAllowed, Export ("destinationNameVariants", ArgumentSemantic.Copy)] + string[] DestinationNameVariants { get; set; } } [NoWatch, NoTV, NoMac, iOS (12, 0)] @@ -1300,6 +1457,14 @@ interface CPTravelEstimates : NSSecureCoding { [DesignatedInitializer] NativeHandle Constructor (NSMeasurement distance, double time); + [iOS (17, 4), MacCatalyst (17, 4)] + [Export ("initWithDistanceRemaining:distanceRemainingToDisplay:timeRemaining:")] + [DesignatedInitializer] + NativeHandle Constructor (NSMeasurement distanceRemaining, NSMeasurement distanceRemainingToDisplay, double time); + + [Export ("distanceRemainingToDisplay", ArgumentSemantic.Copy)] + NSMeasurement DistanceRemainingToDisplay { get; } + [Export ("distanceRemaining", ArgumentSemantic.Copy)] NSMeasurement DistanceRemaining { get; } @@ -1557,12 +1722,20 @@ interface CPListImageRowItem : CPSelectableListItem { [Export ("initWithText:images:")] NativeHandle Constructor (string text, UIImage [] images); + [iOS (17, 4), MacCatalyst (17, 4)] + [Export ("initWithText:images:imageTitles:")] + NativeHandle Constructor (string text, UIImage[] images, string[] imageTitles); + [Export ("gridImages", ArgumentSemantic.Strong)] UIImage [] GridImages { get; } [Export ("updateImages:")] void UpdateImages (UIImage [] gridImages); + [iOS (17, 4), MacCatalyst (17, 4)] + [Export ("imageTitles", ArgumentSemantic.Copy)] + string[] ImageTitles { get; set; } + [NullAllowed, Export ("listImageRowHandler", ArgumentSemantic.Copy)] CPListImageRowItemHandler ListImageRowHandler { get; set; } @@ -2124,4 +2297,58 @@ interface CPTemplateApplicationInstrumentClusterScene { UIUserInterfaceStyle ContentStyle { get; } } + [NoWatch, NoTV, NoMac, iOS (17, 4), MacCatalyst (17, 4)] + [BaseType (typeof (NSObject))] + interface CPLane : NSCopying, NSSecureCoding { + + [Export ("status", ArgumentSemantic.Assign)] + CPLaneStatus Status { get; set; } + + [Export ("primaryAngle", ArgumentSemantic.Strong)] + NSMeasurement PrimaryAngle { get; set; } + + [Export ("secondaryAngles", ArgumentSemantic.Strong)] + NSMeasurement[] SecondaryAngles { get; set; } + } + + [NoWatch, NoTV, NoMac, iOS (17, 4), MacCatalyst (17, 4)] + [BaseType (typeof (NSObject))] + interface CPLaneGuidance : NSCopying, NSSecureCoding { + + [Export ("lanes", ArgumentSemantic.Copy)] + CPLane[] Lanes { get; set; } + + [Export ("instructionVariants", ArgumentSemantic.Copy)] + string[] InstructionVariants { get; set; } + } + + // @interface CPRouteInformation : NSObject + [NoWatch, NoTV, NoMac, iOS (17, 4), MacCatalyst (17, 4)] + [BaseType (typeof (NSObject))] + [DisableDefaultCtor] + interface CPRouteInformation { + + [Export ("initWithManeuvers:laneGuidances:currentManeuvers:currentLaneGuidance:tripTravelEstimates:maneuverTravelEstimates:")] + [DesignatedInitializer] + NativeHandle Constructor (CPManeuver[] maneuvers, CPLaneGuidance[] laneGuidances, CPManeuver[] currentManeuvers, CPLaneGuidance currentLaneGuidance, CPTravelEstimates tripTravelEstimates, CPTravelEstimates maneuverTravelEstimates); + + [Export ("maneuvers", ArgumentSemantic.Copy)] + CPManeuver[] Maneuvers { get; } + + [Export ("laneGuidances", ArgumentSemantic.Copy)] + CPLaneGuidance[] LaneGuidances { get; } + + [Export ("currentManeuvers", ArgumentSemantic.Copy)] + CPManeuver[] CurrentManeuvers { get; } + + [Export ("currentLaneGuidance", ArgumentSemantic.Copy)] + CPLaneGuidance CurrentLaneGuidance { get; } + + [Export ("tripTravelEstimates", ArgumentSemantic.Copy)] + CPTravelEstimates TripTravelEstimates { get; } + + [Export ("maneuverTravelEstimates", ArgumentSemantic.Copy)] + CPTravelEstimates ManeuverTravelEstimates { get; } + } + } diff --git a/tests/cecil-tests/Documentation.KnownFailures.txt b/tests/cecil-tests/Documentation.KnownFailures.txt index 88c49bb3b2fa..bcf7773303cc 100644 --- a/tests/cecil-tests/Documentation.KnownFailures.txt +++ b/tests/cecil-tests/Documentation.KnownFailures.txt @@ -5671,6 +5671,11 @@ F:CarPlay.CPInstrumentClusterSetting.Disabled F:CarPlay.CPInstrumentClusterSetting.Enabled F:CarPlay.CPInstrumentClusterSetting.Unspecified F:CarPlay.CPInstrumentClusterSetting.UserPreference +F:CarPlay.CPJunctionType.Intersection +F:CarPlay.CPJunctionType.Roundabout +F:CarPlay.CPLaneStatus.Good +F:CarPlay.CPLaneStatus.NotGood +F:CarPlay.CPLaneStatus.Preferred F:CarPlay.CPLimitableUserInterface.Keyboard F:CarPlay.CPLimitableUserInterface.Lists F:CarPlay.CPListItemAccessoryType.Cloud @@ -5683,6 +5688,64 @@ F:CarPlay.CPManeuverDisplayStyle.InstructionOnly F:CarPlay.CPManeuverDisplayStyle.LeadingSymbol F:CarPlay.CPManeuverDisplayStyle.SymbolOnly F:CarPlay.CPManeuverDisplayStyle.TrailingSymbol +F:CarPlay.CPManeuverState.Continue +F:CarPlay.CPManeuverState.Execute +F:CarPlay.CPManeuverState.Initial +F:CarPlay.CPManeuverState.Prepare +F:CarPlay.CPManeuverType.ArriveAtDestination +F:CarPlay.CPManeuverType.ArriveAtDestinationLeft +F:CarPlay.CPManeuverType.ArriveAtDestinationRight +F:CarPlay.CPManeuverType.ArriveEndOfDirections +F:CarPlay.CPManeuverType.ArriveEndOfNavigation +F:CarPlay.CPManeuverType.ChangeFerry +F:CarPlay.CPManeuverType.ChangeHighway +F:CarPlay.CPManeuverType.ChangeHighwayLeft +F:CarPlay.CPManeuverType.ChangeHighwayRight +F:CarPlay.CPManeuverType.EnterFerry +F:CarPlay.CPManeuverType.EnterRoundabout +F:CarPlay.CPManeuverType.ExitFerry +F:CarPlay.CPManeuverType.ExitRoundabout +F:CarPlay.CPManeuverType.FollowRoad +F:CarPlay.CPManeuverType.HighwayOffRampLeft +F:CarPlay.CPManeuverType.HighwayOffRampRight +F:CarPlay.CPManeuverType.KeepLeft +F:CarPlay.CPManeuverType.KeepRight +F:CarPlay.CPManeuverType.LeftTurn +F:CarPlay.CPManeuverType.LeftTurnAtEnd +F:CarPlay.CPManeuverType.NoTurn +F:CarPlay.CPManeuverType.OffRamp +F:CarPlay.CPManeuverType.OnRamp +F:CarPlay.CPManeuverType.RightTurn +F:CarPlay.CPManeuverType.RightTurnAtEnd +F:CarPlay.CPManeuverType.RoundaboutExit1 +F:CarPlay.CPManeuverType.RoundaboutExit10 +F:CarPlay.CPManeuverType.RoundaboutExit11 +F:CarPlay.CPManeuverType.RoundaboutExit12 +F:CarPlay.CPManeuverType.RoundaboutExit13 +F:CarPlay.CPManeuverType.RoundaboutExit14 +F:CarPlay.CPManeuverType.RoundaboutExit15 +F:CarPlay.CPManeuverType.RoundaboutExit16 +F:CarPlay.CPManeuverType.RoundaboutExit17 +F:CarPlay.CPManeuverType.RoundaboutExit18 +F:CarPlay.CPManeuverType.RoundaboutExit19 +F:CarPlay.CPManeuverType.RoundaboutExit2 +F:CarPlay.CPManeuverType.RoundaboutExit3 +F:CarPlay.CPManeuverType.RoundaboutExit4 +F:CarPlay.CPManeuverType.RoundaboutExit5 +F:CarPlay.CPManeuverType.RoundaboutExit6 +F:CarPlay.CPManeuverType.RoundaboutExit7 +F:CarPlay.CPManeuverType.RoundaboutExit8 +F:CarPlay.CPManeuverType.RoundaboutExit9 +F:CarPlay.CPManeuverType.SharpLeftTurn +F:CarPlay.CPManeuverType.SharpRightTurn +F:CarPlay.CPManeuverType.SlightLeftTurn +F:CarPlay.CPManeuverType.SlightRightTurn +F:CarPlay.CPManeuverType.StartRoute +F:CarPlay.CPManeuverType.StartRouteWithUTurn +F:CarPlay.CPManeuverType.StraightAhead +F:CarPlay.CPManeuverType.UTurn +F:CarPlay.CPManeuverType.UTurnAtRoundabout +F:CarPlay.CPManeuverType.UTurnWhenPossible F:CarPlay.CPMessageLeadingItem.None F:CarPlay.CPMessageLeadingItem.Pin F:CarPlay.CPMessageLeadingItem.Star @@ -5706,6 +5769,8 @@ F:CarPlay.CPTimeRemainingColor.Default F:CarPlay.CPTimeRemainingColor.Green F:CarPlay.CPTimeRemainingColor.Orange F:CarPlay.CPTimeRemainingColor.Red +F:CarPlay.CPTrafficSide.Left +F:CarPlay.CPTrafficSide.Right F:CarPlay.CPTripEstimateStyle.Dark F:CarPlay.CPTripEstimateStyle.Light F:CarPlay.CPTripPauseReason.Arrived @@ -38832,11 +38897,31 @@ M:CarPlay.CPInterfaceControllerDelegate.TemplateDidAppear(CarPlay.CPTemplate,Sys M:CarPlay.CPInterfaceControllerDelegate.TemplateDidDisappear(CarPlay.CPTemplate,System.Boolean) M:CarPlay.CPInterfaceControllerDelegate.TemplateWillAppear(CarPlay.CPTemplate,System.Boolean) M:CarPlay.CPInterfaceControllerDelegate.TemplateWillDisappear(CarPlay.CPTemplate,System.Boolean) +M:CarPlay.CPLane.#ctor +M:CarPlay.CPLane.Copy(Foundation.NSZone) +M:CarPlay.CPLane.EncodeTo(Foundation.NSCoder) +M:CarPlay.CPLane.get_ClassHandle +M:CarPlay.CPLane.get_PrimaryAngle +M:CarPlay.CPLane.get_SecondaryAngles +M:CarPlay.CPLane.get_Status +M:CarPlay.CPLane.set_PrimaryAngle(Foundation.NSMeasurement{Foundation.NSUnitAngle}) +M:CarPlay.CPLane.set_SecondaryAngles(Foundation.NSMeasurement{Foundation.NSUnitAngle}[]) +M:CarPlay.CPLane.set_Status(CarPlay.CPLaneStatus) +M:CarPlay.CPLaneGuidance.#ctor +M:CarPlay.CPLaneGuidance.Copy(Foundation.NSZone) +M:CarPlay.CPLaneGuidance.EncodeTo(Foundation.NSCoder) +M:CarPlay.CPLaneGuidance.get_ClassHandle +M:CarPlay.CPLaneGuidance.get_InstructionVariants +M:CarPlay.CPLaneGuidance.get_Lanes +M:CarPlay.CPLaneGuidance.set_InstructionVariants(System.String[]) +M:CarPlay.CPLaneGuidance.set_Lanes(CarPlay.CPLane[]) +M:CarPlay.CPListImageRowItem.#ctor(System.String,UIKit.UIImage[],System.String[]) M:CarPlay.CPListImageRowItem.#ctor(System.String,UIKit.UIImage[]) M:CarPlay.CPListImageRowItem.get_ClassHandle M:CarPlay.CPListImageRowItem.get_Enabled M:CarPlay.CPListImageRowItem.get_GridImages M:CarPlay.CPListImageRowItem.get_Handler +M:CarPlay.CPListImageRowItem.get_ImageTitles M:CarPlay.CPListImageRowItem.get_ListImageRowHandler M:CarPlay.CPListImageRowItem.get_MaximumImageSize M:CarPlay.CPListImageRowItem.get_MaximumNumberOfGridImages @@ -38844,6 +38929,7 @@ M:CarPlay.CPListImageRowItem.get_Text M:CarPlay.CPListImageRowItem.get_UserInfo M:CarPlay.CPListImageRowItem.set_Enabled(System.Boolean) M:CarPlay.CPListImageRowItem.set_Handler(CarPlay.CPSelectableListItemHandler) +M:CarPlay.CPListImageRowItem.set_ImageTitles(System.String[]) M:CarPlay.CPListImageRowItem.set_ListImageRowHandler(CarPlay.CPListImageRowItemHandler) M:CarPlay.CPListImageRowItem.set_Text(System.String) M:CarPlay.CPListImageRowItem.set_UserInfo(Foundation.NSObject) @@ -38929,6 +39015,7 @@ M:CarPlay.CPListTemplateDelegate.#ctor M:CarPlay.CPListTemplateDelegate.DidSelectListItem(CarPlay.CPListTemplate,CarPlay.CPListItem,System.Action) M:CarPlay.CPManeuver.#ctor M:CarPlay.CPManeuver.Copy(Foundation.NSZone) +M:CarPlay.CPManeuver.Dispose(System.Boolean) M:CarPlay.CPManeuver.EncodeTo(Foundation.NSCoder) M:CarPlay.CPManeuver.get_AttributedInstructionVariants M:CarPlay.CPManeuver.get_CardBackgroundColor @@ -38937,14 +39024,22 @@ M:CarPlay.CPManeuver.get_DashboardAttributedInstructionVariants M:CarPlay.CPManeuver.get_DashboardInstructionVariants M:CarPlay.CPManeuver.get_DashboardJunctionImage M:CarPlay.CPManeuver.get_DashboardSymbolImage +M:CarPlay.CPManeuver.get_HighwayExitLabel M:CarPlay.CPManeuver.get_InitialTravelEstimates M:CarPlay.CPManeuver.get_InstructionVariants +M:CarPlay.CPManeuver.get_JunctionElementAngles +M:CarPlay.CPManeuver.get_JunctionExitAngle M:CarPlay.CPManeuver.get_JunctionImage +M:CarPlay.CPManeuver.get_JunctionType +M:CarPlay.CPManeuver.get_LinkedLaneGuidance +M:CarPlay.CPManeuver.get_ManeuverType M:CarPlay.CPManeuver.get_NotificationAttributedInstructionVariants M:CarPlay.CPManeuver.get_NotificationInstructionVariants M:CarPlay.CPManeuver.get_NotificationSymbolImage +M:CarPlay.CPManeuver.get_RoadFollowingManeuverVariants M:CarPlay.CPManeuver.get_SymbolImage M:CarPlay.CPManeuver.get_SymbolSet +M:CarPlay.CPManeuver.get_TrafficSide M:CarPlay.CPManeuver.get_UserInfo M:CarPlay.CPManeuver.set_AttributedInstructionVariants(Foundation.NSAttributedString[]) M:CarPlay.CPManeuver.set_CardBackgroundColor(UIKit.UIColor) @@ -38952,14 +39047,22 @@ M:CarPlay.CPManeuver.set_DashboardAttributedInstructionVariants(Foundation.NSAtt M:CarPlay.CPManeuver.set_DashboardInstructionVariants(System.String[]) M:CarPlay.CPManeuver.set_DashboardJunctionImage(UIKit.UIImage) M:CarPlay.CPManeuver.set_DashboardSymbolImage(UIKit.UIImage) +M:CarPlay.CPManeuver.set_HighwayExitLabel(System.String) M:CarPlay.CPManeuver.set_InitialTravelEstimates(CarPlay.CPTravelEstimates) M:CarPlay.CPManeuver.set_InstructionVariants(System.String[]) +M:CarPlay.CPManeuver.set_JunctionElementAngles(Foundation.NSSet{Foundation.NSMeasurement{Foundation.NSUnitAngle}}) +M:CarPlay.CPManeuver.set_JunctionExitAngle(Foundation.NSMeasurement{Foundation.NSUnitAngle}) M:CarPlay.CPManeuver.set_JunctionImage(UIKit.UIImage) +M:CarPlay.CPManeuver.set_JunctionType(CarPlay.CPJunctionType) +M:CarPlay.CPManeuver.set_LinkedLaneGuidance(CarPlay.CPLaneGuidance) +M:CarPlay.CPManeuver.set_ManeuverType(CarPlay.CPManeuverType) M:CarPlay.CPManeuver.set_NotificationAttributedInstructionVariants(Foundation.NSAttributedString[]) M:CarPlay.CPManeuver.set_NotificationInstructionVariants(System.String[]) M:CarPlay.CPManeuver.set_NotificationSymbolImage(UIKit.UIImage) +M:CarPlay.CPManeuver.set_RoadFollowingManeuverVariants(System.String[]) M:CarPlay.CPManeuver.set_SymbolImage(UIKit.UIImage) M:CarPlay.CPManeuver.set_SymbolSet(CarPlay.CPImageSet) +M:CarPlay.CPManeuver.set_TrafficSide(CarPlay.CPTrafficSide) M:CarPlay.CPManeuver.set_UserInfo(Foundation.NSObject) M:CarPlay.CPMapButton.#ctor(System.Action{CarPlay.CPMapButton}) M:CarPlay.CPMapButton.EncodeTo(Foundation.NSCoder) @@ -39021,6 +39124,7 @@ M:CarPlay.CPMapTemplateDelegate_Extensions.Pan(CarPlay.ICPMapTemplateDelegate,Ca M:CarPlay.CPMapTemplateDelegate_Extensions.PanBegan(CarPlay.ICPMapTemplateDelegate,CarPlay.CPMapTemplate,CarPlay.CPPanDirection) M:CarPlay.CPMapTemplateDelegate_Extensions.PanEnded(CarPlay.ICPMapTemplateDelegate,CarPlay.CPMapTemplate,CarPlay.CPPanDirection) M:CarPlay.CPMapTemplateDelegate_Extensions.SelectedPreview(CarPlay.ICPMapTemplateDelegate,CarPlay.CPMapTemplate,CarPlay.CPTrip,CarPlay.CPRouteChoice) +M:CarPlay.CPMapTemplateDelegate_Extensions.ShouldProvideNavigationMetadata(CarPlay.ICPMapTemplateDelegate,CarPlay.CPMapTemplate) M:CarPlay.CPMapTemplateDelegate_Extensions.ShouldShowNotificationForManeuver(CarPlay.ICPMapTemplateDelegate,CarPlay.CPMapTemplate,CarPlay.CPManeuver) M:CarPlay.CPMapTemplateDelegate_Extensions.ShouldShowNotificationForNavigationAlert(CarPlay.ICPMapTemplateDelegate,CarPlay.CPMapTemplate,CarPlay.CPNavigationAlert) M:CarPlay.CPMapTemplateDelegate_Extensions.ShouldUpdateNotificationForManeuver(CarPlay.ICPMapTemplateDelegate,CarPlay.CPMapTemplate,CarPlay.CPManeuver,CarPlay.CPTravelEstimates) @@ -39042,6 +39146,7 @@ M:CarPlay.CPMapTemplateDelegate.Pan(CarPlay.CPMapTemplate,CarPlay.CPPanDirection M:CarPlay.CPMapTemplateDelegate.PanBegan(CarPlay.CPMapTemplate,CarPlay.CPPanDirection) M:CarPlay.CPMapTemplateDelegate.PanEnded(CarPlay.CPMapTemplate,CarPlay.CPPanDirection) M:CarPlay.CPMapTemplateDelegate.SelectedPreview(CarPlay.CPMapTemplate,CarPlay.CPTrip,CarPlay.CPRouteChoice) +M:CarPlay.CPMapTemplateDelegate.ShouldProvideNavigationMetadata(CarPlay.CPMapTemplate) M:CarPlay.CPMapTemplateDelegate.ShouldShowNotificationForManeuver(CarPlay.CPMapTemplate,CarPlay.CPManeuver) M:CarPlay.CPMapTemplateDelegate.ShouldShowNotificationForNavigationAlert(CarPlay.CPMapTemplate,CarPlay.CPNavigationAlert) M:CarPlay.CPMapTemplateDelegate.ShouldUpdateNotificationForManeuver(CarPlay.CPMapTemplate,CarPlay.CPManeuver,CarPlay.CPTravelEstimates) @@ -39097,13 +39202,22 @@ M:CarPlay.CPNavigationAlert.get_SecondaryAction M:CarPlay.CPNavigationAlert.get_SubtitleVariants M:CarPlay.CPNavigationAlert.get_TitleVariants M:CarPlay.CPNavigationAlert.UpdateTitleVariants(System.String[],System.String[]) +M:CarPlay.CPNavigationSession.AddLaneGuidances(CarPlay.CPLaneGuidance[]) +M:CarPlay.CPNavigationSession.AddManeuvers(CarPlay.CPManeuver[]) M:CarPlay.CPNavigationSession.CancelTrip M:CarPlay.CPNavigationSession.FinishTrip M:CarPlay.CPNavigationSession.get_ClassHandle +M:CarPlay.CPNavigationSession.get_CurrentLaneGuidance +M:CarPlay.CPNavigationSession.get_CurrentRoadNameVariants +M:CarPlay.CPNavigationSession.get_ManeuverState M:CarPlay.CPNavigationSession.get_Trip M:CarPlay.CPNavigationSession.get_UpcomingManeuvers M:CarPlay.CPNavigationSession.PauseTrip(CarPlay.CPTripPauseReason,System.String,UIKit.UIColor) M:CarPlay.CPNavigationSession.PauseTrip(CarPlay.CPTripPauseReason,System.String) +M:CarPlay.CPNavigationSession.ResumeTrip(CarPlay.CPRouteInformation) +M:CarPlay.CPNavigationSession.set_CurrentLaneGuidance(CarPlay.CPLaneGuidance) +M:CarPlay.CPNavigationSession.set_CurrentRoadNameVariants(System.String[]) +M:CarPlay.CPNavigationSession.set_ManeuverState(CarPlay.CPManeuverState) M:CarPlay.CPNavigationSession.set_UpcomingManeuvers(CarPlay.CPManeuver[]) M:CarPlay.CPNavigationSession.UpdateTravelEstimates(CarPlay.CPTravelEstimates,CarPlay.CPManeuver) M:CarPlay.CPNowPlayingAddToLibraryButton.#ctor @@ -39209,6 +39323,14 @@ M:CarPlay.CPRouteChoice.get_SelectionSummaryVariants M:CarPlay.CPRouteChoice.get_SummaryVariants M:CarPlay.CPRouteChoice.get_UserInfo M:CarPlay.CPRouteChoice.set_UserInfo(Foundation.NSObject) +M:CarPlay.CPRouteInformation.#ctor(CarPlay.CPManeuver[],CarPlay.CPLaneGuidance[],CarPlay.CPManeuver[],CarPlay.CPLaneGuidance,CarPlay.CPTravelEstimates,CarPlay.CPTravelEstimates) +M:CarPlay.CPRouteInformation.get_ClassHandle +M:CarPlay.CPRouteInformation.get_CurrentLaneGuidance +M:CarPlay.CPRouteInformation.get_CurrentManeuvers +M:CarPlay.CPRouteInformation.get_LaneGuidances +M:CarPlay.CPRouteInformation.get_Maneuvers +M:CarPlay.CPRouteInformation.get_ManeuverTravelEstimates +M:CarPlay.CPRouteInformation.get_TripTravelEstimates M:CarPlay.CPSearchTemplate.#ctor M:CarPlay.CPSearchTemplate.Dispose(System.Boolean) M:CarPlay.CPSearchTemplate.get_ClassHandle @@ -39365,18 +39487,22 @@ M:CarPlay.CPTextButton.get_TextStyle M:CarPlay.CPTextButton.get_Title M:CarPlay.CPTextButton.set_TextStyle(CarPlay.CPTextButtonStyle) M:CarPlay.CPTextButton.set_Title(System.String) +M:CarPlay.CPTravelEstimates.#ctor(Foundation.NSMeasurement{Foundation.NSUnitLength},Foundation.NSMeasurement{Foundation.NSUnitLength},System.Double) M:CarPlay.CPTravelEstimates.#ctor(Foundation.NSMeasurement{Foundation.NSUnitLength},System.Double) M:CarPlay.CPTravelEstimates.EncodeTo(Foundation.NSCoder) M:CarPlay.CPTravelEstimates.get_ClassHandle M:CarPlay.CPTravelEstimates.get_DistanceRemaining +M:CarPlay.CPTravelEstimates.get_DistanceRemainingToDisplay M:CarPlay.CPTravelEstimates.get_TimeRemaining M:CarPlay.CPTrip.#ctor(MapKit.MKMapItem,MapKit.MKMapItem,CarPlay.CPRouteChoice[]) M:CarPlay.CPTrip.EncodeTo(Foundation.NSCoder) M:CarPlay.CPTrip.get_ClassHandle M:CarPlay.CPTrip.get_Destination +M:CarPlay.CPTrip.get_DestinationNameVariants M:CarPlay.CPTrip.get_Origin M:CarPlay.CPTrip.get_RouteChoices M:CarPlay.CPTrip.get_UserInfo +M:CarPlay.CPTrip.set_DestinationNameVariants(System.String[]) M:CarPlay.CPTrip.set_UserInfo(Foundation.NSObject) M:CarPlay.CPTripPreviewTextConfiguration.#ctor M:CarPlay.CPTripPreviewTextConfiguration.#ctor(System.String,System.String,System.String) @@ -104855,9 +104981,15 @@ P:CarPlay.CPInterfaceController.RootTemplate P:CarPlay.CPInterfaceController.Templates P:CarPlay.CPInterfaceController.TopTemplate P:CarPlay.CPInterfaceController.WeakDelegate +P:CarPlay.CPLane.PrimaryAngle +P:CarPlay.CPLane.SecondaryAngles +P:CarPlay.CPLane.Status +P:CarPlay.CPLaneGuidance.InstructionVariants +P:CarPlay.CPLaneGuidance.Lanes P:CarPlay.CPListImageRowItem.Enabled P:CarPlay.CPListImageRowItem.GridImages P:CarPlay.CPListImageRowItem.Handler +P:CarPlay.CPListImageRowItem.ImageTitles P:CarPlay.CPListImageRowItem.ListImageRowHandler P:CarPlay.CPListImageRowItem.MaximumImageSize P:CarPlay.CPListImageRowItem.MaximumNumberOfGridImages @@ -104905,14 +105037,22 @@ P:CarPlay.CPManeuver.DashboardAttributedInstructionVariants P:CarPlay.CPManeuver.DashboardInstructionVariants P:CarPlay.CPManeuver.DashboardJunctionImage P:CarPlay.CPManeuver.DashboardSymbolImage +P:CarPlay.CPManeuver.HighwayExitLabel P:CarPlay.CPManeuver.InitialTravelEstimates P:CarPlay.CPManeuver.InstructionVariants +P:CarPlay.CPManeuver.JunctionElementAngles +P:CarPlay.CPManeuver.JunctionExitAngle P:CarPlay.CPManeuver.JunctionImage +P:CarPlay.CPManeuver.JunctionType +P:CarPlay.CPManeuver.LinkedLaneGuidance +P:CarPlay.CPManeuver.ManeuverType P:CarPlay.CPManeuver.NotificationAttributedInstructionVariants P:CarPlay.CPManeuver.NotificationInstructionVariants P:CarPlay.CPManeuver.NotificationSymbolImage +P:CarPlay.CPManeuver.RoadFollowingManeuverVariants P:CarPlay.CPManeuver.SymbolImage P:CarPlay.CPManeuver.SymbolSet +P:CarPlay.CPManeuver.TrafficSide P:CarPlay.CPManeuver.UserInfo P:CarPlay.CPMapButton.Enabled P:CarPlay.CPMapButton.FocusedImage @@ -104952,6 +105092,9 @@ P:CarPlay.CPNavigationAlert.PrimaryAction P:CarPlay.CPNavigationAlert.SecondaryAction P:CarPlay.CPNavigationAlert.SubtitleVariants P:CarPlay.CPNavigationAlert.TitleVariants +P:CarPlay.CPNavigationSession.CurrentLaneGuidance +P:CarPlay.CPNavigationSession.CurrentRoadNameVariants +P:CarPlay.CPNavigationSession.ManeuverState P:CarPlay.CPNavigationSession.Trip P:CarPlay.CPNavigationSession.UpcomingManeuvers P:CarPlay.CPNowPlayingButton.Enabled @@ -104989,6 +105132,12 @@ P:CarPlay.CPRouteChoice.AdditionalInformationVariants P:CarPlay.CPRouteChoice.SelectionSummaryVariants P:CarPlay.CPRouteChoice.SummaryVariants P:CarPlay.CPRouteChoice.UserInfo +P:CarPlay.CPRouteInformation.CurrentLaneGuidance +P:CarPlay.CPRouteInformation.CurrentManeuvers +P:CarPlay.CPRouteInformation.LaneGuidances +P:CarPlay.CPRouteInformation.Maneuvers +P:CarPlay.CPRouteInformation.ManeuverTravelEstimates +P:CarPlay.CPRouteInformation.TripTravelEstimates P:CarPlay.CPSearchTemplate.Delegate P:CarPlay.CPSearchTemplate.WeakDelegate P:CarPlay.CPSessionConfiguration.ContentStyle @@ -105024,8 +105173,10 @@ P:CarPlay.CPTemplateApplicationScene.WeakDelegate P:CarPlay.CPTextButton.TextStyle P:CarPlay.CPTextButton.Title P:CarPlay.CPTravelEstimates.DistanceRemaining +P:CarPlay.CPTravelEstimates.DistanceRemainingToDisplay P:CarPlay.CPTravelEstimates.TimeRemaining P:CarPlay.CPTrip.Destination +P:CarPlay.CPTrip.DestinationNameVariants P:CarPlay.CPTrip.Origin P:CarPlay.CPTrip.RouteChoices P:CarPlay.CPTrip.UserInfo @@ -133961,12 +134112,16 @@ T:CarPlay.CPInstrumentClusterControllerDelegate_Extensions T:CarPlay.CPInstrumentClusterSetting T:CarPlay.CPInterfaceControllerDelegate T:CarPlay.CPInterfaceControllerDelegate_Extensions +T:CarPlay.CPJunctionType +T:CarPlay.CPLaneStatus T:CarPlay.CPLimitableUserInterface T:CarPlay.CPListImageRowItemHandler T:CarPlay.CPListItemAccessoryType T:CarPlay.CPListItemPlayingIndicatorLocation T:CarPlay.CPListTemplateDelegate T:CarPlay.CPManeuverDisplayStyle +T:CarPlay.CPManeuverState +T:CarPlay.CPManeuverType T:CarPlay.CPMapTemplateDelegate T:CarPlay.CPMapTemplateDelegate_Extensions T:CarPlay.CPMessageLeadingItem @@ -133992,6 +134147,7 @@ T:CarPlay.CPTemplateApplicationSceneDelegate T:CarPlay.CPTemplateApplicationSceneDelegate_Extensions T:CarPlay.CPTextButtonStyle T:CarPlay.CPTimeRemainingColor +T:CarPlay.CPTrafficSide T:CarPlay.CPTripEstimateStyle T:CarPlay.CPTripPauseReason T:CarPlay.ICPApplicationDelegate diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-CarPlay.todo b/tests/xtro-sharpie/api-annotations-dotnet/iOS-CarPlay.todo deleted file mode 100644 index 149b03cef3e8..000000000000 --- a/tests/xtro-sharpie/api-annotations-dotnet/iOS-CarPlay.todo +++ /dev/null @@ -1,58 +0,0 @@ -!missing-enum! CPJunctionType not bound -!missing-enum! CPLaneStatus not bound -!missing-enum! CPManeuverState not bound -!missing-enum! CPManeuverType not bound -!missing-enum! CPTrafficSide not bound -!missing-protocol-member! CPMapTemplateDelegate::mapTemplateShouldProvideNavigationMetadata: not found -!missing-selector! CPLane::primaryAngle not bound -!missing-selector! CPLane::secondaryAngles not bound -!missing-selector! CPLane::setPrimaryAngle: not bound -!missing-selector! CPLane::setSecondaryAngles: not bound -!missing-selector! CPLane::setStatus: not bound -!missing-selector! CPLane::status not bound -!missing-selector! CPLaneGuidance::instructionVariants not bound -!missing-selector! CPLaneGuidance::lanes not bound -!missing-selector! CPLaneGuidance::setInstructionVariants: not bound -!missing-selector! CPLaneGuidance::setLanes: not bound -!missing-selector! CPListImageRowItem::imageTitles not bound -!missing-selector! CPListImageRowItem::initWithText:images:imageTitles: not bound -!missing-selector! CPListImageRowItem::setImageTitles: not bound -!missing-selector! CPManeuver::highwayExitLabel not bound -!missing-selector! CPManeuver::junctionElementAngles not bound -!missing-selector! CPManeuver::junctionExitAngle not bound -!missing-selector! CPManeuver::junctionType not bound -!missing-selector! CPManeuver::linkedLaneGuidance not bound -!missing-selector! CPManeuver::maneuverType not bound -!missing-selector! CPManeuver::roadFollowingManeuverVariants not bound -!missing-selector! CPManeuver::setHighwayExitLabel: not bound -!missing-selector! CPManeuver::setJunctionElementAngles: not bound -!missing-selector! CPManeuver::setJunctionExitAngle: not bound -!missing-selector! CPManeuver::setJunctionType: not bound -!missing-selector! CPManeuver::setLinkedLaneGuidance: not bound -!missing-selector! CPManeuver::setManeuverType: not bound -!missing-selector! CPManeuver::setRoadFollowingManeuverVariants: not bound -!missing-selector! CPManeuver::setTrafficSide: not bound -!missing-selector! CPManeuver::trafficSide not bound -!missing-selector! CPNavigationSession::addLaneGuidances: not bound -!missing-selector! CPNavigationSession::addManeuvers: not bound -!missing-selector! CPNavigationSession::currentLaneGuidance not bound -!missing-selector! CPNavigationSession::currentRoadNameVariants not bound -!missing-selector! CPNavigationSession::maneuverState not bound -!missing-selector! CPNavigationSession::resumeTripWithUpdatedRouteInformation: not bound -!missing-selector! CPNavigationSession::setCurrentLaneGuidance: not bound -!missing-selector! CPNavigationSession::setCurrentRoadNameVariants: not bound -!missing-selector! CPNavigationSession::setManeuverState: not bound -!missing-selector! CPRouteInformation::currentLaneGuidance not bound -!missing-selector! CPRouteInformation::currentManeuvers not bound -!missing-selector! CPRouteInformation::initWithManeuvers:laneGuidances:currentManeuvers:currentLaneGuidance:tripTravelEstimates:maneuverTravelEstimates: not bound -!missing-selector! CPRouteInformation::laneGuidances not bound -!missing-selector! CPRouteInformation::maneuvers not bound -!missing-selector! CPRouteInformation::maneuverTravelEstimates not bound -!missing-selector! CPRouteInformation::tripTravelEstimates not bound -!missing-selector! CPTravelEstimates::distanceRemainingToDisplay not bound -!missing-selector! CPTravelEstimates::initWithDistanceRemaining:distanceRemainingToDisplay:timeRemaining: not bound -!missing-selector! CPTrip::destinationNameVariants not bound -!missing-selector! CPTrip::setDestinationNameVariants: not bound -!missing-type! CPLane not bound -!missing-type! CPLaneGuidance not bound -!missing-type! CPRouteInformation not bound diff --git a/tests/xtro-sharpie/iOS-CarPlay.todo b/tests/xtro-sharpie/iOS-CarPlay.todo deleted file mode 100644 index 149b03cef3e8..000000000000 --- a/tests/xtro-sharpie/iOS-CarPlay.todo +++ /dev/null @@ -1,58 +0,0 @@ -!missing-enum! CPJunctionType not bound -!missing-enum! CPLaneStatus not bound -!missing-enum! CPManeuverState not bound -!missing-enum! CPManeuverType not bound -!missing-enum! CPTrafficSide not bound -!missing-protocol-member! CPMapTemplateDelegate::mapTemplateShouldProvideNavigationMetadata: not found -!missing-selector! CPLane::primaryAngle not bound -!missing-selector! CPLane::secondaryAngles not bound -!missing-selector! CPLane::setPrimaryAngle: not bound -!missing-selector! CPLane::setSecondaryAngles: not bound -!missing-selector! CPLane::setStatus: not bound -!missing-selector! CPLane::status not bound -!missing-selector! CPLaneGuidance::instructionVariants not bound -!missing-selector! CPLaneGuidance::lanes not bound -!missing-selector! CPLaneGuidance::setInstructionVariants: not bound -!missing-selector! CPLaneGuidance::setLanes: not bound -!missing-selector! CPListImageRowItem::imageTitles not bound -!missing-selector! CPListImageRowItem::initWithText:images:imageTitles: not bound -!missing-selector! CPListImageRowItem::setImageTitles: not bound -!missing-selector! CPManeuver::highwayExitLabel not bound -!missing-selector! CPManeuver::junctionElementAngles not bound -!missing-selector! CPManeuver::junctionExitAngle not bound -!missing-selector! CPManeuver::junctionType not bound -!missing-selector! CPManeuver::linkedLaneGuidance not bound -!missing-selector! CPManeuver::maneuverType not bound -!missing-selector! CPManeuver::roadFollowingManeuverVariants not bound -!missing-selector! CPManeuver::setHighwayExitLabel: not bound -!missing-selector! CPManeuver::setJunctionElementAngles: not bound -!missing-selector! CPManeuver::setJunctionExitAngle: not bound -!missing-selector! CPManeuver::setJunctionType: not bound -!missing-selector! CPManeuver::setLinkedLaneGuidance: not bound -!missing-selector! CPManeuver::setManeuverType: not bound -!missing-selector! CPManeuver::setRoadFollowingManeuverVariants: not bound -!missing-selector! CPManeuver::setTrafficSide: not bound -!missing-selector! CPManeuver::trafficSide not bound -!missing-selector! CPNavigationSession::addLaneGuidances: not bound -!missing-selector! CPNavigationSession::addManeuvers: not bound -!missing-selector! CPNavigationSession::currentLaneGuidance not bound -!missing-selector! CPNavigationSession::currentRoadNameVariants not bound -!missing-selector! CPNavigationSession::maneuverState not bound -!missing-selector! CPNavigationSession::resumeTripWithUpdatedRouteInformation: not bound -!missing-selector! CPNavigationSession::setCurrentLaneGuidance: not bound -!missing-selector! CPNavigationSession::setCurrentRoadNameVariants: not bound -!missing-selector! CPNavigationSession::setManeuverState: not bound -!missing-selector! CPRouteInformation::currentLaneGuidance not bound -!missing-selector! CPRouteInformation::currentManeuvers not bound -!missing-selector! CPRouteInformation::initWithManeuvers:laneGuidances:currentManeuvers:currentLaneGuidance:tripTravelEstimates:maneuverTravelEstimates: not bound -!missing-selector! CPRouteInformation::laneGuidances not bound -!missing-selector! CPRouteInformation::maneuvers not bound -!missing-selector! CPRouteInformation::maneuverTravelEstimates not bound -!missing-selector! CPRouteInformation::tripTravelEstimates not bound -!missing-selector! CPTravelEstimates::distanceRemainingToDisplay not bound -!missing-selector! CPTravelEstimates::initWithDistanceRemaining:distanceRemainingToDisplay:timeRemaining: not bound -!missing-selector! CPTrip::destinationNameVariants not bound -!missing-selector! CPTrip::setDestinationNameVariants: not bound -!missing-type! CPLane not bound -!missing-type! CPLaneGuidance not bound -!missing-type! CPRouteInformation not bound From 8884813274215f78168771cccb931bdeabaf644d Mon Sep 17 00:00:00 2001 From: GitHub Actions Autoformatter Date: Fri, 26 Apr 2024 01:30:13 +0000 Subject: [PATCH 32/73] Auto-format source code --- src/carplay.cs | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/src/carplay.cs b/src/carplay.cs index f8996541770f..6aae0015a376 100644 --- a/src/carplay.cs +++ b/src/carplay.cs @@ -872,7 +872,7 @@ interface CPManeuver : NSCopying, NSSecureCoding { [iOS (17, 4), MacCatalyst (17, 4)] [NullAllowed] [Export ("roadFollowingManeuverVariants", ArgumentSemantic.Copy)] - string[] RoadFollowingManeuverVariants { get; set; } + string [] RoadFollowingManeuverVariants { get; set; } [iOS (17, 4), MacCatalyst (17, 4)] [Export ("trafficSide", ArgumentSemantic.Assign)] @@ -1139,15 +1139,15 @@ interface CPNavigationSession { [iOS (17, 4), MacCatalyst (17, 4)] [Export ("addManeuvers:")] - void AddManeuvers (CPManeuver[] maneuvers); + void AddManeuvers (CPManeuver [] maneuvers); [iOS (17, 4), MacCatalyst (17, 4)] [Export ("addLaneGuidances:")] - void AddLaneGuidances (CPLaneGuidance[] laneGuidances); + void AddLaneGuidances (CPLaneGuidance [] laneGuidances); [iOS (17, 4), MacCatalyst (17, 4)] [Export ("currentRoadNameVariants", ArgumentSemantic.Copy)] - string[] CurrentRoadNameVariants { get; set; } + string [] CurrentRoadNameVariants { get; set; } [iOS (17, 4), MacCatalyst (17, 4)] [Export ("maneuverState", ArgumentSemantic.Assign)] @@ -1314,7 +1314,7 @@ interface CPTrip : NSSecureCoding { NSObject UserInfo { get; set; } [NullAllowed, Export ("destinationNameVariants", ArgumentSemantic.Copy)] - string[] DestinationNameVariants { get; set; } + string [] DestinationNameVariants { get; set; } } [NoWatch, NoTV, NoMac, iOS (12, 0)] @@ -1724,7 +1724,7 @@ interface CPListImageRowItem : CPSelectableListItem { [iOS (17, 4), MacCatalyst (17, 4)] [Export ("initWithText:images:imageTitles:")] - NativeHandle Constructor (string text, UIImage[] images, string[] imageTitles); + NativeHandle Constructor (string text, UIImage [] images, string [] imageTitles); [Export ("gridImages", ArgumentSemantic.Strong)] UIImage [] GridImages { get; } @@ -1734,7 +1734,7 @@ interface CPListImageRowItem : CPSelectableListItem { [iOS (17, 4), MacCatalyst (17, 4)] [Export ("imageTitles", ArgumentSemantic.Copy)] - string[] ImageTitles { get; set; } + string [] ImageTitles { get; set; } [NullAllowed, Export ("listImageRowHandler", ArgumentSemantic.Copy)] CPListImageRowItemHandler ListImageRowHandler { get; set; } @@ -2308,7 +2308,7 @@ interface CPLane : NSCopying, NSSecureCoding { NSMeasurement PrimaryAngle { get; set; } [Export ("secondaryAngles", ArgumentSemantic.Strong)] - NSMeasurement[] SecondaryAngles { get; set; } + NSMeasurement [] SecondaryAngles { get; set; } } [NoWatch, NoTV, NoMac, iOS (17, 4), MacCatalyst (17, 4)] @@ -2316,10 +2316,10 @@ interface CPLane : NSCopying, NSSecureCoding { interface CPLaneGuidance : NSCopying, NSSecureCoding { [Export ("lanes", ArgumentSemantic.Copy)] - CPLane[] Lanes { get; set; } + CPLane [] Lanes { get; set; } [Export ("instructionVariants", ArgumentSemantic.Copy)] - string[] InstructionVariants { get; set; } + string [] InstructionVariants { get; set; } } // @interface CPRouteInformation : NSObject @@ -2330,16 +2330,16 @@ interface CPRouteInformation { [Export ("initWithManeuvers:laneGuidances:currentManeuvers:currentLaneGuidance:tripTravelEstimates:maneuverTravelEstimates:")] [DesignatedInitializer] - NativeHandle Constructor (CPManeuver[] maneuvers, CPLaneGuidance[] laneGuidances, CPManeuver[] currentManeuvers, CPLaneGuidance currentLaneGuidance, CPTravelEstimates tripTravelEstimates, CPTravelEstimates maneuverTravelEstimates); + NativeHandle Constructor (CPManeuver [] maneuvers, CPLaneGuidance [] laneGuidances, CPManeuver [] currentManeuvers, CPLaneGuidance currentLaneGuidance, CPTravelEstimates tripTravelEstimates, CPTravelEstimates maneuverTravelEstimates); [Export ("maneuvers", ArgumentSemantic.Copy)] - CPManeuver[] Maneuvers { get; } + CPManeuver [] Maneuvers { get; } [Export ("laneGuidances", ArgumentSemantic.Copy)] - CPLaneGuidance[] LaneGuidances { get; } + CPLaneGuidance [] LaneGuidances { get; } [Export ("currentManeuvers", ArgumentSemantic.Copy)] - CPManeuver[] CurrentManeuvers { get; } + CPManeuver [] CurrentManeuvers { get; } [Export ("currentLaneGuidance", ArgumentSemantic.Copy)] CPLaneGuidance CurrentLaneGuidance { get; } From 01aa884f38d1a8e3fea013fb191c81fc2881f864 Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Mon, 20 May 2024 19:36:27 +0200 Subject: [PATCH 33/73] Update cecil tests. --- .../Documentation.KnownFailures.txt | 2770 +++++++++++------ 1 file changed, 1847 insertions(+), 923 deletions(-) diff --git a/tests/cecil-tests/Documentation.KnownFailures.txt b/tests/cecil-tests/Documentation.KnownFailures.txt index c4f3bb0fdebe..18c7ebefa8b1 100644 --- a/tests/cecil-tests/Documentation.KnownFailures.txt +++ b/tests/cecil-tests/Documentation.KnownFailures.txt @@ -20880,7 +20880,6 @@ M:Accessibility.AXBrailleMap.EncodeTo(Foundation.NSCoder) M:Accessibility.AXBrailleMap.GetHeight(CoreGraphics.CGPoint) M:Accessibility.AXBrailleMap.Present(CoreGraphics.CGImage) M:Accessibility.AXBrailleMap.SetHeight(System.Single,CoreGraphics.CGPoint) -M:Accessibility.AXBrailleMap.EncodeTo(Foundation.NSCoder) M:Accessibility.AXBrailleMapRenderer_Extensions.GetAccessibilityBrailleMapRenderer(Accessibility.IAXBrailleMapRenderer) M:Accessibility.AXBrailleMapRenderer_Extensions.GetAccessibilityBrailleMapRenderRegion(Accessibility.IAXBrailleMapRenderer) M:Accessibility.AXBrailleMapRenderer_Extensions.SetAccessibilityBrailleMapRenderer(Accessibility.IAXBrailleMapRenderer,System.Action{Accessibility.AXBrailleMap}) @@ -20909,9 +20908,6 @@ M:Accessibility.AXDataPointValue.CreateValueWithNumber(System.Double) M:Accessibility.AXDataSeriesDescriptor.#ctor(Foundation.NSAttributedString,System.Boolean,Accessibility.AXDataPoint[]) M:Accessibility.AXDataSeriesDescriptor.#ctor(System.String,System.Boolean,Accessibility.AXDataPoint[]) M:Accessibility.AXDataSeriesDescriptor.Copy(Foundation.NSZone) -M:Accessibility.AXCustomContent.EncodeTo(Foundation.NSCoder) -M:Accessibility.AXCustomContentProvider_Extensions.GetAccessibilityCustomContentHandler(Accessibility.IAXCustomContentProvider) -M:Accessibility.AXCustomContentProvider_Extensions.SetAccessibilityCustomContentHandler(Accessibility.IAXCustomContentProvider,System.Func{Accessibility.AXCustomContent[]}) M:Accessibility.AXHearingUtilities.AXSupportsBidirectionalAXMFiHearingDeviceStreaming M:Accessibility.AXHearingUtilities.GetMFiHearingDevicePairedUuids M:Accessibility.AXHearingUtilities.GetMFiHearingDeviceStreamingEar @@ -20923,24 +20919,16 @@ M:Accessibility.AXNumericDataAxisDescriptor.#ctor(Foundation.NSAttributedString, M:Accessibility.AXNumericDataAxisDescriptor.#ctor(System.String,System.Double,System.Double,Foundation.NSNumber[],System.Func{System.Double,Foundation.NSString}) M:Accessibility.AXNumericDataAxisDescriptor.Copy(Foundation.NSZone) M:Accessibility.AXPrefers.HorizontalTextEnabled -M:Accounts.ACAccount.#ctor M:Accounts.ACAccount.#ctor(Accounts.ACAccountType) M:Accounts.ACAccount.EncodeTo(Foundation.NSCoder) -M:Accounts.ACAccountCredential.#ctor M:Accounts.ACAccountCredential.#ctor(System.String,System.String,Foundation.NSDate) M:Accounts.ACAccountCredential.#ctor(System.String,System.String) M:Accounts.ACAccountCredential.EncodeTo(Foundation.NSCoder) -M:Accounts.ACAccountStore.#ctor M:Accounts.ACAccountStore.Dispose(System.Boolean) M:Accounts.ACAccountStore.FindAccount(System.String) M:Accounts.ACAccountStore.FindAccounts(Accounts.ACAccountType) M:Accounts.ACAccountStore.FindAccountType(System.String) M:Accounts.ACAccountStore.RemoveAccount(Accounts.ACAccount,Accounts.ACAccountStoreRemoveCompletionHandler) -M:Accessibility.AXNumericDataAxisDescriptor.Copy(Foundation.NSZone) -M:Accessibility.AXPrefers.HorizontalTextEnabled -M:Accounts.ACAccount.EncodeTo(Foundation.NSCoder) -M:Accounts.ACAccountCredential.EncodeTo(Foundation.NSCoder) -M:Accounts.ACAccountStore.Dispose(System.Boolean) M:Accounts.ACAccountStore.RemoveAccountAsync(Accounts.ACAccount) M:Accounts.ACAccountStore.RenewCredentials(Accounts.ACAccount,System.Action{Accounts.ACAccountCredentialRenewResult,Foundation.NSError}) M:Accounts.ACAccountStore.RenewCredentialsAsync(Accounts.ACAccount) @@ -21279,8 +21267,6 @@ M:AppKit.NSAccessibilityCustomAction.Dispose(System.Boolean) M:AppKit.NSAccessibilityCustomRotor.Dispose(System.Boolean) M:AppKit.NSAccessibilityCustomRotorItemResult.Dispose(System.Boolean) M:AppKit.NSAccessibilityCustomRotorItemSearchDelegate.GetResult(AppKit.NSAccessibilityCustomRotor,AppKit.NSAccessibilityCustomRotorSearchParameters) -M:AppKit.NSAccessibilityCustomRotorSearchParameters.#ctor -M:AppKit.NSAccessibilityElement.#ctor M:AppKit.NSAccessibilityElement.AccessibilityPerformCancel M:AppKit.NSAccessibilityElement.AccessibilityPerformConfirm M:AppKit.NSAccessibilityElement.AccessibilityPerformDecrement @@ -21308,7 +21294,6 @@ M:AppKit.NSAccessibilityElement.GetAccessibilityScreenForLayout(CoreGraphics.CGS M:AppKit.NSAccessibilityElement.GetAccessibilityString(Foundation.NSRange) M:AppKit.NSAccessibilityElement.GetAccessibilityStyleRange(System.IntPtr) M:AppKit.NSAccessibilityElement.IsAccessibilitySelectorAllowed(ObjCRuntime.Selector) -M:AppKit.NSAccessibilityElement.Dispose(System.Boolean) M:AppKit.NSAccessibilityElementLoading_Extensions.GetAccessibilityRangeInTargetElement(AppKit.INSAccessibilityElementLoading,Foundation.INSSecureCoding) M:AppKit.NSAccessibilityElementProtocol_Extensions.GetAccessibilityFocused(AppKit.INSAccessibilityElementProtocol) M:AppKit.NSAccessibilityElementProtocol_Extensions.GetAccessibilityIdentifier(AppKit.INSAccessibilityElementProtocol) @@ -21654,7 +21639,6 @@ M:AppKit.NSButton.CreateCheckbox(System.String,System.Action) M:AppKit.NSButton.CreateRadioButton(System.String,System.Action) M:AppKit.NSButton.Dispose(System.Boolean) M:AppKit.NSButton.ValidateUserInterfaceItem(AppKit.INSValidatedUserInterfaceItem) -M:AppKit.NSButtonCell.#ctor M:AppKit.NSButtonCell.SetFont(AppKit.NSFont) M:AppKit.NSButtonCell.SetGradientType(AppKit.NSGradientType) M:AppKit.NSButtonTouchBarItem.#ctor(System.String) @@ -21716,7 +21700,6 @@ M:AppKit.NSClickGestureRecognizer.#ctor(Foundation.NSObject,ObjCRuntime.Selector M:AppKit.NSClickGestureRecognizer.#ctor(System.Action) M:AppKit.NSClickGestureRecognizer.#ctor(System.Action{AppKit.NSClickGestureRecognizer}) M:AppKit.NSClickGestureRecognizer.EncodeTo(Foundation.NSCoder) -M:AppKit.NSClipView.#ctor M:AppKit.NSClipView.#ctor(CoreGraphics.CGRect) M:AppKit.NSClipView.ScrollClipView(AppKit.NSClipView,CoreGraphics.CGPoint) M:AppKit.NSCloudSharingServiceDelegate_Extensions.Completed(AppKit.INSCloudSharingServiceDelegate,AppKit.NSSharingService,Foundation.NSObject[],Foundation.NSError) @@ -21787,7 +21770,6 @@ M:AppKit.NSCollectionView.PerformDragOperation(AppKit.INSDraggingInfo) M:AppKit.NSCollectionView.PrepareForDragOperation(AppKit.INSDraggingInfo) M:AppKit.NSCollectionView.RegisterClassForItem(System.Type,System.String) M:AppKit.NSCollectionView.RegisterClassForSupplementaryView(System.Type,Foundation.NSString,System.String) -M:AppKit.NSCollectionViewCompositionalLayoutConfiguration.#ctor M:AppKit.NSCollectionViewCompositionalLayoutConfiguration.Copy(Foundation.NSZone) M:AppKit.NSCollectionViewDataSource_Extensions.GetNumberOfSections(AppKit.INSCollectionViewDataSource,AppKit.NSCollectionView) M:AppKit.NSCollectionViewDataSource_Extensions.GetView(AppKit.INSCollectionViewDataSource,AppKit.NSCollectionView,Foundation.NSString,Foundation.NSIndexPath) @@ -21911,18 +21893,11 @@ M:AppKit.NSCollectionViewItem.Dispose(System.Boolean) M:AppKit.NSCollectionViewLayout.Dispose(System.Boolean) M:AppKit.NSCollectionViewLayout.EncodeTo(Foundation.NSCoder) M:AppKit.NSCollectionViewLayout.RegisterClassForDecorationView(System.Type,Foundation.NSString) -M:AppKit.NSCollectionViewLayoutAttributes.#ctor M:AppKit.NSCollectionViewLayoutAttributes.Copy(Foundation.NSZone) -M:AppKit.NSCollectionViewLayoutInvalidationContext.#ctor M:AppKit.NSCollectionViewPrefetching_Extensions.CancelPrefetching(AppKit.INSCollectionViewPrefetching,AppKit.NSCollectionView,Foundation.NSIndexPath[]) M:AppKit.NSCollectionViewSectionHeaderView_Extensions.GetSectionCollapseButton(AppKit.INSCollectionViewSectionHeaderView) M:AppKit.NSCollectionViewSectionHeaderView_Extensions.SetSectionCollapseButton(AppKit.INSCollectionViewSectionHeaderView,AppKit.NSButton) -M:AppKit.NSCollectionViewUpdateItem.#ctor M:AppKit.NSColor.Copy(Foundation.NSZone) -M:AppKit.NSCollectionViewLayout.RegisterClassForDecorationView(System.Type,Foundation.NSString) -M:AppKit.NSCollectionViewPrefetching_Extensions.CancelPrefetching(AppKit.INSCollectionViewPrefetching,AppKit.NSCollectionView,Foundation.NSIndexPath[]) -M:AppKit.NSCollectionViewSectionHeaderView_Extensions.GetSectionCollapseButton(AppKit.INSCollectionViewSectionHeaderView) -M:AppKit.NSCollectionViewSectionHeaderView_Extensions.SetSectionCollapseButton(AppKit.INSCollectionViewSectionHeaderView,AppKit.NSButton) M:AppKit.NSColor.EncodeTo(Foundation.NSCoder) M:AppKit.NSColor.FromCalibratedHsb(System.Byte,System.Byte,System.Byte) M:AppKit.NSColor.FromCalibratedHsb(System.Int32,System.Int32,System.Int32) @@ -22109,7 +22084,6 @@ M:AppKit.NSDocument.ValidateMenuItem(AppKit.NSMenuItem) M:AppKit.NSDocumentController.EncodeTo(Foundation.NSCoder) M:AppKit.NSDocumentController.RestoreWindow(System.String,Foundation.NSCoder,AppKit.NSWindowCompletionHandler) M:AppKit.NSDocumentController.ValidateMenuItem(AppKit.NSMenuItem) -M:AppKit.NSDocumentController.RestoreWindow(System.String,Foundation.NSCoder,AppKit.NSWindowCompletionHandler) M:AppKit.NSDraggingDestination_Extensions.ConcludeDragOperation(AppKit.INSDraggingDestination,AppKit.INSDraggingInfo) M:AppKit.NSDraggingDestination_Extensions.DraggingEnded(AppKit.INSDraggingDestination,AppKit.INSDraggingInfo) M:AppKit.NSDraggingDestination_Extensions.DraggingEntered(AppKit.INSDraggingDestination,AppKit.INSDraggingInfo) @@ -22141,7 +22115,6 @@ M:AppKit.NSDraggingSource.DraggedImageEndedAtOperation(AppKit.NSImage,CoreGraphi M:AppKit.NSDraggingSource.DraggedImageMovedTo(AppKit.NSImage,CoreGraphics.CGPoint) M:AppKit.NSDraggingSource.DraggingSourceOperationMaskForLocal(System.Boolean) M:AppKit.NSDraggingSource.NamesOfPromisedFilesDroppedAtDestination(Foundation.NSUrl) -M:AppKit.NSDrawer.#ctor M:AppKit.NSDrawer.AccessibilityPerformCancel M:AppKit.NSDrawer.AccessibilityPerformConfirm M:AppKit.NSDrawer.AccessibilityPerformDecrement @@ -22194,7 +22167,6 @@ M:AppKit.NSDrawerDelegate.DrawerWillResizeContents(AppKit.NSDrawer,CoreGraphics. M:AppKit.NSEdgeInsets.#ctor(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat) M:AppKit.NSEditorRegistration_Extensions.ObjectDidBeginEditing(AppKit.INSEditorRegistration,AppKit.INSEditor) M:AppKit.NSEditorRegistration_Extensions.ObjectDidEndEditing(AppKit.INSEditorRegistration,AppKit.INSEditor) -M:AppKit.NSEvent.#ctor M:AppKit.NSEvent.Copy(Foundation.NSZone) M:AppKit.NSEvent.EncodeTo(Foundation.NSCoder) M:AppKit.NSExtendedStringDrawing.DrawString(Foundation.NSString,CoreGraphics.CGRect,Foundation.NSStringDrawingOptions,AppKit.NSStringAttributes,AppKit.NSStringDrawingContext) @@ -22209,7 +22181,6 @@ M:AppKit.NSFilePromiseProviderDelegate_Extensions.GetOperationQueue(AppKit.INSFi M:AppKit.NSFilePromiseProviderDelegate.GetFileNameForDestination(AppKit.NSFilePromiseProvider,System.String) M:AppKit.NSFilePromiseProviderDelegate.GetOperationQueue(AppKit.NSFilePromiseProvider) M:AppKit.NSFilePromiseProviderDelegate.WritePromiseToUrl(AppKit.NSFilePromiseProvider,Foundation.NSUrl,System.Action{Foundation.NSError}) -M:AppKit.NSFilePromiseReceiver.#ctor M:AppKit.NSFilePromiseReceiver.GetReadableTypesForPasteboard(AppKit.NSPasteboard) M:AppKit.NSFilePromiseReceiver.GetReadingOptionsForType(System.String,AppKit.NSPasteboard) M:AppKit.NSFont.BoldSystemFontOfSize(System.Runtime.InteropServices.NFloat) @@ -22240,20 +22211,15 @@ M:AppKit.NSFont.UserFixedPitchFontOfSize(System.Runtime.InteropServices.NFloat) M:AppKit.NSFont.UserFontOfSize(System.Runtime.InteropServices.NFloat) M:AppKit.NSFontChanging_Extensions.ChangeFont(AppKit.INSFontChanging,AppKit.NSFontManager) M:AppKit.NSFontChanging_Extensions.GetValidModes(AppKit.INSFontChanging,AppKit.NSFontPanel) -M:AppKit.NSFontCollection.#ctor M:AppKit.NSFontCollection.Copy(Foundation.NSZone) M:AppKit.NSFontCollection.EncodeTo(Foundation.NSCoder) M:AppKit.NSFontCollection.MutableCopy(Foundation.NSZone) M:AppKit.NSFontCollectionChangedEventArgs.#ctor(Foundation.NSNotification) -M:AppKit.NSFontDescriptor.#ctor M:AppKit.NSFontDescriptor.Copy(Foundation.NSZone) -M:AppKit.NSFontCollectionChangedEventArgs.#ctor(Foundation.NSNotification) M:AppKit.NSFontDescriptor.Create(AppKit.NSFontDescriptorSystemDesign) M:AppKit.NSFontDescriptor.EncodeTo(Foundation.NSCoder) M:AppKit.NSFontManager.Dispose(System.Boolean) M:AppKit.NSFontManager.ValidateMenuItem(AppKit.NSMenuItem) -M:AppKit.NSFontPanel.#ctor -M:AppKit.NSForm.#ctor M:AppKit.NSForm.#ctor(CoreGraphics.CGRect,AppKit.NSMatrixMode,AppKit.NSCell,System.IntPtr,System.IntPtr) M:AppKit.NSForm.#ctor(CoreGraphics.CGRect,AppKit.NSMatrixMode,ObjCRuntime.Class,System.IntPtr,System.IntPtr) M:AppKit.NSForm.#ctor(CoreGraphics.CGRect) @@ -22279,8 +22245,6 @@ M:AppKit.NSGestureRecognizerDelegate.ShouldBeRequiredToFail(AppKit.NSGestureReco M:AppKit.NSGestureRecognizerDelegate.ShouldReceiveTouch(AppKit.NSGestureRecognizer,AppKit.NSTouch) M:AppKit.NSGestureRecognizerDelegate.ShouldRecognizeSimultaneously(AppKit.NSGestureRecognizer,AppKit.NSGestureRecognizer) M:AppKit.NSGestureRecognizerDelegate.ShouldRequireFailure(AppKit.NSGestureRecognizer,AppKit.NSGestureRecognizer) -M:AppKit.NSGlyphGenerator.#ctor -M:AppKit.NSGlyphInfo.#ctor M:AppKit.NSGlyphInfo.Copy(Foundation.NSZone) M:AppKit.NSGlyphInfo.EncodeTo(Foundation.NSCoder) M:AppKit.NSGradient.#ctor(AppKit.NSColor[],System.Double[],AppKit.NSColorSpace) @@ -22322,9 +22286,6 @@ M:AppKit.NSGridColumn.Dispose(System.Boolean) M:AppKit.NSGridColumn.EncodeTo(Foundation.NSCoder) M:AppKit.NSGridRow.Dispose(System.Boolean) M:AppKit.NSGridRow.EncodeTo(Foundation.NSCoder) -M:AppKit.NSGridView.#ctor -M:AppKit.NSGridColumn.Dispose(System.Boolean) -M:AppKit.NSGridRow.Dispose(System.Boolean) M:AppKit.NSGroupTouchBarItem.#ctor(System.String) M:AppKit.NSHapticFeedbackPerformer.PerformFeedback(AppKit.NSHapticFeedbackPattern,AppKit.NSHapticFeedbackPerformanceTime) M:AppKit.NSImage.#ctor(Foundation.NSData,System.Boolean) @@ -22565,8 +22526,6 @@ M:AppKit.NSMatrix.Dispose(System.Boolean) M:AppKit.NSMatrix.GetStringForToolTip(AppKit.NSView,System.IntPtr,CoreGraphics.CGPoint,System.IntPtr) M:AppKit.NSMatrix.remove_DoubleClick(System.EventHandler) M:AppKit.NSMatrix.ValidateUserInterfaceItem(AppKit.INSValidatedUserInterfaceItem) -M:AppKit.NSMatrixDelegate.#ctor -M:AppKit.NSMatrix.remove_DoubleClick(System.EventHandler) M:AppKit.NSMatrixDelegate.ControlTextDidBeginEditing(Foundation.NSNotification) M:AppKit.NSMatrixDelegate.ControlTextDidChange(Foundation.NSNotification) M:AppKit.NSMatrixDelegate.ControlTextDidEndEditing(Foundation.NSNotification) @@ -22577,7 +22536,6 @@ M:AppKit.NSMatrixDelegate.GetCompletions(AppKit.NSControl,AppKit.NSTextView,Syst M:AppKit.NSMatrixDelegate.IsValidObject(AppKit.NSControl,Foundation.NSObject) M:AppKit.NSMatrixDelegate.TextShouldBeginEditing(AppKit.NSControl,AppKit.NSText) M:AppKit.NSMatrixDelegate.TextShouldEndEditing(AppKit.NSControl,AppKit.NSText) -M:AppKit.NSMenu.#ctor M:AppKit.NSMenu.AccessibilityAddChildElement(AppKit.NSAccessibilityElement) M:AppKit.NSMenu.AccessibilityPerformCancel M:AppKit.NSMenu.AccessibilityPerformConfirm @@ -22610,8 +22568,6 @@ M:AppKit.NSMenu.GetAccessibilityString(Foundation.NSRange) M:AppKit.NSMenu.GetAccessibilityStyleRange(System.IntPtr) M:AppKit.NSMenu.InsertItem(System.String,System.String,System.IntPtr) M:AppKit.NSMenu.IsAccessibilitySelectorAllowed(ObjCRuntime.Selector) -M:AppKit.NSMenu.Dispose(System.Boolean) -M:AppKit.NSMenu.InsertItem(System.String,System.String,System.IntPtr) M:AppKit.NSMenuDelegate_Extensions.ConfinementRectForMenu(AppKit.INSMenuDelegate,AppKit.NSMenu,AppKit.NSScreen) M:AppKit.NSMenuDelegate_Extensions.HasKeyEquivalentForEvent(AppKit.INSMenuDelegate,AppKit.NSMenu,AppKit.NSEvent,Foundation.NSObject,ObjCRuntime.Selector) M:AppKit.NSMenuDelegate_Extensions.MenuDidClose(AppKit.INSMenuDelegate,AppKit.NSMenu) @@ -22667,8 +22623,6 @@ M:AppKit.NSMenuItem.GetAccessibilityStyleRange(System.IntPtr) M:AppKit.NSMenuItem.IsAccessibilitySelectorAllowed(ObjCRuntime.Selector) M:AppKit.NSMenuItem.remove_Activated(System.EventHandler) M:AppKit.NSMenuItemBadge.Copy(Foundation.NSZone) -M:AppKit.NSMenuItemCell.#ctor -M:AppKit.NSMenuItem.remove_Activated(System.EventHandler) M:AppKit.NSMenuItemCell.#ctor(AppKit.NSImage) M:AppKit.NSMenuItemEventArgs.#ctor(Foundation.NSNotification) M:AppKit.NSMenuItemIndexEventArgs.#ctor(Foundation.NSNotification) @@ -22696,14 +22650,9 @@ M:AppKit.NSMutableFontCollection.SetQueryDescriptors(AppKit.NSFontDescriptor[]) M:AppKit.NSMutableParagraphStyle.AddTabStop(AppKit.NSTextTab) M:AppKit.NSMutableParagraphStyle.RemoveTabStop(AppKit.NSTextTab) M:AppKit.NSMutableParagraphStyle.SetParagraphStyle(AppKit.NSParagraphStyle) -M:AppKit.NSNib.#ctor M:AppKit.NSNib.EncodeTo(Foundation.NSCoder) -M:AppKit.NSNibConnector.#ctor M:AppKit.NSNibConnector.Dispose(System.Boolean) M:AppKit.NSNibConnector.EncodeTo(Foundation.NSCoder) -M:AppKit.NSNibControlConnector.#ctor -M:AppKit.NSNibOutletConnector.#ctor -M:AppKit.NSNibConnector.Dispose(System.Boolean) M:AppKit.NSObject_NSEditorRegistration.ObjectDidBeginEditing(Foundation.NSObject,AppKit.INSEditor) M:AppKit.NSObject_NSEditorRegistration.ObjectDidEndEditing(Foundation.NSObject,AppKit.INSEditor) M:AppKit.NSObject_NSFontPanelValidationAdditions.GetValidModes(Foundation.NSObject,AppKit.NSFontPanel) @@ -22713,7 +22662,6 @@ M:AppKit.NSOpenGLPixelFormat.#ctor(AppKit.NSOpenGLPixelFormatAttribute[]) M:AppKit.NSOpenGLPixelFormat.#ctor(System.Object[]) M:AppKit.NSOpenGLPixelFormat.#ctor(System.UInt32[]) M:AppKit.NSOpenGLPixelFormat.EncodeTo(Foundation.NSCoder) -M:AppKit.NSOpenGLView.#ctor M:AppKit.NSOpenGLView.#ctor(CoreGraphics.CGRect) M:AppKit.NSOpenPanel.#ctor M:AppKit.NSOpenPanel.BeginSheet(System.String,System.String,System.String[],AppKit.NSWindow,System.Action) @@ -22893,13 +22841,11 @@ M:AppKit.NSPanGestureRecognizer.#ctor(Foundation.NSObject,ObjCRuntime.Selector) M:AppKit.NSPanGestureRecognizer.#ctor(System.Action) M:AppKit.NSPanGestureRecognizer.#ctor(System.Action{AppKit.NSPanGestureRecognizer}) M:AppKit.NSPanGestureRecognizer.EncodeTo(Foundation.NSCoder) -M:AppKit.NSParagraphStyle.#ctor M:AppKit.NSParagraphStyle.Copy(Foundation.NSZone) M:AppKit.NSParagraphStyle.EncodeTo(Foundation.NSCoder) M:AppKit.NSParagraphStyle.GetDefaultWritingDirection(System.String) M:AppKit.NSParagraphStyle.MutableCopy(Foundation.NSZone) M:AppKit.NSPasteboard.WriteObjects(AppKit.INSPasteboardWriting[]) -M:AppKit.NSPasteboardItem.#ctor M:AppKit.NSPasteboardItem.GetPasteboardPropertyListForType(System.String) M:AppKit.NSPasteboardItem.GetReadableTypesForPasteboard(AppKit.NSPasteboard) M:AppKit.NSPasteboardItem.GetReadingOptionsForType(System.String,AppKit.NSPasteboard) @@ -22972,7 +22918,6 @@ M:AppKit.NSPopover.GetAccessibilityScreenForLayout(CoreGraphics.CGSize) M:AppKit.NSPopover.GetAccessibilityString(Foundation.NSRange) M:AppKit.NSPopover.GetAccessibilityStyleRange(System.IntPtr) M:AppKit.NSPopover.IsAccessibilitySelectorAllowed(ObjCRuntime.Selector) -M:AppKit.NSPopover.Dispose(System.Boolean) M:AppKit.NSPopoverCloseEventArgs.#ctor(Foundation.NSNotification) M:AppKit.NSPopoverDelegate_Extensions.DidClose(AppKit.INSPopoverDelegate,Foundation.NSNotification) M:AppKit.NSPopoverDelegate_Extensions.DidDetach(AppKit.INSPopoverDelegate,AppKit.NSPopover) @@ -22992,8 +22937,6 @@ M:AppKit.NSPopoverTouchBarItem.#ctor(System.String) M:AppKit.NSPopUpButtonCell.#ctor(AppKit.NSImage) M:AppKit.NSPopUpButtonCell.#ctor(System.String) M:AppKit.NSPopUpButtonCell.ValidateMenuItem(AppKit.NSMenuItem) -M:AppKit.NSPredicateEditor.#ctor -M:AppKit.NSPredicateEditorRowTemplate.#ctor M:AppKit.NSPredicateEditorRowTemplate.#ctor(Foundation.NSCompoundPredicateType[]) M:AppKit.NSPredicateEditorRowTemplate.#ctor(System.Collections.Generic.IEnumerable{Foundation.NSExpression},CoreData.NSAttributeType,System.Collections.Generic.IEnumerable{Foundation.NSPredicateOperatorType},Foundation.NSComparisonPredicateModifier,Foundation.NSComparisonPredicateOptions) M:AppKit.NSPredicateEditorRowTemplate.#ctor(System.Collections.Generic.IEnumerable{Foundation.NSExpression},System.Collections.Generic.IEnumerable{Foundation.NSExpression},System.Collections.Generic.IEnumerable{Foundation.NSPredicateOperatorType},Foundation.NSComparisonPredicateModifier,Foundation.NSComparisonPredicateOptions) @@ -23004,14 +22947,12 @@ M:AppKit.NSPredicateEditorRowTemplate.#ctor(System.String,System.Collections.Gen M:AppKit.NSPredicateEditorRowTemplate.#ctor(System.String,System.String,System.Collections.Generic.IEnumerable{Foundation.NSPredicateOperatorType},Foundation.NSComparisonPredicateModifier,Foundation.NSComparisonPredicateOptions) M:AppKit.NSPredicateEditorRowTemplate.Copy(Foundation.NSZone) M:AppKit.NSPredicateEditorRowTemplate.EncodeTo(Foundation.NSCoder) -M:AppKit.NSPressGestureRecognizer.#ctor M:AppKit.NSPressGestureRecognizer.#ctor(Foundation.NSObject,ObjCRuntime.Selector) M:AppKit.NSPressGestureRecognizer.#ctor(System.Action) M:AppKit.NSPressGestureRecognizer.#ctor(System.Action{AppKit.NSPressGestureRecognizer}) M:AppKit.NSPreviewRepresentableActivityItem_Extensions.GetIconProvider(AppKit.INSPreviewRepresentableActivityItem) M:AppKit.NSPreviewRepresentableActivityItem_Extensions.GetImageProvider(AppKit.INSPreviewRepresentableActivityItem) M:AppKit.NSPreviewRepresentableActivityItem_Extensions.GetTitle(AppKit.INSPreviewRepresentableActivityItem) -M:AppKit.NSPrinter.#ctor M:AppKit.NSPrinter.Copy(Foundation.NSZone) M:AppKit.NSPrinter.EncodeTo(Foundation.NSCoder) M:AppKit.NSPrintInfo.Copy(Foundation.NSZone) @@ -23028,9 +22969,6 @@ M:AppKit.NSResponder_NSTouchBarProvider.GetTouchBar(AppKit.NSResponder) M:AppKit.NSResponder_NSTouchBarProvider.MakeTouchBar(AppKit.NSResponder) M:AppKit.NSResponder_NSTouchBarProvider.SetTouchBar(AppKit.NSResponder,AppKit.NSTouchBar) M:AppKit.NSResponder.EncodeTo(Foundation.NSCoder) -M:AppKit.NSResponder_NSTouchBarProvider.GetTouchBar(AppKit.NSResponder) -M:AppKit.NSResponder_NSTouchBarProvider.MakeTouchBar(AppKit.NSResponder) -M:AppKit.NSResponder_NSTouchBarProvider.SetTouchBar(AppKit.NSResponder,AppKit.NSTouchBar) M:AppKit.NSResponder.PresentError(Foundation.NSError,AppKit.NSWindow,Foundation.NSObject,ObjCRuntime.Selector,System.IntPtr) M:AppKit.NSResponder.RestoreUserActivityState(Foundation.NSUserActivity) M:AppKit.NSRotationGestureRecognizer.#ctor(Foundation.NSObject,ObjCRuntime.Selector) @@ -23059,7 +22997,6 @@ M:AppKit.NSRuleEditorDelegate.EditingEnded(Foundation.NSNotification) M:AppKit.NSRuleEditorDelegate.NumberOfChildren(AppKit.NSRuleEditor,Foundation.NSObject,AppKit.NSRuleEditorRowType) M:AppKit.NSRuleEditorDelegate.PredicateParts(AppKit.NSRuleEditor,Foundation.NSObject,Foundation.NSObject,System.IntPtr) M:AppKit.NSRuleEditorDelegate.RowsDidChange(Foundation.NSNotification) -M:AppKit.NSRulerMarker.#ctor M:AppKit.NSRulerMarker.Copy(Foundation.NSZone) M:AppKit.NSRulerMarker.EncodeTo(Foundation.NSCoder) M:AppKit.NSRulerMarkerClientViewDelegation.RulerViewLocation(AppKit.NSView,AppKit.NSRulerView,CoreGraphics.CGPoint) @@ -23077,9 +23014,7 @@ M:AppKit.NSSavePanel.remove_DirectoryDidChange(System.EventHandler{AppKit.NSOpen M:AppKit.NSSavePanel.remove_SelectionDidChange(System.EventHandler) M:AppKit.NSSavePanel.remove_WillExpand(System.EventHandler{AppKit.NSOpenSaveExpandingEventArgs}) M:AppKit.NSScroller.#ctor(CoreGraphics.CGRect) -M:AppKit.NSScrollView.#ctor M:AppKit.NSScrollView.FindBarViewDidChangeHeight -M:AppKit.NSScrubber.#ctor M:AppKit.NSScrubber.Dispose(System.Boolean) M:AppKit.NSScrubberArrangedView.#ctor(CoreGraphics.CGRect) M:AppKit.NSScrubberDataSource.GetNumberOfItems(AppKit.NSScrubber) @@ -23106,13 +23041,8 @@ M:AppKit.NSScrubberFlowLayoutDelegate.DidSelectItem(AppKit.NSScrubber,System.Int M:AppKit.NSScrubberFlowLayoutDelegate.Layout(AppKit.NSScrubber,AppKit.NSScrubberFlowLayout,System.IntPtr) M:AppKit.NSScrubberLayout.Dispose(System.Boolean) M:AppKit.NSScrubberLayout.EncodeTo(Foundation.NSCoder) -M:AppKit.NSScrubberLayoutAttributes.#ctor M:AppKit.NSScrubberLayoutAttributes.Copy(Foundation.NSZone) -M:AppKit.NSScrubberProportionalLayout.#ctor M:AppKit.NSScrubberSelectionStyle.EncodeTo(Foundation.NSCoder) -M:AppKit.NSScrubberSelectionView.#ctor -M:AppKit.NSScrubberTextItemView.#ctor -M:AppKit.NSSearchField.#ctor M:AppKit.NSSearchField.#ctor(CoreGraphics.CGRect) M:AppKit.NSSearchField.add_SearchingEnded(System.EventHandler) M:AppKit.NSSearchField.add_SearchingStarted(System.EventHandler) @@ -23231,10 +23161,8 @@ M:AppKit.NSSliderAccessory.GetAccessibilityScreenForLayout(CoreGraphics.CGSize) M:AppKit.NSSliderAccessory.GetAccessibilityString(Foundation.NSRange) M:AppKit.NSSliderAccessory.GetAccessibilityStyleRange(System.IntPtr) M:AppKit.NSSliderAccessory.IsAccessibilitySelectorAllowed(ObjCRuntime.Selector) -M:AppKit.NSSliderAccessoryBehavior.#ctor M:AppKit.NSSliderAccessoryBehavior.Copy(Foundation.NSZone) M:AppKit.NSSliderAccessoryBehavior.EncodeTo(Foundation.NSCoder) -M:AppKit.NSSliderCell.#ctor M:AppKit.NSSliderCell.#ctor(AppKit.NSImage) M:AppKit.NSSliderCell.#ctor(System.String) M:AppKit.NSSliderTouchBarItem.#ctor(System.String) @@ -23312,7 +23240,6 @@ M:AppKit.NSSplitViewDelegate.ShouldCollapseForDoubleClick(AppKit.NSSplitView,App M:AppKit.NSSplitViewDelegate.ShouldHideDivider(AppKit.NSSplitView,System.IntPtr) M:AppKit.NSSplitViewDelegate.SplitViewWillResizeSubviews(Foundation.NSNotification) M:AppKit.NSSplitViewDividerIndexEventArgs.#ctor(Foundation.NSNotification) -M:AppKit.NSSplitViewItem.#ctor M:AppKit.NSSplitViewItem.AnimationFor(Foundation.NSString) M:AppKit.NSSplitViewItem.DefaultAnimationFor(Foundation.NSString) M:AppKit.NSSplitViewItem.EncodeTo(Foundation.NSCoder) @@ -23436,7 +23363,6 @@ M:AppKit.NSStatusItem.remove_DoubleClick(System.EventHandler) M:AppKit.NSStepper.#ctor(CoreGraphics.CGRect) M:AppKit.NSStepper.AccessibilityPerformDecrement M:AppKit.NSStepper.AccessibilityPerformIncrement -M:AppKit.NSStepperCell.#ctor M:AppKit.NSStepperTouchBarItem.Dispose(System.Boolean) M:AppKit.NSStringAttributes.#ctor M:AppKit.NSStringAttributes.#ctor(Foundation.NSDictionary) @@ -23457,24 +23383,16 @@ M:AppKit.NSStringDrawing.DrawInRect(System.String,CoreGraphics.CGRect,AppKit.NSS M:AppKit.NSStringDrawing.DrawInRect(System.String,CoreGraphics.CGRect,Foundation.NSDictionary) M:AppKit.NSStringDrawing.StringSize(System.String,AppKit.NSStringAttributes) M:AppKit.NSStringDrawing.StringSize(System.String,Foundation.NSDictionary) -M:AppKit.NSStringDrawingContext.#ctor -M:AppKit.NSSwitch.#ctor M:AppKit.NSSwitch.AccessibilityPerformDecrement M:AppKit.NSSwitch.AccessibilityPerformIncrement M:AppKit.NSSwitch.AccessibilityPerformPress -M:AppKit.NSTableCellView.#ctor -M:AppKit.NSSwitch.AccessibilityPerformPress M:AppKit.NSTableCellView.#ctor(CoreGraphics.CGRect) M:AppKit.NSTableCellView.Dispose(System.Boolean) M:AppKit.NSTableColumn.#ctor(System.String) M:AppKit.NSTableColumn.EncodeTo(Foundation.NSCoder) -M:AppKit.NSTableHeaderCell.#ctor M:AppKit.NSTableHeaderCell.#ctor(System.String) M:AppKit.NSTableHeaderView.#ctor(CoreGraphics.CGRect) M:AppKit.NSTableHeaderView.GetStringForToolTip(AppKit.NSView,System.IntPtr,CoreGraphics.CGPoint,System.IntPtr) -M:AppKit.NSTableRowView.#ctor -M:AppKit.NSTableRowView.#ctor(CoreGraphics.CGRect) -M:AppKit.NSTableView.#ctor M:AppKit.NSTableRowView.#ctor(CoreGraphics.CGRect) M:AppKit.NSTableView.add_ColumnDidMove(System.EventHandler) M:AppKit.NSTableView.add_ColumnDidResize(System.EventHandler) @@ -23610,7 +23528,6 @@ M:AppKit.NSTableViewDiffableDataSource`2.SortDescriptorsChanged(AppKit.NSTableVi M:AppKit.NSTableViewDiffableDataSource`2.UpdateDraggingItems(AppKit.NSTableView,AppKit.INSDraggingInfo) M:AppKit.NSTableViewDiffableDataSource`2.ValidateDrop(AppKit.NSTableView,AppKit.INSDraggingInfo,System.IntPtr,AppKit.NSTableViewDropOperation) M:AppKit.NSTableViewDiffableDataSource`2.WriteRows(AppKit.NSTableView,Foundation.NSIndexSet,AppKit.NSPasteboard) -M:AppKit.NSTableViewRowAction.#ctor M:AppKit.NSTableViewRowAction.Copy(Foundation.NSZone) M:AppKit.NSTableViewRowEventArgs.#ctor(AppKit.NSTableRowView,System.IntPtr) M:AppKit.NSTableViewSource.AcceptDrop(AppKit.NSTableView,AppKit.INSDraggingInfo,System.IntPtr,AppKit.NSTableViewDropOperation) @@ -23676,7 +23593,6 @@ M:AppKit.NSTabViewDelegate.DidSelect(AppKit.NSTabView,AppKit.NSTabViewItem) M:AppKit.NSTabViewDelegate.NumberOfItemsChanged(AppKit.NSTabView) M:AppKit.NSTabViewDelegate.ShouldSelectTabViewItem(AppKit.NSTabView,AppKit.NSTabViewItem) M:AppKit.NSTabViewDelegate.WillSelect(AppKit.NSTabView,AppKit.NSTabViewItem) -M:AppKit.NSTabViewItem.#ctor M:AppKit.NSTabViewItem.EncodeTo(Foundation.NSCoder) M:AppKit.NSTabViewItemEventArgs.#ctor(AppKit.NSTabViewItem) M:AppKit.NSText.add_TextDidBeginEditing(System.EventHandler) @@ -23789,7 +23705,6 @@ M:AppKit.NSTextField.remove_EditingBegan(System.EventHandler) M:AppKit.NSTextField.remove_EditingEnded(System.EventHandler) M:AppKit.NSTextField.SetContentType(Foundation.NSString) M:AppKit.NSTextField.ValidateUserInterfaceItem(AppKit.INSValidatedUserInterfaceItem) -M:AppKit.NSTextFieldCell.#ctor M:AppKit.NSTextFieldCell.#ctor(AppKit.NSImage) M:AppKit.NSTextFieldDelegate_Extensions.Changed(AppKit.INSTextFieldDelegate,Foundation.NSNotification) M:AppKit.NSTextFieldDelegate_Extensions.DidFailToFormatString(AppKit.INSTextFieldDelegate,AppKit.NSControl,System.String,System.String) @@ -24130,7 +24045,6 @@ M:AppKit.NSTitlebarAccessoryViewController.AnimationFor(Foundation.NSString) M:AppKit.NSTitlebarAccessoryViewController.AnimationShouldStart(AppKit.NSAnimation) M:AppKit.NSTitlebarAccessoryViewController.ComputeAnimationCurve(AppKit.NSAnimation,System.Single) M:AppKit.NSTitlebarAccessoryViewController.DefaultAnimationFor(Foundation.NSString) -M:AppKit.NSTokenField.#ctor M:AppKit.NSTokenField.#ctor(CoreGraphics.CGRect) M:AppKit.NSTokenField.Dispose(System.Boolean) M:AppKit.NSTokenFieldCell.#ctor(System.String) @@ -24210,22 +24124,15 @@ M:AppKit.NSTouch.#ctor M:AppKit.NSTouch.Copy(Foundation.NSZone) M:AppKit.NSTouchBar.Dispose(System.Boolean) M:AppKit.NSTouchBar.EncodeTo(Foundation.NSCoder) -M:AppKit.NSTouchBar.Dispose(System.Boolean) M:AppKit.NSTouchBarDelegate_Extensions.MakeItem(AppKit.INSTouchBarDelegate,AppKit.NSTouchBar,System.String) M:AppKit.NSTouchBarDelegate.MakeItem(AppKit.NSTouchBar,System.String) M:AppKit.NSTouchBarItem.#ctor(AppKit.NSTouchBarItemIdentifier) M:AppKit.NSTouchBarItem.EncodeTo(Foundation.NSCoder) -M:AppKit.NSTrackingArea.#ctor M:AppKit.NSTrackingArea.Copy(Foundation.NSZone) M:AppKit.NSTrackingArea.EncodeTo(Foundation.NSCoder) M:AppKit.NSTrackingSeparatorToolbarItem.#ctor(System.String) -M:AppKit.NSTreeController.#ctor -M:AppKit.NSTreeNode.#ctor -M:AppKit.NSTypesetter.#ctor -M:AppKit.NSUserDefaultsController.#ctor M:AppKit.NSUserInterfaceCompressionOptions.Copy(Foundation.NSZone) M:AppKit.NSUserInterfaceCompressionOptions.EncodeTo(Foundation.NSCoder) -M:AppKit.NSTrackingSeparatorToolbarItem.#ctor(System.String) M:AppKit.NSUserInterfaceItemSearching_Extensions.PerformAction(AppKit.INSUserInterfaceItemSearching,Foundation.NSObject) M:AppKit.NSUserInterfaceItemSearching_Extensions.ShowAllHelpTopics(AppKit.INSUserInterfaceItemSearching,System.String) M:AppKit.NSView_NSCandidateListTouchBarItem.GetCandidateListTouchBarItem(AppKit.NSView) @@ -24606,7 +24513,6 @@ M:ARKit.ARBodyAnchor.#ctor(ARKit.ARAnchor) M:ARKit.ARBodyTrackingConfiguration.GetSupportedVideoFormats M:ARKit.ARBodyTrackingConfiguration.SupportsFrameSemantics(ARKit.ARFrameSemantics) M:ARKit.ARCamera.Copy(Foundation.NSZone) -M:ARKit.ARCoachingOverlayView.#ctor M:ARKit.ARCoachingOverlayView.#ctor(CoreGraphics.CGRect) M:ARKit.ARCoachingOverlayView.ARCoachingOverlayViewAppearance.#ctor(System.IntPtr) M:ARKit.ARCoachingOverlayView.Dispose(System.Boolean) @@ -24630,8 +24536,6 @@ M:ARKit.ARFaceGeometry.GetVertices M:ARKit.ARFaceTrackingConfiguration.GetSupportedVideoFormats M:ARKit.ARFaceTrackingConfiguration.SupportsFrameSemantics(ARKit.ARFrameSemantics) M:ARKit.ARFrame.Copy(Foundation.NSZone) -M:ARKit.ARGeoAnchor.#ctor -M:ARKit.ARGeoAnchor.#ctor(ARKit.ARAnchor) M:ARKit.ARGeoAnchor.#ctor(ARKit.ARAnchor) M:ARKit.ARGeometryElement.EncodeTo(Foundation.NSCoder) M:ARKit.ARGeometrySource.EncodeTo(Foundation.NSCoder) @@ -25332,7 +25236,6 @@ M:AuthenticationServices.ASAuthorizationAppleIdButton.ASAuthorizationAppleIdButt M:AuthenticationServices.ASAuthorizationAppleIdButton.Create(AuthenticationServices.ASAuthorizationAppleIdButtonType,AuthenticationServices.ASAuthorizationAppleIdButtonStyle) M:AuthenticationServices.ASAuthorizationAppleIdCredential.Copy(Foundation.NSZone) M:AuthenticationServices.ASAuthorizationAppleIdCredential.EncodeTo(Foundation.NSCoder) -M:AuthenticationServices.ASAuthorizationAppleIdProvider.#ctor M:AuthenticationServices.ASAuthorizationAppleIdProvider.CreateRequest M:AuthenticationServices.ASAuthorizationAppleIdProvider.GetCredentialState(System.String,System.Action{AuthenticationServices.ASAuthorizationAppleIdProviderCredentialState,Foundation.NSError}) M:AuthenticationServices.ASAuthorizationAppleIdProvider.GetCredentialStateAsync(System.String) @@ -25607,7 +25510,6 @@ M:AVFoundation.AVAsset.LoadTrackWithMediaCharacteristicsAsync(System.String) M:AVFoundation.AVAsset.LoadValuesAsynchronously(System.String[],System.Action) M:AVFoundation.AVAsset.LoadValuesTaskAsync(System.String[]) M:AVFoundation.AVAsset.StatusOfValue(System.String,Foundation.NSError@) -M:AVFoundation.AVAssetDownloadContentConfiguration.#ctor M:AVFoundation.AVAssetDownloadContentConfiguration.Copy(Foundation.NSZone) M:AVFoundation.AVAssetDownloadDelegate_Extensions.DidCompleteForMediaSelection(AVFoundation.IAVAssetDownloadDelegate,Foundation.NSUrlSession,AVFoundation.AVAggregateAssetDownloadTask,AVFoundation.AVMediaSelection) M:AVFoundation.AVAssetDownloadDelegate_Extensions.DidFinishDownloadingToUrl(AVFoundation.IAVAssetDownloadDelegate,Foundation.NSUrlSession,AVFoundation.AVAssetDownloadTask,Foundation.NSUrl) @@ -25695,10 +25597,7 @@ M:AVFoundation.AVAssetTrack.LoadAssociatedTracksAsync(System.String) M:AVFoundation.AVAssetTrack.LoadMetadataAsync(System.String) M:AVFoundation.AVAssetTrack.LoadSamplePresentationTimeAsync(CoreMedia.CMTime) M:AVFoundation.AVAssetTrack.LoadSegmentAsync(CoreMedia.CMTime) -M:AVFoundation.AVAssetTrackGroup.#ctor M:AVFoundation.AVAssetTrackGroup.Copy(Foundation.NSZone) -M:AVFoundation.AVAssetTrackSegment.#ctor -M:AVFoundation.AVAssetVariantAudioRenditionSpecificAttributes.#ctor M:AVFoundation.AVAssetVariantQualifier.Copy(Foundation.NSZone) M:AVFoundation.AVAssetWriter.CanApplyOutputSettings(AVFoundation.AudioSettings,System.String) M:AVFoundation.AVAssetWriter.CanApplyOutputSettings(AVFoundation.AVVideoSettingsCompressed,System.String) @@ -25718,15 +25617,10 @@ M:AVFoundation.AVAssetWriterInput.Create(System.String,AVFoundation.AVVideoSetti M:AVFoundation.AVAssetWriterInput.Create(System.String,AVFoundation.AVVideoSettingsCompressed) M:AVFoundation.AVAssetWriterInputPixelBufferAdaptor.#ctor(AVFoundation.AVAssetWriterInput,CoreVideo.CVPixelBufferAttributes) M:AVFoundation.AVAssetWriterInputPixelBufferAdaptor.Create(AVFoundation.AVAssetWriterInput,CoreVideo.CVPixelBufferAttributes) -M:AVFoundation.AVAsynchronousCIImageFilteringRequest.#ctor M:AVFoundation.AVAsynchronousCIImageFilteringRequest.Copy(Foundation.NSZone) -M:AVFoundation.AVAsynchronousKeyValueLoading.#ctor M:AVFoundation.AVAsynchronousKeyValueLoading.GetStatusOfValue(System.String,Foundation.NSError@) M:AVFoundation.AVAsynchronousKeyValueLoading.LoadValuesAsynchronously(System.String[],System.Action) -M:AVFoundation.AVAsynchronousVideoCompositionRequest.#ctor M:AVFoundation.AVAsynchronousVideoCompositionRequest.Copy(Foundation.NSZone) -M:AVFoundation.AVAsynchronousKeyValueLoading.GetStatusOfValue(System.String,Foundation.NSError@) -M:AVFoundation.AVAsynchronousKeyValueLoading.LoadValuesAsynchronously(System.String[],System.Action) M:AVFoundation.AVAudio3DAngularOrientation.Equals(AVFoundation.AVAudio3DAngularOrientation) M:AVFoundation.AVAudio3DAngularOrientation.Equals(System.Object) M:AVFoundation.AVAudio3DAngularOrientation.GetHashCode @@ -25812,13 +25706,11 @@ M:AVFoundation.AVAudioFormat.op_Inequality(AVFoundation.AVAudioFormat,AVFoundati M:AVFoundation.AVAudioInputNode.DestinationForMixer(AVFoundation.AVAudioNode,System.UIntPtr) M:AVFoundation.AVAudioInputNode.SetManualRenderingInputPcmFormat(AVFoundation.AVAudioFormat,AVFoundation.AVAudioIONodeInputBlock) M:AVFoundation.AVAudioIONode.SetVoiceProcessingEnabled(System.Boolean,Foundation.NSError@) -M:AVFoundation.AVAudioMix.#ctor M:AVFoundation.AVAudioMix.Copy(Foundation.NSZone) M:AVFoundation.AVAudioMix.MutableCopy(Foundation.NSZone) M:AVFoundation.AVAudioMixerNode.#ctor M:AVFoundation.AVAudioMixerNode.DestinationForMixer(AVFoundation.AVAudioNode,System.UIntPtr) M:AVFoundation.AVAudioMixingDestination.DestinationForMixer(AVFoundation.AVAudioNode,System.UIntPtr) -M:AVFoundation.AVAudioMixInputParameters.#ctor M:AVFoundation.AVAudioMixInputParameters.Copy(Foundation.NSZone) M:AVFoundation.AVAudioMixInputParameters.MutableCopy(Foundation.NSZone) M:AVFoundation.AVAudioNode.GetBusInputFormat(System.UIntPtr) @@ -26060,14 +25952,11 @@ M:AVFoundation.AVBeatRange.ToString M:AVFoundation.AVCaption.Copy(Foundation.NSZone) M:AVFoundation.AVCaption.EncodeTo(Foundation.NSCoder) M:AVFoundation.AVCaption.MutableCopy(Foundation.NSZone) -M:AVFoundation.AVCaption.EncodeTo(Foundation.NSCoder) M:AVFoundation.AVCaptionDimension.Create(System.Runtime.InteropServices.NFloat,AVFoundation.AVCaptionUnitsType) M:AVFoundation.AVCaptionFormatConformer.#ctor(AVFoundation.AVCaptionSettings) M:AVFoundation.AVCaptionFormatConformer.CreateFromSettings(AVFoundation.AVCaptionSettings) M:AVFoundation.AVCaptionPoint.Create(AVFoundation.AVCaptionDimension,AVFoundation.AVCaptionDimension) -M:AVFoundation.AVCaptionRegion.#ctor M:AVFoundation.AVCaptionRegion.Copy(Foundation.NSZone) -M:AVFoundation.AVCaptionRenderer.#ctor M:AVFoundation.AVCaptionRendererScene.Copy(Foundation.NSZone) M:AVFoundation.AVCaptionRuby.Copy(Foundation.NSZone) M:AVFoundation.AVCaptionRuby.EncodeTo(Foundation.NSCoder) @@ -26232,13 +26121,10 @@ M:AVFoundation.AVContentKeySessionServerPlaybackContextOptions.#ctor(Foundation. M:AVFoundation.AVContentProposal.#ctor(CoreMedia.CMTime,System.String,UIKit.UIImage) M:AVFoundation.AVContentProposal.Copy(Foundation.NSZone) M:AVFoundation.AVContentProposal.Dispose(System.Boolean) -M:AVFoundation.AVCoordinatedPlaybackParticipant.#ctor -M:AVFoundation.AVDateRangeMetadataGroup.#ctor M:AVFoundation.AVDateRangeMetadataGroup.Copy(Foundation.NSZone) M:AVFoundation.AVDateRangeMetadataGroup.MutableCopy(Foundation.NSZone) M:AVFoundation.AVDelegatingPlaybackCoordinator.Dispose(System.Boolean) M:AVFoundation.AVDepthData.Create(ImageIO.CGImageAuxiliaryDataInfo,Foundation.NSError@) -M:AVFoundation.AVDisplayCriteria.#ctor M:AVFoundation.AVDisplayCriteria.Copy(Foundation.NSZone) M:AVFoundation.AVEdgeWidths.#ctor(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat) M:AVFoundation.AVEdgeWidths.Equals(System.Object) @@ -26274,33 +26160,22 @@ M:AVFoundation.AVFragmentedMovie_AVFragmentedMovieTrackInspection.LoadTracksWith M:AVFoundation.AVFragmentedMovie.#ctor(Foundation.NSData,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject}) M:AVFoundation.AVFragmentedMovie.#ctor(Foundation.NSUrl,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject}) M:AVFoundation.AVFragmentedMovie.IsAssociatedWithFragmentMinder -M:AVFoundation.AVFragmentedMovieMinder.#ctor -M:AVFoundation.AVMediaSelection.#ctor M:AVFoundation.AVMediaSelection.Copy(Foundation.NSZone) M:AVFoundation.AVMediaSelection.Dispose(System.Boolean) M:AVFoundation.AVMediaSelection.MutableCopy(Foundation.NSZone) -M:AVFoundation.AVMediaSelectionGroup.#ctor M:AVFoundation.AVMediaSelectionGroup.Copy(Foundation.NSZone) -M:AVFoundation.AVMediaSelectionOption.#ctor M:AVFoundation.AVMediaSelectionOption.Copy(Foundation.NSZone) M:AVFoundation.AVMetadataBodyObject.Copy(Foundation.NSZone) M:AVFoundation.AVMetadataCatBodyObject.Copy(Foundation.NSZone) M:AVFoundation.AVMetadataDogBodyObject.Copy(Foundation.NSZone) -M:AVFoundation.AVMetadataFaceObject.#ctor M:AVFoundation.AVMetadataFaceObject.Copy(Foundation.NSZone) -M:AVFoundation.AVMetadataGroup.#ctor M:AVFoundation.AVMetadataHumanBodyObject.Copy(Foundation.NSZone) -M:AVFoundation.AVMetadataItem.#ctor M:AVFoundation.AVMetadataItem.Copy(Foundation.NSZone) M:AVFoundation.AVMetadataItem.LoadValuesTaskAsync(System.String[]) M:AVFoundation.AVMetadataItem.MutableCopy(Foundation.NSZone) -M:AVFoundation.AVMetadataItemValueRequest.#ctor -M:AVFoundation.AVMediaSelection.Dispose(System.Boolean) -M:AVFoundation.AVMetadataItem.LoadValuesTaskAsync(System.String[]) M:AVFoundation.AVMetadataItemValueRequest.Dispose(System.Boolean) M:AVFoundation.AVMetadataObjectTypeExtensions.ToFlags(System.Collections.Generic.IEnumerable{Foundation.NSString}) M:AVFoundation.AVMetadataSalientObject.Copy(Foundation.NSZone) -M:AVFoundation.AVMidiPlayer.#ctor M:AVFoundation.AVMidiPlayer.#ctor(Foundation.NSData,Foundation.NSUrl,Foundation.NSError@) M:AVFoundation.AVMidiPlayer.#ctor(Foundation.NSUrl,Foundation.NSUrl,Foundation.NSError@) M:AVFoundation.AVMidiPlayer.Play(System.Action) @@ -26323,8 +26198,6 @@ M:AVFoundation.AVMovie_AVMovieTrackInspection.LoadTracksWithMediaType(AVFoundati M:AVFoundation.AVMovie_AVMovieTrackInspection.LoadTracksWithMediaTypeAsync(AVFoundation.AVMovie,System.String) M:AVFoundation.AVMovie.Copy(Foundation.NSZone) M:AVFoundation.AVMovie.MutableCopy(Foundation.NSZone) -M:AVFoundation.AVMutableAudioMix.#ctor -M:AVFoundation.AVMutableAudioMixInputParameters.#ctor M:AVFoundation.AVMutableCaption.#ctor(System.String,CoreMedia.CMTimeRange) M:AVFoundation.AVMutableComposition_AVMutableCompositionTrackInspection.GetTrack(AVFoundation.AVMutableComposition,System.Int32) M:AVFoundation.AVMutableComposition_AVMutableCompositionTrackInspection.GetTracks(AVFoundation.AVMutableComposition,AVFoundation.AVMediaCharacteristics) @@ -26395,17 +26268,11 @@ M:AVFoundation.AVPlayerItem.SeekAsync(CoreMedia.CMTime,CoreMedia.CMTime,CoreMedi M:AVFoundation.AVPlayerItem.SeekAsync(CoreMedia.CMTime) M:AVFoundation.AVPlayerItem.SeekAsync(Foundation.NSDate,System.Boolean@) M:AVFoundation.AVPlayerItem.SeekAsync(Foundation.NSDate) -M:AVFoundation.AVPlayerItemAccessLog.#ctor M:AVFoundation.AVPlayerItemAccessLog.Copy(Foundation.NSZone) -M:AVFoundation.AVPlayerItemAccessLogEvent.#ctor M:AVFoundation.AVPlayerItemAccessLogEvent.Copy(Foundation.NSZone) M:AVFoundation.AVPlayerItemErrorEventArgs.#ctor(Foundation.NSNotification) -M:AVFoundation.AVPlayerItemErrorLog.#ctor M:AVFoundation.AVPlayerItemErrorLog.Copy(Foundation.NSZone) -M:AVFoundation.AVPlayerItemErrorLogEvent.#ctor M:AVFoundation.AVPlayerItemErrorLogEvent.Copy(Foundation.NSZone) -M:AVFoundation.AVPlayerItemLegibleOutput.#ctor -M:AVFoundation.AVPlayerItemErrorEventArgs.#ctor(Foundation.NSNotification) M:AVFoundation.AVPlayerItemLegibleOutputPushDelegate_Extensions.DidOutputAttributedStrings(AVFoundation.IAVPlayerItemLegibleOutputPushDelegate,AVFoundation.AVPlayerItemLegibleOutput,Foundation.NSAttributedString[],CoreMedia.CMSampleBuffer[],CoreMedia.CMTime) M:AVFoundation.AVPlayerItemLegibleOutputPushDelegate.DidOutputAttributedStrings(AVFoundation.AVPlayerItemLegibleOutput,Foundation.NSAttributedString[],CoreMedia.CMSampleBuffer[],CoreMedia.CMTime) M:AVFoundation.AVPlayerItemMetadataCollector.Dispose(System.Boolean) @@ -26434,14 +26301,11 @@ M:AVFoundation.AVPlayerPlaybackCoordinatorDelegate_Extensions.GetInterstitialTim M:AVFoundation.AVPlayerPlaybackCoordinatorDelegate.GetIdentifier(AVFoundation.AVPlayerPlaybackCoordinator,AVFoundation.AVPlayerItem) M:AVFoundation.AVPlayerPlaybackCoordinatorDelegate.GetInterstitialTimeRanges(AVFoundation.AVPlayerPlaybackCoordinator,AVFoundation.AVPlayerItem) M:AVFoundation.AVPlayerRateDidChangeEventArgs.#ctor(Foundation.NSNotification) -M:AVFoundation.AVQueuePlayer.#ctor -M:AVFoundation.AVSampleBufferAudioRenderer.#ctor M:AVFoundation.AVSampleBufferAudioRenderer.Enqueue(CoreMedia.CMSampleBuffer) M:AVFoundation.AVSampleBufferAudioRenderer.Flush M:AVFoundation.AVSampleBufferAudioRenderer.FlushAsync(CoreMedia.CMTime) M:AVFoundation.AVSampleBufferAudioRenderer.RequestMediaData(CoreFoundation.DispatchQueue,System.Action) M:AVFoundation.AVSampleBufferAudioRenderer.StopRequestingMediaData -M:AVFoundation.AVSampleBufferAudioRenderer.FlushAsync(CoreMedia.CMTime) M:AVFoundation.AVSampleBufferDisplayLayer_ProtectedContent.GetOutputObscuredDueToInsufficientExternalProtection(AVFoundation.AVSampleBufferDisplayLayer) M:AVFoundation.AVSampleBufferGenerator.NotifyOfDataReadyAsync(CoreMedia.CMSampleBuffer) M:AVFoundation.AVSampleBufferRenderSynchronizer.RemoveAsync(AVFoundation.IAVQueuedSampleBufferRendering,CoreMedia.CMTime) @@ -26495,7 +26359,6 @@ M:AVFoundation.AVTextStyleRule.#ctor(CoreMedia.CMTextMarkupAttributes) M:AVFoundation.AVTextStyleRule.Copy(Foundation.NSZone) M:AVFoundation.AVTextStyleRule.FromTextMarkupAttributes(CoreMedia.CMTextMarkupAttributes,System.String) M:AVFoundation.AVTextStyleRule.FromTextMarkupAttributes(CoreMedia.CMTextMarkupAttributes) -M:AVFoundation.AVTimedMetadataGroup.#ctor M:AVFoundation.AVTimedMetadataGroup.Copy(Foundation.NSZone) M:AVFoundation.AVTimedMetadataGroup.MutableCopy(Foundation.NSZone) M:AVFoundation.AVUrlAsset.#ctor(Foundation.NSUrl,AVFoundation.AVUrlAssetOptions) @@ -26524,22 +26387,14 @@ M:AVFoundation.AVVideoCompositing.RenderContextChanged(AVFoundation.AVVideoCompo M:AVFoundation.AVVideoCompositing.RequiredPixelBufferAttributesForRenderContext M:AVFoundation.AVVideoCompositing.SourcePixelBufferAttributes M:AVFoundation.AVVideoCompositing.StartVideoCompositionRequest(AVFoundation.AVAsynchronousVideoCompositionRequest) -M:AVFoundation.AVVideoComposition.#ctor M:AVFoundation.AVVideoComposition.Copy(Foundation.NSZone) M:AVFoundation.AVVideoComposition.MutableCopy(Foundation.NSZone) -M:AVFoundation.AVVideoCompositionCoreAnimationTool.#ctor -M:AVFoundation.AVVideoCompositionInstruction.#ctor M:AVFoundation.AVVideoCompositionInstruction.Copy(Foundation.NSZone) M:AVFoundation.AVVideoCompositionInstruction.EncodeTo(Foundation.NSCoder) M:AVFoundation.AVVideoCompositionInstruction.MutableCopy(Foundation.NSZone) -M:AVFoundation.AVVideoCompositionLayerInstruction.#ctor M:AVFoundation.AVVideoCompositionLayerInstruction.Copy(Foundation.NSZone) M:AVFoundation.AVVideoCompositionLayerInstruction.EncodeTo(Foundation.NSCoder) M:AVFoundation.AVVideoCompositionLayerInstruction.MutableCopy(Foundation.NSZone) -M:AVFoundation.AVVideoCompositionRenderContext.#ctor -M:AVFoundation.AVVideoCompositionRenderHint.#ctor -M:AVFoundation.AVVideoCompositionInstruction.EncodeTo(Foundation.NSCoder) -M:AVFoundation.AVVideoCompositionLayerInstruction.EncodeTo(Foundation.NSCoder) M:AVFoundation.AVVideoCompositionValidationHandling_Extensions.ShouldContinueValidatingAfterFindingEmptyTimeRange(AVFoundation.IAVVideoCompositionValidationHandling,AVFoundation.AVVideoComposition,CoreMedia.CMTimeRange) M:AVFoundation.AVVideoCompositionValidationHandling_Extensions.ShouldContinueValidatingAfterFindingInvalidTimeRangeInInstruction(AVFoundation.IAVVideoCompositionValidationHandling,AVFoundation.AVVideoComposition,AVFoundation.AVVideoCompositionInstruction) M:AVFoundation.AVVideoCompositionValidationHandling_Extensions.ShouldContinueValidatingAfterFindingInvalidTrackIDInInstruction(AVFoundation.IAVVideoCompositionValidationHandling,AVFoundation.AVVideoComposition,AVFoundation.AVVideoCompositionInstruction,AVFoundation.AVVideoCompositionLayerInstruction,AVFoundation.AVAsset) @@ -26582,8 +26437,6 @@ M:AVKit.AVAudioSession_AVPlaybackRouteSelecting.PrepareRouteSelectionForPlayback M:AVKit.AVCaptureEventInteraction.DidMoveToView(UIKit.UIView) M:AVKit.AVCaptureEventInteraction.Dispose(System.Boolean) M:AVKit.AVCaptureEventInteraction.WillMoveToView(UIKit.UIView) -M:AVKit.AVCaptureView.#ctor -M:AVKit.AVCaptureEventInteraction.Dispose(System.Boolean) M:AVKit.AVCaptureView.#ctor(CoreGraphics.CGRect) M:AVKit.AVCaptureView.Dispose(System.Boolean) M:AVKit.AVCaptureViewDelegate.StartRecording(AVKit.AVCaptureView,AVFoundation.AVCaptureFileOutput) @@ -26594,7 +26447,6 @@ M:AVKit.AVCustomRoutingControllerDelegate_Extensions.EventDidTimeOut(AVKit.IAVCu M:AVKit.AVCustomRoutingControllerDelegate.DidSelectItem(AVRouting.AVCustomRoutingController,AVRouting.AVCustomRoutingActionItem) M:AVKit.AVCustomRoutingControllerDelegate.EventDidTimeOut(AVRouting.AVCustomRoutingController,AVRouting.AVCustomRoutingEvent) M:AVKit.AVCustomRoutingControllerDelegate.HandleEvent(AVRouting.AVCustomRoutingController,AVRouting.AVCustomRoutingEvent,AVKit.AVCustomRoutingControllerDelegateCompletionHandler) -M:AVKit.AVInterstitialTimeRange.#ctor M:AVKit.AVInterstitialTimeRange.Copy(Foundation.NSZone) M:AVKit.AVInterstitialTimeRange.EncodeTo(Foundation.NSCoder) M:AVKit.AVPictureInPictureController.Dispose(System.Boolean) @@ -26784,11 +26636,9 @@ M:CallKit.CXCallDirectoryManager.GetEnabledStatusForExtensionAsync(System.String M:CallKit.CXCallDirectoryManager.OpenSettingsAsync M:CallKit.CXCallDirectoryManager.ReloadExtensionAsync(System.String) M:CallKit.CXCallObserverDelegate.CallChanged(CallKit.CXCallObserver,CallKit.CXCall) -M:CallKit.CXCallUpdate.#ctor M:CallKit.CXCallUpdate.Copy(Foundation.NSZone) M:CallKit.CXEndCallAction.#ctor(Foundation.NSUuid) M:CallKit.CXHandle.Copy(Foundation.NSZone) -M:CallKit.CXEndCallAction.#ctor(Foundation.NSUuid) M:CallKit.CXHandle.EncodeTo(Foundation.NSCoder) M:CallKit.CXProvider.GetPendingCallActions``1(Foundation.NSUuid) M:CallKit.CXProvider.ReportNewIncomingCallAsync(Foundation.NSUuid,CallKit.CXCallUpdate) @@ -26830,7 +26680,6 @@ M:CarPlay.CPAlertAction.#ctor(System.String,CarPlay.CPAlertActionStyle,System.Ac M:CarPlay.CPAlertAction.#ctor(System.String,UIKit.UIColor,System.Action{CarPlay.CPAlertAction}) M:CarPlay.CPAlertAction.EncodeTo(Foundation.NSCoder) M:CarPlay.CPAlertTemplate.#ctor(System.String[],CarPlay.CPAlertAction[]) -M:CarPlay.CPAlertAction.EncodeTo(Foundation.NSCoder) M:CarPlay.CPApplicationDelegate_Extensions.DidSelectManeuver(CarPlay.ICPApplicationDelegate,UIKit.UIApplication,CarPlay.CPManeuver) M:CarPlay.CPApplicationDelegate_Extensions.DidSelectNavigationAlert(CarPlay.ICPApplicationDelegate,UIKit.UIApplication,CarPlay.CPNavigationAlert) M:CarPlay.CPApplicationDelegate.AccessibilityPerformMagicTap @@ -26899,7 +26748,6 @@ M:CarPlay.CPBarButton.#ctor(System.String,CarPlay.CPBarButtonHandler) M:CarPlay.CPBarButton.#ctor(UIKit.UIImage,CarPlay.CPBarButtonHandler) M:CarPlay.CPBarButton.EncodeTo(Foundation.NSCoder) M:CarPlay.CPButton.#ctor(UIKit.UIImage,System.Action{CarPlay.CPButton}) -M:CarPlay.CPContact.#ctor M:CarPlay.CPContact.#ctor(System.String,UIKit.UIImage) M:CarPlay.CPContact.EncodeTo(Foundation.NSCoder) M:CarPlay.CPContactCallButton.#ctor(System.Action{CarPlay.CPButton}) @@ -26923,16 +26771,6 @@ M:CarPlay.CPInformationItem.EncodeTo(Foundation.NSCoder) M:CarPlay.CPInformationRatingItem.#ctor(Foundation.NSNumber,Foundation.NSNumber,System.String,System.String) M:CarPlay.CPInformationTemplate.#ctor(System.String,CarPlay.CPInformationTemplateLayout,CarPlay.CPInformationItem[],CarPlay.CPTextButton[]) M:CarPlay.CPInstrumentClusterController.Dispose(System.Boolean) -M:CarPlay.CPBarButton.EncodeTo(Foundation.NSCoder) -M:CarPlay.CPContact.EncodeTo(Foundation.NSCoder) -M:CarPlay.CPContactCallButton.#ctor(UIKit.UIImage,System.Action{CarPlay.CPButton}) -M:CarPlay.CPContactDirectionsButton.#ctor(UIKit.UIImage,System.Action{CarPlay.CPButton}) -M:CarPlay.CPContactMessageButton.#ctor(UIKit.UIImage,System.Action{CarPlay.CPButton}) -M:CarPlay.CPDashboardButton.EncodeTo(Foundation.NSCoder) -M:CarPlay.CPGridButton.EncodeTo(Foundation.NSCoder) -M:CarPlay.CPImageSet.EncodeTo(Foundation.NSCoder) -M:CarPlay.CPInformationItem.EncodeTo(Foundation.NSCoder) -M:CarPlay.CPInstrumentClusterController.Dispose(System.Boolean) M:CarPlay.CPInstrumentClusterControllerDelegate_Extensions.DidChangeCompassSetting(CarPlay.ICPInstrumentClusterControllerDelegate,CarPlay.CPInstrumentClusterController,CarPlay.CPInstrumentClusterSetting) M:CarPlay.CPInstrumentClusterControllerDelegate_Extensions.DidChangeSpeedLimitSetting(CarPlay.ICPInstrumentClusterControllerDelegate,CarPlay.CPInstrumentClusterController,CarPlay.CPInstrumentClusterSetting) M:CarPlay.CPInstrumentClusterControllerDelegate_Extensions.DidZoomIn(CarPlay.ICPInstrumentClusterControllerDelegate,CarPlay.CPInstrumentClusterController) @@ -26973,10 +26811,8 @@ M:CarPlay.CPInterfaceControllerDelegate.TemplateDidAppear(CarPlay.CPTemplate,Sys M:CarPlay.CPInterfaceControllerDelegate.TemplateDidDisappear(CarPlay.CPTemplate,System.Boolean) M:CarPlay.CPInterfaceControllerDelegate.TemplateWillAppear(CarPlay.CPTemplate,System.Boolean) M:CarPlay.CPInterfaceControllerDelegate.TemplateWillDisappear(CarPlay.CPTemplate,System.Boolean) -M:CarPlay.CPLane.#ctor M:CarPlay.CPLane.Copy(Foundation.NSZone) M:CarPlay.CPLane.EncodeTo(Foundation.NSCoder) -M:CarPlay.CPLaneGuidance.#ctor M:CarPlay.CPLaneGuidance.Copy(Foundation.NSZone) M:CarPlay.CPLaneGuidance.EncodeTo(Foundation.NSCoder) M:CarPlay.CPListImageRowItem.#ctor(System.String,UIKit.UIImage[],System.String[]) @@ -27002,21 +26838,13 @@ M:CarPlay.CPListTemplate.#ctor(System.String,CarPlay.CPListSection[]) M:CarPlay.CPListTemplate.Dispose(System.Boolean) M:CarPlay.CPListTemplate.GetIndexPath(CarPlay.ICPListTemplateItem) M:CarPlay.CPListTemplate.UpdateSections(CarPlay.CPListSection[]) -M:CarPlay.CPListTemplateDelegate.#ctor M:CarPlay.CPListTemplateDelegate.DidSelectListItem(CarPlay.CPListTemplate,CarPlay.CPListItem,System.Action) -M:CarPlay.CPManeuver.#ctor M:CarPlay.CPManeuver.Copy(Foundation.NSZone) M:CarPlay.CPManeuver.Dispose(System.Boolean) M:CarPlay.CPManeuver.EncodeTo(Foundation.NSCoder) M:CarPlay.CPMapButton.#ctor(System.Action{CarPlay.CPMapButton}) M:CarPlay.CPMapButton.EncodeTo(Foundation.NSCoder) M:CarPlay.CPMapTemplate.DismissNavigationAlert(System.Boolean,System.Action{System.Boolean}) -M:CarPlay.CPListItem.EncodeTo(Foundation.NSCoder) -M:CarPlay.CPListSection.EncodeTo(Foundation.NSCoder) -M:CarPlay.CPListTemplate.Dispose(System.Boolean) -M:CarPlay.CPListTemplateDelegate.DidSelectListItem(CarPlay.CPListTemplate,CarPlay.CPListItem,System.Action) -M:CarPlay.CPManeuver.EncodeTo(Foundation.NSCoder) -M:CarPlay.CPMapButton.EncodeTo(Foundation.NSCoder) M:CarPlay.CPMapTemplate.DismissNavigationAlertAsync(System.Boolean) M:CarPlay.CPMapTemplate.DismissPanningInterface(System.Boolean) M:CarPlay.CPMapTemplate.Dispose(System.Boolean) @@ -27071,10 +26899,8 @@ M:CarPlay.CPMapTemplateDelegate.StartedTrip(CarPlay.CPMapTemplate,CarPlay.CPTrip M:CarPlay.CPMapTemplateDelegate.WillDismissNavigationAlert(CarPlay.CPMapTemplate,CarPlay.CPNavigationAlert,CarPlay.CPNavigationAlertDismissalContext) M:CarPlay.CPMapTemplateDelegate.WillDismissPanningInterface(CarPlay.CPMapTemplate) M:CarPlay.CPMapTemplateDelegate.WillShowNavigationAlert(CarPlay.CPMapTemplate,CarPlay.CPNavigationAlert) -M:CarPlay.CPMessageComposeBarButton.#ctor M:CarPlay.CPMessageComposeBarButton.#ctor(UIKit.UIImage) M:CarPlay.CPMessageComposeBarButton.Create -M:CarPlay.CPMessageListItem.#ctor M:CarPlay.CPMessageListItem.#ctor(System.String,System.String,CarPlay.CPMessageListItemLeadingConfiguration,CarPlay.CPMessageListItemTrailingConfiguration,System.String,System.String,CarPlay.CPMessageListItemType) M:CarPlay.CPMessageListItem.#ctor(System.String,System.String,CarPlay.CPMessageListItemLeadingConfiguration,CarPlay.CPMessageListItemTrailingConfiguration,System.String,System.String) M:CarPlay.CPMessageListItemLeadingConfiguration.#ctor(CarPlay.CPMessageLeadingItem,UIKit.UIImage,System.Boolean) @@ -27091,17 +26917,11 @@ M:CarPlay.CPNavigationSession.PauseTrip(CarPlay.CPTripPauseReason,System.String, M:CarPlay.CPNavigationSession.PauseTrip(CarPlay.CPTripPauseReason,System.String) M:CarPlay.CPNavigationSession.ResumeTrip(CarPlay.CPRouteInformation) M:CarPlay.CPNavigationSession.UpdateTravelEstimates(CarPlay.CPTravelEstimates,CarPlay.CPManeuver) -M:CarPlay.CPNowPlayingAddToLibraryButton.#ctor M:CarPlay.CPNowPlayingAddToLibraryButton.#ctor(System.Action{CarPlay.CPNowPlayingButton}) M:CarPlay.CPNowPlayingButton.#ctor(System.Action{CarPlay.CPNowPlayingButton}) -M:CarPlay.CPMessageListItem.#ctor(System.String,System.String,CarPlay.CPMessageListItemLeadingConfiguration,CarPlay.CPMessageListItemTrailingConfiguration,System.String,System.String,CarPlay.CPMessageListItemType) -M:CarPlay.CPMessageListItem.#ctor(System.String,System.String,CarPlay.CPMessageListItemLeadingConfiguration,CarPlay.CPMessageListItemTrailingConfiguration,System.String,System.String) -M:CarPlay.CPNavigationAlert.EncodeTo(Foundation.NSCoder) -M:CarPlay.CPNowPlayingAddToLibraryButton.#ctor(System.Action{CarPlay.CPNowPlayingButton}) M:CarPlay.CPNowPlayingButton.EncodeTo(Foundation.NSCoder) M:CarPlay.CPNowPlayingImageButton.#ctor(System.Action{CarPlay.CPNowPlayingButton}) M:CarPlay.CPNowPlayingImageButton.#ctor(UIKit.UIImage,System.Action{CarPlay.CPNowPlayingButton}) -M:CarPlay.CPNowPlayingMoreButton.#ctor M:CarPlay.CPNowPlayingMoreButton.#ctor(System.Action{CarPlay.CPNowPlayingButton}) M:CarPlay.CPNowPlayingPlaybackRateButton.#ctor(System.Action{CarPlay.CPNowPlayingButton}) M:CarPlay.CPNowPlayingRepeatButton.#ctor(System.Action{CarPlay.CPNowPlayingButton}) @@ -27117,7 +26937,6 @@ M:CarPlay.CPPointOfInterest.EncodeTo(Foundation.NSCoder) M:CarPlay.CPPointOfInterestTemplate.#ctor(System.String,CarPlay.CPPointOfInterest[],System.IntPtr) M:CarPlay.CPPointOfInterestTemplate.Dispose(System.Boolean) M:CarPlay.CPPointOfInterestTemplate.SetPointsOfInterest(CarPlay.CPPointOfInterest[],System.IntPtr) -M:CarPlay.CPPointOfInterestTemplate.Dispose(System.Boolean) M:CarPlay.CPPointOfInterestTemplateDelegate_Extensions.DidSelectPointOfInterest(CarPlay.ICPPointOfInterestTemplateDelegate,CarPlay.CPPointOfInterestTemplate,CarPlay.CPPointOfInterest) M:CarPlay.CPPointOfInterestTemplateDelegate.DidChangeMapRegion(CarPlay.CPPointOfInterestTemplate,MapKit.MKCoordinateRegion) M:CarPlay.CPPointOfInterestTemplateDelegate.DidSelectPointOfInterest(CarPlay.CPPointOfInterestTemplate,CarPlay.CPPointOfInterest) @@ -27125,8 +26944,6 @@ M:CarPlay.CPRouteChoice.#ctor(System.String[],System.String[],System.String[]) M:CarPlay.CPRouteChoice.Copy(Foundation.NSZone) M:CarPlay.CPRouteChoice.EncodeTo(Foundation.NSCoder) M:CarPlay.CPRouteInformation.#ctor(CarPlay.CPManeuver[],CarPlay.CPLaneGuidance[],CarPlay.CPManeuver[],CarPlay.CPLaneGuidance,CarPlay.CPTravelEstimates,CarPlay.CPTravelEstimates) -M:CarPlay.CPSearchTemplate.#ctor -M:CarPlay.CPSearchTemplate.Dispose(System.Boolean) M:CarPlay.CPSearchTemplate.Dispose(System.Boolean) M:CarPlay.CPSearchTemplateDelegate_Extensions.SearchButtonPressed(CarPlay.ICPSearchTemplateDelegate,CarPlay.CPSearchTemplate) M:CarPlay.CPSearchTemplateDelegate.SearchButtonPressed(CarPlay.CPSearchTemplate) @@ -27143,11 +26960,8 @@ M:CarPlay.CPTabBarTemplate.Dispose(System.Boolean) M:CarPlay.CPTabBarTemplate.SelectTemplate(CarPlay.CPTemplate) M:CarPlay.CPTabBarTemplate.SelectTemplate(System.IntPtr) M:CarPlay.CPTabBarTemplate.UpdateTemplates(CarPlay.CPTemplate[]) -M:CarPlay.CPTabBarTemplateDelegate.#ctor M:CarPlay.CPTabBarTemplateDelegate.DidSelectTemplate(CarPlay.CPTabBarTemplate,CarPlay.CPTemplate) M:CarPlay.CPTemplate.EncodeTo(Foundation.NSCoder) -M:CarPlay.CPTemplateApplicationDashboardScene.#ctor -M:CarPlay.CPTemplateApplicationDashboardScene.#ctor(UIKit.UISceneSession,UIKit.UISceneConnectionOptions) M:CarPlay.CPTemplateApplicationDashboardScene.#ctor(UIKit.UISceneSession,UIKit.UISceneConnectionOptions) M:CarPlay.CPTemplateApplicationDashboardSceneDelegate_Extensions.DidConnectDashboardController(CarPlay.ICPTemplateApplicationDashboardSceneDelegate,CarPlay.CPTemplateApplicationDashboardScene,CarPlay.CPDashboardController,UIKit.UIWindow) M:CarPlay.CPTemplateApplicationDashboardSceneDelegate_Extensions.DidDisconnectDashboardController(CarPlay.ICPTemplateApplicationDashboardSceneDelegate,CarPlay.CPTemplateApplicationDashboardScene,CarPlay.CPDashboardController,UIKit.UIWindow) @@ -27220,22 +27034,12 @@ M:CarPlay.CPTravelEstimates.#ctor(Foundation.NSMeasurement{Foundation.NSUnitLeng M:CarPlay.CPTravelEstimates.EncodeTo(Foundation.NSCoder) M:CarPlay.CPTrip.#ctor(MapKit.MKMapItem,MapKit.MKMapItem,CarPlay.CPRouteChoice[]) M:CarPlay.CPTrip.EncodeTo(Foundation.NSCoder) -M:CarPlay.CPTripPreviewTextConfiguration.#ctor M:CarPlay.CPTripPreviewTextConfiguration.#ctor(System.String,System.String,System.String) M:CarPlay.CPTripPreviewTextConfiguration.EncodeTo(Foundation.NSCoder) -M:CarPlay.CPVoiceControlState.#ctor M:CarPlay.CPVoiceControlState.#ctor(System.String,System.String[],UIKit.UIImage,System.Boolean) M:CarPlay.CPVoiceControlState.EncodeTo(Foundation.NSCoder) M:CarPlay.CPVoiceControlTemplate.#ctor(CarPlay.CPVoiceControlState[]) M:CarPlay.CPVoiceControlTemplate.ActivateVoiceControlState(System.String) -M:CarPlay.CPWindow.#ctor -M:CarPlay.CPWindow.#ctor(CoreGraphics.CGRect) -M:CarPlay.CPWindow.CPWindowAppearance.#ctor(System.IntPtr) -M:CarPlay.CPWindow.Dispose(System.Boolean) -M:CarPlay.CPTravelEstimates.EncodeTo(Foundation.NSCoder) -M:CarPlay.CPTrip.EncodeTo(Foundation.NSCoder) -M:CarPlay.CPTripPreviewTextConfiguration.EncodeTo(Foundation.NSCoder) -M:CarPlay.CPVoiceControlState.EncodeTo(Foundation.NSCoder) M:CarPlay.CPWindow.#ctor(CoreGraphics.CGRect) M:CarPlay.CPWindow.CPWindowAppearance.#ctor(System.IntPtr) M:CarPlay.CPWindow.Dispose(System.Boolean) @@ -27270,24 +27074,17 @@ M:CFNetwork.CFHTTPStream.GetResponseHeader M:CFNetwork.CFHTTPStream.SetProxy(CoreFoundation.CFProxySettings) M:Cinematic.CNAssetInfo.CheckIfCinematicAsync(AVFoundation.AVAsset) M:Cinematic.CNAssetInfo.LoadFromAssetAsync(AVFoundation.AVAsset) -M:Cinematic.CNBoundsPrediction.#ctor M:Cinematic.CNBoundsPrediction.Copy(Foundation.NSZone) M:Cinematic.CNBoundsPrediction.MutableCopy(Foundation.NSZone) -M:Cinematic.CNCompositionInfo.#ctor -M:Cinematic.CNCustomDetectionTrack.#ctor M:Cinematic.CNDecision.#ctor(CoreMedia.CMTime,System.Int64,System.Boolean,Cinematic.CNDecisionIdentifierType) M:Cinematic.CNDecision.Copy(Foundation.NSZone) M:Cinematic.CNDetection.Copy(Foundation.NSZone) M:Cinematic.CNDetectionTrack.Copy(Foundation.NSZone) -M:Cinematic.CNFixedDetectionTrack.#ctor M:Cinematic.CNRenderingSessionAttributes.LoadAsync(AVFoundation.AVAsset) M:Cinematic.CNRenderingSessionFrameAttributes.Copy(Foundation.NSZone) M:Cinematic.CNRenderingSessionFrameAttributes.MutableCopy(Foundation.NSZone) M:Cinematic.CNScript.LoadAsync(AVFoundation.AVAsset,Cinematic.CNScriptChanges,Foundation.NSProgress) M:Cinematic.CNScriptFrame.Copy(Foundation.NSZone) -M:Cinematic.CNDecision.#ctor(CoreMedia.CMTime,System.Int64,System.Boolean,Cinematic.CNDecisionIdentifierType) -M:Cinematic.CNRenderingSessionAttributes.LoadAsync(AVFoundation.AVAsset) -M:Cinematic.CNScript.LoadAsync(AVFoundation.AVAsset,Cinematic.CNScriptChanges,Foundation.NSProgress) M:ClassKit.CLSContext.FindDescendantMatchingAsync(System.String[]) M:ClassKit.CLSDataStore.Dispose(System.Boolean) M:ClassKit.CLSDataStore.FetchActivityAsync(Foundation.NSUrl) @@ -27330,21 +27127,15 @@ M:CloudKit.CKDatabase.SaveRecordZoneAsync(CloudKit.CKRecordZone) M:CloudKit.CKDatabase.SaveSubscriptionAsync(CloudKit.CKSubscription) M:CloudKit.CKDatabaseSubscription.Copy(Foundation.NSZone) M:CloudKit.CKDatabaseSubscription.EncodeTo(Foundation.NSCoder) -M:CloudKit.CKFetchRecordZoneChangesConfiguration.#ctor M:CloudKit.CKFetchRecordZoneChangesConfiguration.Copy(Foundation.NSZone) M:CloudKit.CKFetchRecordZoneChangesConfiguration.EncodeTo(Foundation.NSCoder) -M:CloudKit.CKFetchRecordZoneChangesOptions.#ctor M:CloudKit.CKFetchRecordZoneChangesOptions.Copy(Foundation.NSZone) -M:CloudKit.CKDatabaseSubscription.EncodeTo(Foundation.NSCoder) -M:CloudKit.CKFetchRecordZoneChangesConfiguration.EncodeTo(Foundation.NSCoder) M:CloudKit.CKFetchRecordZoneChangesOptions.EncodeTo(Foundation.NSCoder) M:CloudKit.CKLocationSortDescriptor.EncodeTo(Foundation.NSCoder) M:CloudKit.CKNotification.EncodeTo(Foundation.NSCoder) M:CloudKit.CKNotificationID.Copy(Foundation.NSZone) M:CloudKit.CKNotificationID.EncodeTo(Foundation.NSCoder) -M:CloudKit.CKNotificationInfo.#ctor M:CloudKit.CKNotificationInfo.Copy(Foundation.NSZone) -M:CloudKit.CKNotificationID.EncodeTo(Foundation.NSCoder) M:CloudKit.CKNotificationInfo.EncodeTo(Foundation.NSCoder) M:CloudKit.CKOperationConfiguration.Copy(Foundation.NSZone) M:CloudKit.CKOperationConfiguration.EncodeTo(Foundation.NSCoder) @@ -27352,7 +27143,6 @@ M:CloudKit.CKOperationGroup.EncodeTo(Foundation.NSCoder) M:CloudKit.CKQuery.Copy(Foundation.NSZone) M:CloudKit.CKQuery.EncodeTo(Foundation.NSCoder) M:CloudKit.CKQueryCursor.Copy(Foundation.NSZone) -M:CloudKit.CKQuery.EncodeTo(Foundation.NSCoder) M:CloudKit.CKQueryCursor.EncodeTo(Foundation.NSCoder) M:CloudKit.CKQueryNotification.EncodeTo(Foundation.NSCoder) M:CloudKit.CKQuerySubscription.Copy(Foundation.NSZone) @@ -27361,14 +27151,9 @@ M:CloudKit.CKRecord.Copy(Foundation.NSZone) M:CloudKit.CKRecord.EncodeTo(Foundation.NSCoder) M:CloudKit.CKRecordID.Copy(Foundation.NSZone) M:CloudKit.CKRecordID.EncodeTo(Foundation.NSCoder) -M:CloudKit.CKRecordValue.#ctor M:CloudKit.CKRecordZone.Copy(Foundation.NSZone) M:CloudKit.CKRecordZone.EncodeTo(Foundation.NSCoder) M:CloudKit.CKRecordZoneID.Copy(Foundation.NSZone) -M:CloudKit.CKQuerySubscription.EncodeTo(Foundation.NSCoder) -M:CloudKit.CKRecord.EncodeTo(Foundation.NSCoder) -M:CloudKit.CKRecordID.EncodeTo(Foundation.NSCoder) -M:CloudKit.CKRecordZone.EncodeTo(Foundation.NSCoder) M:CloudKit.CKRecordZoneID.EncodeTo(Foundation.NSCoder) M:CloudKit.CKRecordZoneNotification.EncodeTo(Foundation.NSCoder) M:CloudKit.CKRecordZoneSubscription.Copy(Foundation.NSZone) @@ -27382,11 +27167,6 @@ M:CloudKit.CKShareMetadata.EncodeTo(Foundation.NSCoder) M:CloudKit.CKShareParticipant.Copy(Foundation.NSZone) M:CloudKit.CKShareParticipant.EncodeTo(Foundation.NSCoder) M:CloudKit.CKSubscription.Copy(Foundation.NSZone) -M:CloudKit.CKRecordZoneSubscription.EncodeTo(Foundation.NSCoder) -M:CloudKit.CKReference.EncodeTo(Foundation.NSCoder) -M:CloudKit.CKServerChangeToken.EncodeTo(Foundation.NSCoder) -M:CloudKit.CKShareMetadata.EncodeTo(Foundation.NSCoder) -M:CloudKit.CKShareParticipant.EncodeTo(Foundation.NSCoder) M:CloudKit.CKSubscription.EncodeTo(Foundation.NSCoder) M:CloudKit.CKSyncEngine.CancelOperationsAsync M:CloudKit.CKSyncEngine.FetchChangesAsync @@ -27398,37 +27178,16 @@ M:CloudKit.CKSyncEngineDelegate_Extensions.SyncEngine(CloudKit.ICKSyncEngineDele M:CloudKit.CKSyncEngineDelegate.SyncEngine(CloudKit.CKSyncEngine,CloudKit.CKSyncEngineEvent) M:CloudKit.CKSyncEngineDelegate.SyncEngine(CloudKit.CKSyncEngine,CloudKit.CKSyncEngineFetchChangesContext) M:CloudKit.CKSyncEngineDelegate.SyncEngine(CloudKit.CKSyncEngine,CloudKit.CKSyncEngineSendChangesContext) -M:CloudKit.CKSyncEngineDidFetchChangesEvent.#ctor -M:CloudKit.CKSyncEngineDidFetchRecordZoneChangesEvent.#ctor -M:CloudKit.CKSyncEngineDidSendChangesEvent.#ctor -M:CloudKit.CKSyncEngineFetchChangesOptions.#ctor M:CloudKit.CKSyncEngineFetchChangesOptions.Copy(Foundation.NSZone) -M:CloudKit.CKSyncEngineFetchChangesScope.#ctor M:CloudKit.CKSyncEngineFetchChangesScope.#ctor(Foundation.NSSet{CloudKit.CKRecordZoneID},System.Boolean) M:CloudKit.CKSyncEngineFetchChangesScope.Copy(Foundation.NSZone) -M:CloudKit.CKSyncEngineFetchedDatabaseChangesEvent.#ctor -M:CloudKit.CKSyncEngineFetchedRecordZoneChangesEvent.#ctor -M:CloudKit.CKSyncEnginePendingZoneDelete.#ctor -M:CloudKit.CKSyncEnginePendingZoneSave.#ctor -M:CloudKit.CKSyncEngineSendChangesOptions.#ctor M:CloudKit.CKSyncEngineSendChangesOptions.Copy(Foundation.NSZone) -M:CloudKit.CKSyncEngineSendChangesScope.#ctor M:CloudKit.CKSyncEngineSendChangesScope.#ctor(Foundation.NSSet{CloudKit.CKRecordZoneID},System.Boolean) M:CloudKit.CKSyncEngineSendChangesScope.Copy(Foundation.NSZone) -M:CloudKit.CKSyncEngineSentDatabaseChangesEvent.#ctor -M:CloudKit.CKSyncEngineSentRecordZoneChangesEvent.#ctor M:CloudKit.CKSyncEngineStateSerialization.EncodeTo(Foundation.NSCoder) -M:CloudKit.CKSyncEngineStateUpdateEvent.#ctor -M:CloudKit.CKSyncEngineWillFetchChangesEvent.#ctor -M:CloudKit.CKSyncEngineWillFetchRecordZoneChangesEvent.#ctor -M:CloudKit.CKSyncEngineWillSendChangesEvent.#ctor M:CloudKit.CKUserIdentity.Copy(Foundation.NSZone) M:CloudKit.CKUserIdentity.EncodeTo(Foundation.NSCoder) M:CloudKit.CKUserIdentityLookupInfo.Copy(Foundation.NSZone) -M:CloudKit.CKSyncEngineFetchChangesScope.#ctor(Foundation.NSSet{CloudKit.CKRecordZoneID},System.Boolean) -M:CloudKit.CKSyncEngineSendChangesScope.#ctor(Foundation.NSSet{CloudKit.CKRecordZoneID},System.Boolean) -M:CloudKit.CKSyncEngineStateSerialization.EncodeTo(Foundation.NSCoder) -M:CloudKit.CKUserIdentity.EncodeTo(Foundation.NSCoder) M:CloudKit.CKUserIdentityLookupInfo.EncodeTo(Foundation.NSCoder) M:CloudKit.CKUserIdentityLookupInfo.FromEmail(System.String) M:CloudKit.CKUserIdentityLookupInfo.FromPhoneNumber(System.String) @@ -27456,7 +27215,6 @@ M:Compression.CompressionStream.Write(System.Byte[],System.Int32,System.Int32) M:Compression.CompressionStream.Write(System.ReadOnlySpan{System.Byte}) M:Compression.CompressionStream.WriteAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken) M:Compression.CompressionStream.WriteAsync(System.ReadOnlyMemory{System.Byte},System.Threading.CancellationToken) -M:Contacts.CNChangeHistoryDropEverythingEvent.#ctor M:Contacts.CNChangeHistoryEvent.AcceptEventVisitor(Contacts.ICNChangeHistoryEventVisitor) M:Contacts.CNChangeHistoryEvent.Copy(Foundation.NSZone) M:Contacts.CNChangeHistoryEvent.EncodeTo(Foundation.NSCoder) @@ -27468,7 +27226,6 @@ M:Contacts.CNChangeHistoryEventVisitor_Extensions.RemoveMemberFromGroup(Contacts M:Contacts.CNChangeHistoryEventVisitor_Extensions.RemoveSubgroupFromGroup(Contacts.ICNChangeHistoryEventVisitor,Contacts.CNChangeHistoryRemoveSubgroupFromGroupEvent) M:Contacts.CNChangeHistoryEventVisitor_Extensions.UpdateGroup(Contacts.ICNChangeHistoryEventVisitor,Contacts.CNChangeHistoryUpdateGroupEvent) M:Contacts.CNChangeHistoryFetchRequest.EncodeTo(Foundation.NSCoder) -M:Contacts.CNContact.#ctor M:Contacts.CNContact.AreKeysAvailable(Contacts.CNContactOptions) M:Contacts.CNContact.AreKeysAvailable(Foundation.NSArray) M:Contacts.CNContact.AreKeysAvailable``1(`0[]) @@ -27498,7 +27255,6 @@ M:Contacts.CNContactFetchRequest.#ctor(Foundation.NSArray) M:Contacts.CNContactFetchRequest.#ctor(Foundation.NSString[]) M:Contacts.CNContactFetchRequest.#ctor(ObjCRuntime.INativeObject[]) M:Contacts.CNContactFetchRequest.EncodeTo(Foundation.NSCoder) -M:Contacts.CNContactFormatter.#ctor M:Contacts.CNContactFormatter.EncodeTo(Foundation.NSCoder) M:Contacts.CNContactFormatter.GetAttributedString(Contacts.CNContact,Foundation.NSDictionary) M:Contacts.CNContactFormatter.GetAttributedStringFrom(Contacts.CNContact,Contacts.CNContactFormatterStyle,Foundation.NSDictionary) @@ -27507,15 +27263,12 @@ M:Contacts.CNContactFormatter.GetDescriptorForRequiredKeys(Contacts.CNContactFor M:Contacts.CNContactFormatter.GetNameOrderFor(Contacts.CNContact) M:Contacts.CNContactFormatter.GetString(Contacts.CNContact) M:Contacts.CNContactFormatter.GetStringFrom(Contacts.CNContact,Contacts.CNContactFormatterStyle) -M:Contacts.CNContactProperty.#ctor M:Contacts.CNContactProperty.Copy(Foundation.NSZone) M:Contacts.CNContactProperty.EncodeTo(Foundation.NSCoder) -M:Contacts.CNContactRelation.#ctor M:Contacts.CNContactRelation.#ctor(System.String) M:Contacts.CNContactRelation.Copy(Foundation.NSZone) M:Contacts.CNContactRelation.EncodeTo(Foundation.NSCoder) M:Contacts.CNContactRelation.FromName(System.String) -M:Contacts.CNContactStore.#ctor M:Contacts.CNContactStore.EnumerateContacts(Contacts.CNContactFetchRequest,Foundation.NSError@,Contacts.CNContactStoreListContactsHandler) M:Contacts.CNContactStore.ExecuteSaveRequest(Contacts.CNSaveRequest,Foundation.NSError@) M:Contacts.CNContactStore.GetAuthorizationStatus(Contacts.CNEntityType) @@ -27524,9 +27277,6 @@ M:Contacts.CNContactStore.GetEnumeratorForChangeHistory(Contacts.CNChangeHistory M:Contacts.CNContactStore.GetEnumeratorForContact(Contacts.CNContactFetchRequest,Foundation.NSError@) M:Contacts.CNContactStore.GetGroups(Foundation.NSPredicate,Foundation.NSError@) M:Contacts.CNContactStore.GetUnifiedContact(System.String,Foundation.NSArray,Foundation.NSError@) -M:Contacts.CNContactFormatter.EncodeTo(Foundation.NSCoder) -M:Contacts.CNContactProperty.EncodeTo(Foundation.NSCoder) -M:Contacts.CNContactRelation.EncodeTo(Foundation.NSCoder) M:Contacts.CNContactStore.GetUnifiedContact``1(System.String,`0[],Foundation.NSError@) M:Contacts.CNContactStore.GetUnifiedContacts(Foundation.NSPredicate,Foundation.NSArray,Foundation.NSError@) M:Contacts.CNContactStore.GetUnifiedContacts``1(Foundation.NSPredicate,`0[],Foundation.NSError@) @@ -27534,37 +27284,28 @@ M:Contacts.CNContactStore.GetUnifiedMeContact(Foundation.NSArray,Foundation.NSEr M:Contacts.CNContactStore.GetUnifiedMeContact``1(`0[],Foundation.NSError@) M:Contacts.CNContactStore.RequestAccess(Contacts.CNEntityType,Contacts.CNContactStoreRequestAccessHandler) M:Contacts.CNContactStore.RequestAccessAsync(Contacts.CNEntityType) -M:Contacts.CNContactsUserDefaults.#ctor M:Contacts.CNContactsUserDefaults.GetSharedDefaults -M:Contacts.CNContactVCardSerialization.#ctor M:Contacts.CNContactVCardSerialization.GetContactsFromData(Foundation.NSData,Foundation.NSError@) M:Contacts.CNContactVCardSerialization.GetDataFromContacts(Contacts.CNContact[],Foundation.NSError@) M:Contacts.CNContactVCardSerialization.GetDescriptorFromRequiredKeys -M:Contacts.CNContainer.#ctor M:Contacts.CNContainer.Copy(Foundation.NSZone) M:Contacts.CNContainer.CreatePredicateForContainerOfContact(System.String) M:Contacts.CNContainer.CreatePredicateForContainerOfGroup(System.String) M:Contacts.CNContainer.CreatePredicateForContainers(System.String[]) M:Contacts.CNContainer.EncodeTo(Foundation.NSCoder) -M:Contacts.CNGroup.#ctor M:Contacts.CNGroup.Copy(Foundation.NSZone) M:Contacts.CNGroup.CreatePredicateForGroups(System.String[]) M:Contacts.CNGroup.CreatePredicateForGroupsInContainer(System.String) M:Contacts.CNGroup.CreatePredicateForSubgroupsInGroup(System.String) M:Contacts.CNGroup.EncodeTo(Foundation.NSCoder) M:Contacts.CNGroup.MutableCopy(Foundation.NSZone) -M:Contacts.CNInstantMessageAddress.#ctor M:Contacts.CNInstantMessageAddress.#ctor(System.String,System.String) M:Contacts.CNInstantMessageAddress.Copy(Foundation.NSZone) M:Contacts.CNInstantMessageAddress.EncodeTo(Foundation.NSCoder) -M:Contacts.CNContainer.EncodeTo(Foundation.NSCoder) -M:Contacts.CNGroup.EncodeTo(Foundation.NSCoder) -M:Contacts.CNInstantMessageAddress.EncodeTo(Foundation.NSCoder) M:Contacts.CNInstantMessageAddress.LocalizeProperty(Contacts.CNInstantMessageAddressOption) M:Contacts.CNInstantMessageAddress.LocalizeProperty(Foundation.NSString) M:Contacts.CNInstantMessageAddress.LocalizeService(Contacts.CNInstantMessageServiceOption) M:Contacts.CNInstantMessageAddress.LocalizeService(Foundation.NSString) -M:Contacts.CNLabeledValue`1.#ctor M:Contacts.CNLabeledValue`1.#ctor(System.String,`0) M:Contacts.CNLabeledValue`1.Copy(Foundation.NSZone) M:Contacts.CNLabeledValue`1.EncodeTo(Foundation.NSCoder) @@ -27573,25 +27314,19 @@ M:Contacts.CNLabeledValue`1.GetLabeledValue(`0) M:Contacts.CNLabeledValue`1.GetLabeledValue(System.String,`0) M:Contacts.CNLabeledValue`1.GetLabeledValue(System.String) M:Contacts.CNLabeledValue`1.LocalizeLabel(Foundation.NSString) -M:Contacts.CNMutableContact.#ctor -M:Contacts.CNMutableGroup.#ctor -M:Contacts.CNMutablePostalAddress.#ctor M:Contacts.CNPhoneNumber.#ctor(System.String) M:Contacts.CNPhoneNumber.Copy(Foundation.NSZone) M:Contacts.CNPhoneNumber.EncodeTo(Foundation.NSCoder) M:Contacts.CNPhoneNumber.PhoneNumberWithStringValue(System.String) -M:Contacts.CNPostalAddress.#ctor M:Contacts.CNPostalAddress.Copy(Foundation.NSZone) M:Contacts.CNPostalAddress.EncodeTo(Foundation.NSCoder) M:Contacts.CNPostalAddress.LocalizeProperty(Contacts.CNPostalAddressKeyOption) M:Contacts.CNPostalAddress.LocalizeProperty(Foundation.NSString) M:Contacts.CNPostalAddress.MutableCopy(Foundation.NSZone) -M:Contacts.CNPostalAddressFormatter.#ctor M:Contacts.CNPostalAddressFormatter.GetAttributedStringFrom(Contacts.CNPostalAddress,Contacts.CNPostalAddressFormatterStyle,Foundation.NSDictionary) M:Contacts.CNPostalAddressFormatter.GetAttributedStringFromPostalAddress(Contacts.CNPostalAddress,Foundation.NSDictionary) M:Contacts.CNPostalAddressFormatter.GetStringFrom(Contacts.CNPostalAddress,Contacts.CNPostalAddressFormatterStyle) M:Contacts.CNPostalAddressFormatter.GetStringFromPostalAddress(Contacts.CNPostalAddress) -M:Contacts.CNSaveRequest.#ctor M:Contacts.CNSaveRequest.AddContact(Contacts.CNMutableContact,System.String) M:Contacts.CNSaveRequest.AddGroup(Contacts.CNMutableGroup,System.String) M:Contacts.CNSaveRequest.AddMember(Contacts.CNContact,Contacts.CNGroup) @@ -27602,15 +27337,9 @@ M:Contacts.CNSaveRequest.RemoveMember(Contacts.CNContact,Contacts.CNGroup) M:Contacts.CNSaveRequest.RemoveSubgroup(Contacts.CNGroup,Contacts.CNGroup) M:Contacts.CNSaveRequest.UpdateContact(Contacts.CNMutableContact) M:Contacts.CNSaveRequest.UpdateGroup(Contacts.CNMutableGroup) -M:Contacts.CNSocialProfile.#ctor M:Contacts.CNSocialProfile.#ctor(System.String,System.String,System.String,System.String) M:Contacts.CNSocialProfile.Copy(Foundation.NSZone) M:Contacts.CNSocialProfile.EncodeTo(Foundation.NSCoder) -M:Contacts.CNLabeledValue`1.EncodeTo(Foundation.NSCoder) -M:Contacts.CNPhoneNumber.EncodeTo(Foundation.NSCoder) -M:Contacts.CNPostalAddress.EncodeTo(Foundation.NSCoder) -M:Contacts.CNPostalAddress.LocalizeProperty(Contacts.CNPostalAddressKeyOption) -M:Contacts.CNSocialProfile.EncodeTo(Foundation.NSCoder) M:Contacts.CNSocialProfile.LocalizeProperty(Contacts.CNPostalAddressKeyOption) M:Contacts.CNSocialProfile.LocalizeProperty(Contacts.CNSocialProfileOption) M:Contacts.CNSocialProfile.LocalizeProperty(Foundation.NSString) @@ -27839,7 +27568,6 @@ M:CoreAudioKit.AUAudioUnitViewConfiguration.EncodeTo(Foundation.NSCoder) M:CoreAudioKit.AUAudioUnitViewControllerExtensions.GetSupportedViewConfigurations(AudioUnit.AUAudioUnit,CoreAudioKit.AUAudioUnitViewConfiguration[]) M:CoreAudioKit.AUAudioUnitViewControllerExtensions.SelectViewConfiguration(AudioUnit.AUAudioUnit,CoreAudioKit.AUAudioUnitViewConfiguration) M:CoreAudioKit.AUGenericView.Dispose(System.Boolean) -M:CoreAudioKit.AUGenericViewController.#ctor M:CoreAudioKit.AUGenericViewController.#ctor(System.String,Foundation.NSBundle) M:CoreAudioKit.AUViewController.#ctor(System.String,Foundation.NSBundle) M:CoreAudioKit.CABtleMidiWindowController.#ctor(AppKit.NSWindow) @@ -32401,33 +32129,21 @@ M:DeviceCheck.DCAppAttestService.GenerateKey(System.Action{System.String,Foundat M:DeviceCheck.DCAppAttestService.GenerateKeyAsync M:DeviceCheck.DCDevice.GenerateToken(DeviceCheck.DCDeviceGenerateTokenCompletionHandler) M:DeviceCheck.DCDevice.GenerateTokenAsync -M:DeviceDiscoveryExtension.DDDiscoverySession.#ctor M:EventKit.EKAlarm.Copy(Foundation.NSZone) -M:EventKit.EKCalendarItem.#ctor -M:DeviceCheck.DCDevice.GenerateTokenAsync M:EventKit.EKEventStore.FetchRemindersAsync(Foundation.NSPredicate,System.IntPtr@) M:EventKit.EKEventStore.FetchRemindersAsync(Foundation.NSPredicate) M:EventKit.EKEventStore.RequestAccessAsync(EventKit.EKEntityType) M:EventKit.EKEventStore.RequestFullAccessToEventsAsync M:EventKit.EKEventStore.RequestFullAccessToRemindersAsync M:EventKit.EKEventStore.RequestWriteOnlyAccessToEventsAsync -M:EventKit.EKObject.#ctor M:EventKit.EKParticipant.Copy(Foundation.NSZone) -M:EventKit.EKRecurrenceDayOfWeek.#ctor M:EventKit.EKRecurrenceDayOfWeek.Copy(Foundation.NSZone) M:EventKit.EKRecurrenceDayOfWeek.EncodeTo(Foundation.NSCoder) -M:EventKit.EKRecurrenceEnd.#ctor M:EventKit.EKRecurrenceEnd.Copy(Foundation.NSZone) M:EventKit.EKRecurrenceEnd.EncodeTo(Foundation.NSCoder) -M:EventKit.EKRecurrenceRule.#ctor M:EventKit.EKRecurrenceRule.Copy(Foundation.NSZone) -M:EventKit.EKSource.#ctor -M:EventKit.EKStructuredLocation.#ctor M:EventKit.EKStructuredLocation.Copy(Foundation.NSZone) -M:EventKit.EKVirtualConferenceProvider.#ctor M:EventKit.EKVirtualConferenceProvider.BeginRequestWithExtensionContext(Foundation.NSExtensionContext) -M:EventKit.EKRecurrenceDayOfWeek.EncodeTo(Foundation.NSCoder) -M:EventKit.EKRecurrenceEnd.EncodeTo(Foundation.NSCoder) M:EventKit.EKVirtualConferenceProvider.FetchAvailableRoomTypesAsync M:EventKit.EKVirtualConferenceProvider.FetchVirtualConferenceAsync(System.String) M:EventKitUI.EKCalendarChooser.#ctor(EventKitUI.EKCalendarChooserSelectionStyle,EventKitUI.EKCalendarChooserDisplayStyle,EventKit.EKEntityType,EventKit.EKEventStore) @@ -32820,7 +32536,6 @@ M:Foundation.NSAffineTransform.TransformBezierPath(AppKit.NSBezierPath) M:Foundation.NSAppleEventDescriptor.#ctor(Foundation.NSAppleEventDescriptorType) M:Foundation.NSAppleEventDescriptor.Copy(Foundation.NSZone) M:Foundation.NSAppleEventDescriptor.EncodeTo(Foundation.NSCoder) -M:Foundation.NSAppleEventManager.#ctor M:Foundation.NSAppleScript.Copy(Foundation.NSZone) M:Foundation.NSArchiveReplaceEventArgs.#ctor(Foundation.NSObject,Foundation.NSObject) M:Foundation.NSArray.ArrayFromHandle``1(ObjCRuntime.NativeHandle,System.Converter{ObjCRuntime.NativeHandle,`0},System.Boolean) @@ -32954,7 +32669,6 @@ M:Foundation.NSAttributedString.Substring(System.IntPtr,System.IntPtr) M:Foundation.NSAttributedStringDocumentAttributes.#ctor M:Foundation.NSAttributedStringDocumentAttributes.#ctor(Foundation.NSDictionary) M:Foundation.NSAttributedStringMarkdownParsingOptions.Copy(Foundation.NSZone) -M:Foundation.NSAttributedStringMarkdownSourcePosition.#ctor M:Foundation.NSAttributedStringMarkdownSourcePosition.Copy(Foundation.NSZone) M:Foundation.NSAttributedStringMarkdownSourcePosition.EncodeTo(Foundation.NSCoder) M:Foundation.NSBindingSelectionMarker.Copy(Foundation.NSZone) @@ -32986,13 +32700,9 @@ M:Foundation.NSCachedUrlResponse.EncodeTo(Foundation.NSCoder) M:Foundation.NSCalendar.#ctor(Foundation.NSCalendarType) M:Foundation.NSCalendar.Copy(Foundation.NSZone) M:Foundation.NSCalendar.EncodeTo(Foundation.NSCoder) -M:Foundation.NSCalendarDate.#ctor -M:Foundation.NSCharacterSet.#ctor M:Foundation.NSCharacterSet.Copy(Foundation.NSZone) M:Foundation.NSCharacterSet.EncodeTo(Foundation.NSCoder) M:Foundation.NSCharacterSet.MutableCopy(Foundation.NSZone) -M:Foundation.NSCoder.#ctor -M:Foundation.NSCharacterSet.EncodeTo(Foundation.NSCoder) M:Foundation.NSCoder.DecodeBytes M:Foundation.NSCoder.DecodeBytes(System.String) M:Foundation.NSCoder.DecodeTopLevelObject(System.Type,System.String,Foundation.NSError@) @@ -33011,10 +32721,8 @@ M:Foundation.NSCoding.#ctor(Foundation.NSCoder) M:Foundation.NSCoding.EncodeTo(Foundation.NSCoder) M:Foundation.NSComparisonPredicate.EncodeTo(Foundation.NSCoder) M:Foundation.NSCompoundPredicate.EncodeTo(Foundation.NSCoder) -M:Foundation.NSCondition.#ctor M:Foundation.NSCondition.Lock M:Foundation.NSCondition.Unlock -M:Foundation.NSConditionLock.#ctor M:Foundation.NSConditionLock.Lock M:Foundation.NSConditionLock.Unlock M:Foundation.NSConnection.Dispose(System.Boolean) @@ -33060,13 +32768,9 @@ M:Foundation.NSDate.CreateFromSRAbsoluteTime(System.Double) M:Foundation.NSDate.EncodeTo(Foundation.NSCoder) M:Foundation.NSDate.op_Explicit(Foundation.NSDate)~System.DateTime M:Foundation.NSDate.op_Explicit(System.DateTime)~Foundation.NSDate -M:Foundation.NSDateComponents.#ctor M:Foundation.NSDateComponents.Copy(Foundation.NSZone) M:Foundation.NSDateComponents.EncodeTo(Foundation.NSCoder) -M:Foundation.NSDateComponentsFormatter.#ctor -M:Foundation.NSDateFormatter.#ctor M:Foundation.NSDateInterval.Copy(Foundation.NSZone) -M:Foundation.NSDateComponents.EncodeTo(Foundation.NSCoder) M:Foundation.NSDateInterval.EncodeTo(Foundation.NSCoder) M:Foundation.NSDecimal.Add(Foundation.NSDecimal@,Foundation.NSDecimal@,Foundation.NSDecimal@,Foundation.NSRoundingMode) M:Foundation.NSDecimal.Compare(Foundation.NSDecimal@,Foundation.NSDecimal@) @@ -33148,7 +32852,6 @@ M:Foundation.NSExpression.Copy(Foundation.NSZone) M:Foundation.NSExpression.EncodeTo(Foundation.NSCoder) M:Foundation.NSExtensionContext.CompleteRequestAsync(Foundation.NSExtensionItem[]) M:Foundation.NSExtensionContext.OpenUrlAsync(Foundation.NSUrl) -M:Foundation.NSExtensionItem.#ctor M:Foundation.NSExtensionItem.Copy(Foundation.NSZone) M:Foundation.NSExtensionItem.EncodeTo(Foundation.NSCoder) M:Foundation.NSExtensionRequestHandling.BeginRequestWithExtensionContext(Foundation.NSExtensionContext) @@ -33258,7 +32961,6 @@ M:Foundation.NSFileProviderService.GetFileProviderConnectionAsync M:Foundation.NSFileSystemAttributes.op_Implicit(Foundation.NSFileSystemAttributes)~Foundation.NSDictionary M:Foundation.NSFileVersion.GetNonlocalVersionsAsync(Foundation.NSUrl) M:Foundation.NSFileWrapper.EncodeTo(Foundation.NSCoder) -M:Foundation.NSFormatter.#ctor M:Foundation.NSFormatter.Copy(Foundation.NSZone) M:Foundation.NSFormatter.EncodeTo(Foundation.NSCoder) M:Foundation.NSFormatter.GetAttributedString(Foundation.NSObject,AppKit.NSStringAttributes) @@ -33281,7 +32983,6 @@ M:Foundation.NSHttpCookie.#ctor(System.String,System.String,System.String) M:Foundation.NSHttpCookie.#ctor(System.String,System.String) M:Foundation.NSHttpCookieStorage.GetCookiesForTaskAsync(Foundation.NSUrlSessionTask) M:Foundation.NSHttpUrlResponse.#ctor(Foundation.NSUrl,System.String,System.IntPtr,System.String) -M:Foundation.NSIndexPath.#ctor M:Foundation.NSIndexPath.Copy(Foundation.NSZone) M:Foundation.NSIndexPath.Create(System.Int32[]) M:Foundation.NSIndexPath.Create(System.IntPtr[]) @@ -33401,14 +33102,11 @@ M:Foundation.NSLocale.GetCountryCodeDisplayName(System.String) M:Foundation.NSLocale.GetCurrencyCodeDisplayName(System.String) M:Foundation.NSLocale.GetIdentifierDisplayName(System.String) M:Foundation.NSLocale.GetLanguageCodeDisplayName(System.String) -M:Foundation.NSLock.#ctor M:Foundation.NSLock.Lock M:Foundation.NSLock.Unlock -M:Foundation.NSMachPort.#ctor M:Foundation.NSMachPort.Dispose(System.Boolean) M:Foundation.NSMachPortDelegate_Extensions.MachMessageReceived(Foundation.INSMachPortDelegate,System.IntPtr) M:Foundation.NSMachPortDelegate.MachMessageReceived(System.IntPtr) -M:Foundation.NSMassFormatter.#ctor M:Foundation.NSMeasurement`1.Copy(Foundation.NSZone) M:Foundation.NSMeasurement`1.EncodeTo(Foundation.NSCoder) M:Foundation.NSMeasurementFormatter.EncodeTo(Foundation.NSCoder) @@ -33417,16 +33115,11 @@ M:Foundation.NSMetadataQueryDelegate_Extensions.ReplacementObjectForResultObject M:Foundation.NSMetadataQueryDelegate_Extensions.ReplacementValueForAttributevalue(Foundation.INSMetadataQueryDelegate,Foundation.NSMetadataQuery,System.String,Foundation.NSObject) M:Foundation.NSMetadataQueryDelegate.ReplacementObjectForResultObject(Foundation.NSMetadataQuery,Foundation.NSMetadataItem) M:Foundation.NSMetadataQueryDelegate.ReplacementValueForAttributevalue(Foundation.NSMetadataQuery,System.String,Foundation.NSObject) -M:Foundation.NSMetadataQueryResultGroup.#ctor -M:Foundation.NSMorphology.#ctor M:Foundation.NSMorphology.Copy(Foundation.NSZone) M:Foundation.NSMorphology.EncodeTo(Foundation.NSCoder) -M:Foundation.NSMorphologyCustomPronoun.#ctor M:Foundation.NSMorphologyCustomPronoun.Copy(Foundation.NSZone) M:Foundation.NSMorphologyCustomPronoun.EncodeTo(Foundation.NSCoder) M:Foundation.NSMorphologyPronoun.Copy(Foundation.NSZone) -M:Foundation.NSMorphology.EncodeTo(Foundation.NSCoder) -M:Foundation.NSMorphologyCustomPronoun.EncodeTo(Foundation.NSCoder) M:Foundation.NSMorphologyPronoun.EncodeTo(Foundation.NSCoder) M:Foundation.NSMutableArray`1.#ctor M:Foundation.NSMutableArray`1.#ctor(`0[]) @@ -33632,13 +33325,11 @@ M:Foundation.NSNetServiceErrorEventArgs.#ctor(Foundation.NSDictionary) M:Foundation.NSNetServiceEventArgs.#ctor(Foundation.NSNetService,System.Boolean) M:Foundation.NSNotification.Copy(Foundation.NSZone) M:Foundation.NSNotification.EncodeTo(Foundation.NSCoder) -M:Foundation.NSNotificationCenter.#ctor M:Foundation.NSNotificationCenter.AddObserver(Foundation.NSString,System.Action{Foundation.NSNotification},Foundation.NSObject) M:Foundation.NSNotificationCenter.AddObserver(Foundation.NSString,System.Action{Foundation.NSNotification}) M:Foundation.NSNotificationCenter.RemoveObservers(System.Collections.Generic.IEnumerable{Foundation.NSObject}) M:Foundation.NSNotificationEventArgs.#ctor(Foundation.NSNotification) M:Foundation.NSNotificationQueue.EnqueueNotification(Foundation.NSNotification,Foundation.NSPostingStyle,Foundation.NSNotificationCoalescing,Foundation.NSRunLoopMode[]) -M:Foundation.NSNull.#ctor M:Foundation.NSNull.Copy(Foundation.NSZone) M:Foundation.NSNull.EncodeTo(Foundation.NSCoder) M:Foundation.NSNull.RunAction(System.String,Foundation.NSObject,Foundation.NSDictionary) @@ -33784,21 +33475,15 @@ M:Foundation.NSOutputStream.SetProperty(Foundation.NSObject,Foundation.NSString) M:Foundation.NSOutputStream.Write(System.Byte[],System.Int32,System.UIntPtr) M:Foundation.NSOutputStream.Write(System.Byte[],System.UIntPtr) M:Foundation.NSOutputStream.Write(System.Byte[]) -M:Foundation.NSPersonNameComponents.#ctor M:Foundation.NSPersonNameComponents.Copy(Foundation.NSZone) M:Foundation.NSPersonNameComponents.EncodeTo(Foundation.NSCoder) -M:Foundation.NSPersonNameComponentsFormatter.#ctor -M:Foundation.NSPipe.#ctor M:Foundation.NSPort.Copy(Foundation.NSZone) M:Foundation.NSPort.Dispose(System.Boolean) M:Foundation.NSPort.EncodeTo(Foundation.NSCoder) -M:Foundation.NSPersonNameComponents.EncodeTo(Foundation.NSCoder) -M:Foundation.NSPort.Dispose(System.Boolean) M:Foundation.NSPort.RemoveFromRunLoop(Foundation.NSRunLoop,Foundation.NSRunLoopMode) M:Foundation.NSPort.ScheduleInRunLoop(Foundation.NSRunLoop,Foundation.NSRunLoopMode) M:Foundation.NSPortDelegate_Extensions.MessageReceived(Foundation.INSPortDelegate,Foundation.NSPortMessage) M:Foundation.NSPortDelegate.MessageReceived(Foundation.NSPortMessage) -M:Foundation.NSPortMessage.#ctor M:Foundation.NSPredicate.Copy(Foundation.NSZone) M:Foundation.NSPredicate.EncodeTo(Foundation.NSCoder) M:Foundation.NSPredicate.FromFormat(System.String,Foundation.NSObject) @@ -33824,7 +33509,6 @@ M:Foundation.NSPropertyListSerialization.DataWithPropertyList(Foundation.NSObjec M:Foundation.NSPropertyListSerialization.PropertyListWithData(Foundation.NSData,Foundation.NSPropertyListFormat@,Foundation.NSError@) M:Foundation.NSPropertyListSerialization.PropertyListWithStream(Foundation.NSInputStream,Foundation.NSPropertyListFormat@,Foundation.NSError@) M:Foundation.NSPropertyListSerialization.WritePropertyList(Foundation.NSObject,Foundation.NSOutputStream,Foundation.NSPropertyListFormat,Foundation.NSError@) -M:Foundation.NSPurgeableData.#ctor M:Foundation.NSPurgeableData.BeginContentAccess M:Foundation.NSPurgeableData.Copy(Foundation.NSZone) M:Foundation.NSPurgeableData.DiscardContentIfPossible @@ -33836,10 +33520,8 @@ M:Foundation.NSRange.Equals(Foundation.NSRange) M:Foundation.NSRange.Equals(System.Object) M:Foundation.NSRange.GetHashCode M:Foundation.NSRange.ToString -M:Foundation.NSRecursiveLock.#ctor M:Foundation.NSRecursiveLock.Lock M:Foundation.NSRecursiveLock.Unlock -M:Foundation.NSRegularExpression.#ctor M:Foundation.NSRegularExpression.Copy(Foundation.NSZone) M:Foundation.NSRegularExpression.EncodeTo(Foundation.NSCoder) M:Foundation.NSRunLoop.AcceptInputForMode(Foundation.NSRunLoopMode,Foundation.NSDate) @@ -33891,7 +33573,6 @@ M:Foundation.NSSet`1.LookupMember(`0) M:Foundation.NSSet`1.op_Addition(Foundation.NSSet{`0},Foundation.NSSet{`0}) M:Foundation.NSSet`1.op_Subtraction(Foundation.NSSet{`0},Foundation.NSSet{`0}) M:Foundation.NSSet`1.ToArray -M:Foundation.NSSortDescriptor.#ctor M:Foundation.NSSortDescriptor.Copy(Foundation.NSZone) M:Foundation.NSSortDescriptor.EncodeTo(Foundation.NSCoder) M:Foundation.NSSortDescriptorSorting_NSMutableArray.SortUsingDescriptors(Foundation.NSMutableArray,Foundation.NSSortDescriptor[]) @@ -33950,7 +33631,6 @@ M:Foundation.NSString.ReleaseNative(ObjCRuntime.NativeHandle) M:Foundation.NSString.StringSize(Foundation.NSDictionary) M:Foundation.NSString.ToString M:Foundation.NSString.TransliterateString(Foundation.NSStringTransform,System.Boolean) -M:Foundation.NSStringDrawingContext.#ctor M:Foundation.NSTermOfAddress.Copy(Foundation.NSZone) M:Foundation.NSTermOfAddress.EncodeTo(Foundation.NSCoder) M:Foundation.NSTextCheckingAddressComponents.#ctor @@ -34068,7 +33748,6 @@ M:Foundation.NSUrlAuthenticationChallengeSender_Extensions.PerformDefaultHandlin M:Foundation.NSUrlAuthenticationChallengeSender_Extensions.RejectProtectionSpaceAndContinue(Foundation.INSUrlAuthenticationChallengeSender,Foundation.NSUrlAuthenticationChallenge) M:Foundation.NSUrlCache.GetCachedResponseAsync(Foundation.NSUrlSessionDataTask) M:Foundation.NSUrlComponents.Copy(Foundation.NSZone) -M:Foundation.NSUrlConnection.#ctor M:Foundation.NSUrlConnection.CancelAuthenticationChallenge(Foundation.NSUrlAuthenticationChallenge) M:Foundation.NSUrlConnection.ContinueWithoutCredential(Foundation.NSUrlAuthenticationChallenge) M:Foundation.NSUrlConnection.PerformDefaultHandling(Foundation.NSUrlAuthenticationChallenge) @@ -34144,20 +33823,13 @@ M:Foundation.NSUrlProtectionSpace.#ctor(System.String,System.Int32,System.String M:Foundation.NSUrlProtectionSpace.#ctor(System.String,System.Int32,System.String,System.String,System.String) M:Foundation.NSUrlProtectionSpace.Copy(Foundation.NSZone) M:Foundation.NSUrlProtectionSpace.EncodeTo(Foundation.NSCoder) -M:Foundation.NSUrlProtocol.#ctor -M:Foundation.NSUrlQueryItem.#ctor M:Foundation.NSUrlQueryItem.Copy(Foundation.NSZone) M:Foundation.NSUrlQueryItem.EncodeTo(Foundation.NSCoder) -M:Foundation.NSUrlRequest.#ctor M:Foundation.NSUrlRequest.Copy(Foundation.NSZone) M:Foundation.NSUrlRequest.EncodeTo(Foundation.NSCoder) M:Foundation.NSUrlRequest.MutableCopy(Foundation.NSZone) M:Foundation.NSUrlRequest.ToString -M:Foundation.NSUrlResponse.#ctor M:Foundation.NSUrlResponse.Copy(Foundation.NSZone) -M:Foundation.NSUrlQueryItem.EncodeTo(Foundation.NSCoder) -M:Foundation.NSUrlRequest.EncodeTo(Foundation.NSCoder) -M:Foundation.NSUrlRequest.ToString M:Foundation.NSUrlResponse.EncodeTo(Foundation.NSCoder) M:Foundation.NSUrlSession.CreateDataTaskAsync(Foundation.NSUrl,Foundation.NSUrlSessionDataTask@) M:Foundation.NSUrlSession.CreateDataTaskAsync(Foundation.NSUrl) @@ -34284,7 +33956,6 @@ M:Foundation.NSUserDefaults.#ctor(System.String) M:Foundation.NSUserDefaults.SetString(System.String,System.String) M:Foundation.NSUserNotification.Copy(Foundation.NSZone) M:Foundation.NSUserNotification.EncodeTo(Foundation.NSCoder) -M:Foundation.NSUserNotificationAction.#ctor M:Foundation.NSUserNotificationAction.Copy(Foundation.NSZone) M:Foundation.NSUserNotificationCenter.add_DidActivateNotification(System.EventHandler{Foundation.UNCDidActivateNotificationEventArgs}) M:Foundation.NSUserNotificationCenter.add_DidDeliverNotification(System.EventHandler{Foundation.UNCDidDeliverNotificationEventArgs}) @@ -34441,8 +34112,6 @@ M:GameKit.GKAchievement.ReportAchievementsAsync(GameKit.GKAchievement[]) M:GameKit.GKAchievement.ResetAchivementsAsync M:GameKit.GKAchievement.SelectChallengeablePlayerIDsAsync(System.String[]) M:GameKit.GKAchievement.SelectChallengeablePlayersAsync(GameKit.GKPlayer[]) -M:GameKit.GKAchievementChallenge.#ctor -M:GameKit.GKAchievementDescription.#ctor M:GameKit.GKAchievementDescription.EncodeTo(Foundation.NSCoder) M:GameKit.GKAchievementDescription.LoadAchievementDescriptionsAsync M:GameKit.GKAchievementDescription.LoadImageAsync @@ -34452,7 +34121,6 @@ M:GameKit.GKAchievementViewController.GKAchievementViewControllerAppearance.#cto M:GameKit.GKAchievementViewController.remove_DidFinish(System.EventHandler) M:GameKit.GKAchievementViewControllerDelegate.DidFinish(GameKit.GKAchievementViewController) M:GameKit.GKCategoryResult.#ctor(System.String[],System.String[]) -M:GameKit.GKChallenge.#ctor M:GameKit.GKChallenge.EncodeTo(Foundation.NSCoder) M:GameKit.GKChallenge.LoadReceivedChallengesAsync M:GameKit.GKChallenge.ToString @@ -34557,8 +34225,6 @@ M:GameKit.GKLeaderboardEntry.ChallengeComposeControllerAsync(System.String,GameK M:GameKit.GKLeaderboardEntry.ChallengeComposeControllerWithMessageAsync(System.String,GameKit.GKPlayer[],AppKit.NSViewController@) M:GameKit.GKLeaderboardEntry.ChallengeComposeControllerWithMessageAsync(System.String,GameKit.GKPlayer[],UIKit.UIViewController@) M:GameKit.GKLeaderboardEntry.ChallengeComposeControllerWithMessageAsync(System.String,GameKit.GKPlayer[]) -M:GameKit.GKLeaderboardScore.#ctor -M:GameKit.GKLeaderboardSet.#ctor M:GameKit.GKLeaderboardSet.EncodeTo(Foundation.NSCoder) M:GameKit.GKLeaderboardSet.LoadImageAsync M:GameKit.GKLeaderboardSet.LoadLeaderboardsAsync @@ -34703,7 +34369,6 @@ M:GameKit.GKPlayer.LoadPhotoAsync(GameKit.GKPhotoSize) M:GameKit.GKPlayer.LoadPlayersForIdentifiersAsync(System.String[]) M:GameKit.GKPlayerEventArgs.#ctor(System.String) M:GameKit.GKPlayersEventArgs.#ctor(System.String[]) -M:GameKit.GKSavedGame.#ctor M:GameKit.GKSavedGame.Copy(Foundation.NSZone) M:GameKit.GKSavedGame.LoadDataAsync M:GameKit.GKSavedGameListener_Extensions.DidModifySavedGame(GameKit.IGKSavedGameListener,GameKit.GKPlayer,GameKit.GKSavedGame) @@ -34831,10 +34496,7 @@ M:GameplayKit.GKAgentDelegate_Extensions.AgentDidUpdate(GameplayKit.IGKAgentDele M:GameplayKit.GKAgentDelegate_Extensions.AgentWillUpdate(GameplayKit.IGKAgentDelegate,GameplayKit.GKAgent) M:GameplayKit.GKAgentDelegate.AgentDidUpdate(GameplayKit.GKAgent) M:GameplayKit.GKAgentDelegate.AgentWillUpdate(GameplayKit.GKAgent) -M:GameplayKit.GKBehavior.#ctor M:GameplayKit.GKBehavior.Copy(Foundation.NSZone) -M:GameplayKit.GKCoherentNoiseSource.#ctor -M:GameplayKit.GKComponent.#ctor M:GameplayKit.GKComponent.Copy(Foundation.NSZone) M:GameplayKit.GKComponent.Dispose(System.Boolean) M:GameplayKit.GKComponent.EncodeTo(Foundation.NSCoder) @@ -34850,9 +34512,7 @@ M:GameplayKit.GKGameModel_Extensions.IsLoss(GameplayKit.IGKGameModel,GameplayKit M:GameplayKit.GKGameModel_Extensions.IsWin(GameplayKit.IGKGameModel,GameplayKit.IGKGameModelPlayer) M:GameplayKit.GKGameModel_Extensions.UnapplyGameModelUpdate(GameplayKit.IGKGameModel,GameplayKit.IGKGameModelUpdate) M:GameplayKit.GKGameModel.#ctor -M:GameplayKit.GKGoal.#ctor M:GameplayKit.GKGoal.Copy(Foundation.NSZone) -M:GameplayKit.GKGraph.#ctor M:GameplayKit.GKGraph.Copy(Foundation.NSZone) M:GameplayKit.GKGraph.EncodeTo(Foundation.NSCoder) M:GameplayKit.GKGraphNode.EncodeTo(Foundation.NSCoder) @@ -34865,13 +34525,8 @@ M:GameplayKit.GKHybridStrategist.GetBestMoveForActivePlayer M:GameplayKit.GKMeshGraph`1.#ctor(System.Single,System.Numerics.Vector2,System.Numerics.Vector2,System.Type) M:GameplayKit.GKMeshGraph`1.FromBufferRadius(System.Single,System.Numerics.Vector2,System.Numerics.Vector2,System.Type) M:GameplayKit.GKMeshGraph`1.GetTypeForGenericArgument(System.UIntPtr) -M:GameplayKit.GKMinMaxStrategist.#ctor M:GameplayKit.GKMinMaxStrategist.GetBestMoveForActivePlayer -M:GameplayKit.GKMonteCarloStrategist.#ctor M:GameplayKit.GKMonteCarloStrategist.GetBestMoveForActivePlayer -M:GameplayKit.GKNSPredicateRule.#ctor -M:GameplayKit.GKObstacle.#ctor -M:GameplayKit.GKObstacleGraph.#ctor M:GameplayKit.GKObstacleGraph.GetNodes(GameplayKit.GKPolygonObstacle) M:GameplayKit.GKObstacleGraph.GetTypeForGenericArgument(System.UIntPtr) M:GameplayKit.GKObstacleGraph`1.#ctor(Foundation.NSCoder) @@ -34893,22 +34548,14 @@ M:GameplayKit.GKRandomSource.GetNextBool M:GameplayKit.GKRandomSource.GetNextInt M:GameplayKit.GKRandomSource.GetNextInt(System.UIntPtr) M:GameplayKit.GKRandomSource.GetNextUniform -M:GameplayKit.GKRule.#ctor -M:GameplayKit.GKScene.#ctor M:GameplayKit.GKScene.Copy(Foundation.NSZone) M:GameplayKit.GKScene.Dispose(System.Boolean) M:GameplayKit.GKScene.EncodeTo(Foundation.NSCoder) -M:GameplayKit.GKSCNNodeComponent.#ctor M:GameplayKit.GKSCNNodeComponent.AgentDidUpdate(GameplayKit.GKAgent) M:GameplayKit.GKSCNNodeComponent.AgentWillUpdate(GameplayKit.GKAgent) M:GameplayKit.GKShuffledDistribution.#ctor(GameplayKit.IGKRandom,System.IntPtr,System.IntPtr) -M:GameplayKit.GKSKNodeComponent.#ctor M:GameplayKit.GKSKNodeComponent.AgentDidUpdate(GameplayKit.GKAgent) M:GameplayKit.GKSKNodeComponent.AgentWillUpdate(GameplayKit.GKAgent) -M:GameplayKit.GKRandomSource.EncodeTo(Foundation.NSCoder) -M:GameplayKit.GKScene.Dispose(System.Boolean) -M:GameplayKit.GKScene.EncodeTo(Foundation.NSCoder) -M:GameplayKit.GKShuffledDistribution.#ctor(GameplayKit.IGKRandom,System.IntPtr,System.IntPtr) M:GameplayKit.GKState.Dispose(System.Boolean) M:GameplayKit.GKState.IsValidNextState(GameplayKit.GKState) M:GameplayKit.GKState.IsValidNextState(System.Type) @@ -34943,12 +34590,9 @@ M:GLKit.GLKMeshBufferAllocator.CreateBuffer(ModelIO.IMDLMeshBufferZone,System.UI M:GLKit.GLKMeshBufferAllocator.CreateBuffer(System.UIntPtr,ModelIO.MDLMeshBufferType) M:GLKit.GLKMeshBufferAllocator.CreateZone(Foundation.NSNumber[],Foundation.NSNumber[]) M:GLKit.GLKMeshBufferAllocator.CreateZone(System.UIntPtr) -M:GLKit.GLKNamedEffect.#ctor M:GLKit.GLKNamedEffect.PrepareToDraw M:GLKit.GLKSubmesh.Dispose(System.Boolean) -M:GLKit.GLKTextureInfo.#ctor M:GLKit.GLKTextureInfo.Copy(Foundation.NSZone) -M:GLKit.GLKTextureLoader.#ctor M:GLKit.GLKTextureLoader.BeginLoadCubeMap(Foundation.NSUrl,GLKit.GLKTextureOperations,CoreFoundation.DispatchQueue,GLKit.GLKTextureLoaderCallback) M:GLKit.GLKTextureLoader.BeginLoadCubeMap(Foundation.NSUrl[],Foundation.NSDictionary,CoreFoundation.DispatchQueue,GLKit.GLKTextureLoaderCallback) M:GLKit.GLKTextureLoader.BeginLoadCubeMap(Foundation.NSUrl[],GLKit.GLKTextureOperations,CoreFoundation.DispatchQueue,GLKit.GLKTextureLoaderCallback) @@ -34998,7 +34642,6 @@ M:GLKit.IGLKViewControllerDelegate.Update(GLKit.GLKViewController) M:GLKit.IGLKViewDelegate.DrawInRect(GLKit.GLKView,CoreGraphics.CGRect) M:HealthKit.HKActivityMoveModeObject.Copy(Foundation.NSZone) M:HealthKit.HKActivityMoveModeObject.EncodeTo(Foundation.NSCoder) -M:HealthKit.HKActivitySummary.#ctor M:HealthKit.HKActivitySummary.Copy(Foundation.NSZone) M:HealthKit.HKActivitySummary.EncodeTo(Foundation.NSCoder) M:HealthKit.HKAppleWalkingSteadiness.GetMaximumQuantity(HealthKit.HKAppleWalkingSteadinessClassification) @@ -35011,12 +34654,9 @@ M:HealthKit.HKAttachmentStore.GetAttachmentsAsync(HealthKit.HKObject) M:HealthKit.HKAttachmentStore.GetDataAsync(HealthKit.HKAttachment,Foundation.NSProgress@) M:HealthKit.HKAttachmentStore.GetDataAsync(HealthKit.HKAttachment) M:HealthKit.HKAttachmentStore.RemoveAttachmentAsync(HealthKit.HKAttachment,HealthKit.HKObject) -M:HealthKit.HKBiologicalSexObject.#ctor M:HealthKit.HKBiologicalSexObject.Copy(Foundation.NSZone) M:HealthKit.HKBiologicalSexObject.EncodeTo(Foundation.NSCoder) -M:HealthKit.HKBloodTypeObject.#ctor M:HealthKit.HKBloodTypeObject.Copy(Foundation.NSZone) -M:HealthKit.HKBiologicalSexObject.EncodeTo(Foundation.NSCoder) M:HealthKit.HKBloodTypeObject.EncodeTo(Foundation.NSCoder) M:HealthKit.HKCategorySample.FromType(HealthKit.HKCategoryType,System.IntPtr,Foundation.NSDate,Foundation.NSDate,HealthKit.HKMetadata) M:HealthKit.HKCategoryType.Create(HealthKit.HKCategoryTypeIdentifier) @@ -35029,8 +34669,6 @@ M:HealthKit.HKClinicalRecord.EncodeTo(Foundation.NSCoder) M:HealthKit.HKContactsLensSpecification.Copy(Foundation.NSZone) M:HealthKit.HKContactsLensSpecification.EncodeTo(Foundation.NSCoder) M:HealthKit.HKContactsPrescription.Copy(Foundation.NSZone) -M:HealthKit.HKClinicalRecord.EncodeTo(Foundation.NSCoder) -M:HealthKit.HKContactsLensSpecification.EncodeTo(Foundation.NSCoder) M:HealthKit.HKContactsPrescription.EncodeTo(Foundation.NSCoder) M:HealthKit.HKCorrelation.Create(HealthKit.HKCorrelationType,Foundation.NSDate,Foundation.NSDate,Foundation.NSSet,HealthKit.HKMetadata) M:HealthKit.HKCorrelation.EncodeTo(Foundation.NSCoder) @@ -35046,16 +34684,11 @@ M:HealthKit.HKFhirResource.Copy(Foundation.NSZone) M:HealthKit.HKFhirResource.EncodeTo(Foundation.NSCoder) M:HealthKit.HKFhirVersion.Copy(Foundation.NSZone) M:HealthKit.HKFhirVersion.EncodeTo(Foundation.NSCoder) -M:HealthKit.HKFitzpatrickSkinTypeObject.#ctor M:HealthKit.HKFitzpatrickSkinTypeObject.Copy(Foundation.NSZone) M:HealthKit.HKFitzpatrickSkinTypeObject.EncodeTo(Foundation.NSCoder) M:HealthKit.HKGlassesLensSpecification.Copy(Foundation.NSZone) M:HealthKit.HKGlassesLensSpecification.EncodeTo(Foundation.NSCoder) M:HealthKit.HKGlassesPrescription.Copy(Foundation.NSZone) -M:HealthKit.HKFhirResource.EncodeTo(Foundation.NSCoder) -M:HealthKit.HKFhirVersion.EncodeTo(Foundation.NSCoder) -M:HealthKit.HKFitzpatrickSkinTypeObject.EncodeTo(Foundation.NSCoder) -M:HealthKit.HKGlassesLensSpecification.EncodeTo(Foundation.NSCoder) M:HealthKit.HKGlassesPrescription.EncodeTo(Foundation.NSCoder) M:HealthKit.HKHealthStore.DeleteObjectAsync(HealthKit.HKObject) M:HealthKit.HKHealthStore.DeleteObjectsAsync(HealthKit.HKObject[]) @@ -35121,15 +34754,7 @@ M:HealthKit.HKVisionPrescription.Copy(Foundation.NSZone) M:HealthKit.HKVisionPrescription.EncodeTo(Foundation.NSCoder) M:HealthKit.HKVisionPrism.Copy(Foundation.NSZone) M:HealthKit.HKVisionPrism.EncodeTo(Foundation.NSCoder) -M:HealthKit.HKWheelchairUseObject.#ctor M:HealthKit.HKWheelchairUseObject.Copy(Foundation.NSZone) -M:HealthKit.HKSource.EncodeTo(Foundation.NSCoder) -M:HealthKit.HKSourceRevision.EncodeTo(Foundation.NSCoder) -M:HealthKit.HKStatistics.EncodeTo(Foundation.NSCoder) -M:HealthKit.HKUnit.EncodeTo(Foundation.NSCoder) -M:HealthKit.HKVerifiableClinicalRecordSubject.EncodeTo(Foundation.NSCoder) -M:HealthKit.HKVisionPrescription.EncodeTo(Foundation.NSCoder) -M:HealthKit.HKVisionPrism.EncodeTo(Foundation.NSCoder) M:HealthKit.HKWheelchairUseObject.EncodeTo(Foundation.NSCoder) M:HealthKit.HKWorkout.Create(HealthKit.HKWorkoutActivityType,Foundation.NSDate,Foundation.NSDate,HealthKit.HKWorkoutEvent[],HealthKit.HKQuantity,HealthKit.HKQuantity,HealthKit.HKDevice,HealthKit.HKMetadata) M:HealthKit.HKWorkout.Create(HealthKit.HKWorkoutActivityType,Foundation.NSDate,Foundation.NSDate,HealthKit.HKWorkoutEvent[],HealthKit.HKQuantity,HealthKit.HKQuantity,HealthKit.HKMetadata) @@ -35150,11 +34775,9 @@ M:HealthKit.HKWorkoutBuilder.EndCollectionAsync(Foundation.NSDate) M:HealthKit.HKWorkoutBuilder.FinishWorkoutAsync M:HealthKit.HKWorkoutBuilder.UpdateActivityAsync(Foundation.NSUuid,Foundation.NSDate) M:HealthKit.HKWorkoutBuilder.UpdateActivityAsync(Foundation.NSUuid,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject}) -M:HealthKit.HKWorkoutConfiguration.#ctor M:HealthKit.HKWorkoutConfiguration.Copy(Foundation.NSZone) M:HealthKit.HKWorkoutConfiguration.EncodeTo(Foundation.NSCoder) M:HealthKit.HKWorkoutEvent.Copy(Foundation.NSZone) -M:HealthKit.HKWorkoutConfiguration.EncodeTo(Foundation.NSCoder) M:HealthKit.HKWorkoutEvent.Create(HealthKit.HKWorkoutEventType,Foundation.NSDate,HealthKit.HKMetadata) M:HealthKit.HKWorkoutEvent.Create(HealthKit.HKWorkoutEventType,Foundation.NSDateInterval,HealthKit.HKMetadata) M:HealthKit.HKWorkoutEvent.EncodeTo(Foundation.NSCoder) @@ -35241,7 +34864,6 @@ M:HomeKit.HMAccessoryProfile.Dispose(System.Boolean) M:HomeKit.HMAccessoryProfileEventArgs.#ctor(HomeKit.HMAccessoryProfile) M:HomeKit.HMAccessoryServiceUpdateCharacteristicEventArgs.#ctor(HomeKit.HMService,HomeKit.HMCharacteristic) M:HomeKit.HMAccessorySetupManager.PerformAccessorySetupAsync(HomeKit.HMAccessorySetupRequest) -M:HomeKit.HMAccessorySetupRequest.#ctor M:HomeKit.HMAccessorySetupRequest.Copy(Foundation.NSZone) M:HomeKit.HMAccessorySetupResult.Copy(Foundation.NSZone) M:HomeKit.HMAccessoryUpdateEventArgs.#ctor(HomeKit.HMService) @@ -35250,9 +34872,6 @@ M:HomeKit.HMActionSet.RemoveActionAsync(HomeKit.HMAction) M:HomeKit.HMActionSet.UpdateNameAsync(System.String) M:HomeKit.HMCalendarEvent.Copy(Foundation.NSZone) M:HomeKit.HMCalendarEvent.MutableCopy(Foundation.NSZone) -M:HomeKit.HMCameraControl.#ctor -M:HomeKit.HMCameraSnapshot.#ctor -M:HomeKit.HMCameraSnapshotControl.#ctor M:HomeKit.HMCameraSnapshotControl.Dispose(System.Boolean) M:HomeKit.HMCameraSnapshotControlDelegate_Extensions.DidTakeSnapshot(HomeKit.IHMCameraSnapshotControlDelegate,HomeKit.HMCameraSnapshotControl,HomeKit.HMCameraSnapshot,Foundation.NSError) M:HomeKit.HMCameraSnapshotControlDelegate_Extensions.DidUpdateMostRecentSnapshot(HomeKit.IHMCameraSnapshotControlDelegate,HomeKit.HMCameraSnapshotControl) @@ -35280,7 +34899,6 @@ M:HomeKit.HMCharacteristicThresholdRangeEvent.MutableCopy(Foundation.NSZone) M:HomeKit.HMCharacteristicWriteAction.UpdateTargetValueAsync(Foundation.INSCopying) M:HomeKit.HMDurationEvent.Copy(Foundation.NSZone) M:HomeKit.HMDurationEvent.MutableCopy(Foundation.NSZone) -M:HomeKit.HMCharacteristicWriteAction.UpdateTargetValueAsync(Foundation.INSCopying) M:HomeKit.HMEventTrigger.AddEventAsync(HomeKit.HMEvent) M:HomeKit.HMEventTrigger.CreatePredicateForEvaluatingTriggerOccurringAfterSignificantEvent(HomeKit.HMSignificantEvent,Foundation.NSDateComponents) M:HomeKit.HMEventTrigger.CreatePredicateForEvaluatingTriggerOccurringBeforeSignificantEvent(HomeKit.HMSignificantEvent,Foundation.NSDateComponents) @@ -35541,7 +35159,6 @@ M:HomeKit.HMServiceTypeExtensions.ToFlags(System.Collections.Generic.IEnumerable M:HomeKit.HMSignificantTimeEvent.#ctor(HomeKit.HMSignificantEvent,Foundation.NSDateComponents) M:HomeKit.HMSignificantTimeEvent.Copy(Foundation.NSZone) M:HomeKit.HMSignificantTimeEvent.MutableCopy(Foundation.NSZone) -M:HomeKit.HMTimeEvent.#ctor M:HomeKit.HMTimerTrigger.UpdateFireDateAsync(Foundation.NSDate) M:HomeKit.HMTimerTrigger.UpdateRecurrenceAsync(Foundation.NSDateComponents) M:HomeKit.HMTimerTrigger.UpdateTimeZoneAsync(Foundation.NSTimeZone) @@ -36051,7 +35668,6 @@ M:Intents.INAirline.EncodeTo(Foundation.NSCoder) M:Intents.INAirport.Copy(Foundation.NSZone) M:Intents.INAirport.EncodeTo(Foundation.NSCoder) M:Intents.INAirportGate.Copy(Foundation.NSZone) -M:Intents.INAirport.EncodeTo(Foundation.NSCoder) M:Intents.INAirportGate.EncodeTo(Foundation.NSCoder) M:Intents.INAnswerCallIntentHandling_Extensions.ConfirmAnswerCall(Intents.IINAnswerCallIntentHandling,Intents.INAnswerCallIntent,System.Action{Intents.INAnswerCallIntentResponse}) M:Intents.INAppendToNoteIntentHandling_Extensions.Confirm(Intents.IINAppendToNoteIntentHandling,Intents.INAppendToNoteIntent,System.Action{Intents.INAppendToNoteIntentResponse}) @@ -36075,9 +35691,7 @@ M:Intents.INBoatReservation.Copy(Foundation.NSZone) M:Intents.INBoatReservation.EncodeTo(Foundation.NSCoder) M:Intents.INBoatTrip.Copy(Foundation.NSZone) M:Intents.INBoatTrip.EncodeTo(Foundation.NSCoder) -M:Intents.INBookRestaurantReservationIntent.#ctor M:Intents.INBookRestaurantReservationIntent.Copy(Foundation.NSZone) -M:Intents.INBoatTrip.EncodeTo(Foundation.NSCoder) M:Intents.INBookRestaurantReservationIntentHandling_Extensions.Confirm(Intents.IINBookRestaurantReservationIntentHandling,Intents.INBookRestaurantReservationIntent,System.Action{Intents.INBookRestaurantReservationIntentResponse}) M:Intents.INBookRestaurantReservationIntentHandling_Extensions.ResolveBookingDate(Intents.IINBookRestaurantReservationIntentHandling,Intents.INBookRestaurantReservationIntent,System.Action{Intents.INDateComponentsResolutionResult}) M:Intents.INBookRestaurantReservationIntentHandling_Extensions.ResolveGuest(Intents.IINBookRestaurantReservationIntentHandling,Intents.INBookRestaurantReservationIntent,System.Action{Intents.INRestaurantGuestResolutionResult}) @@ -36099,7 +35713,6 @@ M:Intents.INCallGroup.EncodeTo(Foundation.NSCoder) M:Intents.INCallRecord.Copy(Foundation.NSZone) M:Intents.INCallRecord.EncodeTo(Foundation.NSCoder) M:Intents.INCallRecordFilter.Copy(Foundation.NSZone) -M:Intents.INCallRecord.EncodeTo(Foundation.NSCoder) M:Intents.INCallRecordFilter.EncodeTo(Foundation.NSCoder) M:Intents.INCallRecordResolutionResult.GetConfirmationRequired(Foundation.NSObject,System.IntPtr) M:Intents.INCallRecordResolutionResult.GetUnsupported(System.IntPtr) @@ -36181,7 +35794,6 @@ M:Intents.INEnergyResolutionResult.GetConfirmationRequired(Foundation.NSObject,S M:Intents.INEnergyResolutionResult.GetUnsupported(System.IntPtr) M:Intents.INEnumResolutionResult.GetConfirmationRequired(Foundation.NSObject,System.IntPtr) M:Intents.INEnumResolutionResult.GetUnsupported(System.IntPtr) -M:Intents.INExtension.#ctor M:Intents.INExtension.GetHandler(Intents.INIntent) M:Intents.INFile.EncodeTo(Foundation.NSCoder) M:Intents.INFileResolutionResult.GetConfirmationRequired(Foundation.NSObject,System.IntPtr) @@ -36191,13 +35803,10 @@ M:Intents.INFlight.EncodeTo(Foundation.NSCoder) M:Intents.INFlightReservation.Copy(Foundation.NSZone) M:Intents.INFlightReservation.EncodeTo(Foundation.NSCoder) M:Intents.INFocusStatus.Copy(Foundation.NSZone) -M:Intents.INFlightReservation.EncodeTo(Foundation.NSCoder) M:Intents.INFocusStatus.EncodeTo(Foundation.NSCoder) M:Intents.INFocusStatusCenter.RequestAuthorizationAsync M:Intents.INGetAvailableRestaurantReservationBookingDefaultsIntentHandling_Extensions.Confirm(Intents.IINGetAvailableRestaurantReservationBookingDefaultsIntentHandling,Intents.INGetAvailableRestaurantReservationBookingDefaultsIntent,System.Action{Intents.INGetAvailableRestaurantReservationBookingDefaultsIntentResponse}) M:Intents.INGetAvailableRestaurantReservationBookingDefaultsIntentHandling_Extensions.ResolveAvailableRestaurantReservationBookingDefaults(Intents.IINGetAvailableRestaurantReservationBookingDefaultsIntentHandling,Intents.INGetAvailableRestaurantReservationBookingDefaultsIntent,System.Action{Intents.INRestaurantResolutionResult}) -M:Intents.INGetAvailableRestaurantReservationBookingDefaultsIntentResponse.#ctor -M:Intents.INGetAvailableRestaurantReservationBookingsIntent.#ctor M:Intents.INGetAvailableRestaurantReservationBookingsIntent.Copy(Foundation.NSZone) M:Intents.INGetAvailableRestaurantReservationBookingsIntentHandling_Extensions.Confirm(Intents.IINGetAvailableRestaurantReservationBookingsIntentHandling,Intents.INGetAvailableRestaurantReservationBookingsIntent,System.Action{Intents.INGetAvailableRestaurantReservationBookingsIntentResponse}) M:Intents.INGetAvailableRestaurantReservationBookingsIntentHandling_Extensions.ResolveAvailableRestaurantReservationBookings(Intents.IINGetAvailableRestaurantReservationBookingsIntentHandling,Intents.INGetAvailableRestaurantReservationBookingsIntent,System.Action{Intents.INRestaurantResolutionResult}) @@ -36226,24 +35835,19 @@ M:Intents.INImage.FromImage(AppKit.NSImage) M:Intents.INImage.FromImage(CoreGraphics.CGImage) M:Intents.INImage.FromImage(UIKit.UIImage) M:Intents.INImage.GetImageSize(Intents.INIntentResponse) -M:Intents.INImageNoteContent.#ctor M:Intents.INImageNoteContent.Copy(Foundation.NSZone) M:Intents.INImageNoteContent.EncodeTo(Foundation.NSCoder) M:Intents.INIntegerResolutionResult.GetConfirmationRequired(Foundation.NSObject,System.IntPtr) M:Intents.INIntegerResolutionResult.GetUnsupported(System.IntPtr) -M:Intents.INIntent.#ctor M:Intents.INIntent.Copy(Foundation.NSZone) M:Intents.INIntent.EncodeTo(Foundation.NSCoder) M:Intents.INIntentDonationMetadata.Copy(Foundation.NSZone) -M:Intents.INIntent.EncodeTo(Foundation.NSCoder) M:Intents.INIntentDonationMetadata.EncodeTo(Foundation.NSCoder) M:Intents.INIntentResolutionResult.GetConfirmationRequired(Foundation.NSObject,System.IntPtr) M:Intents.INIntentResolutionResult.GetUnsupported(System.IntPtr) -M:Intents.INIntentResponse.#ctor M:Intents.INIntentResponse.Copy(Foundation.NSZone) M:Intents.INIntentResponse.EncodeTo(Foundation.NSCoder) M:Intents.INInteraction.Copy(Foundation.NSZone) -M:Intents.INIntentResponse.EncodeTo(Foundation.NSCoder) M:Intents.INInteraction.DeleteAllInteractionsAsync M:Intents.INInteraction.DeleteGroupedInteractionsAsync(System.String) M:Intents.INInteraction.DeleteInteractionsAsync(System.String[]) @@ -36284,16 +35888,12 @@ M:Intents.INMessageAttributeResolutionResult.GetConfirmationRequired(Foundation. M:Intents.INMessageAttributeResolutionResult.GetConfirmationRequired(Intents.INMessageAttribute) M:Intents.INMessageAttributeResolutionResult.GetSuccess(Intents.INMessageAttribute) M:Intents.INMessageAttributeResolutionResult.GetUnsupported(System.IntPtr) -M:Intents.INMessageLinkMetadata.#ctor M:Intents.INMessageLinkMetadata.Copy(Foundation.NSZone) M:Intents.INMessageLinkMetadata.EncodeTo(Foundation.NSCoder) -M:Intents.INNote.#ctor M:Intents.INNote.Copy(Foundation.NSZone) -M:Intents.INMessageLinkMetadata.EncodeTo(Foundation.NSCoder) M:Intents.INNote.EncodeTo(Foundation.NSCoder) M:Intents.INNotebookItemTypeResolutionResult.GetConfirmationRequired(Foundation.NSObject,System.IntPtr) M:Intents.INNotebookItemTypeResolutionResult.GetUnsupported(System.IntPtr) -M:Intents.INNoteContent.#ctor M:Intents.INNoteContent.Copy(Foundation.NSZone) M:Intents.INNoteContent.EncodeTo(Foundation.NSCoder) M:Intents.INNoteContentResolutionResult.GetConfirmationRequired(Foundation.NSObject,System.IntPtr) @@ -36426,26 +36026,17 @@ M:Intents.INReservation.Copy(Foundation.NSZone) M:Intents.INReservation.EncodeTo(Foundation.NSCoder) M:Intents.INReservationAction.Copy(Foundation.NSZone) M:Intents.INReservationAction.EncodeTo(Foundation.NSCoder) -M:Intents.INRestaurant.#ctor M:Intents.INRestaurant.Copy(Foundation.NSZone) M:Intents.INRestaurant.EncodeTo(Foundation.NSCoder) -M:Intents.INRestaurantGuestDisplayPreferences.#ctor M:Intents.INRestaurantGuestDisplayPreferences.Copy(Foundation.NSZone) -M:Intents.INReservation.EncodeTo(Foundation.NSCoder) -M:Intents.INReservationAction.EncodeTo(Foundation.NSCoder) -M:Intents.INRestaurant.EncodeTo(Foundation.NSCoder) M:Intents.INRestaurantGuestDisplayPreferences.EncodeTo(Foundation.NSCoder) M:Intents.INRestaurantGuestResolutionResult.GetConfirmationRequired(Foundation.NSObject,System.IntPtr) M:Intents.INRestaurantGuestResolutionResult.GetUnsupported(System.IntPtr) -M:Intents.INRestaurantOffer.#ctor M:Intents.INRestaurantOffer.Copy(Foundation.NSZone) M:Intents.INRestaurantOffer.EncodeTo(Foundation.NSCoder) M:Intents.INRestaurantReservation.Copy(Foundation.NSZone) M:Intents.INRestaurantReservation.EncodeTo(Foundation.NSCoder) -M:Intents.INRestaurantReservationBooking.#ctor M:Intents.INRestaurantReservationBooking.Copy(Foundation.NSZone) -M:Intents.INRestaurantOffer.EncodeTo(Foundation.NSCoder) -M:Intents.INRestaurantReservation.EncodeTo(Foundation.NSCoder) M:Intents.INRestaurantReservationBooking.EncodeTo(Foundation.NSCoder) M:Intents.INRestaurantReservationUserBooking.#ctor(Intents.INRestaurant,Foundation.NSDate,System.UIntPtr,System.String) M:Intents.INRestaurantReservationUserBooking.Copy(Foundation.NSZone) @@ -36465,14 +36056,7 @@ M:Intents.INRidePartySizeOption.Copy(Foundation.NSZone) M:Intents.INRidePartySizeOption.EncodeTo(Foundation.NSCoder) M:Intents.INRideStatus.Copy(Foundation.NSZone) M:Intents.INRideStatus.EncodeTo(Foundation.NSCoder) -M:Intents.INRideVehicle.#ctor M:Intents.INRideVehicle.Copy(Foundation.NSZone) -M:Intents.INRideCompletionStatus.EncodeTo(Foundation.NSCoder) -M:Intents.INRideDriver.EncodeTo(Foundation.NSCoder) -M:Intents.INRideFareLineItem.EncodeTo(Foundation.NSCoder) -M:Intents.INRideOption.EncodeTo(Foundation.NSCoder) -M:Intents.INRidePartySizeOption.EncodeTo(Foundation.NSCoder) -M:Intents.INRideStatus.EncodeTo(Foundation.NSCoder) M:Intents.INRideVehicle.EncodeTo(Foundation.NSCoder) M:Intents.INSaveProfileInCarIntent.#ctor(Foundation.NSNumber,System.String) M:Intents.INSaveProfileInCarIntentHandling_Extensions.Confirm(Intents.IINSaveProfileInCarIntentHandling,Intents.INSaveProfileInCarIntent,System.Action{Intents.INSaveProfileInCarIntentResponse}) @@ -36699,7 +36283,6 @@ M:Intents.INTemporalEventTriggerResolutionResult.GetConfirmationRequired(Foundat M:Intents.INTemporalEventTriggerResolutionResult.GetUnsupported(System.IntPtr) M:Intents.INTemporalEventTriggerTypeOptionsResolutionResult.GetConfirmationRequired(Foundation.NSObject,System.IntPtr) M:Intents.INTemporalEventTriggerTypeOptionsResolutionResult.GetUnsupported(System.IntPtr) -M:Intents.INTermsAndConditions.#ctor M:Intents.INTermsAndConditions.Copy(Foundation.NSZone) M:Intents.INTermsAndConditions.EncodeTo(Foundation.NSCoder) M:Intents.INTextNoteContent.Copy(Foundation.NSZone) @@ -36707,9 +36290,6 @@ M:Intents.INTextNoteContent.EncodeTo(Foundation.NSCoder) M:Intents.INTicketedEvent.Copy(Foundation.NSZone) M:Intents.INTicketedEvent.EncodeTo(Foundation.NSCoder) M:Intents.INTicketedEventReservation.Copy(Foundation.NSZone) -M:Intents.INTermsAndConditions.EncodeTo(Foundation.NSCoder) -M:Intents.INTextNoteContent.EncodeTo(Foundation.NSCoder) -M:Intents.INTicketedEvent.EncodeTo(Foundation.NSCoder) M:Intents.INTicketedEventReservation.EncodeTo(Foundation.NSCoder) M:Intents.INTimeIntervalResolutionResult.GetConfirmationRequired(Foundation.NSObject,System.IntPtr) M:Intents.INTimeIntervalResolutionResult.GetUnsupported(System.IntPtr) @@ -36884,7 +36464,6 @@ M:MailKit.MEDecodedMessage.EncodeTo(Foundation.NSCoder) M:MailKit.MEDecodedMessageBanner.Copy(Foundation.NSZone) M:MailKit.MEDecodedMessageBanner.EncodeTo(Foundation.NSCoder) M:MailKit.MEEmailAddress.Copy(Foundation.NSZone) -M:MailKit.MEDecodedMessageBanner.EncodeTo(Foundation.NSCoder) M:MailKit.MEEmailAddress.EncodeTo(Foundation.NSCoder) M:MailKit.MEEncodedOutgoingMessage.EncodeTo(Foundation.NSCoder) M:MailKit.MEExtension_Extensions.GetHandlerForComposeSession(MailKit.IMEExtension,MailKit.MEComposeSession) @@ -36911,10 +36490,7 @@ M:MapKit.MKAnnotationView.#ctor(CoreGraphics.CGRect) M:MapKit.MKAnnotationView.Dispose(System.Boolean) M:MapKit.MKAnnotationView.MKAnnotationViewAppearance.#ctor(System.IntPtr) M:MapKit.MKAnnotationViewEventArgs.#ctor(MapKit.MKAnnotationView) -M:MapKit.MKCircle.#ctor M:MapKit.MKCircle.Intersects(MapKit.MKMapRect) -M:MapKit.MKCircleRenderer.#ctor -M:MapKit.MKCircleView.#ctor M:MapKit.MKCircleView.#ctor(CoreGraphics.CGRect) M:MapKit.MKCircleView.MKCircleViewAppearance.#ctor(System.IntPtr) M:MapKit.MKClusterAnnotation.SetCoordinate(CoreLocation.CLLocationCoordinate2D) @@ -36962,12 +36538,9 @@ M:MapKit.MKLookAroundViewControllerDelegate.DidUpdateScene(MapKit.MKLookAroundVi M:MapKit.MKLookAroundViewControllerDelegate.WillDismissFullScreen(MapKit.MKLookAroundViewController) M:MapKit.MKLookAroundViewControllerDelegate.WillPresentFullScreen(MapKit.MKLookAroundViewController) M:MapKit.MKLookAroundViewControllerDelegate.WillUpdateScene(MapKit.MKLookAroundViewController) -M:MapKit.MKMapCamera.#ctor M:MapKit.MKMapCamera.Copy(Foundation.NSZone) M:MapKit.MKMapCamera.EncodeTo(Foundation.NSCoder) -M:MapKit.MKMapCameraBoundary.#ctor M:MapKit.MKMapCameraBoundary.Copy(Foundation.NSZone) -M:MapKit.MKMapCamera.EncodeTo(Foundation.NSCoder) M:MapKit.MKMapCameraBoundary.EncodeTo(Foundation.NSCoder) M:MapKit.MKMapCameraZoomRange.#ctor(System.Double,MapKit.MKMapCameraZoomRangeType) M:MapKit.MKMapCameraZoomRange.#ctor(System.Double) @@ -36976,8 +36549,6 @@ M:MapKit.MKMapCameraZoomRange.EncodeTo(Foundation.NSCoder) M:MapKit.MKMapConfiguration.Copy(Foundation.NSZone) M:MapKit.MKMapConfiguration.EncodeTo(Foundation.NSCoder) M:MapKit.MKMapFeatureAnnotation.SetCoordinate(CoreLocation.CLLocationCoordinate2D) -M:MapKit.MKMapItem.#ctor -M:MapKit.MKMapConfiguration.EncodeTo(Foundation.NSCoder) M:MapKit.MKMapItem.EncodeTo(Foundation.NSCoder) M:MapKit.MKMapItem.GetItemProviderVisibilityForTypeIdentifier(System.String) M:MapKit.MKMapItem.GetObject(Foundation.NSData,System.String,Foundation.NSError@) @@ -37019,10 +36590,7 @@ M:MapKit.MKMapSize.GetHashCode M:MapKit.MKMapSize.op_Equality(MapKit.MKMapSize,MapKit.MKMapSize) M:MapKit.MKMapSize.op_Inequality(MapKit.MKMapSize,MapKit.MKMapSize) M:MapKit.MKMapSize.ToString -M:MapKit.MKMapSnapshot.#ctor -M:MapKit.MKMapSnapshotOptions.#ctor M:MapKit.MKMapSnapshotOptions.Copy(Foundation.NSZone) -M:MapKit.MKMapSnapshotter.#ctor M:MapKit.MKMapSnapshotter.StartAsync M:MapKit.MKMapSnapshotter.StartAsync(CoreFoundation.DispatchQueue) M:MapKit.MKMapView.#ctor(CoreGraphics.CGRect) @@ -37132,12 +36700,8 @@ M:MapKit.MKMapViewDragStateEventArgs.#ctor(MapKit.MKAnnotationView,MapKit.MKAnno M:MapKit.MKMarkerAnnotationView.#ctor(MapKit.IMKAnnotation,System.String) M:MapKit.MKMarkerAnnotationView.MKMarkerAnnotationViewAppearance.#ctor(System.IntPtr) M:MapKit.MKMultiPoint.GetCoordinates(System.Int32,System.Int32) -M:MapKit.MKMultiPolygon.#ctor M:MapKit.MKMultiPolygon.Intersects(MapKit.MKMapRect) -M:MapKit.MKMultiPolygonRenderer.#ctor -M:MapKit.MKMultiPolyline.#ctor M:MapKit.MKMultiPolyline.Intersects(MapKit.MKMapRect) -M:MapKit.MKMultiPolylineRenderer.#ctor M:MapKit.MKOverlay_Extensions.GetCanReplaceMapContent(MapKit.IMKOverlay) M:MapKit.MKOverlay_Extensions.Intersects(MapKit.IMKOverlay,MapKit.MKMapRect) M:MapKit.MKOverlay.Intersects(MapKit.MKMapRect) @@ -37170,15 +36734,11 @@ M:MapKit.MKPolygon.FromCoordinates(CoreLocation.CLLocationCoordinate2D[]) M:MapKit.MKPolygon.FromPoints(MapKit.MKMapPoint[],MapKit.MKPolygon[]) M:MapKit.MKPolygon.FromPoints(MapKit.MKMapPoint[]) M:MapKit.MKPolygon.Intersects(MapKit.MKMapRect) -M:MapKit.MKPolygonRenderer.#ctor -M:MapKit.MKPolygonView.#ctor M:MapKit.MKPolygonView.#ctor(CoreGraphics.CGRect) M:MapKit.MKPolygonView.MKPolygonViewAppearance.#ctor(System.IntPtr) M:MapKit.MKPolyline.FromCoordinates(CoreLocation.CLLocationCoordinate2D[]) M:MapKit.MKPolyline.FromPoints(MapKit.MKMapPoint[]) M:MapKit.MKPolyline.Intersects(MapKit.MKMapRect) -M:MapKit.MKPolylineRenderer.#ctor -M:MapKit.MKPolylineView.#ctor M:MapKit.MKPolylineView.#ctor(CoreGraphics.CGRect) M:MapKit.MKPolylineView.MKPolylineViewAppearance.#ctor(System.IntPtr) M:MapKit.MKReverseGeocoder.Dispose(System.Boolean) @@ -37186,11 +36746,8 @@ M:MapKit.MKReverseGeocoderDelegate.FailedWithError(MapKit.MKReverseGeocoder,Foun M:MapKit.MKReverseGeocoderDelegate.FoundWithPlacemark(MapKit.MKReverseGeocoder,MapKit.MKPlacemark) M:MapKit.MKScaleView.Dispose(System.Boolean) M:MapKit.MKScaleView.MKScaleViewAppearance.#ctor(System.IntPtr) -M:MapKit.MKShape.#ctor M:MapKit.MKShape.SetCoordinate(CoreLocation.CLLocationCoordinate2D) -M:MapKit.MKTileOverlay.#ctor M:MapKit.MKTileOverlay.Intersects(MapKit.MKMapRect) -M:MapKit.MKUserLocation.#ctor M:MapKit.MKUserLocationEventArgs.#ctor(MapKit.MKUserLocation) M:MapKit.MKUserLocationView.#ctor(CoreGraphics.CGRect) M:MapKit.MKUserLocationView.#ctor(MapKit.IMKAnnotation,System.String) @@ -37443,7 +37000,6 @@ M:MediaToolbox.MTProfessionalVideoWorkflow.RegisterFormatReaders M:Messages.IMSMessagesAppTranscriptPresentation.GetContentSizeThatFits(CoreGraphics.CGSize) M:Messages.IMSStickerBrowserViewDataSource.GetNumberOfStickers(Messages.MSStickerBrowserView) M:Messages.IMSStickerBrowserViewDataSource.GetSticker(Messages.MSStickerBrowserView,System.IntPtr) -M:Messages.MSConversation.#ctor M:Messages.MSConversation.InsertAttachment(Foundation.NSUrl,System.String,System.Action{Foundation.NSError}) M:Messages.MSConversation.InsertAttachmentAsync(Foundation.NSUrl,System.String) M:Messages.MSConversation.InsertMessage(Messages.MSMessage,System.Action{Foundation.NSError}) @@ -37466,7 +37022,6 @@ M:Messages.MSMessage.Copy(Foundation.NSZone) M:Messages.MSMessage.EncodeTo(Foundation.NSCoder) M:Messages.MSMessageLayout.Copy(Foundation.NSZone) M:Messages.MSMessageLiveLayout.#ctor(Messages.MSMessageTemplateLayout) -M:Messages.MSMessagesAppViewController.#ctor M:Messages.MSMessagesAppViewController.#ctor(System.String,Foundation.NSBundle) M:Messages.MSMessagesAppViewController.DidBecomeActive(Messages.MSConversation) M:Messages.MSMessagesAppViewController.DidCancelSendingMessage(Messages.MSMessage,Messages.MSConversation) @@ -37482,39 +37037,25 @@ M:Messages.MSMessagesAppViewController.WillBecomeActive(Messages.MSConversation) M:Messages.MSMessagesAppViewController.WillResignActive(Messages.MSConversation) M:Messages.MSMessagesAppViewController.WillSelectMessage(Messages.MSMessage,Messages.MSConversation) M:Messages.MSMessagesAppViewController.WillTransition(Messages.MSMessagesAppPresentationStyle) -M:Messages.MSMessageTemplateLayout.#ctor -M:Messages.MSSession.#ctor M:Messages.MSSession.EncodeTo(Foundation.NSCoder) M:Messages.MSSticker.#ctor(Foundation.NSUrl,Foundation.NSUuid,System.String) M:Messages.MSSticker.#ctor(Foundation.NSUrl,System.String,Foundation.NSError@) -M:Messages.MSStickerBrowserView.#ctor M:Messages.MSStickerBrowserView.#ctor(CoreGraphics.CGRect,Messages.MSStickerSize) M:Messages.MSStickerBrowserView.#ctor(CoreGraphics.CGRect) M:Messages.MSStickerBrowserView.Dispose(System.Boolean) M:Messages.MSStickerBrowserView.MSStickerBrowserViewAppearance.#ctor(System.IntPtr) M:Messages.MSStickerBrowserView.ReloadData M:Messages.MSStickerBrowserView.SetContentOffset(CoreGraphics.CGPoint,System.Boolean) -M:Messages.MSStickerBrowserViewController.#ctor M:Messages.MSStickerBrowserViewController.#ctor(Messages.MSStickerSize) M:Messages.MSStickerBrowserViewController.GetNumberOfStickers(Messages.MSStickerBrowserView) M:Messages.MSStickerBrowserViewController.GetSticker(Messages.MSStickerBrowserView,System.IntPtr) -M:Messages.MSStickerBrowserViewDataSource.#ctor M:Messages.MSStickerBrowserViewDataSource.GetNumberOfStickers(Messages.MSStickerBrowserView) M:Messages.MSStickerBrowserViewDataSource.GetSticker(Messages.MSStickerBrowserView,System.IntPtr) -M:Messages.MSStickerView.#ctor M:Messages.MSStickerView.#ctor(CoreGraphics.CGRect,Messages.MSSticker) M:Messages.MSStickerView.#ctor(CoreGraphics.CGRect) M:Messages.MSStickerView.MSStickerViewAppearance.#ctor(System.IntPtr) M:Messages.MSStickerView.StartAnimating M:Messages.MSStickerView.StopAnimating -M:Messages.MSMessagesAppViewController.#ctor(System.String,Foundation.NSBundle) -M:Messages.MSSession.EncodeTo(Foundation.NSCoder) -M:Messages.MSStickerBrowserView.Dispose(System.Boolean) -M:Messages.MSStickerBrowserView.MSStickerBrowserViewAppearance.#ctor(System.IntPtr) -M:Messages.MSStickerBrowserViewDataSource.GetNumberOfStickers(Messages.MSStickerBrowserView) -M:Messages.MSStickerBrowserViewDataSource.GetSticker(Messages.MSStickerBrowserView,System.IntPtr) -M:Messages.MSStickerView.#ctor(CoreGraphics.CGRect) -M:Messages.MSStickerView.MSStickerViewAppearance.#ctor(System.IntPtr) M:MessageUI.IMFMessageComposeViewControllerDelegate.Finished(MessageUI.MFMessageComposeViewController,MessageUI.MessageComposeResult) M:MessageUI.MFComposeResultEventArgs.#ctor(MessageUI.MFMailComposeViewController,MessageUI.MFMailComposeResult,Foundation.NSError) M:MessageUI.MFMailComposeViewController.add_Finished(System.EventHandler{MessageUI.MFComposeResultEventArgs}) @@ -37934,24 +37475,11 @@ M:Metal.IMTLTexture.ReplaceRegion(Metal.MTLRegion,System.UIntPtr,System.UIntPtr, M:Metal.IMTLVisibleFunctionTable.SetFunction(Metal.IMTLFunctionHandle,System.UIntPtr) M:Metal.IMTLVisibleFunctionTable.SetFunctions(Metal.IMTLFunctionHandle[],Foundation.NSRange) M:Metal.MTLAccelerationStructureCommandEncoder_Extensions.RefitAccelerationStructure(Metal.IMTLAccelerationStructureCommandEncoder,Metal.IMTLAccelerationStructure,Metal.MTLAccelerationStructureDescriptor,Metal.IMTLAccelerationStructure,Metal.IMTLBuffer,System.UIntPtr,Metal.MTLAccelerationStructureRefitOptions) -M:Metal.MTLAccelerationStructureCurveGeometryDescriptor.#ctor -M:Metal.MTLAccelerationStructureDescriptor.#ctor M:Metal.MTLAccelerationStructureDescriptor.Copy(Foundation.NSZone) -M:Metal.MTLAccelerationStructureGeometryDescriptor.#ctor M:Metal.MTLAccelerationStructureGeometryDescriptor.Copy(Foundation.NSZone) -M:Metal.MTLAccelerationStructureMotionBoundingBoxGeometryDescriptor.#ctor -M:Metal.MTLAccelerationStructureMotionCurveGeometryDescriptor.#ctor -M:Metal.MTLAccelerationStructureMotionTriangleGeometryDescriptor.#ctor -M:Metal.MTLAccelerationStructurePassDescriptor.#ctor M:Metal.MTLAccelerationStructurePassDescriptor.Copy(Foundation.NSZone) -M:Metal.MTLAccelerationStructurePassSampleBufferAttachmentDescriptor.#ctor M:Metal.MTLAccelerationStructurePassSampleBufferAttachmentDescriptor.Copy(Foundation.NSZone) -M:Metal.MTLAccelerationStructurePassSampleBufferAttachmentDescriptorArray.#ctor -M:Metal.MTLAccelerationStructureTriangleGeometryDescriptor.#ctor -M:Metal.MTLArchitecture.#ctor M:Metal.MTLArchitecture.Copy(Foundation.NSZone) -M:Metal.MTLArgument.#ctor -M:Metal.MTLArgumentDescriptor.#ctor M:Metal.MTLArgumentDescriptor.Copy(Foundation.NSZone) M:Metal.MTLArgumentEncoder_Extensions.SetAccelerationStructure(Metal.IMTLArgumentEncoder,Metal.IMTLAccelerationStructure,System.UIntPtr) M:Metal.MTLArgumentEncoder_Extensions.SetBuffers(Metal.IMTLArgumentEncoder,Metal.IMTLBuffer[],System.UIntPtr[],Foundation.NSRange) @@ -37959,30 +37487,15 @@ M:Metal.MTLArgumentEncoder_Extensions.SetIntersectionFunctionTable(Metal.IMTLArg M:Metal.MTLArgumentEncoder_Extensions.SetIntersectionFunctionTables(Metal.IMTLArgumentEncoder,Metal.IMTLIntersectionFunctionTable[],Foundation.NSRange) M:Metal.MTLArgumentEncoder_Extensions.SetVisibleFunctionTable(Metal.IMTLArgumentEncoder,Metal.IMTLVisibleFunctionTable,System.UIntPtr) M:Metal.MTLArgumentEncoder_Extensions.SetVisibleFunctionTables(Metal.IMTLArgumentEncoder,Metal.IMTLVisibleFunctionTable[],Foundation.NSRange) -M:Metal.MTLArrayType.#ctor -M:Metal.MTLAttribute.#ctor -M:Metal.MTLAttributeDescriptor.#ctor M:Metal.MTLAttributeDescriptor.Copy(Foundation.NSZone) -M:Metal.MTLAttributeDescriptorArray.#ctor -M:Metal.MTLBinaryArchiveDescriptor.#ctor M:Metal.MTLBinaryArchiveDescriptor.Copy(Foundation.NSZone) M:Metal.MTLBlitCommandEncoder_Extensions.GetTextureAccessCounters(Metal.IMTLBlitCommandEncoder,Metal.IMTLTexture,Metal.MTLRegion,System.UIntPtr,System.UIntPtr,System.Boolean,Metal.IMTLBuffer,System.UIntPtr) M:Metal.MTLBlitCommandEncoder_Extensions.ResetTextureAccessCounters(Metal.IMTLBlitCommandEncoder,Metal.IMTLTexture,Metal.MTLRegion,System.UIntPtr,System.UIntPtr) -M:Metal.MTLBlitPassDescriptor.#ctor M:Metal.MTLBlitPassDescriptor.Copy(Foundation.NSZone) -M:Metal.MTLBlitPassSampleBufferAttachmentDescriptor.#ctor M:Metal.MTLBlitPassSampleBufferAttachmentDescriptor.Copy(Foundation.NSZone) -M:Metal.MTLBlitPassSampleBufferAttachmentDescriptorArray.#ctor M:Metal.MTLBuffer_Extensions.GetGpuAddress(Metal.IMTLBuffer) -M:Metal.MTLBufferLayoutDescriptor.#ctor M:Metal.MTLBufferLayoutDescriptor.Copy(Foundation.NSZone) -M:Metal.MTLBufferLayoutDescriptorArray.#ctor -M:Metal.MTLCaptureDescriptor.#ctor M:Metal.MTLCaptureDescriptor.Copy(Foundation.NSZone) -M:Metal.MTLCaptureScope.#ctor -M:Metal.MTLBlitCommandEncoder_Extensions.GetTextureAccessCounters(Metal.IMTLBlitCommandEncoder,Metal.IMTLTexture,Metal.MTLRegion,System.UIntPtr,System.UIntPtr,System.Boolean,Metal.IMTLBuffer,System.UIntPtr) -M:Metal.MTLBlitCommandEncoder_Extensions.ResetTextureAccessCounters(Metal.IMTLBlitCommandEncoder,Metal.IMTLTexture,Metal.MTLRegion,System.UIntPtr,System.UIntPtr) -M:Metal.MTLBuffer_Extensions.GetGpuAddress(Metal.IMTLBuffer) M:Metal.MTLCaptureScope.BeginScope M:Metal.MTLCaptureScope.EndScope M:Metal.MTLClearColor.#ctor(System.Double,System.Double,System.Double,System.Double) @@ -37993,9 +37506,7 @@ M:Metal.MTLCommandBuffer_Extensions.CreateAccelerationStructureCommandEncoder(Me M:Metal.MTLCommandBuffer_Extensions.CreateAccelerationStructureCommandEncoder(Metal.IMTLCommandBuffer) M:Metal.MTLCommandBuffer_Extensions.CreateResourceStateCommandEncoder(Metal.IMTLCommandBuffer,Metal.MTLResourceStatePassDescriptor) M:Metal.MTLCommandBuffer_Extensions.GetResourceStateCommandEncoder(Metal.IMTLCommandBuffer) -M:Metal.MTLCommandBufferDescriptor.#ctor M:Metal.MTLCommandBufferDescriptor.Copy(Foundation.NSZone) -M:Metal.MTLCompileOptions.#ctor M:Metal.MTLCompileOptions.Copy(Foundation.NSZone) M:Metal.MTLComputeCommandEncoder_Extensions.SetAccelerationStructure(Metal.IMTLComputeCommandEncoder,Metal.IMTLAccelerationStructure,System.UIntPtr) M:Metal.MTLComputeCommandEncoder_Extensions.SetBuffer(Metal.IMTLComputeCommandEncoder,Metal.IMTLBuffer,System.UIntPtr,System.UIntPtr,System.UIntPtr) @@ -38006,22 +37517,15 @@ M:Metal.MTLComputeCommandEncoder_Extensions.SetIntersectionFunctionTable(Metal.I M:Metal.MTLComputeCommandEncoder_Extensions.SetIntersectionFunctionTables(Metal.IMTLComputeCommandEncoder,Metal.IMTLIntersectionFunctionTable[],Foundation.NSRange) M:Metal.MTLComputeCommandEncoder_Extensions.SetVisibleFunctionTable(Metal.IMTLComputeCommandEncoder,Metal.IMTLVisibleFunctionTable,System.UIntPtr) M:Metal.MTLComputeCommandEncoder_Extensions.SetVisibleFunctionTables(Metal.IMTLComputeCommandEncoder,Metal.IMTLVisibleFunctionTable[],Foundation.NSRange) -M:Metal.MTLComputePassDescriptor.#ctor M:Metal.MTLComputePassDescriptor.Copy(Foundation.NSZone) -M:Metal.MTLComputePassSampleBufferAttachmentDescriptor.#ctor M:Metal.MTLComputePassSampleBufferAttachmentDescriptor.Copy(Foundation.NSZone) -M:Metal.MTLComputePassSampleBufferAttachmentDescriptorArray.#ctor -M:Metal.MTLComputePipelineDescriptor.#ctor M:Metal.MTLComputePipelineDescriptor.Copy(Foundation.NSZone) -M:Metal.MTLComputePipelineReflection.#ctor M:Metal.MTLComputePipelineState_Extensions.CreateComputePipelineState(Metal.IMTLComputePipelineState,Metal.IMTLFunction[],Foundation.NSError@) M:Metal.MTLComputePipelineState_Extensions.CreateFunctionHandle(Metal.IMTLComputePipelineState,Metal.IMTLFunction) M:Metal.MTLComputePipelineState_Extensions.CreateIntersectionFunctionTable(Metal.IMTLComputePipelineState,Metal.MTLIntersectionFunctionTableDescriptor) M:Metal.MTLComputePipelineState_Extensions.CreateVisibleFunctionTable(Metal.IMTLComputePipelineState,Metal.MTLVisibleFunctionTableDescriptor) M:Metal.MTLComputePipelineState_Extensions.GetGpuResourceId(Metal.IMTLComputePipelineState) -M:Metal.MTLCounterSampleBufferDescriptor.#ctor M:Metal.MTLCounterSampleBufferDescriptor.Copy(Foundation.NSZone) -M:Metal.MTLDepthStencilDescriptor.#ctor M:Metal.MTLDepthStencilDescriptor.Copy(Foundation.NSZone) M:Metal.MTLDevice_Extensions.ConvertSparsePixelRegions(Metal.IMTLDevice,Metal.MTLRegion[],Metal.MTLRegion[],Metal.MTLSize,Metal.MTLSparseTextureRegionAlignmentMode,System.UIntPtr) M:Metal.MTLDevice_Extensions.ConvertSparsePixelRegions(Metal.IMTLDevice,System.IntPtr,System.IntPtr,Metal.MTLSize,Metal.MTLSparseTextureRegionAlignmentMode,System.UIntPtr) @@ -38074,19 +37578,14 @@ M:Metal.MTLFunctionConstantValues.Copy(Foundation.NSZone) M:Metal.MTLFunctionDescriptor.Copy(Foundation.NSZone) M:Metal.MTLFunctionStitchingFunctionNode.Copy(Foundation.NSZone) M:Metal.MTLFunctionStitchingGraph.Copy(Foundation.NSZone) -M:Metal.MTLFunctionStitchingInputNode.#ctor -M:Metal.MTLFunctionStitchingFunctionNode.Copy(Foundation.NSZone) M:Metal.MTLFunctionStitchingInputNode.Copy(Foundation.NSZone) M:Metal.MTLHeap_Extensions.CreateAccelerationStructure(Metal.IMTLHeap,Metal.MTLAccelerationStructureDescriptor,System.UIntPtr) M:Metal.MTLHeap_Extensions.CreateAccelerationStructure(Metal.IMTLHeap,Metal.MTLAccelerationStructureDescriptor) M:Metal.MTLHeap_Extensions.CreateAccelerationStructure(Metal.IMTLHeap,System.UIntPtr,System.UIntPtr) M:Metal.MTLHeap_Extensions.CreateAccelerationStructure(Metal.IMTLHeap,System.UIntPtr) -M:Metal.MTLHeapDescriptor.#ctor M:Metal.MTLHeapDescriptor.Copy(Foundation.NSZone) M:Metal.MTLIndirectCommandBuffer_Extensions.GetGpuResourceID(Metal.IMTLIndirectCommandBuffer) -M:Metal.MTLIndirectCommandBufferDescriptor.#ctor M:Metal.MTLIndirectCommandBufferDescriptor.Copy(Foundation.NSZone) -M:Metal.MTLIndirectCommandBuffer_Extensions.GetGpuResourceID(Metal.IMTLIndirectCommandBuffer) M:Metal.MTLIndirectCommandBufferExecutionRange.#ctor(System.UInt32,System.UInt32) M:Metal.MTLIndirectComputeCommand_Extensions.SetKernelBuffer(Metal.IMTLIndirectComputeCommand,Metal.IMTLBuffer,System.UIntPtr,System.UIntPtr,System.UIntPtr) M:Metal.MTLIndirectRenderCommand_Extensions.ClearBarrier(Metal.IMTLIndirectRenderCommand) @@ -38102,9 +37601,6 @@ M:Metal.MTLIntersectionFunctionTable_Extensions.GetGpuResourceId(Metal.IMTLInter M:Metal.MTLIntersectionFunctionTable_Extensions.SetOpaqueCurveIntersectionFunction(Metal.IMTLIntersectionFunctionTable,Metal.MTLIntersectionFunctionSignature,Foundation.NSRange) M:Metal.MTLIntersectionFunctionTable_Extensions.SetOpaqueCurveIntersectionFunction(Metal.IMTLIntersectionFunctionTable,Metal.MTLIntersectionFunctionSignature,System.UIntPtr) M:Metal.MTLIntersectionFunctionTableDescriptor.Copy(Foundation.NSZone) -M:Metal.MTLIntersectionFunctionTable_Extensions.GetGpuResourceId(Metal.IMTLIntersectionFunctionTable) -M:Metal.MTLIntersectionFunctionTable_Extensions.SetOpaqueCurveIntersectionFunction(Metal.IMTLIntersectionFunctionTable,Metal.MTLIntersectionFunctionSignature,Foundation.NSRange) -M:Metal.MTLIntersectionFunctionTable_Extensions.SetOpaqueCurveIntersectionFunction(Metal.IMTLIntersectionFunctionTable,Metal.MTLIntersectionFunctionSignature,System.UIntPtr) M:Metal.MTLIntersectionFunctionTableExtensions.SetBuffers(Metal.IMTLIntersectionFunctionTable,Metal.IMTLBuffer[],System.UIntPtr[],Foundation.NSRange) M:Metal.MTLIOCompressionContext.AppendData(Foundation.NSData) M:Metal.MTLIOCompressionContext.AppendData(System.Byte[]) @@ -38116,26 +37612,14 @@ M:Metal.MTLLibrary_Extensions.CreateFunctionAsync(Metal.IMTLLibrary,System.Strin M:Metal.MTLLibrary_Extensions.CreateIntersectionFunction(Metal.IMTLLibrary,Metal.MTLIntersectionFunctionDescriptor,Foundation.NSError@) M:Metal.MTLLibrary_Extensions.CreateIntersectionFunction(Metal.IMTLLibrary,Metal.MTLIntersectionFunctionDescriptor,System.Action{Metal.IMTLFunction,Foundation.NSError}) M:Metal.MTLLinkedFunctions.Copy(Foundation.NSZone) -M:Metal.MTLMeshRenderPipelineDescriptor.#ctor M:Metal.MTLMeshRenderPipelineDescriptor.Copy(Foundation.NSZone) -M:Metal.MTLMotionKeyframeData.#ctor M:Metal.MTLOrigin.#ctor(System.IntPtr,System.IntPtr,System.IntPtr) M:Metal.MTLOrigin.ToString -M:Metal.MTLPipelineBufferDescriptor.#ctor M:Metal.MTLPipelineBufferDescriptor.Copy(Foundation.NSZone) -M:Metal.MTLPipelineBufferDescriptorArray.#ctor -M:Metal.MTLPointerType.#ctor M:Metal.MTLQuadTessellationFactorsHalf.#ctor(System.UInt16[],System.UInt16[]) -M:Metal.MTLRasterizationRateLayerArray.#ctor M:Metal.MTLRasterizationRateLayerDescriptor.Copy(Foundation.NSZone) M:Metal.MTLRasterizationRateLayerDescriptor.Create(Metal.MTLSize,System.Single[],System.Single[]) -M:Metal.MTLRasterizationRateMapDescriptor.#ctor M:Metal.MTLRasterizationRateMapDescriptor.Copy(Foundation.NSZone) -M:Metal.MTLRasterizationRateSampleArray.#ctor -M:Metal.MTLOrigin.#ctor(System.IntPtr,System.IntPtr,System.IntPtr) -M:Metal.MTLOrigin.ToString -M:Metal.MTLQuadTessellationFactorsHalf.#ctor(System.UInt16[],System.UInt16[]) -M:Metal.MTLRasterizationRateLayerDescriptor.Create(Metal.MTLSize,System.Single[],System.Single[]) M:Metal.MTLRegion.#ctor(Metal.MTLOrigin,Metal.MTLSize) M:Metal.MTLRegion.Create1D(System.IntPtr,System.IntPtr) M:Metal.MTLRegion.Create1D(System.UIntPtr,System.UIntPtr) @@ -38189,27 +37673,14 @@ M:Metal.MTLRenderCommandEncoder_Extensions.SetVertexIntersectionFunctionTable(Me M:Metal.MTLRenderCommandEncoder_Extensions.SetVertexIntersectionFunctionTables(Metal.IMTLRenderCommandEncoder,Metal.IMTLIntersectionFunctionTable[],Foundation.NSRange) M:Metal.MTLRenderCommandEncoder_Extensions.SetVertexVisibleFunctionTable(Metal.IMTLRenderCommandEncoder,Metal.IMTLVisibleFunctionTable,System.UIntPtr) M:Metal.MTLRenderCommandEncoder_Extensions.SetVertexVisibleFunctionTables(Metal.IMTLRenderCommandEncoder,Metal.IMTLVisibleFunctionTable[],Foundation.NSRange) -M:Metal.MTLRenderPassAttachmentDescriptor.#ctor M:Metal.MTLRenderPassAttachmentDescriptor.Copy(Foundation.NSZone) -M:Metal.MTLRenderPassColorAttachmentDescriptor.#ctor -M:Metal.MTLRenderPassColorAttachmentDescriptorArray.#ctor -M:Metal.MTLRenderPassDepthAttachmentDescriptor.#ctor -M:Metal.MTLRenderPassDescriptor.#ctor M:Metal.MTLRenderPassDescriptor.Copy(Foundation.NSZone) M:Metal.MTLRenderPassDescriptor.GetSamplePositions(Metal.MTLSamplePosition[]) M:Metal.MTLRenderPassDescriptor.SetSamplePositions(Metal.MTLSamplePosition[]) -M:Metal.MTLRenderPassSampleBufferAttachmentDescriptor.#ctor M:Metal.MTLRenderPassSampleBufferAttachmentDescriptor.Copy(Foundation.NSZone) -M:Metal.MTLRenderPassSampleBufferAttachmentDescriptorArray.#ctor -M:Metal.MTLRenderPassStencilAttachmentDescriptor.#ctor -M:Metal.MTLRenderPipelineColorAttachmentDescriptor.#ctor M:Metal.MTLRenderPipelineColorAttachmentDescriptor.Copy(Foundation.NSZone) -M:Metal.MTLRenderPipelineColorAttachmentDescriptorArray.#ctor -M:Metal.MTLRenderPipelineDescriptor.#ctor M:Metal.MTLRenderPipelineDescriptor.Copy(Foundation.NSZone) -M:Metal.MTLRenderPipelineFunctionsDescriptor.#ctor M:Metal.MTLRenderPipelineFunctionsDescriptor.Copy(Foundation.NSZone) -M:Metal.MTLRenderPipelineReflection.#ctor M:Metal.MTLRenderPipelineState_Extensions.FunctionHandleWithFunction(Metal.IMTLRenderPipelineState,Metal.IMTLFunction,Metal.MTLRenderStages) M:Metal.MTLRenderPipelineState_Extensions.GetMaxTotalThreadsPerMeshThreadgroup(Metal.IMTLRenderPipelineState) M:Metal.MTLRenderPipelineState_Extensions.GetMaxTotalThreadsPerObjectThreadgroup(Metal.IMTLRenderPipelineState) @@ -38225,13 +37696,9 @@ M:Metal.MTLResourceStateCommandEncoder_Extensions.Update(Metal.IMTLResourceState M:Metal.MTLResourceStateCommandEncoder_Extensions.Update(Metal.IMTLResourceStateCommandEncoder,Metal.IMTLTexture,Metal.MTLSparseTextureMappingMode,System.IntPtr,System.IntPtr,System.IntPtr,System.UIntPtr) M:Metal.MTLResourceStateCommandEncoder_Extensions.Wait(Metal.IMTLResourceStateCommandEncoder,Metal.IMTLFence) M:Metal.MTLResourceStatePassDescriptor.Copy(Foundation.NSZone) -M:Metal.MTLResourceStatePassSampleBufferAttachmentDescriptor.#ctor M:Metal.MTLResourceStatePassSampleBufferAttachmentDescriptor.Copy(Foundation.NSZone) -M:Metal.MTLResourceStatePassSampleBufferAttachmentDescriptorArray.#ctor M:Metal.MTLSamplePosition.#ctor(System.Single,System.Single) -M:Metal.MTLSamplerDescriptor.#ctor M:Metal.MTLSamplerDescriptor.Copy(Foundation.NSZone) -M:Metal.MTLSamplePosition.#ctor(System.Single,System.Single) M:Metal.MTLSamplerState_Extensions.GetGpuResourceId(Metal.IMTLSamplerState) M:Metal.MTLScissorRect.#ctor(System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr) M:Metal.MTLScissorRect.ToString @@ -38239,39 +37706,21 @@ M:Metal.MTLSharedEventHandle.EncodeTo(Foundation.NSCoder) M:Metal.MTLSharedTextureHandle.EncodeTo(Foundation.NSCoder) M:Metal.MTLSize.#ctor(System.IntPtr,System.IntPtr,System.IntPtr) M:Metal.MTLSizeAndAlign.#ctor(System.UIntPtr,System.UIntPtr) -M:Metal.MTLStageInputOutputDescriptor.#ctor M:Metal.MTLStageInputOutputDescriptor.Copy(Foundation.NSZone) -M:Metal.MTLStencilDescriptor.#ctor M:Metal.MTLStencilDescriptor.Copy(Foundation.NSZone) -M:Metal.MTLStitchedLibraryDescriptor.#ctor M:Metal.MTLStitchedLibraryDescriptor.Copy(Foundation.NSZone) -M:Metal.MTLStructMember.#ctor -M:Metal.MTLStructType.#ctor M:Metal.MTLTexture_Extensions.GetCompressionType(Metal.IMTLTexture) M:Metal.MTLTexture_Extensions.GetFirstMipmapInTail(Metal.IMTLTexture) M:Metal.MTLTexture_Extensions.GetGpuResourceId(Metal.IMTLTexture) M:Metal.MTLTexture_Extensions.GetIsSparse(Metal.IMTLTexture) M:Metal.MTLTexture_Extensions.GetTailSizeInBytes(Metal.IMTLTexture) -M:Metal.MTLTextureDescriptor.#ctor M:Metal.MTLTextureDescriptor.Copy(Foundation.NSZone) -M:Metal.MTLTextureReferenceType.#ctor -M:Metal.MTLTileRenderPipelineColorAttachmentDescriptor.#ctor M:Metal.MTLTileRenderPipelineColorAttachmentDescriptor.Copy(Foundation.NSZone) -M:Metal.MTLTileRenderPipelineColorAttachmentDescriptorArray.#ctor -M:Metal.MTLTileRenderPipelineDescriptor.#ctor M:Metal.MTLTileRenderPipelineDescriptor.Copy(Foundation.NSZone) M:Metal.MTLTriangleTessellationFactorsHalf.#ctor(System.UInt16[],System.UInt16) -M:Metal.MTLType.#ctor -M:Metal.MTLVertexAttribute.#ctor -M:Metal.MTLVertexAttributeDescriptor.#ctor M:Metal.MTLVertexAttributeDescriptor.Copy(Foundation.NSZone) -M:Metal.MTLVertexAttributeDescriptorArray.#ctor -M:Metal.MTLVertexBufferLayoutDescriptor.#ctor M:Metal.MTLVertexBufferLayoutDescriptor.Copy(Foundation.NSZone) -M:Metal.MTLVertexBufferLayoutDescriptorArray.#ctor -M:Metal.MTLVertexDescriptor.#ctor M:Metal.MTLVertexDescriptor.Copy(Foundation.NSZone) -M:Metal.MTLTriangleTessellationFactorsHalf.#ctor(System.UInt16[],System.UInt16) M:Metal.MTLVertexDescriptor.FromModelIO(ModelIO.MDLVertexDescriptor,Foundation.NSError@) M:Metal.MTLVertexDescriptor.FromModelIO(ModelIO.MDLVertexDescriptor) M:Metal.MTLVertexFormatExtensions.ToModelVertexFormat(Metal.MTLVertexFormat) @@ -38302,8 +37751,6 @@ M:MetalKit.MTKMeshBufferAllocator.CreateZone(Foundation.NSNumber[],Foundation.NS M:MetalKit.MTKMeshBufferAllocator.CreateZone(System.UIntPtr) M:MetalKit.MTKSubmesh.Dispose(System.Boolean) M:MetalKit.MTKTextureLoader.#ctor(Metal.IMTLDevice) -M:MetalKit.MTKMeshBuffer.Copy(Foundation.NSZone) -M:MetalKit.MTKSubmesh.Dispose(System.Boolean) M:MetalKit.MTKTextureLoader.FromCGImage(CoreGraphics.CGImage,MetalKit.MTKTextureLoaderOptions,Foundation.NSError@) M:MetalKit.MTKTextureLoader.FromCGImage(CoreGraphics.CGImage,MetalKit.MTKTextureLoaderOptions,MetalKit.MTKTextureLoaderCallback) M:MetalKit.MTKTextureLoader.FromCGImageAsync(CoreGraphics.CGImage,MetalKit.MTKTextureLoaderOptions) @@ -38347,7 +37794,6 @@ M:MetalKit.MTKTextureLoader.FromUrlsAsync(Foundation.NSUrl[],Foundation.NSDictio M:MetalKit.MTKTextureLoader.FromUrlsAsync(Foundation.NSUrl[],MetalKit.MTKTextureLoaderOptions) M:MetalKit.MTKTextureLoaderOptions.#ctor M:MetalKit.MTKTextureLoaderOptions.#ctor(Foundation.NSDictionary) -M:MetalKit.MTKView.#ctor M:MetalKit.MTKView.#ctor(CoreGraphics.CGRect,Metal.IMTLDevice) M:MetalKit.MTKView.ActionForLayer(CoreAnimation.CALayer,System.String) M:MetalKit.MTKView.DisplayLayer(CoreAnimation.CALayer) @@ -38359,11 +37805,6 @@ M:MetalKit.MTKView.LayoutSublayersOfLayer(CoreAnimation.CALayer) M:MetalKit.MTKView.MTKViewAppearance.#ctor(System.IntPtr) M:MetalKit.MTKView.ReleaseDrawables M:MetalKit.MTKView.WillDrawLayer(CoreAnimation.CALayer) -M:MetalKit.MTKViewDelegate.#ctor -M:MetalKit.MTKTextureLoaderOptions.#ctor -M:MetalKit.MTKTextureLoaderOptions.#ctor(Foundation.NSDictionary) -M:MetalKit.MTKView.Dispose(System.Boolean) -M:MetalKit.MTKView.MTKViewAppearance.#ctor(System.IntPtr) M:MetalKit.MTKViewDelegate.Draw(MetalKit.MTKView) M:MetalKit.MTKViewDelegate.DrawableSizeWillChange(MetalKit.MTKView,CoreGraphics.CGSize) M:MetalPerformanceShaders.IMPSCnnBatchNormalizationDataSource.Purge @@ -41520,7 +40961,6 @@ M:OSLog.OSLogStore.GetEntriesEnumerator(OSLog.OSLogEnumeratorOptions,OSLog.OSLog M:OSLog.OSLogStore.GetPosition(Foundation.NSDate) M:OSLog.OSLogStore.GetPositionWithTimeIntervalSinceEnd(System.Double) M:OSLog.OSLogStore.GetPositionWithTimeIntervalSinceLatestBoot(System.Double) -M:OSLog.OSLogMessageComponent.EncodeTo(Foundation.NSCoder) M:PassKit.IPKAddPaymentPassViewControllerDelegate.DidFinishAddingPaymentPass(PassKit.PKAddPaymentPassViewController,PassKit.PKPaymentPass,Foundation.NSError) M:PassKit.IPKAddPaymentPassViewControllerDelegate.GenerateRequestWithCertificateChain(PassKit.PKAddPaymentPassViewController,Foundation.NSData[],Foundation.NSData,Foundation.NSData,System.Action{PassKit.PKAddPaymentPassRequest}) M:PassKit.IPKAddSecureElementPassViewControllerDelegate.DidFinishAddingSecureElementPass(PassKit.PKAddSecureElementPassViewController,PassKit.PKSecureElementPass,Foundation.NSError) @@ -42079,13 +41519,11 @@ M:PdfKit.PdfViewDelegate.TitleOfPrintJob(PdfKit.PdfView) M:PdfKit.PdfViewDelegate.WillChangeScaleFactor(PdfKit.PdfView,System.Runtime.InteropServices.NFloat) M:PdfKit.PdfViewDelegate.WillClickOnLink(PdfKit.PdfView,Foundation.NSUrl) M:PdfKit.PdfViewUrlEventArgs.#ctor(Foundation.NSUrl) -M:PencilKit.PKCanvasView.#ctor M:PencilKit.PKCanvasView.FramesObscuredDidChange(PencilKit.PKToolPicker) M:PencilKit.PKCanvasView.IsRulerActiveDidChange(PencilKit.PKToolPicker) M:PencilKit.PKCanvasView.PKCanvasViewAppearance.#ctor(System.IntPtr) M:PencilKit.PKCanvasView.SelectedToolDidChange(PencilKit.PKToolPicker) M:PencilKit.PKCanvasView.VisibilityDidChange(PencilKit.PKToolPicker) -M:PencilKit.PKCanvasView.PKCanvasViewAppearance.#ctor(System.IntPtr) M:PencilKit.PKCanvasViewDelegate_Extensions.DidBeginUsingTool(PencilKit.IPKCanvasViewDelegate,PencilKit.PKCanvasView) M:PencilKit.PKCanvasViewDelegate_Extensions.DidFinishRendering(PencilKit.IPKCanvasViewDelegate,PencilKit.PKCanvasView) M:PencilKit.PKCanvasViewDelegate_Extensions.DrawingDidChange(PencilKit.IPKCanvasViewDelegate,PencilKit.PKCanvasView) @@ -42118,8 +41556,6 @@ M:PencilKit.PKStroke.Copy(Foundation.NSZone) M:PencilKit.PKStrokePath.Copy(Foundation.NSZone) M:PencilKit.PKStrokePoint.Copy(Foundation.NSZone) M:PencilKit.PKTool.Copy(Foundation.NSZone) -M:PencilKit.PKInk.#ctor(PencilKit.PKInkType,AppKit.NSColor) -M:PencilKit.PKInk.#ctor(PencilKit.PKInkType,UIKit.UIColor) M:PencilKit.PKToolPickerObserver_Extensions.FramesObscuredDidChange(PencilKit.IPKToolPickerObserver,PencilKit.PKToolPicker) M:PencilKit.PKToolPickerObserver_Extensions.IsRulerActiveDidChange(PencilKit.IPKToolPickerObserver,PencilKit.PKToolPicker) M:PencilKit.PKToolPickerObserver_Extensions.SelectedToolDidChange(PencilKit.IPKToolPickerObserver,PencilKit.PKToolPicker) @@ -42249,29 +41685,17 @@ M:Photos.PHAdjustmentData.EncodeTo(Foundation.NSCoder) M:Photos.PHAssetContentEditingInputExtensions.CancelContentEditingInputRequest(Photos.PHAsset,System.UIntPtr) M:Photos.PHAssetContentEditingInputExtensions.RequestContentEditingInput(Photos.PHAsset,Photos.PHContentEditingInputRequestOptions,Photos.PHContentEditingHandler) M:Photos.PHAssetCreationRequest.SupportsAssetResourceTypes(Photos.PHAssetResourceType[]) -M:Photos.PHAssetResourceCreationOptions.#ctor M:Photos.PHAssetResourceCreationOptions.Copy(Foundation.NSZone) M:Photos.PHAssetResourceManager.WriteDataAsync(Photos.PHAssetResource,Foundation.NSUrl,Photos.PHAssetResourceRequestOptions) -M:Photos.PHAssetResourceRequestOptions.#ctor M:Photos.PHAssetResourceRequestOptions.Copy(Foundation.NSZone) -M:Photos.PHCachingImageManager.#ctor -M:Photos.PHChange.#ctor -M:Photos.PHAssetResourceManager.WriteDataAsync(Photos.PHAssetResource,Foundation.NSUrl,Photos.PHAssetResourceRequestOptions) M:Photos.PHCloudIdentifier.EncodeTo(Foundation.NSCoder) M:Photos.PHContentEditingOutput.EncodeTo(Foundation.NSCoder) -M:Photos.PHFetchOptions.#ctor M:Photos.PHFetchOptions.Copy(Foundation.NSZone) M:Photos.PHFetchResult.Copy(Foundation.NSZone) M:Photos.PHFetchResult.GetEnumerator M:Photos.PHFetchResult.ObjectsAt``1(Foundation.NSIndexSet) -M:Photos.PHFetchResultChangeDetails.#ctor -M:Photos.PHImageManager.#ctor -M:Photos.PHImageRequestOptions.#ctor M:Photos.PHImageRequestOptions.Copy(Foundation.NSZone) -M:Photos.PHLivePhoto.#ctor M:Photos.PHLivePhoto.Copy(Foundation.NSZone) -M:Photos.PHFetchResult.GetEnumerator -M:Photos.PHFetchResult.ObjectsAt``1(Foundation.NSIndexSet) M:Photos.PHLivePhoto.EncodeTo(Foundation.NSCoder) M:Photos.PHLivePhoto.GetObject(Foundation.NSData,System.String,Foundation.NSError@) M:Photos.PHLivePhotoEditingContext.PrepareLivePhotoForPlayback(CoreGraphics.CGSize,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},System.Action{Photos.PHLivePhoto,Foundation.NSError}) @@ -42288,11 +41712,8 @@ M:Photos.PHLivePhotoEditingContext.SaveLivePhotoAsync(Photos.PHContentEditingOut M:Photos.PHLivePhotoEditingContext.SaveLivePhotoAsync(Photos.PHContentEditingOutput) M:Photos.PHLivePhotoEditingOption.#ctor M:Photos.PHLivePhotoEditingOption.#ctor(Foundation.NSDictionary) -M:Photos.PHLivePhotoRequestOptions.#ctor M:Photos.PHLivePhotoRequestOptions.Copy(Foundation.NSZone) M:Photos.PHObject.Copy(Foundation.NSZone) -M:Photos.PHObjectChangeDetails.#ctor -M:Photos.PHObjectPlaceholder.#ctor M:Photos.PHPersistentChangeToken.Copy(Foundation.NSZone) M:Photos.PHPersistentChangeToken.EncodeTo(Foundation.NSCoder) M:Photos.PHPhotoLibrary_CloudIdentifiers.GetCloudIdentifierMappings(Photos.PHPhotoLibrary,System.String[]) @@ -42304,9 +41725,6 @@ M:Photos.PHPhotoLibrary.RequestAuthorizationAsync M:Photos.PHPhotoLibrary.RequestAuthorizationAsync(Photos.PHAccessLevel) M:Photos.PHPhotoLibrary.UnregisterChangeObserver(System.Object) M:Photos.PHPhotoLibraryChangeObserver.PhotoLibraryDidChange(Photos.PHChange) -M:Photos.PHProject.#ctor -M:Photos.PHProjectChangeRequest.#ctor -M:Photos.PHVideoRequestOptions.#ctor M:Photos.PHVideoRequestOptions.Copy(Foundation.NSZone) M:PhotosUI.IPHContentEditingController.CancelContentEditing M:PhotosUI.IPHContentEditingController.CanHandleAdjustmentData(Photos.PHAdjustmentData) @@ -42338,7 +41756,6 @@ M:PhotosUI.PHPhotoLibrary_PhotosUISupport.PresentLimitedLibraryPicker(Photos.PHP M:PhotosUI.PHPhotoLibrary_PhotosUISupport.PresentLimitedLibraryPickerAsync(Photos.PHPhotoLibrary,UIKit.UIViewController) M:PhotosUI.PHPickerConfiguration.Copy(Foundation.NSZone) M:PhotosUI.PHPickerFilter.Copy(Foundation.NSZone) -M:PhotosUI.PHPickerUpdateConfiguration.#ctor M:PhotosUI.PHPickerUpdateConfiguration.Copy(Foundation.NSZone) M:PhotosUI.PHPickerUpdateConfiguration.EncodeTo(Foundation.NSCoder) M:PhotosUI.PHPickerViewController.Dispose(System.Boolean) @@ -42403,7 +41820,6 @@ M:PushKit.IPKPushRegistryDelegate.DidUpdatePushCredentials(PushKit.PKPushRegistr M:PushKit.PKPushRegistry.#ctor(CoreFoundation.DispatchQueue) M:PushKit.PKPushRegistry.Dispose(System.Boolean) M:PushKit.PKPushRegistry.PushToken(System.String) -M:PushKit.PKPushRegistry.Dispose(System.Boolean) M:PushKit.PKPushRegistryDelegate_Extensions.DidInvalidatePushToken(PushKit.IPKPushRegistryDelegate,PushKit.PKPushRegistry,System.String) M:PushKit.PKPushRegistryDelegate_Extensions.DidReceiveIncomingPush(PushKit.IPKPushRegistryDelegate,PushKit.PKPushRegistry,PushKit.PKPushPayload,System.String,System.Action) M:PushKit.PKPushRegistryDelegate_Extensions.DidReceiveIncomingPush(PushKit.IPKPushRegistryDelegate,PushKit.PKPushRegistry,PushKit.PKPushPayload,System.String) @@ -42505,10 +41921,7 @@ M:QuickLook.QLPreviewingController_Extensions.PreparePreviewOfFile(QuickLook.IQL M:QuickLook.QLPreviewingController_Extensions.PreparePreviewOfSearchableItem(QuickLook.IQLPreviewingController,System.String,System.String,System.Action{Foundation.NSError}) M:QuickLook.QLPreviewingController_Extensions.ProvidePreview(QuickLook.IQLPreviewingController,QuickLook.QLFilePreviewRequest,System.Action{QuickLook.QLPreviewReply,Foundation.NSError}) M:QuickLook.QLPreviewItem_Extensions.GetPreviewItemTitle(QuickLook.IQLPreviewItem) -M:QuickLook.QLPreviewItem.#ctor M:QuickLook.QLPreviewProvider.BeginRequestWithExtensionContext(Foundation.NSExtensionContext) -M:QuickLook.QLPreviewReply.#ctor -M:QuickLook.QLPreviewSceneActivationConfiguration.#ctor M:QuickLook.QLPreviewSceneActivationConfiguration.#ctor(Foundation.NSUserActivity) M:QuickLook.QLThumbnailImage.Create(Foundation.NSUrl,CoreGraphics.CGSize,System.Single,System.Boolean) M:QuickLookThumbnailing.QLThumbnailGenerationRequest.#ctor(Foundation.NSUrl,CoreGraphics.CGSize,System.Runtime.InteropServices.NFloat,QuickLookThumbnailing.QLThumbnailGenerationRequestRepresentationTypes) @@ -42609,7 +42022,6 @@ M:ReplayKit.NSExtensionContext_RPBroadcastExtension.CompleteRequest(Foundation.N M:ReplayKit.NSExtensionContext_RPBroadcastExtension.LoadBroadcastingApplicationInfo(Foundation.NSExtensionContext,ReplayKit.LoadBroadcastingHandler) M:ReplayKit.RPBroadcastActivityController.Dispose(System.Boolean) M:ReplayKit.RPBroadcastActivityController.ShowBroadcastPicker(CoreGraphics.CGPoint,AppKit.NSWindow,System.String,System.Action{ReplayKit.RPBroadcastActivityController,Foundation.NSError}) -M:ReplayKit.RPBroadcastActivityControllerDelegate.#ctor M:ReplayKit.RPBroadcastActivityControllerDelegate.DidFinish(ReplayKit.RPBroadcastActivityController,ReplayKit.RPBroadcastController,Foundation.NSError) M:ReplayKit.RPBroadcastActivityViewController.#ctor(System.String,Foundation.NSBundle) M:ReplayKit.RPBroadcastActivityViewController.Dispose(System.Boolean) @@ -42618,9 +42030,7 @@ M:ReplayKit.RPBroadcastActivityViewController.LoadBroadcastActivityViewControlle M:ReplayKit.RPBroadcastActivityViewController.LoadBroadcastActivityViewControllerAsync M:ReplayKit.RPBroadcastActivityViewController.LoadBroadcastActivityViewControllerAsync(System.String) M:ReplayKit.RPBroadcastActivityViewControllerDelegate.DidFinish(ReplayKit.RPBroadcastActivityViewController,ReplayKit.RPBroadcastController,Foundation.NSError) -M:ReplayKit.RPBroadcastConfiguration.#ctor M:ReplayKit.RPBroadcastConfiguration.EncodeTo(Foundation.NSCoder) -M:ReplayKit.RPBroadcastController.#ctor M:ReplayKit.RPBroadcastController.Dispose(System.Boolean) M:ReplayKit.RPBroadcastController.FinishBroadcast(System.Action{Foundation.NSError}) M:ReplayKit.RPBroadcastController.FinishBroadcastAsync @@ -42634,13 +42044,10 @@ M:ReplayKit.RPBroadcastControllerDelegate_Extensions.DidUpdateServiceInfo(Replay M:ReplayKit.RPBroadcastControllerDelegate.DidFinish(ReplayKit.RPBroadcastController,Foundation.NSError) M:ReplayKit.RPBroadcastControllerDelegate.DidUpdateBroadcastUrl(ReplayKit.RPBroadcastController,Foundation.NSUrl) M:ReplayKit.RPBroadcastControllerDelegate.DidUpdateServiceInfo(ReplayKit.RPBroadcastController,Foundation.NSDictionary{Foundation.NSString,Foundation.INSCoding}) -M:ReplayKit.RPBroadcastHandler.#ctor M:ReplayKit.RPBroadcastHandler.BeginRequestWithExtensionContext(Foundation.NSExtensionContext) M:ReplayKit.RPBroadcastHandler.UpdateServiceInfo(Foundation.NSDictionary{Foundation.NSString,Foundation.INSCoding}) -M:ReplayKit.RPBroadcastMP4ClipHandler.#ctor M:ReplayKit.RPBroadcastMP4ClipHandler.FinishedProcessingMP4Clip(ReplayKit.RPBroadcastConfiguration,Foundation.NSError) M:ReplayKit.RPBroadcastMP4ClipHandler.ProcessMP4Clip(Foundation.NSUrl,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},System.Boolean) -M:ReplayKit.RPBroadcastSampleHandler.#ctor M:ReplayKit.RPBroadcastSampleHandler.BroadcastAnnotated(Foundation.NSDictionary) M:ReplayKit.RPBroadcastSampleHandler.BroadcastFinished M:ReplayKit.RPBroadcastSampleHandler.BroadcastPaused @@ -42648,9 +42055,6 @@ M:ReplayKit.RPBroadcastSampleHandler.BroadcastResumed M:ReplayKit.RPBroadcastSampleHandler.BroadcastStarted(Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject}) M:ReplayKit.RPBroadcastSampleHandler.FinishBroadcast(Foundation.NSError) M:ReplayKit.RPBroadcastSampleHandler.ProcessSampleBuffer(CoreMedia.CMSampleBuffer,ReplayKit.RPSampleBufferType) -M:ReplayKit.RPPreviewViewController.#ctor -M:ReplayKit.RPPreviewViewController.#ctor(System.String,Foundation.NSBundle) -M:ReplayKit.RPPreviewViewController.Dispose(System.Boolean) M:ReplayKit.RPPreviewViewController.#ctor(System.String,Foundation.NSBundle) M:ReplayKit.RPPreviewViewController.Dispose(System.Boolean) M:ReplayKit.RPPreviewViewControllerDelegate_Extensions.DidFinish(ReplayKit.IRPPreviewViewControllerDelegate,ReplayKit.RPPreviewViewController,Foundation.NSSet{Foundation.NSString}) @@ -42813,19 +42217,14 @@ M:SafetyKit.SACrashDetectionDelegate_Extensions.DidDetectEvent(SafetyKit.ISACras M:SafetyKit.SACrashDetectionDelegate.DidDetectEvent(SafetyKit.SACrashDetectionManager,SafetyKit.SACrashDetectionEvent) M:SafetyKit.SACrashDetectionEvent.Copy(Foundation.NSZone) M:SafetyKit.SACrashDetectionEvent.EncodeTo(Foundation.NSCoder) -M:SafetyKit.SACrashDetectionManager.#ctor M:SafetyKit.SACrashDetectionManager.Dispose(System.Boolean) M:SafetyKit.SACrashDetectionManager.RequestAuthorization(SafetyKit.SACrashDetectionManagerRequestAuthorizationCompletionHandler) -M:SafetyKit.SACrashDetectionManager.Dispose(System.Boolean) M:SafetyKit.SACrashDetectionManager.RequestAuthorizationAsync M:SafetyKit.SAEmergencyResponseDelegate_Extensions.DidUpdateVoiceCallStatus(SafetyKit.ISAEmergencyResponseDelegate,SafetyKit.SAEmergencyResponseManager,SafetyKit.SAEmergencyResponseManagerVoiceCallStatus) M:SafetyKit.SAEmergencyResponseDelegate.DidUpdateVoiceCallStatus(SafetyKit.SAEmergencyResponseManager,SafetyKit.SAEmergencyResponseManagerVoiceCallStatus) -M:SafetyKit.SAEmergencyResponseManager.#ctor M:SafetyKit.SAEmergencyResponseManager.DialVoiceCall(System.String,SafetyKit.SAEmergencyResponseManagerDialVoiceCallCompletionHandler) M:SafetyKit.SAEmergencyResponseManager.DialVoiceCallAsync(System.String) M:SafetyKit.SAEmergencyResponseManager.Dispose(System.Boolean) -M:SafetyKit.SAEmergencyResponseManager.DialVoiceCallAsync(System.String) -M:SafetyKit.SAEmergencyResponseManager.Dispose(System.Boolean) M:SceneKit.ISCNActionable.GetAction(System.String) M:SceneKit.ISCNActionable.HasActions M:SceneKit.ISCNActionable.RemoveAction(System.String) @@ -42860,8 +42259,6 @@ M:SceneKit.ISCNSceneRenderer.Prepare(Foundation.NSObject[],System.Action{System. M:SceneKit.ISCNSceneRenderer.PresentScene(SceneKit.SCNScene,SpriteKit.SKTransition,SceneKit.SCNNode,System.Action) M:SceneKit.ISCNSceneRenderer.ProjectPoint(SceneKit.SCNVector3) M:SceneKit.ISCNSceneRenderer.UnprojectPoint(SceneKit.SCNVector3) -M:SceneKit.SCNAccelerationConstraint.#ctor -M:SceneKit.SCNAction.#ctor M:SceneKit.SCNAction.Copy(Foundation.NSZone) M:SceneKit.SCNAction.EncodeTo(Foundation.NSCoder) M:SceneKit.SCNActionable.GetAction(System.String) @@ -42887,10 +42284,8 @@ M:SceneKit.SCNAnimatable.RemoveAnimation(Foundation.NSString) M:SceneKit.SCNAnimatable.RemoveAnimationUsingBlendOutDuration(Foundation.NSString,System.Runtime.InteropServices.NFloat) M:SceneKit.SCNAnimatable.ResumeAnimation(Foundation.NSString) M:SceneKit.SCNAnimatable.SetSpeed(System.Runtime.InteropServices.NFloat,Foundation.NSString) -M:SceneKit.SCNAnimation.#ctor M:SceneKit.SCNAnimation.Copy(Foundation.NSZone) M:SceneKit.SCNAnimation.EncodeTo(Foundation.NSCoder) -M:SceneKit.SCNAnimationPlayer.#ctor M:SceneKit.SCNAnimationPlayer.AddAnimation(SceneKit.ISCNAnimationProtocol,System.String) M:SceneKit.SCNAnimationPlayer.AddAnimation(SceneKit.SCNAnimationPlayer,Foundation.NSString) M:SceneKit.SCNAnimationPlayer.Copy(Foundation.NSZone) @@ -42908,8 +42303,6 @@ M:SceneKit.SCNAnimationPlayer.RemoveAnimationUsingBlendOutDuration(Foundation.NS M:SceneKit.SCNAnimationPlayer.ResumeAnimation(Foundation.NSString) M:SceneKit.SCNAnimationPlayer.SetSpeed(System.Runtime.InteropServices.NFloat,Foundation.NSString) M:SceneKit.SCNAudioSource.Copy(Foundation.NSZone) -M:SceneKit.SCNAnimation.EncodeTo(Foundation.NSCoder) -M:SceneKit.SCNAnimationPlayer.EncodeTo(Foundation.NSCoder) M:SceneKit.SCNAudioSource.EncodeTo(Foundation.NSCoder) M:SceneKit.SCNAvoidOccluderConstraint.Dispose(System.Boolean) M:SceneKit.SCNAvoidOccluderConstraintDelegate_Extensions.DidAvoidOccluder(SceneKit.ISCNAvoidOccluderConstraintDelegate,SceneKit.SCNAvoidOccluderConstraint,SceneKit.SCNNode,SceneKit.SCNNode) @@ -42919,8 +42312,6 @@ M:SceneKit.SCNAvoidOccluderConstraintDelegate.ShouldAvoidOccluder(SceneKit.SCNAv M:SceneKit.SCNBoundingVolume.GetBoundingBox(SceneKit.SCNVector3@,SceneKit.SCNVector3@) M:SceneKit.SCNBoundingVolume.GetBoundingSphere(SceneKit.SCNVector3@,System.Runtime.InteropServices.NFloat@) M:SceneKit.SCNBoundingVolume.SetBoundingBox(SceneKit.SCNVector3@,SceneKit.SCNVector3@) -M:SceneKit.SCNBox.#ctor -M:SceneKit.SCNCamera.#ctor M:SceneKit.SCNCamera.AddAnimation(SceneKit.ISCNAnimationProtocol,System.String) M:SceneKit.SCNCamera.AddAnimation(SceneKit.SCNAnimationPlayer,Foundation.NSString) M:SceneKit.SCNCamera.Copy(Foundation.NSZone) @@ -42937,15 +42328,11 @@ M:SceneKit.SCNCamera.RemoveAnimation(Foundation.NSString) M:SceneKit.SCNCamera.RemoveAnimationUsingBlendOutDuration(Foundation.NSString,System.Runtime.InteropServices.NFloat) M:SceneKit.SCNCamera.ResumeAnimation(Foundation.NSString) M:SceneKit.SCNCamera.SetSpeed(System.Runtime.InteropServices.NFloat,Foundation.NSString) -M:SceneKit.SCNCameraController.#ctor -M:SceneKit.SCNCamera.EncodeTo(Foundation.NSCoder) M:SceneKit.SCNCameraController.Dispose(System.Boolean) M:SceneKit.SCNCameraControllerDelegate_Extensions.CameraInertiaDidEnd(SceneKit.ISCNCameraControllerDelegate,SceneKit.SCNCameraController) M:SceneKit.SCNCameraControllerDelegate_Extensions.CameraInertiaWillStart(SceneKit.ISCNCameraControllerDelegate,SceneKit.SCNCameraController) M:SceneKit.SCNCameraControllerDelegate.CameraInertiaDidEnd(SceneKit.SCNCameraController) M:SceneKit.SCNCameraControllerDelegate.CameraInertiaWillStart(SceneKit.SCNCameraController) -M:SceneKit.SCNCapsule.#ctor -M:SceneKit.SCNCone.#ctor M:SceneKit.SCNConstraint.AddAnimation(SceneKit.ISCNAnimationProtocol,System.String) M:SceneKit.SCNConstraint.AddAnimation(SceneKit.SCNAnimationPlayer,Foundation.NSString) M:SceneKit.SCNConstraint.Copy(Foundation.NSZone) @@ -42962,9 +42349,6 @@ M:SceneKit.SCNConstraint.RemoveAnimation(Foundation.NSString) M:SceneKit.SCNConstraint.RemoveAnimationUsingBlendOutDuration(Foundation.NSString,System.Runtime.InteropServices.NFloat) M:SceneKit.SCNConstraint.ResumeAnimation(Foundation.NSString) M:SceneKit.SCNConstraint.SetSpeed(System.Runtime.InteropServices.NFloat,Foundation.NSString) -M:SceneKit.SCNCylinder.#ctor -M:SceneKit.SCNDistanceConstraint.#ctor -M:SceneKit.SCNFloor.#ctor M:SceneKit.SCNGeometry.AddAnimation(SceneKit.ISCNAnimationProtocol,System.String) M:SceneKit.SCNGeometry.AddAnimation(SceneKit.SCNAnimationPlayer,Foundation.NSString) M:SceneKit.SCNGeometry.Copy(Foundation.NSZone) @@ -42986,9 +42370,6 @@ M:SceneKit.SCNGeometry.RemoveAnimationUsingBlendOutDuration(Foundation.NSString, M:SceneKit.SCNGeometry.ResumeAnimation(Foundation.NSString) M:SceneKit.SCNGeometry.SetBoundingBox(SceneKit.SCNVector3@,SceneKit.SCNVector3@) M:SceneKit.SCNGeometry.SetSpeed(System.Runtime.InteropServices.NFloat,Foundation.NSString) -M:SceneKit.SCNGeometryElement.#ctor -M:SceneKit.SCNConstraint.EncodeTo(Foundation.NSCoder) -M:SceneKit.SCNGeometry.EncodeTo(Foundation.NSCoder) M:SceneKit.SCNGeometryElement.EncodeTo(Foundation.NSCoder) M:SceneKit.SCNGeometrySource.EncodeTo(Foundation.NSCoder) M:SceneKit.SCNGeometrySource.FromData(Foundation.NSData,SceneKit.SCNGeometrySourceSemantics,System.IntPtr,System.Boolean,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr) @@ -43015,7 +42396,6 @@ M:SceneKit.SCNLayer.ProjectPoint(SceneKit.SCNVector3) M:SceneKit.SCNLayer.UnprojectPoint(SceneKit.SCNVector3) M:SceneKit.SCNLevelOfDetail.Copy(Foundation.NSZone) M:SceneKit.SCNLevelOfDetail.EncodeTo(Foundation.NSCoder) -M:SceneKit.SCNLight.#ctor M:SceneKit.SCNLight.AddAnimation(SceneKit.ISCNAnimationProtocol,System.String) M:SceneKit.SCNLight.AddAnimation(SceneKit.SCNAnimationPlayer,Foundation.NSString) M:SceneKit.SCNLight.Copy(Foundation.NSZone) @@ -43032,7 +42412,6 @@ M:SceneKit.SCNLight.RemoveAnimation(Foundation.NSString) M:SceneKit.SCNLight.RemoveAnimationUsingBlendOutDuration(Foundation.NSString,System.Runtime.InteropServices.NFloat) M:SceneKit.SCNLight.ResumeAnimation(Foundation.NSString) M:SceneKit.SCNLight.SetSpeed(System.Runtime.InteropServices.NFloat,Foundation.NSString) -M:SceneKit.SCNMaterial.#ctor M:SceneKit.SCNMaterial.AddAnimation(SceneKit.ISCNAnimationProtocol,System.String) M:SceneKit.SCNMaterial.AddAnimation(SceneKit.SCNAnimationPlayer,Foundation.NSString) M:SceneKit.SCNMaterial.Copy(Foundation.NSZone) @@ -43066,16 +42445,11 @@ M:SceneKit.SCNMaterialProperty.RemoveAnimation(Foundation.NSString) M:SceneKit.SCNMaterialProperty.RemoveAnimationUsingBlendOutDuration(Foundation.NSString,System.Runtime.InteropServices.NFloat) M:SceneKit.SCNMaterialProperty.ResumeAnimation(Foundation.NSString) M:SceneKit.SCNMaterialProperty.SetSpeed(System.Runtime.InteropServices.NFloat,Foundation.NSString) -M:SceneKit.SCNLevelOfDetail.EncodeTo(Foundation.NSCoder) -M:SceneKit.SCNLight.EncodeTo(Foundation.NSCoder) -M:SceneKit.SCNMaterial.EncodeTo(Foundation.NSCoder) -M:SceneKit.SCNMaterialProperty.EncodeTo(Foundation.NSCoder) M:SceneKit.SCNMatrix4.#ctor(CoreAnimation.CATransform3D) M:SceneKit.SCNMatrix4.CreateFromAxisAngle(CoreGraphics.NVector3d,System.Double,SceneKit.SCNMatrix4@) M:SceneKit.SCNMatrix4.CreateFromAxisAngle(System.Numerics.Vector3,System.Single,SceneKit.SCNMatrix4@) M:SceneKit.SCNMatrix4.CreateFromColumns(SceneKit.SCNVector4,SceneKit.SCNVector4,SceneKit.SCNVector4,SceneKit.SCNVector4,SceneKit.SCNMatrix4@) M:SceneKit.SCNMatrix4.CreateFromColumns(SceneKit.SCNVector4,SceneKit.SCNVector4,SceneKit.SCNVector4,SceneKit.SCNVector4) -M:SceneKit.SCNMorpher.#ctor M:SceneKit.SCNMorpher.AddAnimation(SceneKit.ISCNAnimationProtocol,System.String) M:SceneKit.SCNMorpher.AddAnimation(SceneKit.SCNAnimationPlayer,Foundation.NSString) M:SceneKit.SCNMorpher.EncodeTo(Foundation.NSCoder) @@ -43091,8 +42465,6 @@ M:SceneKit.SCNMorpher.RemoveAnimation(Foundation.NSString) M:SceneKit.SCNMorpher.RemoveAnimationUsingBlendOutDuration(Foundation.NSString,System.Runtime.InteropServices.NFloat) M:SceneKit.SCNMorpher.ResumeAnimation(Foundation.NSString) M:SceneKit.SCNMorpher.SetSpeed(System.Runtime.InteropServices.NFloat,Foundation.NSString) -M:SceneKit.SCNNode.#ctor -M:SceneKit.SCNMorpher.EncodeTo(Foundation.NSCoder) M:SceneKit.SCNNode.Add(SceneKit.SCNNode) M:SceneKit.SCNNode.AddAnimation(CoreAnimation.CAAnimation,System.String) M:SceneKit.SCNNode.AddAnimation(SceneKit.ISCNAnimationProtocol,System.String) @@ -43161,10 +42533,6 @@ M:SceneKit.SCNParticleSystem.ResumeAnimation(Foundation.NSString) M:SceneKit.SCNParticleSystem.SetSpeed(System.Runtime.InteropServices.NFloat,Foundation.NSString) M:SceneKit.SCNPhysicsBehavior.EncodeTo(Foundation.NSCoder) M:SceneKit.SCNPhysicsBody.Copy(Foundation.NSZone) -M:SceneKit.SCNParticlePropertyController.Dispose(System.Boolean) -M:SceneKit.SCNParticlePropertyController.EncodeTo(Foundation.NSCoder) -M:SceneKit.SCNParticleSystem.EncodeTo(Foundation.NSCoder) -M:SceneKit.SCNPhysicsBehavior.EncodeTo(Foundation.NSCoder) M:SceneKit.SCNPhysicsBody.EncodeTo(Foundation.NSCoder) M:SceneKit.SCNPhysicsContactDelegate_Extensions.DidBeginContact(SceneKit.ISCNPhysicsContactDelegate,SceneKit.SCNPhysicsWorld,SceneKit.SCNPhysicsContact) M:SceneKit.SCNPhysicsContactDelegate_Extensions.DidEndContact(SceneKit.ISCNPhysicsContactDelegate,SceneKit.SCNPhysicsWorld,SceneKit.SCNPhysicsContact) @@ -43176,7 +42544,6 @@ M:SceneKit.SCNPhysicsContactEventArgs.#ctor(SceneKit.SCNPhysicsContact) M:SceneKit.SCNPhysicsField.Copy(Foundation.NSZone) M:SceneKit.SCNPhysicsField.EncodeTo(Foundation.NSCoder) M:SceneKit.SCNPhysicsShape.Copy(Foundation.NSZone) -M:SceneKit.SCNPhysicsField.EncodeTo(Foundation.NSCoder) M:SceneKit.SCNPhysicsShape.Create(SceneKit.SCNGeometry,SceneKit.SCNPhysicsShapeOptions) M:SceneKit.SCNPhysicsShape.Create(SceneKit.SCNGeometry,System.Nullable{SceneKit.SCNPhysicsShapeType},System.Nullable{System.Boolean},System.Nullable{SceneKit.SCNVector3}) M:SceneKit.SCNPhysicsShape.Create(SceneKit.SCNNode,SceneKit.SCNPhysicsShapeOptions) @@ -43201,8 +42568,6 @@ M:SceneKit.SCNPhysicsWorld.RayTestWithSegmentFromPoint(SceneKit.SCNVector3,Scene M:SceneKit.SCNPhysicsWorld.remove_DidBeginContact(System.EventHandler{SceneKit.SCNPhysicsContactEventArgs}) M:SceneKit.SCNPhysicsWorld.remove_DidEndContact(System.EventHandler{SceneKit.SCNPhysicsContactEventArgs}) M:SceneKit.SCNPhysicsWorld.remove_DidUpdateContact(System.EventHandler{SceneKit.SCNPhysicsContactEventArgs}) -M:SceneKit.SCNPlane.#ctor -M:SceneKit.SCNProgram.#ctor M:SceneKit.SCNProgram.Copy(Foundation.NSZone) M:SceneKit.SCNProgram.Dispose(System.Boolean) M:SceneKit.SCNProgram.EncodeTo(Foundation.NSCoder) @@ -43295,7 +42660,6 @@ M:SceneKit.SCNShaderModifiers.#ctor M:SceneKit.SCNShaderModifiers.#ctor(Foundation.NSDictionary) M:SceneKit.SCNSkinner.Create(SceneKit.SCNGeometry,SceneKit.SCNNode[],SceneKit.SCNMatrix4[],SceneKit.SCNGeometrySource,SceneKit.SCNGeometrySource) M:SceneKit.SCNSkinner.EncodeTo(Foundation.NSCoder) -M:SceneKit.SCNSliderConstraint.#ctor M:SceneKit.SCNTechnique.AddAnimation(SceneKit.ISCNAnimationProtocol,System.String) M:SceneKit.SCNTechnique.AddAnimation(SceneKit.SCNAnimationPlayer,Foundation.NSString) M:SceneKit.SCNTechnique.Copy(Foundation.NSZone) @@ -43312,8 +42676,6 @@ M:SceneKit.SCNTechnique.RemoveAnimation(Foundation.NSString) M:SceneKit.SCNTechnique.RemoveAnimationUsingBlendOutDuration(Foundation.NSString,System.Runtime.InteropServices.NFloat) M:SceneKit.SCNTechnique.ResumeAnimation(Foundation.NSString) M:SceneKit.SCNTechnique.SetSpeed(System.Runtime.InteropServices.NFloat,Foundation.NSString) -M:SceneKit.SCNTechniqueSupport.#ctor -M:SceneKit.SCNTechnique.EncodeTo(Foundation.NSCoder) M:SceneKit.SCNText.Create(Foundation.NSAttributedString,System.Runtime.InteropServices.NFloat) M:SceneKit.SCNText.Create(System.String,System.Runtime.InteropServices.NFloat) M:SceneKit.SCNTimingFunction.EncodeTo(Foundation.NSCoder) @@ -43345,8 +42707,6 @@ M:ScreenCaptureKit.ISCContentSharingPickerObserver.DidFail(Foundation.NSError) M:ScreenCaptureKit.ISCContentSharingPickerObserver.DidUpdate(ScreenCaptureKit.SCContentSharingPicker,ScreenCaptureKit.SCContentFilter,ScreenCaptureKit.SCStream) M:ScreenCaptureKit.SCContentFilter.#ctor(ScreenCaptureKit.SCDisplay,ScreenCaptureKit.SCRunningApplication[],ScreenCaptureKit.SCWindow[],ScreenCaptureKit.SCContentFilterOption) M:ScreenCaptureKit.SCContentFilter.#ctor(ScreenCaptureKit.SCDisplay,ScreenCaptureKit.SCWindow[],ScreenCaptureKit.SCContentFilterOption) -M:ScreenCaptureKit.SCContentSharingPickerConfiguration.#ctor -M:ScreenCaptureKit.SCContentSharingPickerObserver.#ctor M:ScreenCaptureKit.SCContentSharingPickerObserver.DidCancel(ScreenCaptureKit.SCContentSharingPicker,ScreenCaptureKit.SCStream) M:ScreenCaptureKit.SCContentSharingPickerObserver.DidFail(Foundation.NSError) M:ScreenCaptureKit.SCContentSharingPickerObserver.DidUpdate(ScreenCaptureKit.SCContentSharingPicker,ScreenCaptureKit.SCContentFilter,ScreenCaptureKit.SCStream) @@ -43652,7 +43012,6 @@ M:Security.SslContext.Write(System.Byte[],System.IntPtr@) M:Security.SslStreamConnection.#ctor(System.IO.Stream) M:Security.SslStreamConnection.Read(System.IntPtr,System.IntPtr@) M:Security.SslStreamConnection.Write(System.IntPtr,System.IntPtr@) -M:SensitiveContentAnalysis.SCSensitivityAnalyzer.#ctor M:SensitiveContentAnalysis.SCSensitivityAnalyzer.AnalyzeImage(CoreGraphics.CGImage,System.Action{SensitiveContentAnalysis.SCSensitivityAnalysis,Foundation.NSError}) M:SensitiveContentAnalysis.SCSensitivityAnalyzer.AnalyzeImage(Foundation.NSUrl,System.Action{SensitiveContentAnalysis.SCSensitivityAnalysis,Foundation.NSError}) M:SensitiveContentAnalysis.SCSensitivityAnalyzer.AnalyzeImageAsync(CoreGraphics.CGImage) @@ -43667,11 +43026,8 @@ M:SensorKit.SRAbsoluteTime.ToCFAbsoluteTime(System.Double) M:SensorKit.SRDeletionRecord.EncodeTo(Foundation.NSCoder) M:SensorKit.SRDevice.Copy(Foundation.NSZone) M:SensorKit.SRDevice.EncodeTo(Foundation.NSCoder) -M:SensorKit.SRFetchRequest.#ctor M:SensorKit.SRFetchResult`1.Copy(Foundation.NSZone) -M:SensorKit.SRMediaEvent.#ctor M:SensorKit.SRMediaEvent.Copy(Foundation.NSZone) -M:SensorKit.SRDevice.EncodeTo(Foundation.NSCoder) M:SensorKit.SRMediaEvent.EncodeTo(Foundation.NSCoder) M:SensorKit.SRSensorExtensions.GetSensorForDeletionRecords(SensorKit.SRSensor) M:SensorKit.SRSensorReader.#ctor(SensorKit.SRSensor) @@ -43713,7 +43069,6 @@ M:ServiceManagement.SMAppService.UnregisterAsync M:SharedWithYou.ISWHighlightCenterDelegate.HighlightsDidChange(SharedWithYou.SWHighlightCenter) M:SharedWithYou.SWAttributionView.#ctor(CoreGraphics.CGRect) M:SharedWithYou.SWAttributionView.SWAttributionViewAppearance.#ctor(System.IntPtr) -M:SharedWithYou.SWCollaborationHighlight.#ctor M:SharedWithYou.SWCollaborationHighlight.Copy(Foundation.NSZone) M:SharedWithYou.SWCollaborationHighlight.EncodeTo(Foundation.NSCoder) M:SharedWithYou.SWCollaborationView.#ctor(CoreGraphics.CGRect) @@ -43742,14 +43097,7 @@ M:SharedWithYou.SWHighlightPersistenceEvent.Copy(Foundation.NSZone) M:SharedWithYou.SWHighlightPersistenceEvent.EncodeTo(Foundation.NSCoder) M:SharedWithYouCore.ISWCollaborationActionHandler.HandleStartCollaborationAction(SharedWithYouCore.SWCollaborationCoordinator,SharedWithYouCore.SWStartCollaborationAction) M:SharedWithYouCore.ISWCollaborationActionHandler.HandleUpdateCollaborationParticipantsAction(SharedWithYouCore.SWCollaborationCoordinator,SharedWithYouCore.SWUpdateCollaborationParticipantsAction) -M:SharedWithYouCore.SWAction.#ctor M:SharedWithYouCore.SWAction.Copy(Foundation.NSZone) -M:SharedWithYou.SWHighlightMentionEvent.Copy(Foundation.NSZone) -M:SharedWithYou.SWHighlightMentionEvent.EncodeTo(Foundation.NSCoder) -M:SharedWithYou.SWHighlightPersistenceEvent.Copy(Foundation.NSZone) -M:SharedWithYou.SWHighlightPersistenceEvent.EncodeTo(Foundation.NSCoder) -M:SharedWithYouCore.ISWCollaborationActionHandler.HandleStartCollaborationAction(SharedWithYouCore.SWCollaborationCoordinator,SharedWithYouCore.SWStartCollaborationAction) -M:SharedWithYouCore.ISWCollaborationActionHandler.HandleUpdateCollaborationParticipantsAction(SharedWithYouCore.SWCollaborationCoordinator,SharedWithYouCore.SWUpdateCollaborationParticipantsAction) M:SharedWithYouCore.SWAction.EncodeTo(Foundation.NSCoder) M:SharedWithYouCore.SWCollaborationCoordinator.Dispose(System.Boolean) M:SharedWithYouCore.SWCollaborationMetadata.#ctor(System.String,SharedWithYouCore.SWIdentifierType) @@ -43765,7 +43113,6 @@ M:SharedWithYouCore.SWCollaborationMetadata.MutableCopy(Foundation.NSZone) M:SharedWithYouCore.SWCollaborationOption.Copy(Foundation.NSZone) M:SharedWithYouCore.SWCollaborationOption.EncodeTo(Foundation.NSCoder) M:SharedWithYouCore.SWCollaborationOptionsGroup.Copy(Foundation.NSZone) -M:SharedWithYouCore.SWCollaborationOption.EncodeTo(Foundation.NSCoder) M:SharedWithYouCore.SWCollaborationOptionsGroup.EncodeTo(Foundation.NSCoder) M:SharedWithYouCore.SWCollaborationOptionsPickerGroup.#ctor(System.String,SharedWithYouCore.SWCollaborationOption[]) M:SharedWithYouCore.SWCollaborationShareOptions.Copy(Foundation.NSZone) @@ -43775,13 +43122,9 @@ M:SharedWithYouCore.SWPersonIdentity.Copy(Foundation.NSZone) M:SharedWithYouCore.SWPersonIdentity.EncodeTo(Foundation.NSCoder) M:SharedWithYouCore.SWPersonIdentityProof.Copy(Foundation.NSZone) M:SharedWithYouCore.SWPersonIdentityProof.EncodeTo(Foundation.NSCoder) -M:SharedWithYouCore.SWSignedPersonIdentityProof.#ctor M:SharedWithYouCore.SWStartCollaborationAction.Copy(Foundation.NSZone) M:SharedWithYouCore.SWStartCollaborationAction.EncodeTo(Foundation.NSCoder) M:SharedWithYouCore.SWUpdateCollaborationParticipantsAction.Copy(Foundation.NSZone) -M:SharedWithYouCore.SWPersonIdentity.EncodeTo(Foundation.NSCoder) -M:SharedWithYouCore.SWPersonIdentityProof.EncodeTo(Foundation.NSCoder) -M:SharedWithYouCore.SWStartCollaborationAction.EncodeTo(Foundation.NSCoder) M:SharedWithYouCore.SWUpdateCollaborationParticipantsAction.EncodeTo(Foundation.NSCoder) M:ShazamKit.SHMatch.EncodeTo(Foundation.NSCoder) M:ShazamKit.SHMatchedMediaItem.EncodeTo(Foundation.NSCoder) @@ -43871,8 +43214,6 @@ M:Social.SLRequest.Create(Foundation.NSString,Social.SLRequestMethod,Foundation. M:Social.SLRequest.Create(Social.SLServiceKind,Social.SLRequestMethod,Foundation.NSUrl,Foundation.NSDictionary) M:Social.SLRequest.GetPreparedUrlRequest M:Social.SLRequest.PerformRequest(System.Action{Foundation.NSData,Foundation.NSHttpUrlResponse,Foundation.NSError}) -M:Social.SLComposeViewController.IsAvailable(Social.SLServiceKind) -M:Social.SLRequest.Create(Social.SLServiceKind,Social.SLRequestMethod,Foundation.NSUrl,Foundation.NSDictionary) M:Social.SLRequest.PerformRequestAsync M:Social.SLRequestResult.#ctor(Foundation.NSData,Foundation.NSHttpUrlResponse) M:SoundAnalysis.ISNResultsObserving.DidProduceResult(SoundAnalysis.ISNRequest,SoundAnalysis.ISNResult) @@ -43902,13 +43243,10 @@ M:Speech.SFAcousticFeature.EncodeTo(Foundation.NSCoder) M:Speech.SFAnalysisContextTag.#ctor M:Speech.SFSpeechLanguageModel.PrepareCustomModelAsync(Foundation.NSUrl,System.String,Speech.SFSpeechLanguageModelConfiguration,System.Boolean) M:Speech.SFSpeechLanguageModel.PrepareCustomModelAsync(Foundation.NSUrl,System.String,Speech.SFSpeechLanguageModelConfiguration) -M:Speech.SFSpeechLanguageModelConfiguration.#ctor M:Speech.SFSpeechLanguageModelConfiguration.Copy(Foundation.NSZone) M:Speech.SFSpeechRecognitionMetadata.Copy(Foundation.NSZone) M:Speech.SFSpeechRecognitionMetadata.EncodeTo(Foundation.NSCoder) -M:Speech.SFSpeechRecognitionResult.#ctor M:Speech.SFSpeechRecognitionResult.Copy(Foundation.NSZone) -M:Speech.SFSpeechRecognitionMetadata.EncodeTo(Foundation.NSCoder) M:Speech.SFSpeechRecognitionResult.EncodeTo(Foundation.NSCoder) M:Speech.SFSpeechRecognitionTaskDelegate_Extensions.DidDetectSpeech(Speech.ISFSpeechRecognitionTaskDelegate,Speech.SFSpeechRecognitionTask) M:Speech.SFSpeechRecognitionTaskDelegate_Extensions.DidFinishRecognition(Speech.ISFSpeechRecognitionTaskDelegate,Speech.SFSpeechRecognitionTask,Speech.SFSpeechRecognitionResult) @@ -43925,15 +43263,11 @@ M:Speech.SFSpeechRecognitionTaskDelegate.WasCancelled(Speech.SFSpeechRecognition M:Speech.SFSpeechRecognizer.Dispose(System.Boolean) M:Speech.SFSpeechRecognizerDelegate_Extensions.AvailabilityDidChange(Speech.ISFSpeechRecognizerDelegate,Speech.SFSpeechRecognizer,System.Boolean) M:Speech.SFSpeechRecognizerDelegate.AvailabilityDidChange(Speech.SFSpeechRecognizer,System.Boolean) -M:Speech.SFTranscription.#ctor M:Speech.SFTranscription.Copy(Foundation.NSZone) M:Speech.SFTranscription.EncodeTo(Foundation.NSCoder) -M:Speech.SFTranscriptionSegment.#ctor M:Speech.SFTranscriptionSegment.Copy(Foundation.NSZone) M:Speech.SFTranscriptionSegment.EncodeTo(Foundation.NSCoder) M:Speech.SFVoiceAnalytics.Copy(Foundation.NSZone) -M:Speech.SFTranscription.EncodeTo(Foundation.NSCoder) -M:Speech.SFTranscriptionSegment.EncodeTo(Foundation.NSCoder) M:Speech.SFVoiceAnalytics.EncodeTo(Foundation.NSCoder) M:SpriteKit.SK3DNode.HitTest(CoreGraphics.CGPoint,SceneKit.SCNHitTestOptions) M:SpriteKit.SKAction.Copy(Foundation.NSZone) @@ -43942,12 +43276,9 @@ M:SpriteKit.SKAction.ResizeTo(CoreGraphics.CGSize,System.Double) M:SpriteKit.SKAttribute.EncodeTo(Foundation.NSCoder) M:SpriteKit.SKAttributeValue.EncodeTo(Foundation.NSCoder) M:SpriteKit.SKAudioNode.EncodeTo(Foundation.NSCoder) -M:SpriteKit.SKCameraNode.#ctor -M:SpriteKit.SKConstraint.#ctor M:SpriteKit.SKConstraint.Copy(Foundation.NSZone) M:SpriteKit.SKConstraint.EncodeTo(Foundation.NSCoder) M:SpriteKit.SKEffectNode.Dispose(System.Boolean) -M:SpriteKit.SKEmitterNode.#ctor M:SpriteKit.SKEmitterNode.Dispose(System.Boolean) M:SpriteKit.SKKeyframeSequence.#ctor(Foundation.NSObject[],Foundation.NSNumber[]) M:SpriteKit.SKKeyframeSequence.#ctor(Foundation.NSObject[],System.Double[]) @@ -43993,11 +43324,9 @@ M:SpriteKit.SKPhysicsWorld.Dispose(System.Boolean) M:SpriteKit.SKPhysicsWorld.EncodeTo(Foundation.NSCoder) M:SpriteKit.SKPhysicsWorld.remove_DidBeginContact(System.EventHandler) M:SpriteKit.SKPhysicsWorld.remove_DidEndContact(System.EventHandler) -M:SpriteKit.SKRange.#ctor M:SpriteKit.SKRange.Copy(Foundation.NSZone) M:SpriteKit.SKRange.EncodeTo(Foundation.NSCoder) M:SpriteKit.SKReachConstraints.EncodeTo(Foundation.NSCoder) -M:SpriteKit.SKRegion.#ctor M:SpriteKit.SKRegion.Copy(Foundation.NSZone) M:SpriteKit.SKRegion.EncodeTo(Foundation.NSCoder) M:SpriteKit.SKRenderer.Dispose(System.Boolean) @@ -44012,7 +43341,6 @@ M:SpriteKit.SKSceneDelegate.DidEvaluateActions(SpriteKit.SKScene) M:SpriteKit.SKSceneDelegate.DidFinishUpdate(SpriteKit.SKScene) M:SpriteKit.SKSceneDelegate.DidSimulatePhysics(SpriteKit.SKScene) M:SpriteKit.SKSceneDelegate.Update(System.Double,SpriteKit.SKScene) -M:SpriteKit.SKShader.#ctor M:SpriteKit.SKShader.Copy(Foundation.NSZone) M:SpriteKit.SKShader.EncodeTo(Foundation.NSCoder) M:SpriteKit.SKShapeNode.FromPoints(CoreGraphics.CGPoint[],System.Int32,System.Int32) @@ -44032,32 +43360,18 @@ M:SpriteKit.SKTextureAtlas.PreloadTexturesAsync(SpriteKit.SKTextureAtlas[]) M:SpriteKit.SKTextureAtlasLoadResult.#ctor(Foundation.NSError,SpriteKit.SKTextureAtlas) M:SpriteKit.SKTileDefinition.Copy(Foundation.NSZone) M:SpriteKit.SKTileDefinition.EncodeTo(Foundation.NSCoder) -M:SpriteKit.SKTileGroup.#ctor M:SpriteKit.SKTileGroup.Copy(Foundation.NSZone) M:SpriteKit.SKTileGroup.EncodeTo(Foundation.NSCoder) -M:SpriteKit.SKTileGroupRule.#ctor M:SpriteKit.SKTileGroupRule.Copy(Foundation.NSZone) M:SpriteKit.SKTileGroupRule.EncodeTo(Foundation.NSCoder) -M:SpriteKit.SKTileMapNode.#ctor M:SpriteKit.SKTileMapNode.Copy(Foundation.NSZone) M:SpriteKit.SKTileMapNode.Dispose(System.Boolean) M:SpriteKit.SKTileMapNode.EncodeTo(Foundation.NSCoder) M:SpriteKit.SKTileMapNode.FromTileSet(SpriteKit.SKTileSet,System.UIntPtr,System.UIntPtr,CoreGraphics.CGSize,GameplayKit.GKNoiseMap,Foundation.NSNumber[]) -M:SpriteKit.SKTileSet.#ctor M:SpriteKit.SKTileSet.Copy(Foundation.NSZone) M:SpriteKit.SKTileSet.Dispose(System.Boolean) M:SpriteKit.SKTileSet.EncodeTo(Foundation.NSCoder) -M:SpriteKit.SKTransformNode.#ctor M:SpriteKit.SKTransition.Copy(Foundation.NSZone) -M:SpriteKit.SKUniform.#ctor -M:SpriteKit.SKTileDefinition.EncodeTo(Foundation.NSCoder) -M:SpriteKit.SKTileGroup.EncodeTo(Foundation.NSCoder) -M:SpriteKit.SKTileGroupRule.EncodeTo(Foundation.NSCoder) -M:SpriteKit.SKTileMapNode.Dispose(System.Boolean) -M:SpriteKit.SKTileMapNode.EncodeTo(Foundation.NSCoder) -M:SpriteKit.SKTileMapNode.FromTileSet(SpriteKit.SKTileSet,System.UIntPtr,System.UIntPtr,CoreGraphics.CGSize,GameplayKit.GKNoiseMap,Foundation.NSNumber[]) -M:SpriteKit.SKTileSet.Dispose(System.Boolean) -M:SpriteKit.SKTileSet.EncodeTo(Foundation.NSCoder) M:SpriteKit.SKUniform.#ctor(System.String,System.Numerics.Vector2) M:SpriteKit.SKUniform.#ctor(System.String,System.Numerics.Vector3) M:SpriteKit.SKUniform.#ctor(System.String,System.Numerics.Vector4) @@ -44073,7 +43387,6 @@ M:SpriteKit.SKView.EncodeTo(Foundation.NSCoder) M:SpriteKit.SKView.SKViewAppearance.#ctor(System.IntPtr) M:SpriteKit.SKViewDelegate_Extensions.ShouldRender(SpriteKit.ISKViewDelegate,SpriteKit.SKView,System.Double) M:SpriteKit.SKViewDelegate.ShouldRender(SpriteKit.SKView,System.Double) -M:SpriteKit.SKWarpGeometry.#ctor M:SpriteKit.SKWarpGeometry.Copy(Foundation.NSZone) M:SpriteKit.SKWarpGeometry.EncodeTo(Foundation.NSCoder) M:SpriteKit.SKWarpGeometryGrid.#ctor(System.IntPtr,System.IntPtr,System.Numerics.Vector2[],System.Numerics.Vector2[]) @@ -44120,7 +43433,6 @@ M:StoreKit.SKOverlayDelegate.WillStartDismissal(StoreKit.SKOverlay,StoreKit.SKOv M:StoreKit.SKOverlayDelegate.WillStartPresentation(StoreKit.SKOverlay,StoreKit.SKOverlayTransitionContext) M:StoreKit.SKPayment.Copy(Foundation.NSZone) M:StoreKit.SKPayment.MutableCopy(Foundation.NSZone) -M:StoreKit.SKPaymentQueue.#ctor M:StoreKit.SKPaymentQueue.Dispose(System.Boolean) M:StoreKit.SKPaymentQueueDelegate_Extensions.ShouldContinueTransaction(StoreKit.ISKPaymentQueueDelegate,StoreKit.SKPaymentQueue,StoreKit.SKPaymentTransaction,StoreKit.SKStorefront) M:StoreKit.SKPaymentQueueDelegate_Extensions.ShouldShowPriceConsent(StoreKit.ISKPaymentQueueDelegate,StoreKit.SKPaymentQueue) @@ -44182,8 +43494,6 @@ M:Symbols.NSSymbolContentTransition.EncodeTo(Foundation.NSCoder) M:Symbols.NSSymbolEffect.Copy(Foundation.NSZone) M:Symbols.NSSymbolEffect.EncodeTo(Foundation.NSCoder) M:Symbols.NSSymbolEffectOptions.Copy(Foundation.NSZone) -M:Symbols.NSSymbolContentTransition.EncodeTo(Foundation.NSCoder) -M:Symbols.NSSymbolEffect.EncodeTo(Foundation.NSCoder) M:Symbols.NSSymbolEffectOptions.EncodeTo(Foundation.NSCoder) M:System.Net.Http.CFNetworkHandler.#ctor M:System.Net.Http.CFNetworkHandler.Dispose(System.Boolean) @@ -44210,7 +43520,6 @@ M:SystemConfiguration.NetworkReachability.Unschedule M:SystemConfiguration.NetworkReachability.Unschedule(CoreFoundation.CFRunLoop,System.String) M:SystemConfiguration.StatusCodeError.GetErrorDescription(SystemConfiguration.StatusCode) M:SystemConfiguration.SystemConfigurationException.#ctor(SystemConfiguration.StatusCode) -M:ThreadNetwork.THClient.#ctor M:ThreadNetwork.THClient.CheckPreferredNetwork(Foundation.NSData,System.Action{System.Boolean}) M:ThreadNetwork.THClient.CheckPreferredNetworkAsync(Foundation.NSData) M:ThreadNetwork.THClient.DeleteCredentialsForBorderAgent(Foundation.NSData,System.Action{Foundation.NSError}) @@ -44233,7 +43542,6 @@ M:ThreadNetwork.THCredentials.EncodeTo(Foundation.NSCoder) M:TVMLKit.ITVBrowserViewControllerDataSource.GetCorrespondingDocumentViewController(TVMLKit.TVBrowserViewController,TVMLKit.TVViewElement) M:TVMLKit.TVApplicationController.Dispose(System.Boolean) M:TVMLKit.TVApplicationController.EvaluateAsync(System.Action{JavaScriptCore.JSContext}) -M:TVMLKit.TVApplicationControllerContext.#ctor M:TVMLKit.TVApplicationControllerContext.Copy(Foundation.NSZone) M:TVMLKit.TVApplicationControllerDelegate_Extensions.DidFail(TVMLKit.ITVApplicationControllerDelegate,TVMLKit.TVApplicationController,Foundation.NSError) M:TVMLKit.TVApplicationControllerDelegate_Extensions.DidFinishLaunching(TVMLKit.ITVApplicationControllerDelegate,TVMLKit.TVApplicationController,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject}) @@ -44256,7 +43564,6 @@ M:TVMLKit.TVBrowserViewControllerDelegate_Extensions.DidCenterOnViewElement(TVML M:TVMLKit.TVBrowserViewControllerDelegate_Extensions.WillCenterOnViewElement(TVMLKit.ITVBrowserViewControllerDelegate,TVMLKit.TVBrowserViewController,TVMLKit.TVViewElement) M:TVMLKit.TVBrowserViewControllerDelegate.DidCenterOnViewElement(TVMLKit.TVBrowserViewController,TVMLKit.TVViewElement) M:TVMLKit.TVBrowserViewControllerDelegate.WillCenterOnViewElement(TVMLKit.TVBrowserViewController,TVMLKit.TVViewElement) -M:TVMLKit.TVColor.#ctor M:TVMLKit.TVColor.Copy(Foundation.NSZone) M:TVMLKit.TVDocumentViewController.Dispose(System.Boolean) M:TVMLKit.TVDocumentViewControllerDelegate_Extensions.DidFailUpdate(TVMLKit.ITVDocumentViewControllerDelegate,TVMLKit.TVDocumentViewController,Foundation.NSError) @@ -44275,7 +43582,6 @@ M:TVMLKit.TVInterfaceCreating_Extensions.GetPlayerViewController(TVMLKit.ITVInte M:TVMLKit.TVInterfaceCreating_Extensions.GetUrlForResource(TVMLKit.ITVInterfaceCreating,System.String) M:TVMLKit.TVInterfaceCreating_Extensions.GetViewControllerForElement(TVMLKit.ITVInterfaceCreating,TVMLKit.TVViewElement,UIKit.UIViewController) M:TVMLKit.TVInterfaceCreating_Extensions.GetViewForElement(TVMLKit.ITVInterfaceCreating,TVMLKit.TVViewElement,UIKit.UIView) -M:TVMLKit.TVInterfaceFactory.#ctor M:TVMLKit.TVInterfaceFactory.GetCollectionViewCellClass(TVMLKit.TVViewElement) M:TVMLKit.TVInterfaceFactory.GetImageForResource(System.String) M:TVMLKit.TVInterfaceFactory.GetPlayerViewController(TVMLKit.TVPlayer) @@ -44285,17 +43591,11 @@ M:TVMLKit.TVInterfaceFactory.GetViewForElement(TVMLKit.TVViewElement,UIKit.UIVie M:TVMLKit.TVPlaybackCustomEventUserInfo.ProcessReturn(JavaScriptCore.JSValue,JavaScriptCore.JSContext) M:TVMLKit.TVPlaybackEventMarshaling_Extensions.ProcessReturn(TVMLKit.ITVPlaybackEventMarshaling,JavaScriptCore.JSValue,JavaScriptCore.JSContext) M:TVMLKit.TVPlayer.DispatchEventAsync(System.String,TVMLKit.ITVPlaybackEventMarshaling) -M:TVMLKit.TVStyleFactory.#ctor -M:TVMLKit.TVTextElement.#ctor -M:TVMLKit.TVViewElement.#ctor M:TVMLKit.TVViewElement.Copy(Foundation.NSZone) -M:TVMLKit.TVPlaybackEventMarshaling_Extensions.ProcessReturn(TVMLKit.ITVPlaybackEventMarshaling,JavaScriptCore.JSValue,JavaScriptCore.JSContext) -M:TVMLKit.TVPlayer.DispatchEventAsync(System.String,TVMLKit.ITVPlaybackEventMarshaling) M:TVMLKit.TVViewElement.DispatchEventAsync(System.String,System.Boolean,System.Boolean,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject}) M:TVMLKit.TVViewElement.DispatchEventAsync(TVMLKit.TVElementEventType,System.Boolean,System.Boolean,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject}) M:TVMLKit.TVViewElement.Dispose(System.Boolean) M:TVMLKit.TVViewElementDispatchResult.#ctor(System.Boolean,System.Boolean) -M:TVMLKit.TVViewElementStyle.#ctor M:TVMLKit.TVViewElementStyle.Copy(Foundation.NSZone) M:TVServices.TVAppProfileDescriptor.#ctor(System.String) M:TVServices.TVAppProfileDescriptor.Copy(Foundation.NSZone) @@ -44363,9 +43663,6 @@ M:TVUIKit.TVMonogramContentConfiguration.EncodeTo(Foundation.NSCoder) M:TVUIKit.TVMonogramContentConfiguration.GetUpdatedConfiguration(UIKit.IUIConfigurationState) M:TVUIKit.TVMonogramContentConfiguration.MakeContentView M:TVUIKit.TVMonogramContentTextProperties.Copy(Foundation.NSZone) -M:TVUIKit.TVMediaItemContentView.TVMediaItemContentViewAppearance.#ctor(System.IntPtr) -M:TVUIKit.TVMonogramContentConfiguration.Copy(Foundation.NSZone) -M:TVUIKit.TVMonogramContentConfiguration.EncodeTo(Foundation.NSCoder) M:TVUIKit.TVMonogramContentTextProperties.EncodeTo(Foundation.NSCoder) M:TVUIKit.TVMonogramContentView.GetConfiguration M:TVUIKit.TVMonogramContentView.SupportsConfiguration(UIKit.IUIContentConfiguration) @@ -44636,11 +43933,7 @@ M:UIKit.NSCollectionLayoutSpacing.Copy(Foundation.NSZone) M:UIKit.NSCollectionLayoutSupplementaryItem.Copy(Foundation.NSZone) M:UIKit.NSDataAsset.Copy(Foundation.NSZone) M:UIKit.NSDiffableDataSourceSectionSnapshot`1.Copy(Foundation.NSZone) -M:UIKit.NSDiffableDataSourceSectionTransaction`2.#ctor -M:UIKit.NSDiffableDataSourceSnapshot`2.#ctor M:UIKit.NSDiffableDataSourceSnapshot`2.Copy(Foundation.NSZone) -M:UIKit.NSDiffableDataSourceTransaction`2.#ctor -M:UIKit.NSCollectionLayoutSection.GetOrthogonalLayoutSectionForMediaItems M:UIKit.NSDirectionalEdgeInsets.#ctor(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat) M:UIKit.NSDirectionalEdgeInsets.Equals(System.Object) M:UIKit.NSDirectionalEdgeInsets.Equals(UIKit.NSDirectionalEdgeInsets) @@ -44657,7 +43950,6 @@ M:UIKit.NSIdentifier.GetIdentifier(UIKit.NSLayoutConstraint) M:UIKit.NSIdentifier.SetIdentifier(UIKit.NSLayoutConstraint,System.String) M:UIKit.NSLayoutAnchor`1.Copy(Foundation.NSZone) M:UIKit.NSLayoutAnchor`1.EncodeTo(Foundation.NSCoder) -M:UIKit.NSLayoutConstraint.#ctor M:UIKit.NSLayoutConstraint.Create(Foundation.NSObject,UIKit.NSLayoutAttribute,UIKit.NSLayoutRelation,Foundation.NSObject,UIKit.NSLayoutAttribute,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat) M:UIKit.NSLayoutConstraint.Create(Foundation.NSObject,UIKit.NSLayoutAttribute,UIKit.NSLayoutRelation,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat) M:UIKit.NSLayoutConstraint.Create(Foundation.NSObject,UIKit.NSLayoutAttribute,UIKit.NSLayoutRelation) @@ -44719,14 +44011,11 @@ M:UIKit.NSLayoutManagerDelegate.ShouldUseAction(UIKit.NSLayoutManager,UIKit.NSCo M:UIKit.NSMutableAttributedStringKitAdditions.FixAttributesInRange(Foundation.NSMutableAttributedString,Foundation.NSRange) M:UIKit.NSObject_UIAccessibilityCustomRotor.GetAccessibilityCustomRotors(Foundation.NSObject) M:UIKit.NSObject_UIAccessibilityCustomRotor.SetAccessibilityCustomRotors(Foundation.NSObject,UIKit.UIAccessibilityCustomRotor[]) -M:UIKit.NSParagraphStyle.#ctor M:UIKit.NSParagraphStyle.Copy(Foundation.NSZone) M:UIKit.NSParagraphStyle.EncodeTo(Foundation.NSCoder) M:UIKit.NSParagraphStyle.MutableCopy(Foundation.NSZone) M:UIKit.NSPreviewInteractionPreviewUpdateEventArgs.#ctor(System.Runtime.InteropServices.NFloat,System.Boolean) M:UIKit.NSShadow.Copy(Foundation.NSZone) -M:UIKit.NSParagraphStyle.EncodeTo(Foundation.NSCoder) -M:UIKit.NSPreviewInteractionPreviewUpdateEventArgs.#ctor(System.Runtime.InteropServices.NFloat,System.Boolean) M:UIKit.NSShadow.EncodeTo(Foundation.NSCoder) M:UIKit.NSStringDrawing.DrawString(Foundation.NSString,CoreGraphics.CGPoint,UIKit.UIStringAttributes) M:UIKit.NSStringDrawing.DrawString(Foundation.NSString,CoreGraphics.CGRect,UIKit.UIStringAttributes) @@ -44740,7 +44029,6 @@ M:UIKit.NSTextAttachment.GetAttachmentBounds(UIKit.NSTextContainer,CoreGraphics. M:UIKit.NSTextAttachment.GetImageForBounds(CoreGraphics.CGRect,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},UIKit.INSTextLocation,UIKit.NSTextContainer) M:UIKit.NSTextAttachment.GetImageForBounds(CoreGraphics.CGRect,UIKit.NSTextContainer,System.UIntPtr) M:UIKit.NSTextAttachment.GetViewProvider(UIKit.UIView,UIKit.INSTextLocation,UIKit.NSTextContainer) -M:UIKit.NSTextAttachmentContainer.#ctor M:UIKit.NSTextAttachmentContainer.GetAttachmentBounds(UIKit.NSTextContainer,CoreGraphics.CGRect,CoreGraphics.CGPoint,System.UIntPtr) M:UIKit.NSTextAttachmentContainer.GetImageForBounds(CoreGraphics.CGRect,UIKit.NSTextContainer,System.UIntPtr) M:UIKit.NSTextAttachmentViewProvider.Dispose(System.Boolean) @@ -44755,9 +44043,6 @@ M:UIKit.NSTextContentManager.GetOffset(UIKit.INSTextLocation,UIKit.INSTextLocati M:UIKit.NSTextContentManager.PerformEditingTransactionAsync M:UIKit.NSTextContentManager.ReplaceContents(UIKit.NSTextRange,UIKit.NSTextElement[]) M:UIKit.NSTextContentManager.Synchronize(System.Action{Foundation.NSError}) -M:UIKit.NSTextContentManager.Dispose(System.Boolean) -M:UIKit.NSTextContentManager.EncodeTo(Foundation.NSCoder) -M:UIKit.NSTextContentManager.PerformEditingTransactionAsync M:UIKit.NSTextContentManager.SynchronizeTextLayoutManagersAsync M:UIKit.NSTextContentManagerDelegate_Extensions.GetTextContentManager(UIKit.INSTextContentManagerDelegate,UIKit.NSTextContentManager,UIKit.INSTextLocation) M:UIKit.NSTextContentManagerDelegate_Extensions.ShouldEnumerateTextElement(UIKit.INSTextContentManagerDelegate,UIKit.NSTextContentManager,UIKit.NSTextElement,UIKit.NSTextContentManagerEnumerationOptions) @@ -44828,7 +44113,6 @@ M:UIKit.NSTextStorageDelegate_Extensions.WillProcessEditing(UIKit.INSTextStorage M:UIKit.NSTextStorageDelegate.DidProcessEditing(UIKit.NSTextStorage,UIKit.NSTextStorageEditActions,Foundation.NSRange,System.IntPtr) M:UIKit.NSTextStorageDelegate.WillProcessEditing(UIKit.NSTextStorage,UIKit.NSTextStorageEditActions,Foundation.NSRange,System.IntPtr) M:UIKit.NSTextStorageEventArgs.#ctor(UIKit.NSTextStorageEditActions,Foundation.NSRange,System.IntPtr) -M:UIKit.NSTextTab.#ctor M:UIKit.NSTextTab.Copy(Foundation.NSZone) M:UIKit.NSTextTab.EncodeTo(Foundation.NSCoder) M:UIKit.NSTextViewportLayoutController.Dispose(System.Boolean) @@ -44875,7 +44159,6 @@ M:UIKit.UIAccessibilityLocationDescriptor.Dispose(System.Boolean) M:UIKit.UIAccessibilityReadingContent_Extensions.GetAccessibilityAttributedContent(UIKit.IUIAccessibilityReadingContent,System.IntPtr) M:UIKit.UIAccessibilityReadingContent_Extensions.GetAccessibilityAttributedPageContent(UIKit.IUIAccessibilityReadingContent) M:UIKit.UIAction.Target(Foundation.NSObject,Foundation.NSObject) -M:UIKit.UIActionSheet.#ctor M:UIKit.UIActionSheet.#ctor(CoreGraphics.CGRect) M:UIKit.UIActionSheet.#ctor(System.String,UIKit.IUIActionSheetDelegate,System.String,System.String,System.String[]) M:UIKit.UIActionSheet.#ctor(System.String,UIKit.IUIActionSheetDelegate) @@ -44908,8 +44191,6 @@ M:UIKit.UIActionSheetDelegate.Dismissed(UIKit.UIActionSheet,System.IntPtr) M:UIKit.UIActionSheetDelegate.Presented(UIKit.UIActionSheet) M:UIKit.UIActionSheetDelegate.WillDismiss(UIKit.UIActionSheet,System.IntPtr) M:UIKit.UIActionSheetDelegate.WillPresent(UIKit.UIActionSheet) -M:UIKit.UIActivity.#ctor -M:UIKit.UIActivityIndicatorView.#ctor M:UIKit.UIActivityIndicatorView.EncodeTo(Foundation.NSCoder) M:UIKit.UIActivityIndicatorView.UIActivityIndicatorViewAppearance.#ctor(System.IntPtr) M:UIKit.UIActivityItemProvider.GetDataTypeIdentifierForActivity(UIKit.UIActivityViewController,Foundation.NSString) @@ -44923,7 +44204,6 @@ M:UIKit.UIActivityItemsConfiguration.GetActivityItemsConfigurationMetadata(Syste M:UIKit.UIActivityItemsConfiguration.GetActivityItemsConfigurationPreview(System.IntPtr,Foundation.NSString,CoreGraphics.CGSize) M:UIKit.UIActivityItemsConfiguration.GetActivityItemsConfigurationSupportsInteraction(Foundation.NSString) M:UIKit.UIActivityItemsConfiguration.GetApplicationActivitiesForActivityItemsConfiguration -M:UIKit.UIActivityIndicatorView.UIActivityIndicatorViewAppearance.#ctor(System.IntPtr) M:UIKit.UIActivityItemsConfigurationReading_Extensions.GetActivityItemsConfigurationMetadata(UIKit.IUIActivityItemsConfigurationReading,Foundation.NSString) M:UIKit.UIActivityItemsConfigurationReading_Extensions.GetActivityItemsConfigurationMetadata(UIKit.IUIActivityItemsConfigurationReading,System.IntPtr,Foundation.NSString) M:UIKit.UIActivityItemsConfigurationReading_Extensions.GetActivityItemsConfigurationPreview(UIKit.IUIActivityItemsConfigurationReading,System.IntPtr,Foundation.NSString,CoreGraphics.CGSize) @@ -44957,9 +44237,7 @@ M:UIKit.UIAdaptivePresentationControllerDelegate.PrepareAdaptivePresentationCont M:UIKit.UIAdaptivePresentationControllerDelegate.ShouldDismiss(UIKit.UIPresentationController) M:UIKit.UIAdaptivePresentationControllerDelegate.WillDismiss(UIKit.UIPresentationController) M:UIKit.UIAdaptivePresentationControllerDelegate.WillPresent(UIKit.UIPresentationController,UIKit.UIModalPresentationStyle,UIKit.IUIViewControllerTransitionCoordinator) -M:UIKit.UIAlertAction.#ctor M:UIKit.UIAlertAction.Copy(Foundation.NSZone) -M:UIKit.UIAlertController.#ctor M:UIKit.UIAlertController.#ctor(System.String,Foundation.NSBundle) M:UIKit.UIAlertView.#ctor(System.String,System.String,UIKit.IUIAlertViewDelegate,System.String,System.String[]) M:UIKit.UIAlertView.add_Canceled(System.EventHandler) @@ -45120,7 +44398,6 @@ M:UIKit.UIApplicationDelegate.WillTerminate(UIKit.UIApplication) M:UIKit.UIApplicationLaunchEventArgs.#ctor(Foundation.NSNotification) M:UIKit.UIApplicationOpenUrlOptions.#ctor M:UIKit.UIApplicationOpenUrlOptions.#ctor(Foundation.NSDictionary) -M:UIKit.UIApplicationShortcutIcon.#ctor M:UIKit.UIApplicationShortcutIcon.Copy(Foundation.NSZone) M:UIKit.UIApplicationShortcutIcon.FromContact(Contacts.CNContact) M:UIKit.UIApplicationShortcutItem.Copy(Foundation.NSZone) @@ -45131,9 +44408,6 @@ M:UIKit.UIBandSelectionInteraction.DidMoveToView(UIKit.UIView) M:UIKit.UIBandSelectionInteraction.Dispose(System.Boolean) M:UIKit.UIBandSelectionInteraction.WillMoveToView(UIKit.UIView) M:UIKit.UIBarAppearance.Copy(Foundation.NSZone) -M:UIKit.UIApplicationShortcutIcon.FromContact(Contacts.CNContact) -M:UIKit.UIBackgroundConfiguration.EncodeTo(Foundation.NSCoder) -M:UIKit.UIBandSelectionInteraction.Dispose(System.Boolean) M:UIKit.UIBarAppearance.EncodeTo(Foundation.NSCoder) M:UIKit.UIBarButtonItem.#ctor(System.String,UIKit.UIBarButtonItemStyle,System.EventHandler) M:UIKit.UIBarButtonItem.#ctor(UIKit.UIBarButtonSystemItem,System.EventHandler) @@ -45161,11 +44435,9 @@ M:UIKit.UIBarButtonItem.UIBarButtonItemAppearance.SetBackgroundVerticalPositionA M:UIKit.UIBarButtonItem.UIBarButtonItemAppearance.SetTitlePositionAdjustment(UIKit.UIOffset,UIKit.UIBarMetrics) M:UIKit.UIBarButtonItemAppearance.Copy(Foundation.NSZone) M:UIKit.UIBarButtonItemAppearance.EncodeTo(Foundation.NSCoder) -M:UIKit.UIBarButtonItemGroup.#ctor M:UIKit.UIBarButtonItemGroup.EncodeTo(Foundation.NSCoder) M:UIKit.UIBarItem.AccessibilityActivate M:UIKit.UIBarItem.EncodeTo(Foundation.NSCoder) -M:UIKit.UIBarItem.AccessibilityActivate M:UIKit.UIBarItem.GetTitleTextAttributes(UIKit.UIControlState) M:UIKit.UIBarItem.SetTitleTextAttributes(UIKit.UIStringAttributes,UIKit.UIControlState) M:UIKit.UIBarItem.UIBarItemAppearance.#ctor(System.IntPtr) @@ -45230,10 +44502,7 @@ M:UIKit.UICloudSharingControllerDelegate.GetItemTitle(UIKit.UICloudSharingContro M:UIKit.UICloudSharingControllerDelegate.GetItemType(UIKit.UICloudSharingController) M:UIKit.UICollectionLayoutListConfiguration.Copy(Foundation.NSZone) M:UIKit.UICollectionLayoutListConfiguration.Dispose(System.Boolean) -M:UIKit.UICollectionLayoutSectionOrthogonalScrollingProperties.#ctor M:UIKit.UICollectionLayoutSectionOrthogonalScrollingProperties.Copy(Foundation.NSZone) -M:UIKit.UICollectionReusableView.#ctor -M:UIKit.UICollectionLayoutListConfiguration.Dispose(System.Boolean) M:UIKit.UICollectionReusableView.#ctor(CoreGraphics.CGRect) M:UIKit.UICollectionReusableView.UICollectionReusableViewAppearance.#ctor(System.IntPtr) M:UIKit.UICollectionView.DequeueReusableCell(System.String,Foundation.NSIndexPath) @@ -45264,9 +44533,7 @@ M:UIKit.UICollectionView.UICollectionViewAppearance.#ctor(System.IntPtr) M:UIKit.UICollectionViewCell.#ctor(CoreGraphics.CGRect) M:UIKit.UICollectionViewCell.UICollectionViewCellAppearance.#ctor(System.IntPtr) M:UIKit.UICollectionViewCellRegistration.GetRegistration(System.Type,UIKit.UICollectionViewCellRegistrationConfigurationHandler) -M:UIKit.UICollectionViewCompositionalLayoutConfiguration.#ctor M:UIKit.UICollectionViewCompositionalLayoutConfiguration.Copy(Foundation.NSZone) -M:UIKit.UICollectionViewController.#ctor M:UIKit.UICollectionViewController.CanEditItem(UIKit.UICollectionView,Foundation.NSIndexPath) M:UIKit.UICollectionViewController.CanFocusItem(UIKit.UICollectionView,Foundation.NSIndexPath) M:UIKit.UICollectionViewController.CanMoveItem(UIKit.UICollectionView,Foundation.NSIndexPath) @@ -45314,9 +44581,6 @@ M:UIKit.UICollectionViewController.ScrolledToTop(UIKit.UIScrollView) M:UIKit.UICollectionViewController.ShouldBeginMultipleSelectionInteraction(UIKit.UICollectionView,Foundation.NSIndexPath) M:UIKit.UICollectionViewController.ShouldDeselectItem(UIKit.UICollectionView,Foundation.NSIndexPath) M:UIKit.UICollectionViewController.ShouldHighlightItem(UIKit.UICollectionView,Foundation.NSIndexPath) -M:UIKit.UICollectionViewController.ScrollAnimationEnded(UIKit.UIScrollView) -M:UIKit.UICollectionViewController.Scrolled(UIKit.UIScrollView) -M:UIKit.UICollectionViewController.ScrolledToTop(UIKit.UIScrollView) M:UIKit.UICollectionViewController.ShouldScrollToTop(UIKit.UIScrollView) M:UIKit.UICollectionViewController.ShouldSelectItem(UIKit.UICollectionView,Foundation.NSIndexPath) M:UIKit.UICollectionViewController.ShouldShowMenu(UIKit.UICollectionView,Foundation.NSIndexPath) @@ -45464,9 +44728,7 @@ M:UIKit.UICollectionViewDiffableDataSource`2.GetItemsCount(UIKit.UICollectionVie M:UIKit.UICollectionViewDiffableDataSource`2.GetViewForSupplementaryElement(UIKit.UICollectionView,Foundation.NSString,Foundation.NSIndexPath) M:UIKit.UICollectionViewDiffableDataSource`2.MoveItem(UIKit.UICollectionView,Foundation.NSIndexPath,Foundation.NSIndexPath) M:UIKit.UICollectionViewDiffableDataSource`2.NumberOfSections(UIKit.UICollectionView) -M:UIKit.UICollectionViewDiffableDataSourceReorderingHandlers`2.#ctor M:UIKit.UICollectionViewDiffableDataSourceReorderingHandlers`2.Copy(Foundation.NSZone) -M:UIKit.UICollectionViewDiffableDataSourceSectionSnapshotHandlers`1.#ctor M:UIKit.UICollectionViewDiffableDataSourceSectionSnapshotHandlers`1.Copy(Foundation.NSZone) M:UIKit.UICollectionViewDragDelegate_Extensions.DragSessionAllowsMoveOperation(UIKit.IUICollectionViewDragDelegate,UIKit.UICollectionView,UIKit.IUIDragSession) M:UIKit.UICollectionViewDragDelegate_Extensions.DragSessionDidEnd(UIKit.IUICollectionViewDragDelegate,UIKit.UICollectionView,UIKit.IUIDragSession) @@ -45496,22 +44758,15 @@ M:UIKit.UICollectionViewDropDelegate.GetDropPreviewParameters(UIKit.UICollection M:UIKit.UICollectionViewDropDelegate.PerformDrop(UIKit.UICollectionView,UIKit.IUICollectionViewDropCoordinator) M:UIKit.UICollectionViewDropPlaceholder.#ctor(Foundation.NSIndexPath,System.String) M:UIKit.UICollectionViewDropProposal.#ctor(UIKit.UIDropOperation) -M:UIKit.UICollectionViewFlowLayout.#ctor -M:UIKit.UICollectionViewFlowLayoutInvalidationContext.#ctor M:UIKit.UICollectionViewLayout.EncodeTo(Foundation.NSCoder) M:UIKit.UICollectionViewLayout.LayoutAttributesForSupplementaryView(UIKit.UICollectionElementKindSection,Foundation.NSIndexPath) M:UIKit.UICollectionViewLayout.RegisterClassForDecorationView(System.Type,Foundation.NSString) -M:UIKit.UICollectionViewLayoutAttributes.#ctor M:UIKit.UICollectionViewLayoutAttributes.Copy(Foundation.NSZone) -M:UIKit.UICollectionViewLayout.LayoutAttributesForSupplementaryView(UIKit.UICollectionElementKindSection,Foundation.NSIndexPath) -M:UIKit.UICollectionViewLayout.RegisterClassForDecorationView(System.Type,Foundation.NSString) M:UIKit.UICollectionViewLayoutAttributes.CreateForCell``1(Foundation.NSIndexPath) M:UIKit.UICollectionViewLayoutAttributes.CreateForDecorationView``1(Foundation.NSString,Foundation.NSIndexPath) M:UIKit.UICollectionViewLayoutAttributes.CreateForSupplementaryView(UIKit.UICollectionElementKindSection,Foundation.NSIndexPath) M:UIKit.UICollectionViewLayoutAttributes.CreateForSupplementaryView``1(Foundation.NSString,Foundation.NSIndexPath) M:UIKit.UICollectionViewLayoutAttributes.CreateForSupplementaryView``1(UIKit.UICollectionElementKindSection,Foundation.NSIndexPath) -M:UIKit.UICollectionViewLayoutInvalidationContext.#ctor -M:UIKit.UICollectionViewListCell.#ctor M:UIKit.UICollectionViewListCell.#ctor(CoreGraphics.CGRect) M:UIKit.UICollectionViewListCell.UICollectionViewListCellAppearance.#ctor(System.IntPtr) M:UIKit.UICollectionViewSource.CanEditItem(UIKit.UICollectionView,Foundation.NSIndexPath) @@ -45637,7 +44892,6 @@ M:UIKit.UIContentContainer.WillTransitionToTraitCollection(UIKit.UITraitCollecti M:UIKit.UIContentSizeCategoryChangedEventArgs.#ctor(Foundation.NSNotification) M:UIKit.UIContentSizeCategoryExtensions.Compare(UIKit.UIContentSizeCategory,UIKit.UIContentSizeCategory) M:UIKit.UIContentSizeCategoryExtensions.IsAccessibilityCategory(UIKit.UIContentSizeCategory) -M:UIKit.UIContentUnavailableButtonProperties.#ctor M:UIKit.UIContentUnavailableButtonProperties.Copy(Foundation.NSZone) M:UIKit.UIContentUnavailableButtonProperties.EncodeTo(Foundation.NSCoder) M:UIKit.UIContentUnavailableConfiguration.Copy(Foundation.NSZone) @@ -45650,26 +44904,16 @@ M:UIKit.UIContentUnavailableConfigurationState.GetCustomState(System.String) M:UIKit.UIContentUnavailableConfigurationState.GetObject(System.String) M:UIKit.UIContentUnavailableConfigurationState.SetCustomState(Foundation.NSObject,System.String) M:UIKit.UIContentUnavailableConfigurationState.SetObject(Foundation.NSObject,System.String) -M:UIKit.UIContentUnavailableImageProperties.#ctor M:UIKit.UIContentUnavailableImageProperties.Copy(Foundation.NSZone) M:UIKit.UIContentUnavailableImageProperties.EncodeTo(Foundation.NSCoder) -M:UIKit.UIContentUnavailableTextProperties.#ctor M:UIKit.UIContentUnavailableTextProperties.Copy(Foundation.NSZone) M:UIKit.UIContentUnavailableTextProperties.EncodeTo(Foundation.NSCoder) M:UIKit.UIContentUnavailableView.SupportsConfiguration(UIKit.IUIContentConfiguration) M:UIKit.UIContentUnavailableView.UIContentUnavailableViewAppearance.#ctor(System.IntPtr) M:UIKit.UIContentView_Extensions.SupportsConfiguration(UIKit.IUIContentView,UIKit.IUIContentConfiguration) -M:UIKit.UIContextMenuConfiguration.#ctor M:UIKit.UIContextMenuInteraction.DidMoveToView(UIKit.UIView) M:UIKit.UIContextMenuInteraction.Dispose(System.Boolean) M:UIKit.UIContextMenuInteraction.WillMoveToView(UIKit.UIView) -M:UIKit.UIContentUnavailableConfigurationState.Copy(Foundation.NSZone) -M:UIKit.UIContentUnavailableConfigurationState.EncodeTo(Foundation.NSCoder) -M:UIKit.UIContentUnavailableImageProperties.EncodeTo(Foundation.NSCoder) -M:UIKit.UIContentUnavailableTextProperties.EncodeTo(Foundation.NSCoder) -M:UIKit.UIContentUnavailableView.UIContentUnavailableViewAppearance.#ctor(System.IntPtr) -M:UIKit.UIContentView_Extensions.SupportsConfiguration(UIKit.IUIContentView,UIKit.IUIContentConfiguration) -M:UIKit.UIContextMenuInteraction.Dispose(System.Boolean) M:UIKit.UIContextMenuInteractionDelegate_Extensions.GetDismissalPreview(UIKit.IUIContextMenuInteractionDelegate,UIKit.UIContextMenuInteraction,UIKit.UIContextMenuConfiguration,Foundation.INSCopying) M:UIKit.UIContextMenuInteractionDelegate_Extensions.GetHighlightPreview(UIKit.IUIContextMenuInteractionDelegate,UIKit.UIContextMenuInteraction,UIKit.UIContextMenuConfiguration,Foundation.INSCopying) M:UIKit.UIContextMenuInteractionDelegate_Extensions.GetPreviewForDismissingMenu(UIKit.IUIContextMenuInteractionDelegate,UIKit.UIContextMenuInteraction,UIKit.UIContextMenuConfiguration) @@ -45733,20 +44977,16 @@ M:UIKit.UICoordinateSpace.ConvertRectFromCoordinateSpace(CoreGraphics.CGRect,UIK M:UIKit.UICoordinateSpace.ConvertRectToCoordinateSpace(CoreGraphics.CGRect,UIKit.IUICoordinateSpace) M:UIKit.UICubicTimingParameters.Copy(Foundation.NSZone) M:UIKit.UICubicTimingParameters.EncodeTo(Foundation.NSCoder) -M:UIKit.UIDatePicker.#ctor M:UIKit.UIDatePicker.#ctor(CoreGraphics.CGRect) M:UIKit.UIDatePicker.UIDatePickerAppearance.#ctor(System.IntPtr) M:UIKit.UIDevice.CheckSystemVersion(System.Int32,System.Int32) M:UIKit.UIDeviceOrientationExtensions.IsFlat(UIKit.UIDeviceOrientation) M:UIKit.UIDeviceOrientationExtensions.IsLandscape(UIKit.UIDeviceOrientation) M:UIKit.UIDeviceOrientationExtensions.IsPortrait(UIKit.UIDeviceOrientation) -M:UIKit.UIDictationPhrase.#ctor M:UIKit.UIDocument.AccommodatePresentedItemDeletion(System.Action{Foundation.NSError}) M:UIKit.UIDocument.AccommodatePresentedSubitemDeletion(Foundation.NSUrl,System.Action{Foundation.NSError}) M:UIKit.UIDocument.AutoSaveAsync M:UIKit.UIDocument.CloseAsync -M:UIKit.UIDocument.AutoSaveAsync -M:UIKit.UIDocument.CloseAsync M:UIKit.UIDocument.OpenAsync M:UIKit.UIDocument.PerformAsynchronousFileAccessAsync M:UIKit.UIDocument.PresentedItemChanged @@ -45771,11 +45011,8 @@ M:UIKit.UIDocumentBrowserTransitionController.AnimationEnded(System.Boolean) M:UIKit.UIDocumentBrowserTransitionController.Dispose(System.Boolean) M:UIKit.UIDocumentBrowserTransitionController.GetInterruptibleAnimator(UIKit.IUIViewControllerContextTransitioning) M:UIKit.UIDocumentBrowserTransitionController.TransitionDuration(UIKit.IUIViewControllerContextTransitioning) -M:UIKit.UIDocumentBrowserViewController.#ctor M:UIKit.UIDocumentBrowserViewController.Dispose(System.Boolean) M:UIKit.UIDocumentBrowserViewController.EncodeTo(Foundation.NSCoder) -M:UIKit.UIDocumentBrowserTransitionController.Dispose(System.Boolean) -M:UIKit.UIDocumentBrowserViewController.Dispose(System.Boolean) M:UIKit.UIDocumentBrowserViewController.GetTransitionController(Foundation.NSUrl) M:UIKit.UIDocumentBrowserViewController.ImportDocumentAsync(Foundation.NSUrl,Foundation.NSUrl,UIKit.UIDocumentBrowserImportMode) M:UIKit.UIDocumentBrowserViewController.RenameDocumentAsync(Foundation.NSUrl,System.String) @@ -45905,7 +45142,6 @@ M:UIKit.UIDragInteractionDelegate.WillAddItems(UIKit.UIDragInteraction,UIKit.IUI M:UIKit.UIDragInteractionDelegate.WillAnimateCancel(UIKit.UIDragInteraction,UIKit.UIDragItem,UIKit.IUIDragAnimating) M:UIKit.UIDragInteractionDelegate.WillAnimateLift(UIKit.UIDragInteraction,UIKit.IUIDragAnimating,UIKit.IUIDragSession) M:UIKit.UIDragPreview.Copy(Foundation.NSZone) -M:UIKit.UIDragPreviewParameters.#ctor M:UIKit.UIDragPreviewParameters.#ctor(Foundation.NSValue[]) M:UIKit.UIDragPreviewParameters.Copy(Foundation.NSZone) M:UIKit.UIDragPreviewTarget.#ctor(UIKit.UIView,CoreGraphics.CGPoint,CoreGraphics.CGAffineTransform) @@ -45914,7 +45150,6 @@ M:UIKit.UIDragPreviewTarget.Copy(Foundation.NSZone) M:UIKit.UIDropInteraction.DidMoveToView(UIKit.UIView) M:UIKit.UIDropInteraction.Dispose(System.Boolean) M:UIKit.UIDropInteraction.WillMoveToView(UIKit.UIView) -M:UIKit.UIDropInteraction.Dispose(System.Boolean) M:UIKit.UIDropInteractionDelegate_Extensions.CanHandleSession(UIKit.IUIDropInteractionDelegate,UIKit.UIDropInteraction,UIKit.IUIDropSession) M:UIKit.UIDropInteractionDelegate_Extensions.ConcludeDrop(UIKit.IUIDropInteractionDelegate,UIKit.UIDropInteraction,UIKit.IUIDropSession) M:UIKit.UIDropInteractionDelegate_Extensions.GetPreviewForDroppingItem(UIKit.IUIDropInteractionDelegate,UIKit.UIDropInteraction,UIKit.UIDragItem,UIKit.UITargetedDragPreview) @@ -45934,7 +45169,6 @@ M:UIKit.UIDropInteractionDelegate.SessionDidExit(UIKit.UIDropInteraction,UIKit.I M:UIKit.UIDropInteractionDelegate.SessionDidUpdate(UIKit.UIDropInteraction,UIKit.IUIDropSession) M:UIKit.UIDropInteractionDelegate.WillAnimateDrop(UIKit.UIDropInteraction,UIKit.UIDragItem,UIKit.IUIDragAnimating) M:UIKit.UIDropProposal.Copy(Foundation.NSZone) -M:UIKit.UIDynamicAnimator.#ctor M:UIKit.UIDynamicAnimator.Add(UIKit.UIDynamicBehavior) M:UIKit.UIDynamicAnimator.AddBehaviors(UIKit.UIDynamicBehavior[]) M:UIKit.UIDynamicAnimator.Dispose(System.Boolean) @@ -45945,9 +45179,6 @@ M:UIKit.UIDynamicAnimatorDelegate.DidPause(UIKit.UIDynamicAnimator) M:UIKit.UIDynamicAnimatorDelegate.WillResume(UIKit.UIDynamicAnimator) M:UIKit.UIDynamicItem_Extensions.GetCollisionBoundingPath(UIKit.IUIDynamicItem) M:UIKit.UIDynamicItem_Extensions.GetCollisionBoundsType(UIKit.IUIDynamicItem) -M:UIKit.UIDynamicItem.#ctor -M:UIKit.UIDynamicItemBehavior.#ctor -M:UIKit.UIDynamicItemGroup.#ctor M:UIKit.UIEdgeInsets.#ctor(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat) M:UIKit.UIEdgeInsets.Equals(System.Object) M:UIKit.UIEdgeInsets.Equals(UIKit.UIEdgeInsets) @@ -45960,7 +45191,6 @@ M:UIKit.UIEdgeInsets.ToString M:UIKit.UIEditMenuInteraction.DidMoveToView(UIKit.UIView) M:UIKit.UIEditMenuInteraction.Dispose(System.Boolean) M:UIKit.UIEditMenuInteraction.WillMoveToView(UIKit.UIView) -M:UIKit.UIEditMenuInteraction.Dispose(System.Boolean) M:UIKit.UIEditMenuInteractionDelegate_Extensions.GetMenu(UIKit.IUIEditMenuInteractionDelegate,UIKit.UIEditMenuInteraction,UIKit.UIEditMenuConfiguration,UIKit.UIMenuElement[]) M:UIKit.UIEditMenuInteractionDelegate_Extensions.GetTargetRect(UIKit.IUIEditMenuInteractionDelegate,UIKit.UIEditMenuInteraction,UIKit.UIEditMenuConfiguration) M:UIKit.UIEditMenuInteractionDelegate_Extensions.WillDismissMenu(UIKit.IUIEditMenuInteractionDelegate,UIKit.UIEditMenuInteraction,UIKit.UIEditMenuConfiguration,UIKit.IUIEditMenuInteractionAnimating) @@ -45971,14 +45201,12 @@ M:UIKit.UIEditMenuInteractionDelegate.WillDismissMenu(UIKit.UIEditMenuInteractio M:UIKit.UIEditMenuInteractionDelegate.WillPresentMenu(UIKit.UIEditMenuInteraction,UIKit.UIEditMenuConfiguration,UIKit.IUIEditMenuInteractionAnimating) M:UIKit.UIEvent.ToString M:UIKit.UIEventAttribution.Copy(Foundation.NSZone) -M:UIKit.UIEventAttributionView.#ctor M:UIKit.UIEventAttributionView.#ctor(CoreGraphics.CGRect) M:UIKit.UIEventAttributionView.UIEventAttributionViewAppearance.#ctor(System.IntPtr) M:UIKit.UIEventButtonMaskExtensions.Convert(System.IntPtr) M:UIKit.UIFindInteraction.DidMoveToView(UIKit.UIView) M:UIKit.UIFindInteraction.Dispose(System.Boolean) M:UIKit.UIFindInteraction.WillMoveToView(UIKit.UIView) -M:UIKit.UIFindInteraction.Dispose(System.Boolean) M:UIKit.UIFindInteractionDelegate_Extensions.DidBeginFindSession(UIKit.IUIFindInteractionDelegate,UIKit.UIFindInteraction,UIKit.UIFindSession) M:UIKit.UIFindInteractionDelegate_Extensions.DidEndFindSession(UIKit.IUIFindInteractionDelegate,UIKit.UIFindInteraction,UIKit.UIFindSession) M:UIKit.UIFindInteractionDelegate.DidBeginFindSession(UIKit.UIFindInteraction,UIKit.UIFindSession) @@ -46082,7 +45310,6 @@ M:UIKit.UIFontFeature.#ctor(CoreText.CTFontFeatureVerticalSubstitutionConnection M:UIKit.UIFontFeature.#ctor(System.Int32) M:UIKit.UIFontFeature.ToString M:UIKit.UIFontPickerViewController.Dispose(System.Boolean) -M:UIKit.UIFontPickerViewControllerConfiguration.#ctor M:UIKit.UIFontPickerViewControllerConfiguration.Copy(Foundation.NSZone) M:UIKit.UIFontPickerViewControllerDelegate_Extensions.DidCancel(UIKit.IUIFontPickerViewControllerDelegate,UIKit.UIFontPickerViewController) M:UIKit.UIFontPickerViewControllerDelegate_Extensions.DidPickFont(UIKit.IUIFontPickerViewControllerDelegate,UIKit.UIFontPickerViewController) @@ -46137,17 +45364,7 @@ M:UIKit.UIGraphics.RectFrame(CoreGraphics.CGRect) M:UIKit.UIGraphics.RectFrameUsingBlendMode(CoreGraphics.CGRect,CoreGraphics.CGBlendMode) M:UIKit.UIGraphics.SetPDFContextDestination(System.String,CoreGraphics.CGRect) M:UIKit.UIGraphics.SetPDFContextURL(Foundation.NSUrl,CoreGraphics.CGRect) -M:UIKit.UIGraphicsImageRenderer.#ctor -M:UIKit.UIGraphicsImageRendererContext.#ctor -M:UIKit.UIGraphicsImageRendererFormat.#ctor -M:UIKit.UIGraphicsPdfRenderer.#ctor -M:UIKit.UIGraphicsPdfRendererContext.#ctor -M:UIKit.UIGraphicsPdfRendererFormat.#ctor -M:UIKit.UIGraphicsRenderer.#ctor -M:UIKit.UIGraphicsRendererContext.#ctor -M:UIKit.UIGraphicsRendererFormat.#ctor M:UIKit.UIGraphicsRendererFormat.Copy(Foundation.NSZone) -M:UIKit.UIGravityBehavior.#ctor M:UIKit.UIGuidedAccessRestriction.ConfigureAccessibilityFeatures(UIKit.UIGuidedAccessAccessibilityFeature,System.Boolean,UIKit.UIGuidedAccessRestriction.UIGuidedAccessConfigureAccessibilityFeaturesCompletionHandler) M:UIKit.UIGuidedAccessRestriction.ConfigureAccessibilityFeaturesAsync(UIKit.UIGuidedAccessAccessibilityFeature,System.Boolean) M:UIKit.UIGuidedAccessRestriction.GetState(System.String) @@ -46159,7 +45376,6 @@ M:UIKit.UIHoverGestureRecognizer.#ctor(System.Action{UIKit.UIHoverGestureRecogni M:UIKit.UIHoverHighlightEffect.Copy(Foundation.NSZone) M:UIKit.UIHoverLiftEffect.Copy(Foundation.NSZone) M:UIKit.UIHoverStyle.Copy(Foundation.NSZone) -M:UIKit.UIImage.#ctor M:UIKit.UIImage.AccessibilityActivate M:UIKit.UIImage.AsJPEG M:UIKit.UIImage.AsJPEG(System.Runtime.InteropServices.NFloat) @@ -46191,7 +45407,6 @@ M:UIKit.UIImagePickerControllerDelegate.FinishedPickingMedia(UIKit.UIImagePicker M:UIKit.UIImagePickerMediaPickedEventArgs.#ctor(Foundation.NSDictionary) M:UIKit.UIImageReader.GetImageAsync(Foundation.NSData) M:UIKit.UIImageReader.GetImageAsync(Foundation.NSUrl) -M:UIKit.UIImageReaderConfiguration.#ctor M:UIKit.UIImageReaderConfiguration.Copy(Foundation.NSZone) M:UIKit.UIImageResizingModeExtensions.ToManaged(System.IntPtr) M:UIKit.UIImageResizingModeExtensions.ToNative(UIKit.UIImageResizingMode) @@ -46203,7 +45418,6 @@ M:UIKit.UIImageView.UIImageViewAppearance.#ctor(System.IntPtr) M:UIKit.UIIndirectScribbleInteraction.DidMoveToView(UIKit.UIView) M:UIKit.UIIndirectScribbleInteraction.Dispose(System.Boolean) M:UIKit.UIIndirectScribbleInteraction.WillMoveToView(UIKit.UIView) -M:UIKit.UIIndirectScribbleInteraction.Dispose(System.Boolean) M:UIKit.UIIndirectScribbleInteractionDelegate_Extensions.DidFinishWriting(UIKit.IUIIndirectScribbleInteractionDelegate,UIKit.UIIndirectScribbleInteraction,Foundation.NSObject) M:UIKit.UIIndirectScribbleInteractionDelegate_Extensions.ShouldDelayFocus(UIKit.IUIIndirectScribbleInteractionDelegate,UIKit.UIIndirectScribbleInteraction,Foundation.NSObject) M:UIKit.UIIndirectScribbleInteractionDelegate_Extensions.WillBeginWriting(UIKit.IUIIndirectScribbleInteractionDelegate,UIKit.UIIndirectScribbleInteraction,Foundation.NSObject) @@ -46240,8 +45454,6 @@ M:UIKit.UILabel.UILabelAppearance.#ctor(System.IntPtr) M:UIKit.UILargeContentViewerInteraction.DidMoveToView(UIKit.UIView) M:UIKit.UILargeContentViewerInteraction.Dispose(System.Boolean) M:UIKit.UILargeContentViewerInteraction.WillMoveToView(UIKit.UIView) -M:UIKit.UILabel.UILabelAppearance.#ctor(System.IntPtr) -M:UIKit.UILargeContentViewerInteraction.Dispose(System.Boolean) M:UIKit.UILargeContentViewerInteractionDelegate_Extensions.DidEnd(UIKit.IUILargeContentViewerInteractionDelegate,UIKit.UILargeContentViewerInteraction,UIKit.IUILargeContentViewerItem,CoreGraphics.CGPoint) M:UIKit.UILargeContentViewerInteractionDelegate_Extensions.GetItem(UIKit.IUILargeContentViewerInteractionDelegate,UIKit.UILargeContentViewerInteraction,CoreGraphics.CGPoint) M:UIKit.UILargeContentViewerInteractionDelegate_Extensions.GetViewController(UIKit.IUILargeContentViewerInteractionDelegate,UIKit.UILargeContentViewerInteraction) @@ -46253,10 +45465,7 @@ M:UIKit.UILayoutGuide_UIConstraintBasedLayoutDebugging.GetHasAmbiguousLayout(UIK M:UIKit.UILayoutGuide.Dispose(System.Boolean) M:UIKit.UILayoutGuide.EncodeTo(Foundation.NSCoder) M:UIKit.UILayoutGuide.GetFrame(UIKit.UIView) -M:UIKit.UILayoutSupport.#ctor -M:UIKit.UILexicon.#ctor M:UIKit.UILexicon.Copy(Foundation.NSZone) -M:UIKit.UILexiconEntry.#ctor M:UIKit.UILexiconEntry.Copy(Foundation.NSZone) M:UIKit.UIListContentConfiguration.Copy(Foundation.NSZone) M:UIKit.UIListContentConfiguration.EncodeTo(Foundation.NSCoder) @@ -46267,30 +45476,21 @@ M:UIKit.UIListContentImageProperties.EncodeTo(Foundation.NSCoder) M:UIKit.UIListContentTextProperties.Copy(Foundation.NSZone) M:UIKit.UIListContentTextProperties.EncodeTo(Foundation.NSCoder) M:UIKit.UIListContentView.SupportsConfiguration(UIKit.IUIContentConfiguration) -M:UIKit.UILayoutGuide.GetFrame(UIKit.UIView) -M:UIKit.UIListContentConfiguration.Copy(Foundation.NSZone) -M:UIKit.UIListContentConfiguration.EncodeTo(Foundation.NSCoder) -M:UIKit.UIListContentImageProperties.EncodeTo(Foundation.NSCoder) -M:UIKit.UIListContentTextProperties.EncodeTo(Foundation.NSCoder) M:UIKit.UIListContentView.UIListContentViewAppearance.#ctor(System.IntPtr) M:UIKit.UIListSeparatorConfiguration.Copy(Foundation.NSZone) M:UIKit.UIListSeparatorConfiguration.EncodeTo(Foundation.NSCoder) -M:UIKit.UILocalizedIndexedCollation.#ctor M:UIKit.UILocalNotification.Copy(Foundation.NSZone) M:UIKit.UILocalNotification.EncodeTo(Foundation.NSCoder) -M:UIKit.UILongPressGestureRecognizer.#ctor M:UIKit.UILongPressGestureRecognizer.#ctor(Foundation.NSObject,ObjCRuntime.Selector) M:UIKit.UILongPressGestureRecognizer.#ctor(System.Action) M:UIKit.UILongPressGestureRecognizer.#ctor(System.Action{UIKit.UILongPressGestureRecognizer}) M:UIKit.UIManagedDocument.#ctor(Foundation.NSUrl) -M:UIKit.UIMenuController.#ctor M:UIKit.UIMenuElement.Copy(Foundation.NSZone) M:UIKit.UIMenuElement.EncodeTo(Foundation.NSCoder) M:UIKit.UIMenuLeaf_Extensions.GetSelectedImage(UIKit.IUIMenuLeaf) M:UIKit.UIMenuLeaf_Extensions.SetSelectedImage(UIKit.IUIMenuLeaf,UIKit.UIImage) M:UIKit.UIMotionEffect.Copy(Foundation.NSZone) M:UIKit.UIMotionEffect.EncodeTo(Foundation.NSCoder) -M:UIKit.UIMotionEffectGroup.#ctor M:UIKit.UIMutableApplicationShortcutItem.#ctor(System.String,System.String,System.String,UIKit.UIApplicationShortcutIcon,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject}) M:UIKit.UIMutableApplicationShortcutItem.#ctor(System.String,System.String) M:UIKit.UIMutableTraits.GetObject(UIKit.IUIObjectTraitDefinition) @@ -46415,16 +45615,12 @@ M:UIKit.UIPasteControl.Dispose(System.Boolean) M:UIKit.UIPasteControl.UIPasteControlAppearance.#ctor(System.IntPtr) M:UIKit.UIPasteControlConfiguration.EncodeTo(Foundation.NSCoder) M:UIKit.UIPathEventArgs.#ctor(System.String) -M:UIKit.UIPencilInteraction.#ctor M:UIKit.UIPencilInteraction.DidMoveToView(UIKit.UIView) M:UIKit.UIPencilInteraction.Dispose(System.Boolean) M:UIKit.UIPencilInteraction.WillMoveToView(UIKit.UIView) -M:UIKit.UIPencilInteraction.Dispose(System.Boolean) M:UIKit.UIPencilInteractionDelegate_Extensions.DidTap(UIKit.IUIPencilInteractionDelegate,UIKit.UIPencilInteraction) M:UIKit.UIPencilInteractionDelegate.DidTap(UIKit.UIPencilInteraction) -M:UIKit.UIPercentDrivenInteractiveTransition.#ctor M:UIKit.UIPercentDrivenInteractiveTransition.StartInteractiveTransition(UIKit.IUIViewControllerContextTransitioning) -M:UIKit.UIPickerView.#ctor M:UIKit.UIPickerView.#ctor(CoreGraphics.CGRect) M:UIKit.UIPickerView.Dispose(System.Boolean) M:UIKit.UIPickerView.GetCell(UIKit.UITableView,Foundation.NSIndexPath) @@ -46470,13 +45666,9 @@ M:UIKit.UIPinchGestureRecognizer.#ctor(System.Action{UIKit.UIPinchGestureRecogni M:UIKit.UIPointerAccessory.Copy(Foundation.NSZone) M:UIKit.UIPointerAccessoryPosition.#ctor(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat) M:UIKit.UIPointerEffect.Copy(Foundation.NSZone) -M:UIKit.UIPointerHighlightEffect.#ctor -M:UIKit.UIPointerHoverEffect.#ctor M:UIKit.UIPointerInteraction.DidMoveToView(UIKit.UIView) M:UIKit.UIPointerInteraction.Dispose(System.Boolean) M:UIKit.UIPointerInteraction.WillMoveToView(UIKit.UIView) -M:UIKit.UIPointerAccessoryPosition.#ctor(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat) -M:UIKit.UIPointerInteraction.Dispose(System.Boolean) M:UIKit.UIPointerInteractionDelegate_Extensions.GetRegionForRequest(UIKit.IUIPointerInteractionDelegate,UIKit.UIPointerInteraction,UIKit.UIPointerRegionRequest,UIKit.UIPointerRegion) M:UIKit.UIPointerInteractionDelegate_Extensions.GetStyleForRegion(UIKit.IUIPointerInteractionDelegate,UIKit.UIPointerInteraction,UIKit.UIPointerRegion) M:UIKit.UIPointerInteractionDelegate_Extensions.WillEnterRegion(UIKit.IUIPointerInteractionDelegate,UIKit.UIPointerInteraction,UIKit.UIPointerRegion,UIKit.IUIPointerInteractionAnimating) @@ -46489,12 +45681,10 @@ M:UIKit.UIPointerLockStateDidChangeEventArgs.#ctor(Foundation.NSNotification) M:UIKit.UIPointerRegion.Copy(Foundation.NSZone) M:UIKit.UIPointerShape.Copy(Foundation.NSZone) M:UIKit.UIPointerStyle.Copy(Foundation.NSZone) -M:UIKit.UIPopoverBackgroundView.#ctor M:UIKit.UIPopoverBackgroundView.#ctor(CoreGraphics.CGRect) M:UIKit.UIPopoverBackgroundView.GetArrowBase M:UIKit.UIPopoverBackgroundView.GetArrowHeight M:UIKit.UIPopoverBackgroundView.GetContentViewInsets -M:UIKit.UIPopoverBackgroundView.#ctor(CoreGraphics.CGRect) M:UIKit.UIPopoverBackgroundView.UIPopoverBackgroundViewAppearance.#ctor(System.IntPtr) M:UIKit.UIPopoverController.add_DidDismiss(System.EventHandler) M:UIKit.UIPopoverController.add_WillReposition(System.EventHandler{UIKit.UIPopoverControllerRepositionEventArgs}) @@ -46539,13 +45729,8 @@ M:UIKit.UIPresentationController.UnregisterForTraitChanges(UIKit.IUITraitChangeR M:UIKit.UIPresentationController.UpdateFocusIfNeeded M:UIKit.UIPresentationController.ViewWillTransitionToSize(CoreGraphics.CGSize,UIKit.IUIViewControllerTransitionCoordinator) M:UIKit.UIPresentationController.WillTransitionToTraitCollection(UIKit.UITraitCollection,UIKit.IUIViewControllerTransitionCoordinator) -M:UIKit.UIPress.#ctor -M:UIKit.UIPressesEvent.#ctor -M:UIKit.UIPreviewAction.#ctor M:UIKit.UIPreviewAction.Copy(Foundation.NSZone) -M:UIKit.UIPreviewActionGroup.#ctor M:UIKit.UIPreviewActionGroup.Copy(Foundation.NSZone) -M:UIKit.UIPresentationController.UnregisterForTraitChanges(UIKit.IUITraitChangeRegistration) M:UIKit.UIPreviewInteraction.add_DidCancel(System.EventHandler) M:UIKit.UIPreviewInteraction.add_DidUpdateCommit(System.EventHandler{UIKit.NSPreviewInteractionPreviewUpdateEventArgs}) M:UIKit.UIPreviewInteraction.add_DidUpdatePreviewTransition(System.EventHandler{UIKit.NSPreviewInteractionPreviewUpdateEventArgs}) @@ -46585,12 +45770,10 @@ M:UIKit.UIPrinterPickerControllerDelegate.GetParentViewController(UIKit.UIPrinte M:UIKit.UIPrinterPickerControllerDelegate.ShouldShowPrinter(UIKit.UIPrinterPickerController,UIKit.UIPrinter) M:UIKit.UIPrinterPickerControllerDelegate.WillDismiss(UIKit.UIPrinterPickerController) M:UIKit.UIPrinterPickerControllerDelegate.WillPresent(UIKit.UIPrinterPickerController) -M:UIKit.UIPrintFormatter.#ctor M:UIKit.UIPrintFormatter.Copy(Foundation.NSZone) M:UIKit.UIPrintFormatter.Dispose(System.Boolean) M:UIKit.UIPrintInfo.Copy(Foundation.NSZone) M:UIKit.UIPrintInfo.EncodeTo(Foundation.NSCoder) -M:UIKit.UIPrintFormatter.Dispose(System.Boolean) M:UIKit.UIPrintInteractionCompletionResult.#ctor(UIKit.UIPrintInteractionController,System.Boolean) M:UIKit.UIPrintInteractionController.add_DidDismissPrinterOptions(System.EventHandler) M:UIKit.UIPrintInteractionController.add_DidFinishJob(System.EventHandler) @@ -46634,21 +45817,15 @@ M:UIKit.UIPrintInteractionControllerDelegate.WillDismissPrinterOptions(UIKit.UIP M:UIKit.UIPrintInteractionControllerDelegate.WillPresentPrinterOptions(UIKit.UIPrintInteractionController) M:UIKit.UIPrintInteractionControllerDelegate.WillStartJob(UIKit.UIPrintInteractionController) M:UIKit.UIPrintInteractionResult.#ctor(UIKit.UIPrintInteractionController,System.Boolean) -M:UIKit.UIPrintPageRenderer.#ctor -M:UIKit.UIPrintPaper.#ctor -M:UIKit.UIPrintServiceExtension.#ctor -M:UIKit.UIProgressView.#ctor M:UIKit.UIProgressView.EncodeTo(Foundation.NSCoder) M:UIKit.UIProgressView.UIProgressViewAppearance.#ctor(System.IntPtr) M:UIKit.UIPushBehavior.#ctor(UIKit.UIPushBehaviorMode,UIKit.IUIDynamicItem[]) M:UIKit.UIReferenceLibraryViewController.#ctor(System.String,Foundation.NSBundle) M:UIKit.UIReferenceLibraryViewController.EncodeTo(Foundation.NSCoder) M:UIKit.UIRefreshControl.UIRefreshControlAppearance.#ctor(System.IntPtr) -M:UIKit.UIRegion.#ctor M:UIKit.UIRegion.Copy(Foundation.NSZone) M:UIKit.UIRegion.EncodeTo(Foundation.NSCoder) M:UIKit.UIResolvedShape.Copy(Foundation.NSZone) -M:UIKit.UIResponder.#ctor M:UIKit.UIResponder.AccessibilityDecrement M:UIKit.UIResponder.AccessibilityElementDidBecomeFocused M:UIKit.UIResponder.AccessibilityElementDidLoseFocus @@ -46686,7 +45863,6 @@ M:UIKit.UIResponder.ToggleItalics(Foundation.NSObject) M:UIKit.UIResponder.ToggleUnderline(Foundation.NSObject) M:UIKit.UIResponder.UpdateTextAttributes(UIKit.UITextAttributesConversionHandler) M:UIKit.UIResponder.UseSelectionForFind(Foundation.NSObject) -M:UIKit.UIResponder.Paste(Foundation.NSItemProvider[]) M:UIKit.UIResponderStandardEditActions_Extensions.Copy(UIKit.IUIResponderStandardEditActions,Foundation.NSObject) M:UIKit.UIResponderStandardEditActions_Extensions.Cut(UIKit.IUIResponderStandardEditActions,Foundation.NSObject) M:UIKit.UIResponderStandardEditActions_Extensions.DecreaseSize(UIKit.IUIResponderStandardEditActions,Foundation.NSObject) @@ -46750,15 +45926,10 @@ M:UIKit.UISceneDelegate.WillEnterForeground(UIKit.UIScene) M:UIKit.UISceneDelegate.WillResignActive(UIKit.UIScene) M:UIKit.UISceneSession.EncodeTo(Foundation.NSCoder) M:UIKit.UISceneSessionActivationRequest.Copy(Foundation.NSZone) -M:UIKit.UIScreen.#ctor M:UIKit.UIScreen.Capture M:UIKit.UIScreen.CreateDisplayLink(System.Action) M:UIKit.UIScreen.Dispose(System.Boolean) M:UIKit.UIScreen.TraitCollectionDidChange(UIKit.UITraitCollection) -M:UIKit.UIScreenEdgePanGestureRecognizer.#ctor -M:UIKit.UIScreen.Capture -M:UIKit.UIScreen.CreateDisplayLink(System.Action) -M:UIKit.UIScreen.Dispose(System.Boolean) M:UIKit.UIScreenEdgePanGestureRecognizer.#ctor(Foundation.NSObject,ObjCRuntime.Selector) M:UIKit.UIScreenEdgePanGestureRecognizer.#ctor(System.Action) M:UIKit.UIScreenEdgePanGestureRecognizer.#ctor(System.Action{UIKit.UIScreenEdgePanGestureRecognizer}) @@ -46989,7 +46160,6 @@ M:UIKit.UISegmentedControl.UISegmentedControlAppearance.SetBackgroundImage(UIKit M:UIKit.UISegmentedControl.UISegmentedControlAppearance.SetContentPositionAdjustment(UIKit.UIOffset,UIKit.UISegmentedControlSegment,UIKit.UIBarMetrics) M:UIKit.UISegmentedControl.UISegmentedControlAppearance.SetDividerImage(UIKit.UIImage,UIKit.UIControlState,UIKit.UIControlState,UIKit.UIBarMetrics) M:UIKit.UISegmentedControl.UISegmentedControlAppearance.SetTitleTextAttributes(UIKit.UIStringAttributes,UIKit.UIControlState) -M:UIKit.UISelectionFeedbackGenerator.#ctor M:UIKit.UIShape.Copy(Foundation.NSZone) M:UIKit.UISheetPresentationController.#ctor(UIKit.UIViewController,UIKit.UIViewController) M:UIKit.UISheetPresentationController.Dispose(System.Boolean) @@ -47091,11 +46261,6 @@ M:UIKit.UISpringLoadedInteraction.WillMoveToView(UIKit.UIView) M:UIKit.UISpringLoadedInteractionBehavior_Extensions.InteractionDidFinish(UIKit.IUISpringLoadedInteractionBehavior,UIKit.UISpringLoadedInteraction) M:UIKit.UISpringTimingParameters.Copy(Foundation.NSZone) M:UIKit.UISpringTimingParameters.EncodeTo(Foundation.NSCoder) -M:UIKit.UIStackView.#ctor -M:UIKit.UISpringLoadedInteraction.Dispose(System.Boolean) -M:UIKit.UISpringLoadedInteractionBehavior_Extensions.InteractionDidFinish(UIKit.IUISpringLoadedInteractionBehavior,UIKit.UISpringLoadedInteraction) -M:UIKit.UISpringTimingParameters.Copy(Foundation.NSZone) -M:UIKit.UISpringTimingParameters.EncodeTo(Foundation.NSCoder) M:UIKit.UIStackView.UIStackViewAppearance.#ctor(System.IntPtr) M:UIKit.UIStateRestoring_Extensions.ApplicationFinishedRestoringState(UIKit.IUIStateRestoring) M:UIKit.UIStateRestoring_Extensions.DecodeRestorableState(UIKit.IUIStateRestoring,Foundation.NSCoder) @@ -47147,7 +46312,6 @@ M:UIKit.UIStringDrawing.StringSize(System.String,UIKit.UIFont) M:UIKit.UISwipeGestureRecognizer.#ctor(Foundation.NSObject,ObjCRuntime.Selector) M:UIKit.UISwipeGestureRecognizer.#ctor(System.Action) M:UIKit.UISwipeGestureRecognizer.#ctor(System.Action{UIKit.UISwipeGestureRecognizer}) -M:UIKit.UISwitch.#ctor M:UIKit.UISwitch.EncodeTo(Foundation.NSCoder) M:UIKit.UISwitch.UISwitchAppearance.#ctor(System.IntPtr) M:UIKit.UISymbolEffectCompletionContext.Dispose(System.Boolean) @@ -47253,7 +46417,6 @@ M:UIKit.UITableViewCell.ShouldReceiveTouch(UIKit.UIGestureRecognizer,UIKit.UITou M:UIKit.UITableViewCell.ShouldRecognizeSimultaneously(UIKit.UIGestureRecognizer,UIKit.UIGestureRecognizer) M:UIKit.UITableViewCell.ShouldRequireFailureOf(UIKit.UIGestureRecognizer,UIKit.UIGestureRecognizer) M:UIKit.UITableViewCell.UITableViewCellAppearance.#ctor(System.IntPtr) -M:UIKit.UITableViewController.#ctor M:UIKit.UITableViewController.AccessoryButtonTapped(UIKit.UITableView,Foundation.NSIndexPath) M:UIKit.UITableViewController.CanEditRow(UIKit.UITableView,Foundation.NSIndexPath) M:UIKit.UITableViewController.CanFocusRow(UIKit.UITableView,Foundation.NSIndexPath) @@ -47317,7 +46480,6 @@ M:UIKit.UITableViewController.WillDisplayHeaderView(UIKit.UITableView,UIKit.UIVi M:UIKit.UITableViewController.WillEndContextMenuInteraction(UIKit.UITableView,UIKit.UIContextMenuConfiguration,UIKit.IUIContextMenuInteractionAnimating) M:UIKit.UITableViewController.WillPerformPreviewAction(UIKit.UITableView,UIKit.UIContextMenuConfiguration,UIKit.IUIContextMenuInteractionCommitAnimating) M:UIKit.UITableViewController.WillSelectRow(UIKit.UITableView,Foundation.NSIndexPath) -M:UIKit.UITableViewCell.UITableViewCellAppearance.#ctor(System.IntPtr) M:UIKit.UITableViewDataSource_Extensions.CanEditRow(UIKit.IUITableViewDataSource,UIKit.UITableView,Foundation.NSIndexPath) M:UIKit.UITableViewDataSource_Extensions.CanMoveRow(UIKit.IUITableViewDataSource,UIKit.UITableView,Foundation.NSIndexPath) M:UIKit.UITableViewDataSource_Extensions.CommitEditingStyle(UIKit.IUITableViewDataSource,UIKit.UITableView,UIKit.UITableViewCellEditingStyle,Foundation.NSIndexPath) @@ -47487,9 +46649,7 @@ M:UIKit.UITableViewDropProposal.#ctor(UIKit.UIDropOperation) M:UIKit.UITableViewHeaderFooterView.#ctor(CoreGraphics.CGRect) M:UIKit.UITableViewHeaderFooterView.EncodeTo(Foundation.NSCoder) M:UIKit.UITableViewHeaderFooterView.UITableViewHeaderFooterViewAppearance.#ctor(System.IntPtr) -M:UIKit.UITableViewRowAction.#ctor M:UIKit.UITableViewRowAction.Copy(Foundation.NSZone) -M:UIKit.UITableViewSource.#ctor M:UIKit.UITableViewSource.AccessoryButtonTapped(UIKit.UITableView,Foundation.NSIndexPath) M:UIKit.UITableViewSource.CanEditRow(UIKit.UITableView,Foundation.NSIndexPath) M:UIKit.UITableViewSource.CanFocusRow(UIKit.UITableView,Foundation.NSIndexPath) @@ -47597,7 +46757,6 @@ M:UIKit.UITextDropDelegate.WillBecomeEditable(UIKit.IUITextDroppable,UIKit.IUITe M:UIKit.UITextDropDelegate.WillPerformDrop(UIKit.IUITextDroppable,UIKit.IUITextDropRequest) M:UIKit.UITextDropProposal.#ctor(UIKit.UIDropOperation) M:UIKit.UITextDropProposal.Copy(Foundation.NSZone) -M:UIKit.UITextField.#ctor M:UIKit.UITextField.#ctor(CoreGraphics.CGRect) M:UIKit.UITextField.add_Ended(System.EventHandler) M:UIKit.UITextField.add_EndedWithReason(System.EventHandler{UIKit.UITextFieldEditingEndedEventArgs}) @@ -47709,13 +46868,10 @@ M:UIKit.UITextInputDelegate.TextWillChange(UIKit.IUITextInput) M:UIKit.UITextInputMode.EncodeTo(Foundation.NSCoder) M:UIKit.UITextInputPasswordRules.Copy(Foundation.NSZone) M:UIKit.UITextInputPasswordRules.EncodeTo(Foundation.NSCoder) -M:UIKit.UITextInputStringTokenizer.#ctor M:UIKit.UITextInputStringTokenizer.GetPosition(UIKit.UITextPosition,UIKit.UITextGranularity,UIKit.UITextDirection) M:UIKit.UITextInputStringTokenizer.GetRangeEnclosingPosition(UIKit.UITextPosition,UIKit.UITextGranularity,UIKit.UITextDirection) M:UIKit.UITextInputStringTokenizer.ProbeDirection(UIKit.UITextPosition,UIKit.UITextGranularity,UIKit.UITextDirection) M:UIKit.UITextInputStringTokenizer.ProbeDirectionWithinTextUnit(UIKit.UITextPosition,UIKit.UITextGranularity,UIKit.UITextDirection) -M:UIKit.UITextInputTokenizer.#ctor -M:UIKit.UITextInputPasswordRules.EncodeTo(Foundation.NSCoder) M:UIKit.UITextInputTokenizer.GetPosition(UIKit.UITextPosition,UIKit.UITextGranularity,UIKit.UITextDirection) M:UIKit.UITextInputTokenizer.GetRangeEnclosingPosition(UIKit.UITextPosition,UIKit.UITextGranularity,UIKit.UITextDirection) M:UIKit.UITextInputTokenizer.ProbeDirection(UIKit.UITextPosition,UIKit.UITextGranularity,UIKit.UITextDirection) @@ -47774,11 +46930,9 @@ M:UIKit.UITextSearching_Extensions.ScrollRangeToVisible(UIKit.IUITextSearching,U M:UIKit.UITextSearching_Extensions.ShouldReplaceFoundText(UIKit.IUITextSearching,UIKit.UITextRange,Foundation.INSCopying,System.String) M:UIKit.UITextSearching_Extensions.WillHighlight(UIKit.IUITextSearching,UIKit.UITextRange,Foundation.INSCopying) M:UIKit.UITextSearchingFindSession.Dispose(System.Boolean) -M:UIKit.UITextSearchOptions.#ctor M:UIKit.UITextSelectionDisplayInteraction.DidMoveToView(UIKit.UIView) M:UIKit.UITextSelectionDisplayInteraction.Dispose(System.Boolean) M:UIKit.UITextSelectionDisplayInteraction.WillMoveToView(UIKit.UIView) -M:UIKit.UITextSelectionDisplayInteraction.Dispose(System.Boolean) M:UIKit.UITextSelectionDisplayInteractionDelegate_Extensions.GetSelectionContainerViewBelowText(UIKit.IUITextSelectionDisplayInteractionDelegate,UIKit.UITextSelectionDisplayInteraction) M:UIKit.UITextSelectionDisplayInteractionDelegate.GetSelectionContainerViewBelowText(UIKit.UITextSelectionDisplayInteraction) M:UIKit.UITextView.#ctor(CoreGraphics.CGRect) @@ -47881,48 +47035,22 @@ M:UIKit.UIToolbar.UIToolbarAppearance.SetBackgroundImage(UIKit.UIImage,UIKit.UIT M:UIKit.UIToolbar.UIToolbarAppearance.SetShadowImage(UIKit.UIImage,UIKit.UIToolbarPosition) M:UIKit.UIToolbarAppearance.#ctor(UIKit.UIBarAppearance) M:UIKit.UIToolbarAppearance.#ctor(UIKit.UIUserInterfaceIdiom) -M:UIKit.UIToolbarDelegate.#ctor M:UIKit.UIToolTipInteraction.DidMoveToView(UIKit.UIView) M:UIKit.UIToolTipInteraction.Dispose(System.Boolean) M:UIKit.UIToolTipInteraction.WillMoveToView(UIKit.UIView) -M:UIKit.UIToolTipInteraction.Dispose(System.Boolean) M:UIKit.UIToolTipInteractionDelegate_Extensions.GetConfiguration(UIKit.IUIToolTipInteractionDelegate,UIKit.UIToolTipInteraction,CoreGraphics.CGPoint) M:UIKit.UIToolTipInteractionDelegate.GetConfiguration(UIKit.UIToolTipInteraction,CoreGraphics.CGPoint) -M:UIKit.UITouch.#ctor -M:UIKit.UITrackingLayoutGuide.#ctor -M:UIKit.UITraitAccessibilityContrast.#ctor -M:UIKit.UITraitActiveAppearance.#ctor M:UIKit.UITraitCollection.Copy(Foundation.NSZone) M:UIKit.UITraitCollection.Create(UIKit.UIContentSizeCategory) M:UIKit.UITraitCollection.EncodeTo(Foundation.NSCoder) M:UIKit.UITraitCollection.GetChangedTraits2(UIKit.UITraitCollection) -M:UIKit.UITraitDisplayGamut.#ctor -M:UIKit.UITraitDisplayScale.#ctor -M:UIKit.UITraitEnvironment.#ctor M:UIKit.UITraitEnvironment.TraitCollectionDidChange(UIKit.UITraitCollection) -M:UIKit.UITraitForceTouchCapability.#ctor -M:UIKit.UITraitHorizontalSizeClass.#ctor -M:UIKit.UITraitImageDynamicRange.#ctor -M:UIKit.UITraitLayoutDirection.#ctor -M:UIKit.UITraitLegibilityWeight.#ctor -M:UIKit.UITraitPreferredContentSizeCategory.#ctor -M:UIKit.UITraitSceneCaptureState.#ctor -M:UIKit.UITraitToolbarItemPresentationSize.#ctor -M:UIKit.UITraitTypesettingLanguage.#ctor -M:UIKit.UITraitUserInterfaceIdiom.#ctor -M:UIKit.UITraitUserInterfaceLevel.#ctor -M:UIKit.UITraitUserInterfaceStyle.#ctor -M:UIKit.UITraitVerticalSizeClass.#ctor M:UIKit.UIUserNotificationAction.Copy(Foundation.NSZone) M:UIKit.UIUserNotificationAction.EncodeTo(Foundation.NSCoder) M:UIKit.UIUserNotificationAction.MutableCopy(Foundation.NSZone) M:UIKit.UIUserNotificationCategory.Copy(Foundation.NSZone) M:UIKit.UIUserNotificationCategory.EncodeTo(Foundation.NSCoder) M:UIKit.UIUserNotificationCategory.MutableCopy(Foundation.NSZone) -M:UIKit.UIUserNotificationSettings.#ctor -M:UIKit.UITraitEnvironment.TraitCollectionDidChange(UIKit.UITraitCollection) -M:UIKit.UIUserNotificationAction.EncodeTo(Foundation.NSCoder) -M:UIKit.UIUserNotificationCategory.EncodeTo(Foundation.NSCoder) M:UIKit.UIUserNotificationSettings.Copy(Foundation.NSZone) M:UIKit.UIUserNotificationSettings.EncodeTo(Foundation.NSCoder) M:UIKit.UIVibrancyEffect.CreateForNotificationCenter @@ -47996,7 +47124,6 @@ M:UIKit.UIViewConfigurationState.GetCustomState(System.String) M:UIKit.UIViewConfigurationState.GetObject(System.String) M:UIKit.UIViewConfigurationState.SetCustomState(Foundation.NSObject,System.String) M:UIKit.UIViewConfigurationState.SetObject(Foundation.NSObject,System.String) -M:UIKit.UIViewController.#ctor M:UIKit.UIViewController.Add(UIKit.UIView) M:UIKit.UIViewController.BeginRequestWithExtensionContext(Foundation.NSExtensionContext) M:UIKit.UIViewController.DidUpdateFocus(UIKit.UIFocusUpdateContext,UIKit.UIFocusAnimationCoordinator) @@ -48055,15 +47182,12 @@ M:UIKit.UIViewImplicitlyAnimating_Extensions.AddAnimations(UIKit.IUIViewImplicit M:UIKit.UIViewImplicitlyAnimating_Extensions.AddAnimations(UIKit.IUIViewImplicitlyAnimating,System.Action) M:UIKit.UIViewImplicitlyAnimating_Extensions.AddCompletion(UIKit.IUIViewImplicitlyAnimating,System.Action{UIKit.UIViewAnimatingPosition}) M:UIKit.UIViewImplicitlyAnimating_Extensions.ContinueAnimation(UIKit.IUIViewImplicitlyAnimating,UIKit.IUITimingCurveProvider,System.Runtime.InteropServices.NFloat) -M:UIKit.UIViewPrintFormatter.#ctor -M:UIKit.UIViewPropertyAnimator.#ctor M:UIKit.UIViewPropertyAnimator.Copy(Foundation.NSZone) M:UIKit.UIViewPropertyAnimator.FinishAnimation(UIKit.UIViewAnimatingPosition) M:UIKit.UIViewPropertyAnimator.PauseAnimation M:UIKit.UIViewPropertyAnimator.StartAnimation M:UIKit.UIViewPropertyAnimator.StartAnimation(System.Double) M:UIKit.UIViewPropertyAnimator.StopAnimation(System.Boolean) -M:UIKit.UIVisualEffect.#ctor M:UIKit.UIVisualEffect.Copy(Foundation.NSZone) M:UIKit.UIVisualEffect.EncodeTo(Foundation.NSCoder) M:UIKit.UIVisualEffectView.EncodeTo(Foundation.NSCoder) @@ -48087,9 +47211,6 @@ M:UIKit.UIWebView.ScrollAnimationEnded(UIKit.UIScrollView) M:UIKit.UIWebView.Scrolled(UIKit.UIScrollView) M:UIKit.UIWebView.ScrolledToTop(UIKit.UIScrollView) M:UIKit.UIWebView.ShouldScrollToTop(UIKit.UIScrollView) -M:UIKit.UIWebView.remove_LoadError(System.EventHandler{UIKit.UIWebErrorArgs}) -M:UIKit.UIWebView.remove_LoadFinished(System.EventHandler) -M:UIKit.UIWebView.remove_LoadStarted(System.EventHandler) M:UIKit.UIWebView.UIWebViewAppearance.#ctor(System.IntPtr) M:UIKit.UIWebView.ViewForZoomingInScrollView(UIKit.UIScrollView) M:UIKit.UIWebView.WillEndDragging(UIKit.UIScrollView,CoreGraphics.CGPoint,CoreGraphics.CGPoint@) @@ -48112,8 +47233,6 @@ M:UIKit.UIWindowScene.UnregisterForTraitChanges(UIKit.IUITraitChangeRegistration M:UIKit.UIWindowSceneActivationInteraction.DidMoveToView(UIKit.UIView) M:UIKit.UIWindowSceneActivationInteraction.Dispose(System.Boolean) M:UIKit.UIWindowSceneActivationInteraction.WillMoveToView(UIKit.UIView) -M:UIKit.UIWindowSceneActivationRequestOptions.#ctor -M:UIKit.UIWindowSceneActivationInteraction.Dispose(System.Boolean) M:UIKit.UIWindowSceneDelegate_Extensions.DidUpdateCoordinateSpace(UIKit.IUIWindowSceneDelegate,UIKit.UIWindowScene,UIKit.IUICoordinateSpace,UIKit.UIInterfaceOrientation,UIKit.UITraitCollection) M:UIKit.UIWindowSceneDelegate_Extensions.GetWindow(UIKit.IUIWindowSceneDelegate) M:UIKit.UIWindowSceneDelegate_Extensions.PerformAction(UIKit.IUIWindowSceneDelegate,UIKit.UIWindowScene,UIKit.UIApplicationShortcutItem,System.Action{System.Boolean}) @@ -48135,18 +47254,11 @@ M:UIKit.UIWindowSceneDelegate.WillConnect(UIKit.UIScene,UIKit.UISceneSession,UIK M:UIKit.UIWindowSceneDelegate.WillContinueUserActivity(UIKit.UIScene,System.String) M:UIKit.UIWindowSceneDelegate.WillEnterForeground(UIKit.UIScene) M:UIKit.UIWindowSceneDelegate.WillResignActive(UIKit.UIScene) -M:UIKit.UIWindowSceneDestructionRequestOptions.#ctor -M:UIKit.UIWindowSceneDragInteraction.#ctor M:UIKit.UIWindowSceneDragInteraction.DidMoveToView(UIKit.UIView) M:UIKit.UIWindowSceneDragInteraction.Dispose(System.Boolean) M:UIKit.UIWindowSceneDragInteraction.WillMoveToView(UIKit.UIView) M:UIKit.UIWindowSceneGeometry.Copy(Foundation.NSZone) -M:UIKit.UIWindowSceneGeometryPreferences.#ctor -M:UIKit.UIWindowScenePlacement.#ctor M:UIKit.UIWindowScenePlacement.Copy(Foundation.NSZone) -M:UIKit.UIWindowSceneProminentPlacement.#ctor -M:UIKit.UIWindowSceneStandardPlacement.#ctor -M:UIKit.UIWindowSceneDragInteraction.Dispose(System.Boolean) M:UIKit.WillEndDraggingEventArgs.#ctor(CoreGraphics.CGPoint,CoreGraphics.CGPoint) M:UIKit.ZoomingEndedEventArgs.#ctor(UIKit.UIView,System.Runtime.InteropServices.NFloat) M:UniformTypeIdentifiers.NSString_UTAdditions.AppendPathComponent(Foundation.NSString,System.String,UniformTypeIdentifiers.UTType) @@ -48382,7 +47494,6 @@ M:Vision.VNDetectContoursRequest.Dispose(System.Boolean) M:Vision.VNDetectDocumentSegmentationRequest.#ctor(Vision.VNRequestCompletionHandler) M:Vision.VNDetectFaceCaptureQualityRequest.#ctor(Vision.VNRequestCompletionHandler) M:Vision.VNDetectFaceLandmarksRequest.#ctor(Vision.VNRequestCompletionHandler) -M:Vision.VNDetectFaceLandmarksRequest.#ctor(Vision.VNRequestCompletionHandler) M:Vision.VNDetectFaceRectanglesRequest.#ctor(Vision.VNRequestCompletionHandler) M:Vision.VNDetectHorizonRequest.#ctor(Vision.VNRequestCompletionHandler) M:Vision.VNDetectHumanBodyPoseRequest.#ctor(Vision.VNRequestCompletionHandler) @@ -48392,7 +47503,6 @@ M:Vision.VNDetectRectanglesRequest.#ctor(Vision.VNRequestCompletionHandler) M:Vision.VNDetectTextRectanglesRequest.#ctor(Vision.VNRequestCompletionHandler) M:Vision.VNFaceLandmarkRegion.Copy(Foundation.NSZone) M:Vision.VNFaceLandmarkRegion.EncodeTo(Foundation.NSCoder) -M:Vision.VNFaceLandmarkRegion.EncodeTo(Foundation.NSCoder) M:Vision.VNFaceLandmarkRegion2D.GetPointsInImage(CoreGraphics.CGSize) M:Vision.VNFaceLandmarks.Copy(Foundation.NSZone) M:Vision.VNFaceLandmarks.EncodeTo(Foundation.NSCoder) @@ -48547,8 +47657,6 @@ M:Vision.VNObservation.EncodeTo(Foundation.NSCoder) M:Vision.VNPoint.Copy(Foundation.NSZone) M:Vision.VNPoint.EncodeTo(Foundation.NSCoder) M:Vision.VNPoint3D.Copy(Foundation.NSZone) -M:Vision.VNObservation.EncodeTo(Foundation.NSCoder) -M:Vision.VNPoint.EncodeTo(Foundation.NSCoder) M:Vision.VNPoint3D.EncodeTo(Foundation.NSCoder) M:Vision.VNRecognizeAnimalsRequest.#ctor(Vision.VNRequestCompletionHandler) M:Vision.VNRecognizedObjectObservation.FromBoundingBox(CoreGraphics.CGRect) @@ -48567,8 +47675,6 @@ M:Vision.VNRecognizeTextRequest.#ctor(Vision.VNRequestCompletionHandler) M:Vision.VNRectangleObservation.FromBoundingBox(CoreGraphics.CGRect) M:Vision.VNRectangleObservation.FromBoundingBox(Vision.VNRectangleObservationRequestRevision,CoreGraphics.CGRect) M:Vision.VNRequest.Copy(Foundation.NSZone) -M:Vision.VNRectangleObservation.FromBoundingBox(CoreGraphics.CGRect) -M:Vision.VNRectangleObservation.FromBoundingBox(Vision.VNRectangleObservationRequestRevision,CoreGraphics.CGRect) M:Vision.VNRequest.GetResults``1 M:Vision.VNTargetedImageRequest.#ctor(CoreGraphics.CGImage,ImageIO.CGImagePropertyOrientation,Vision.VNImageOptions,Vision.VNRequestCompletionHandler) M:Vision.VNTargetedImageRequest.#ctor(CoreGraphics.CGImage,ImageIO.CGImagePropertyOrientation,Vision.VNImageOptions) @@ -48655,11 +47761,8 @@ M:Vision.VNVector.Copy(Foundation.NSZone) M:Vision.VNVector.Create(System.Double,System.Double) M:Vision.VNVector.EncodeTo(Foundation.NSCoder) M:Vision.VNVideoProcessorCadence.Copy(Foundation.NSZone) -M:Vision.VNVideoProcessorRequestProcessingOptions.#ctor M:Vision.VNVideoProcessorRequestProcessingOptions.Copy(Foundation.NSZone) M:VisionKit.VNDocumentCameraScan.GetImage(System.UIntPtr) -M:VisionKit.VNDocumentCameraViewController.#ctor -M:VisionKit.VNDocumentCameraViewController.Dispose(System.Boolean) M:VisionKit.VNDocumentCameraViewController.Dispose(System.Boolean) M:VisionKit.VNDocumentCameraViewControllerDelegate_Extensions.DidCancel(VisionKit.IVNDocumentCameraViewControllerDelegate,VisionKit.VNDocumentCameraViewController) M:VisionKit.VNDocumentCameraViewControllerDelegate_Extensions.DidFail(VisionKit.IVNDocumentCameraViewControllerDelegate,VisionKit.VNDocumentCameraViewController,Foundation.NSError) @@ -48727,7 +47830,6 @@ M:WebKit.DomNode.AddEventListener(System.String,WebKit.IDomEventListener,System. M:WebKit.DomNode.Copy(Foundation.NSZone) M:WebKit.DomNode.DispatchEvent(WebKit.DomEvent) M:WebKit.DomNode.RemoveEventListener(System.String,WebKit.IDomEventListener,System.Boolean) -M:WebKit.DomNodeFilter.#ctor M:WebKit.DomNodeFilter.AcceptNode(WebKit.DomNode) M:WebKit.DomNodeList.GetEnumerator M:WebKit.DomObject.Copy(Foundation.NSZone) @@ -48756,12 +47858,8 @@ M:WebKit.IWKUrlSchemeTask.DidFailWithError(Foundation.NSError) M:WebKit.IWKUrlSchemeTask.DidFinish M:WebKit.IWKUrlSchemeTask.DidReceiveData(Foundation.NSData) M:WebKit.IWKUrlSchemeTask.DidReceiveResponse(Foundation.NSUrlResponse) -M:WebKit.WebArchive.#ctor M:WebKit.WebArchive.Copy(Foundation.NSZone) M:WebKit.WebArchive.EncodeTo(Foundation.NSCoder) -M:WebKit.WebBackForwardList.#ctor -M:WebKit.WebDataSource.#ctor -M:WebKit.WebDocumentRepresentation.#ctor M:WebKit.WebDocumentRepresentation.FinishedLoading(WebKit.WebDataSource) M:WebKit.WebDocumentRepresentation.ReceivedData(Foundation.NSData,WebKit.WebDataSource) M:WebKit.WebDocumentRepresentation.ReceivedError(Foundation.NSError,WebKit.WebDataSource) @@ -48809,8 +47907,6 @@ M:WebKit.WebFrameScriptFrameEventArgs.#ctor(WebKit.WebScriptObject,WebKit.WebFra M:WebKit.WebFrameScriptObjectEventArgs.#ctor(WebKit.WebScriptObject) M:WebKit.WebFrameTitleEventArgs.#ctor(System.String,WebKit.WebFrame) M:WebKit.WebFrameView.#ctor(CoreGraphics.CGRect) -M:WebKit.WebHistory.#ctor -M:WebKit.WebHistoryItem.#ctor M:WebKit.WebHistoryItem.Copy(Foundation.NSZone) M:WebKit.WebMimeTypePolicyEventArgs.#ctor(System.String,Foundation.NSUrlRequest,WebKit.WebFrame,Foundation.NSObject) M:WebKit.WebNavigationPolicyEventArgs.#ctor(Foundation.NSDictionary,Foundation.NSUrlRequest,WebKit.WebFrame,Foundation.NSObject) @@ -48832,9 +47928,7 @@ M:WebKit.WebPolicyDelegate.DecidePolicyForNavigation(WebKit.WebView,Foundation.N M:WebKit.WebPolicyDelegate.DecidePolicyForNewWindow(WebKit.WebView,Foundation.NSDictionary,Foundation.NSUrlRequest,System.String,Foundation.NSObject) M:WebKit.WebPolicyDelegate.DecideUse(Foundation.NSObject) M:WebKit.WebPolicyDelegate.UnableToImplementPolicy(WebKit.WebView,Foundation.NSError,WebKit.WebFrame) -M:WebKit.WebPreferences.#ctor M:WebKit.WebPreferences.EncodeTo(Foundation.NSCoder) -M:WebKit.WebResource.#ctor M:WebKit.WebResource.Copy(Foundation.NSZone) M:WebKit.WebResource.EncodeTo(Foundation.NSCoder) M:WebKit.WebResourceAuthenticationChallengeEventArgs.#ctor(Foundation.NSObject,Foundation.NSUrlAuthenticationChallenge,WebKit.WebDataSource) @@ -49077,10 +48171,8 @@ M:WebKit.WKDownloadDelegate.DidFail(WebKit.WKDownload,Foundation.NSError,Foundat M:WebKit.WKDownloadDelegate.DidFinish(WebKit.WKDownload) M:WebKit.WKDownloadDelegate.DidReceiveAuthenticationChallenge(WebKit.WKDownload,Foundation.NSUrlAuthenticationChallenge,System.Action{Foundation.NSUrlSessionAuthChallengeDisposition,Foundation.NSUrlCredential}) M:WebKit.WKDownloadDelegate.WillPerformHttpRedirection(WebKit.WKDownload,Foundation.NSHttpUrlResponse,Foundation.NSUrlRequest,System.Action{WebKit.WKDownloadRedirectPolicy}) -M:WebKit.WKFindConfiguration.#ctor M:WebKit.WKFindConfiguration.Copy(Foundation.NSZone) M:WebKit.WKFindResult.Copy(Foundation.NSZone) -M:WebKit.WKFrameInfo.#ctor M:WebKit.WKFrameInfo.Copy(Foundation.NSZone) M:WebKit.WKFrameInfo.Dispose(System.Boolean) M:WebKit.WKHttpCookieStore.DeleteCookieAsync(Foundation.NSHttpCookie) @@ -49117,20 +48209,12 @@ M:WebKit.WKNavigationDelegate.DidStartProvisionalNavigation(WebKit.WKWebView,Web M:WebKit.WKNavigationDelegate.NavigationActionDidBecomeDownload(WebKit.WKWebView,WebKit.WKNavigationAction,WebKit.WKDownload) M:WebKit.WKNavigationDelegate.NavigationResponseDidBecomeDownload(WebKit.WKWebView,WebKit.WKNavigationResponse,WebKit.WKDownload) M:WebKit.WKNavigationDelegate.ShouldAllowDeprecatedTls(WebKit.WKWebView,Foundation.NSUrlAuthenticationChallenge,System.Action{System.Boolean}) -M:WebKit.WKNavigationResponse.#ctor -M:WebKit.WKOpenPanelParameters.#ctor -M:WebKit.WKPdfConfiguration.#ctor M:WebKit.WKPdfConfiguration.Copy(Foundation.NSZone) -M:WebKit.WKPreferences.#ctor M:WebKit.WKPreferences.EncodeTo(Foundation.NSCoder) -M:WebKit.WKPreviewElementInfo.#ctor M:WebKit.WKPreviewElementInfo.Copy(Foundation.NSZone) -M:WebKit.WKProcessPool.#ctor -M:WebKit.WKPreferences.EncodeTo(Foundation.NSCoder) M:WebKit.WKProcessPool.EncodeTo(Foundation.NSCoder) M:WebKit.WKScriptMessage.Dispose(System.Boolean) M:WebKit.WKScriptMessageHandler.DidReceiveScriptMessage(WebKit.WKUserContentController,WebKit.WKScriptMessage) -M:WebKit.WKSnapshotConfiguration.#ctor M:WebKit.WKSnapshotConfiguration.Copy(Foundation.NSZone) M:WebKit.WKUIDelegate_Extensions.CommitPreviewingViewController(WebKit.IWKUIDelegate,WebKit.WKWebView,UIKit.UIViewController) M:WebKit.WKUIDelegate_Extensions.ContextMenuDidEnd(WebKit.IWKUIDelegate,WebKit.WKWebView,WebKit.WKContextMenuElementInfo) @@ -49173,8 +48257,6 @@ M:WebKit.WKUIDelegate.WillDismissEditMenu(WebKit.WKWebView,UIKit.IUIEditMenuInte M:WebKit.WKUIDelegate.WillPresentEditMenu(WebKit.WKWebView,UIKit.IUIEditMenuInteractionAnimating) M:WebKit.WKUserContentController.EncodeTo(Foundation.NSCoder) M:WebKit.WKUserScript.Copy(Foundation.NSZone) -M:WebKit.WKWebpagePreferences.#ctor -M:WebKit.WKWebsiteDataRecord.#ctor M:WebKit.WKWebsiteDataStore.EncodeTo(Foundation.NSCoder) M:WebKit.WKWebsiteDataStore.FetchAllDataStoreIdentifiersAsync M:WebKit.WKWebsiteDataStore.FetchDataRecordsOfTypesAsync(Foundation.NSSet{Foundation.NSString}) @@ -49201,7 +48283,6 @@ M:WebKit.WKWebView.StartDownloadAsync(Foundation.NSUrlRequest) M:WebKit.WKWebView.TakeSnapshotAsync(WebKit.WKSnapshotConfiguration) M:WebKit.WKWebView.ValidateUserInterfaceItem(AppKit.INSValidatedUserInterfaceItem) M:WebKit.WKWebView.WKWebViewAppearance.#ctor(System.IntPtr) -M:WebKit.WKWebViewConfiguration.#ctor M:WebKit.WKWebViewConfiguration.Copy(Foundation.NSZone) M:WebKit.WKWebViewConfiguration.EncodeTo(Foundation.NSCoder) P:Accelerate.vImageBuffer.BytesPerRow @@ -49210,15 +48291,62 @@ P:Accelerate.vImageBuffer.Height P:Accelerate.vImageBuffer.Width P:Accessibility.AXAnimatedImagesUtilities.AnimatedImagesEnabledDidChangeNotification P:Accessibility.AXAnimatedImagesUtilities.Enabled +P:Accessibility.AXBrailleMap.Dimensions +P:Accessibility.AXCategoricalDataAxisDescriptor.AttributedTitle +P:Accessibility.AXCategoricalDataAxisDescriptor.CategoryOrder +P:Accessibility.AXCategoricalDataAxisDescriptor.Title +P:Accessibility.AXChartDescriptor.AdditionalAxes +P:Accessibility.AXChartDescriptor.AttributedTitle +P:Accessibility.AXChartDescriptor.ContentDirection +P:Accessibility.AXChartDescriptor.ContentFrame +P:Accessibility.AXChartDescriptor.Series +P:Accessibility.AXChartDescriptor.Summary +P:Accessibility.AXChartDescriptor.Title +P:Accessibility.AXChartDescriptor.XAxis +P:Accessibility.AXChartDescriptor.YAxis +P:Accessibility.AXCustomContent.AttributedLabel +P:Accessibility.AXCustomContent.AttributedValue +P:Accessibility.AXCustomContent.Importance +P:Accessibility.AXCustomContent.Label +P:Accessibility.AXCustomContent.Value +P:Accessibility.AXDataPoint.AdditionalValues +P:Accessibility.AXDataPoint.AttributedLabel +P:Accessibility.AXDataPoint.Label +P:Accessibility.AXDataPoint.XValue +P:Accessibility.AXDataPoint.YValue +P:Accessibility.AXDataPointValue.Category +P:Accessibility.AXDataPointValue.Number +P:Accessibility.AXDataSeriesDescriptor.AttributedName +P:Accessibility.AXDataSeriesDescriptor.DataPoints +P:Accessibility.AXDataSeriesDescriptor.IsContinuous +P:Accessibility.AXDataSeriesDescriptor.Name P:Accessibility.AXHearingUtilities.PairedUUIDsDidChangeNotification P:Accessibility.AXHearingUtilities.StreamingEarDidChangeNotification +P:Accessibility.AXNumericDataAxisDescriptor.AttributedTitle +P:Accessibility.AXNumericDataAxisDescriptor.GridlinePositions +P:Accessibility.AXNumericDataAxisDescriptor.LowerBound +P:Accessibility.AXNumericDataAxisDescriptor.ScaleType +P:Accessibility.AXNumericDataAxisDescriptor.Title +P:Accessibility.AXNumericDataAxisDescriptor.UpperBound +P:Accessibility.AXNumericDataAxisDescriptor.ValueDescriptionProvider P:Accessibility.AXPrefers.HorizontalTextLayoutDidChangeNotification P:Accessibility.IAXChart.AccessibilityChartDescriptor P:Accessibility.IAXCustomContentProvider.AccessibilityCustomContent P:Accessibility.IAXDataAxisDescriptor.AttributedTitle P:Accessibility.IAXDataAxisDescriptor.Title +P:Accounts.ACAccount.AccountDescription +P:Accounts.ACAccount.AccountType +P:Accounts.ACAccount.Credential +P:Accounts.ACAccount.Identifier +P:Accounts.ACAccount.UserFullName +P:Accounts.ACAccount.Username +P:Accounts.ACAccountCredential.OAuthToken +P:Accounts.ACAccountStore.Accounts P:Accounts.ACAccountStore.ChangeNotification +P:Accounts.ACAccountType.AccessGranted +P:Accounts.ACAccountType.Description P:Accounts.ACAccountType.Facebook +P:Accounts.ACAccountType.Identifier P:Accounts.ACAccountType.LinkedIn P:Accounts.ACAccountType.SinaWeibo P:Accounts.ACAccountType.TencentWeibo @@ -49770,21 +48898,126 @@ P:AppKit.NSAccessibilityAttributes.WarningValueAttribute P:AppKit.NSAccessibilityAttributes.WindowAttribute P:AppKit.NSAccessibilityAttributes.WindowsAttribute P:AppKit.NSAccessibilityAttributes.ZoomButtonAttribute +P:AppKit.NSAccessibilityElement.AccessibilityActivationPoint +P:AppKit.NSAccessibilityElement.AccessibilityAllowedValues P:AppKit.NSAccessibilityElement.AccessibilityAlternateUIVisible +P:AppKit.NSAccessibilityElement.AccessibilityApplicationFocusedUIElement +P:AppKit.NSAccessibilityElement.AccessibilityAttributedUserInputLabels +P:AppKit.NSAccessibilityElement.AccessibilityCancelButton +P:AppKit.NSAccessibilityElement.AccessibilityChildren +P:AppKit.NSAccessibilityElement.AccessibilityChildrenInNavigationOrder +P:AppKit.NSAccessibilityElement.AccessibilityClearButton +P:AppKit.NSAccessibilityElement.AccessibilityCloseButton +P:AppKit.NSAccessibilityElement.AccessibilityColumnCount +P:AppKit.NSAccessibilityElement.AccessibilityColumnHeaderUIElements +P:AppKit.NSAccessibilityElement.AccessibilityColumnIndexRange +P:AppKit.NSAccessibilityElement.AccessibilityColumns +P:AppKit.NSAccessibilityElement.AccessibilityColumnTitles +P:AppKit.NSAccessibilityElement.AccessibilityContents +P:AppKit.NSAccessibilityElement.AccessibilityCriticalValue +P:AppKit.NSAccessibilityElement.AccessibilityCustomActions +P:AppKit.NSAccessibilityElement.AccessibilityCustomRotors +P:AppKit.NSAccessibilityElement.AccessibilityDecrementButton +P:AppKit.NSAccessibilityElement.AccessibilityDefaultButton P:AppKit.NSAccessibilityElement.AccessibilityDisclosed +P:AppKit.NSAccessibilityElement.AccessibilityDisclosedByRow +P:AppKit.NSAccessibilityElement.AccessibilityDisclosedRows +P:AppKit.NSAccessibilityElement.AccessibilityDisclosureLevel +P:AppKit.NSAccessibilityElement.AccessibilityDocument P:AppKit.NSAccessibilityElement.AccessibilityEdited P:AppKit.NSAccessibilityElement.AccessibilityElement P:AppKit.NSAccessibilityElement.AccessibilityEnabled P:AppKit.NSAccessibilityElement.AccessibilityExpanded +P:AppKit.NSAccessibilityElement.AccessibilityExtrasMenuBar +P:AppKit.NSAccessibilityElement.AccessibilityFilename +P:AppKit.NSAccessibilityElement.AccessibilityFocusedWindow P:AppKit.NSAccessibilityElement.AccessibilityFrontmost +P:AppKit.NSAccessibilityElement.AccessibilityFullScreenButton +P:AppKit.NSAccessibilityElement.AccessibilityGrowArea +P:AppKit.NSAccessibilityElement.AccessibilityHandles +P:AppKit.NSAccessibilityElement.AccessibilityHeader +P:AppKit.NSAccessibilityElement.AccessibilityHelp P:AppKit.NSAccessibilityElement.AccessibilityHidden +P:AppKit.NSAccessibilityElement.AccessibilityHorizontalScrollBar +P:AppKit.NSAccessibilityElement.AccessibilityHorizontalUnitDescription +P:AppKit.NSAccessibilityElement.AccessibilityHorizontalUnits +P:AppKit.NSAccessibilityElement.AccessibilityIncrementButton +P:AppKit.NSAccessibilityElement.AccessibilityIndex +P:AppKit.NSAccessibilityElement.AccessibilityInsertionPointLineNumber +P:AppKit.NSAccessibilityElement.AccessibilityLabel +P:AppKit.NSAccessibilityElement.AccessibilityLabelUIElements +P:AppKit.NSAccessibilityElement.AccessibilityLabelValue +P:AppKit.NSAccessibilityElement.AccessibilityLinkedUIElements P:AppKit.NSAccessibilityElement.AccessibilityMain +P:AppKit.NSAccessibilityElement.AccessibilityMainWindow +P:AppKit.NSAccessibilityElement.AccessibilityMarkerGroupUIElement +P:AppKit.NSAccessibilityElement.AccessibilityMarkerTypeDescription +P:AppKit.NSAccessibilityElement.AccessibilityMarkerUIElements +P:AppKit.NSAccessibilityElement.AccessibilityMarkerValues +P:AppKit.NSAccessibilityElement.AccessibilityMaxValue +P:AppKit.NSAccessibilityElement.AccessibilityMenuBar +P:AppKit.NSAccessibilityElement.AccessibilityMinimizeButton P:AppKit.NSAccessibilityElement.AccessibilityMinimized +P:AppKit.NSAccessibilityElement.AccessibilityMinValue P:AppKit.NSAccessibilityElement.AccessibilityModal +P:AppKit.NSAccessibilityElement.AccessibilityNextContents +P:AppKit.NSAccessibilityElement.AccessibilityNumberOfCharacters P:AppKit.NSAccessibilityElement.AccessibilityOrderedByRow +P:AppKit.NSAccessibilityElement.AccessibilityOrientation +P:AppKit.NSAccessibilityElement.AccessibilityOverflowButton +P:AppKit.NSAccessibilityElement.AccessibilityPlaceholderValue +P:AppKit.NSAccessibilityElement.AccessibilityPreviousContents P:AppKit.NSAccessibilityElement.AccessibilityProtectedContent +P:AppKit.NSAccessibilityElement.AccessibilityProxy P:AppKit.NSAccessibilityElement.AccessibilityRequired +P:AppKit.NSAccessibilityElement.AccessibilityRole +P:AppKit.NSAccessibilityElement.AccessibilityRoleDescription +P:AppKit.NSAccessibilityElement.AccessibilityRowCount +P:AppKit.NSAccessibilityElement.AccessibilityRowHeaderUIElements +P:AppKit.NSAccessibilityElement.AccessibilityRowIndexRange +P:AppKit.NSAccessibilityElement.AccessibilityRows +P:AppKit.NSAccessibilityElement.AccessibilityRulerMarkerType +P:AppKit.NSAccessibilityElement.AccessibilitySearchButton +P:AppKit.NSAccessibilityElement.AccessibilitySearchMenu P:AppKit.NSAccessibilityElement.AccessibilitySelected +P:AppKit.NSAccessibilityElement.AccessibilitySelectedCells +P:AppKit.NSAccessibilityElement.AccessibilitySelectedChildren +P:AppKit.NSAccessibilityElement.AccessibilitySelectedColumns +P:AppKit.NSAccessibilityElement.AccessibilitySelectedRows +P:AppKit.NSAccessibilityElement.AccessibilitySelectedText +P:AppKit.NSAccessibilityElement.AccessibilitySelectedTextRange +P:AppKit.NSAccessibilityElement.AccessibilitySelectedTextRanges +P:AppKit.NSAccessibilityElement.AccessibilityServesAsTitleForUIElements +P:AppKit.NSAccessibilityElement.AccessibilitySharedCharacterRange +P:AppKit.NSAccessibilityElement.AccessibilitySharedFocusElements +P:AppKit.NSAccessibilityElement.AccessibilitySharedTextUIElements +P:AppKit.NSAccessibilityElement.AccessibilityShownMenu +P:AppKit.NSAccessibilityElement.AccessibilitySortDirection +P:AppKit.NSAccessibilityElement.AccessibilitySplitters +P:AppKit.NSAccessibilityElement.AccessibilitySubrole +P:AppKit.NSAccessibilityElement.AccessibilityTabs +P:AppKit.NSAccessibilityElement.AccessibilityTitle +P:AppKit.NSAccessibilityElement.AccessibilityTitleUIElement +P:AppKit.NSAccessibilityElement.AccessibilityToolbarButton +P:AppKit.NSAccessibilityElement.AccessibilityTopLevelUIElement +P:AppKit.NSAccessibilityElement.AccessibilityUnitDescription +P:AppKit.NSAccessibilityElement.AccessibilityUnits +P:AppKit.NSAccessibilityElement.AccessibilityUrl +P:AppKit.NSAccessibilityElement.AccessibilityUserInputLabels +P:AppKit.NSAccessibilityElement.AccessibilityValue +P:AppKit.NSAccessibilityElement.AccessibilityValueDescription +P:AppKit.NSAccessibilityElement.AccessibilityVerticalScrollBar +P:AppKit.NSAccessibilityElement.AccessibilityVerticalUnitDescription +P:AppKit.NSAccessibilityElement.AccessibilityVerticalUnits +P:AppKit.NSAccessibilityElement.AccessibilityVisibleCells +P:AppKit.NSAccessibilityElement.AccessibilityVisibleCharacterRange +P:AppKit.NSAccessibilityElement.AccessibilityVisibleChildren +P:AppKit.NSAccessibilityElement.AccessibilityVisibleColumns +P:AppKit.NSAccessibilityElement.AccessibilityVisibleRows +P:AppKit.NSAccessibilityElement.AccessibilityWarningValue +P:AppKit.NSAccessibilityElement.AccessibilityWindow +P:AppKit.NSAccessibilityElement.AccessibilityWindows +P:AppKit.NSAccessibilityElement.AccessibilityZoomButton P:AppKit.NSAccessibilityElement.AnnouncementRequestedNotification P:AppKit.NSAccessibilityElement.ApplicationActivatedNotification P:AppKit.NSAccessibilityElement.ApplicationDeactivatedNotification @@ -49934,21 +49167,130 @@ P:AppKit.NSAppearance.NameVibrantDark P:AppKit.NSAppearance.NameVibrantLight P:AppKit.NSAppearanceCustomization.Appearance P:AppKit.NSAppearanceCustomization.EffectiveAppearance +P:AppKit.NSApplication.AccessibilityActivationPoint +P:AppKit.NSApplication.AccessibilityAllowedValues P:AppKit.NSApplication.AccessibilityAlternateUIVisible +P:AppKit.NSApplication.AccessibilityApplicationFocusedUIElement +P:AppKit.NSApplication.AccessibilityAttributedUserInputLabels +P:AppKit.NSApplication.AccessibilityCancelButton +P:AppKit.NSApplication.AccessibilityChildren +P:AppKit.NSApplication.AccessibilityChildrenInNavigationOrder +P:AppKit.NSApplication.AccessibilityClearButton +P:AppKit.NSApplication.AccessibilityCloseButton +P:AppKit.NSApplication.AccessibilityColumnCount +P:AppKit.NSApplication.AccessibilityColumnHeaderUIElements +P:AppKit.NSApplication.AccessibilityColumnIndexRange +P:AppKit.NSApplication.AccessibilityColumns +P:AppKit.NSApplication.AccessibilityColumnTitles +P:AppKit.NSApplication.AccessibilityContents +P:AppKit.NSApplication.AccessibilityCriticalValue +P:AppKit.NSApplication.AccessibilityCustomActions +P:AppKit.NSApplication.AccessibilityCustomRotors +P:AppKit.NSApplication.AccessibilityDecrementButton +P:AppKit.NSApplication.AccessibilityDefaultButton P:AppKit.NSApplication.AccessibilityDisclosed +P:AppKit.NSApplication.AccessibilityDisclosedByRow +P:AppKit.NSApplication.AccessibilityDisclosedRows +P:AppKit.NSApplication.AccessibilityDisclosureLevel +P:AppKit.NSApplication.AccessibilityDocument P:AppKit.NSApplication.AccessibilityEdited P:AppKit.NSApplication.AccessibilityElement P:AppKit.NSApplication.AccessibilityEnabled P:AppKit.NSApplication.AccessibilityExpanded +P:AppKit.NSApplication.AccessibilityExtrasMenuBar +P:AppKit.NSApplication.AccessibilityFilename +P:AppKit.NSApplication.AccessibilityFocused +P:AppKit.NSApplication.AccessibilityFocusedWindow +P:AppKit.NSApplication.AccessibilityFrame P:AppKit.NSApplication.AccessibilityFrontmost +P:AppKit.NSApplication.AccessibilityFullScreenButton +P:AppKit.NSApplication.AccessibilityGrowArea +P:AppKit.NSApplication.AccessibilityHandles +P:AppKit.NSApplication.AccessibilityHeader +P:AppKit.NSApplication.AccessibilityHelp P:AppKit.NSApplication.AccessibilityHidden +P:AppKit.NSApplication.AccessibilityHorizontalScrollBar +P:AppKit.NSApplication.AccessibilityHorizontalUnitDescription +P:AppKit.NSApplication.AccessibilityHorizontalUnits +P:AppKit.NSApplication.AccessibilityIdentifier +P:AppKit.NSApplication.AccessibilityIncrementButton +P:AppKit.NSApplication.AccessibilityIndex +P:AppKit.NSApplication.AccessibilityInsertionPointLineNumber +P:AppKit.NSApplication.AccessibilityLabel +P:AppKit.NSApplication.AccessibilityLabelUIElements +P:AppKit.NSApplication.AccessibilityLabelValue +P:AppKit.NSApplication.AccessibilityLinkedUIElements P:AppKit.NSApplication.AccessibilityMain +P:AppKit.NSApplication.AccessibilityMainWindow +P:AppKit.NSApplication.AccessibilityMarkerGroupUIElement +P:AppKit.NSApplication.AccessibilityMarkerTypeDescription +P:AppKit.NSApplication.AccessibilityMarkerUIElements +P:AppKit.NSApplication.AccessibilityMarkerValues +P:AppKit.NSApplication.AccessibilityMaxValue +P:AppKit.NSApplication.AccessibilityMenuBar +P:AppKit.NSApplication.AccessibilityMinimizeButton P:AppKit.NSApplication.AccessibilityMinimized +P:AppKit.NSApplication.AccessibilityMinValue P:AppKit.NSApplication.AccessibilityModal +P:AppKit.NSApplication.AccessibilityNextContents +P:AppKit.NSApplication.AccessibilityNumberOfCharacters P:AppKit.NSApplication.AccessibilityOrderedByRow +P:AppKit.NSApplication.AccessibilityOrientation +P:AppKit.NSApplication.AccessibilityOverflowButton +P:AppKit.NSApplication.AccessibilityParent +P:AppKit.NSApplication.AccessibilityPlaceholderValue +P:AppKit.NSApplication.AccessibilityPreviousContents P:AppKit.NSApplication.AccessibilityProtectedContent +P:AppKit.NSApplication.AccessibilityProxy P:AppKit.NSApplication.AccessibilityRequired +P:AppKit.NSApplication.AccessibilityRole +P:AppKit.NSApplication.AccessibilityRoleDescription +P:AppKit.NSApplication.AccessibilityRowCount +P:AppKit.NSApplication.AccessibilityRowHeaderUIElements +P:AppKit.NSApplication.AccessibilityRowIndexRange +P:AppKit.NSApplication.AccessibilityRows +P:AppKit.NSApplication.AccessibilityRulerMarkerType +P:AppKit.NSApplication.AccessibilitySearchButton +P:AppKit.NSApplication.AccessibilitySearchMenu P:AppKit.NSApplication.AccessibilitySelected +P:AppKit.NSApplication.AccessibilitySelectedCells +P:AppKit.NSApplication.AccessibilitySelectedChildren +P:AppKit.NSApplication.AccessibilitySelectedColumns +P:AppKit.NSApplication.AccessibilitySelectedRows +P:AppKit.NSApplication.AccessibilitySelectedText +P:AppKit.NSApplication.AccessibilitySelectedTextRange +P:AppKit.NSApplication.AccessibilitySelectedTextRanges +P:AppKit.NSApplication.AccessibilityServesAsTitleForUIElements +P:AppKit.NSApplication.AccessibilitySharedCharacterRange +P:AppKit.NSApplication.AccessibilitySharedFocusElements +P:AppKit.NSApplication.AccessibilitySharedTextUIElements +P:AppKit.NSApplication.AccessibilityShownMenu +P:AppKit.NSApplication.AccessibilitySortDirection +P:AppKit.NSApplication.AccessibilitySplitters +P:AppKit.NSApplication.AccessibilitySubrole +P:AppKit.NSApplication.AccessibilityTabs +P:AppKit.NSApplication.AccessibilityTitle +P:AppKit.NSApplication.AccessibilityTitleUIElement +P:AppKit.NSApplication.AccessibilityToolbarButton +P:AppKit.NSApplication.AccessibilityTopLevelUIElement +P:AppKit.NSApplication.AccessibilityUnitDescription +P:AppKit.NSApplication.AccessibilityUnits +P:AppKit.NSApplication.AccessibilityUrl +P:AppKit.NSApplication.AccessibilityUserInputLabels +P:AppKit.NSApplication.AccessibilityValue +P:AppKit.NSApplication.AccessibilityValueDescription +P:AppKit.NSApplication.AccessibilityVerticalScrollBar +P:AppKit.NSApplication.AccessibilityVerticalUnitDescription +P:AppKit.NSApplication.AccessibilityVerticalUnits +P:AppKit.NSApplication.AccessibilityVisibleCells +P:AppKit.NSApplication.AccessibilityVisibleCharacterRange +P:AppKit.NSApplication.AccessibilityVisibleChildren +P:AppKit.NSApplication.AccessibilityVisibleColumns +P:AppKit.NSApplication.AccessibilityVisibleRows +P:AppKit.NSApplication.AccessibilityWarningValue +P:AppKit.NSApplication.AccessibilityWindow +P:AppKit.NSApplication.AccessibilityWindows +P:AppKit.NSApplication.AccessibilityZoomButton P:AppKit.NSApplication.ActivationPolicy P:AppKit.NSApplication.Active P:AppKit.NSApplication.AnnouncementRequestedNotification @@ -50075,6 +49417,7 @@ P:AppKit.NSBrowserCell.Loaded P:AppKit.NSButton.AccessibilityFocused P:AppKit.NSButton.AccessibilityFrame P:AppKit.NSButton.AccessibilityIdentifier +P:AppKit.NSButton.AccessibilityLabel P:AppKit.NSButton.AccessibilityParent P:AppKit.NSButton.Bordered P:AppKit.NSButton.Cell @@ -50086,25 +49429,134 @@ P:AppKit.NSButtonTouchBarItem.Enabled P:AppKit.NSCandidateListTouchBarItem.CandidateListVisible P:AppKit.NSCandidateListTouchBarItem.Collapsed P:AppKit.NSCell.AccessibilityActionNames +P:AppKit.NSCell.AccessibilityActivationPoint +P:AppKit.NSCell.AccessibilityAllowedValues P:AppKit.NSCell.AccessibilityAlternateUIVisible +P:AppKit.NSCell.AccessibilityApplicationFocusedUIElement +P:AppKit.NSCell.AccessibilityAttributedUserInputLabels P:AppKit.NSCell.AccessibilityAttributeNames +P:AppKit.NSCell.AccessibilityCancelButton +P:AppKit.NSCell.AccessibilityChildren +P:AppKit.NSCell.AccessibilityChildrenInNavigationOrder +P:AppKit.NSCell.AccessibilityClearButton +P:AppKit.NSCell.AccessibilityCloseButton +P:AppKit.NSCell.AccessibilityColumnCount +P:AppKit.NSCell.AccessibilityColumnHeaderUIElements +P:AppKit.NSCell.AccessibilityColumnIndexRange +P:AppKit.NSCell.AccessibilityColumns +P:AppKit.NSCell.AccessibilityColumnTitles +P:AppKit.NSCell.AccessibilityContents +P:AppKit.NSCell.AccessibilityCriticalValue +P:AppKit.NSCell.AccessibilityCustomActions +P:AppKit.NSCell.AccessibilityCustomRotors +P:AppKit.NSCell.AccessibilityDecrementButton +P:AppKit.NSCell.AccessibilityDefaultButton P:AppKit.NSCell.AccessibilityDisclosed +P:AppKit.NSCell.AccessibilityDisclosedByRow +P:AppKit.NSCell.AccessibilityDisclosedRows +P:AppKit.NSCell.AccessibilityDisclosureLevel +P:AppKit.NSCell.AccessibilityDocument P:AppKit.NSCell.AccessibilityEdited P:AppKit.NSCell.AccessibilityElement P:AppKit.NSCell.AccessibilityEnabled P:AppKit.NSCell.AccessibilityExpanded +P:AppKit.NSCell.AccessibilityExtrasMenuBar +P:AppKit.NSCell.AccessibilityFilename +P:AppKit.NSCell.AccessibilityFocused +P:AppKit.NSCell.AccessibilityFocusedWindow +P:AppKit.NSCell.AccessibilityFrame P:AppKit.NSCell.AccessibilityFrontmost +P:AppKit.NSCell.AccessibilityFullScreenButton +P:AppKit.NSCell.AccessibilityGrowArea +P:AppKit.NSCell.AccessibilityHandles +P:AppKit.NSCell.AccessibilityHeader +P:AppKit.NSCell.AccessibilityHelp P:AppKit.NSCell.AccessibilityHidden +P:AppKit.NSCell.AccessibilityHorizontalScrollBar +P:AppKit.NSCell.AccessibilityHorizontalUnitDescription +P:AppKit.NSCell.AccessibilityHorizontalUnits +P:AppKit.NSCell.AccessibilityIdentifier +P:AppKit.NSCell.AccessibilityIncrementButton +P:AppKit.NSCell.AccessibilityIndex +P:AppKit.NSCell.AccessibilityInsertionPointLineNumber P:AppKit.NSCell.AccessibilityIsIgnored +P:AppKit.NSCell.AccessibilityLabel +P:AppKit.NSCell.AccessibilityLabelUIElements +P:AppKit.NSCell.AccessibilityLabelValue +P:AppKit.NSCell.AccessibilityLinkedUIElements P:AppKit.NSCell.AccessibilityMain +P:AppKit.NSCell.AccessibilityMainWindow +P:AppKit.NSCell.AccessibilityMarkerGroupUIElement +P:AppKit.NSCell.AccessibilityMarkerTypeDescription +P:AppKit.NSCell.AccessibilityMarkerUIElements +P:AppKit.NSCell.AccessibilityMarkerValues +P:AppKit.NSCell.AccessibilityMaxValue +P:AppKit.NSCell.AccessibilityMenuBar +P:AppKit.NSCell.AccessibilityMinimizeButton P:AppKit.NSCell.AccessibilityMinimized +P:AppKit.NSCell.AccessibilityMinValue P:AppKit.NSCell.AccessibilityModal +P:AppKit.NSCell.AccessibilityNextContents P:AppKit.NSCell.AccessibilityNotifiesWhenDestroyed +P:AppKit.NSCell.AccessibilityNumberOfCharacters P:AppKit.NSCell.AccessibilityOrderedByRow +P:AppKit.NSCell.AccessibilityOrientation +P:AppKit.NSCell.AccessibilityOverflowButton P:AppKit.NSCell.AccessibilityParameterizedAttributeNames +P:AppKit.NSCell.AccessibilityParent +P:AppKit.NSCell.AccessibilityPlaceholderValue +P:AppKit.NSCell.AccessibilityPreviousContents P:AppKit.NSCell.AccessibilityProtectedContent +P:AppKit.NSCell.AccessibilityProxy P:AppKit.NSCell.AccessibilityRequired +P:AppKit.NSCell.AccessibilityRole +P:AppKit.NSCell.AccessibilityRoleDescription +P:AppKit.NSCell.AccessibilityRowCount +P:AppKit.NSCell.AccessibilityRowHeaderUIElements +P:AppKit.NSCell.AccessibilityRowIndexRange +P:AppKit.NSCell.AccessibilityRows +P:AppKit.NSCell.AccessibilityRulerMarkerType +P:AppKit.NSCell.AccessibilitySearchButton +P:AppKit.NSCell.AccessibilitySearchMenu P:AppKit.NSCell.AccessibilitySelected +P:AppKit.NSCell.AccessibilitySelectedCells +P:AppKit.NSCell.AccessibilitySelectedChildren +P:AppKit.NSCell.AccessibilitySelectedColumns +P:AppKit.NSCell.AccessibilitySelectedRows +P:AppKit.NSCell.AccessibilitySelectedText +P:AppKit.NSCell.AccessibilitySelectedTextRange +P:AppKit.NSCell.AccessibilitySelectedTextRanges +P:AppKit.NSCell.AccessibilityServesAsTitleForUIElements +P:AppKit.NSCell.AccessibilitySharedCharacterRange +P:AppKit.NSCell.AccessibilitySharedFocusElements +P:AppKit.NSCell.AccessibilitySharedTextUIElements +P:AppKit.NSCell.AccessibilityShownMenu +P:AppKit.NSCell.AccessibilitySortDirection +P:AppKit.NSCell.AccessibilitySplitters +P:AppKit.NSCell.AccessibilitySubrole +P:AppKit.NSCell.AccessibilityTabs +P:AppKit.NSCell.AccessibilityTitle +P:AppKit.NSCell.AccessibilityTitleUIElement +P:AppKit.NSCell.AccessibilityToolbarButton +P:AppKit.NSCell.AccessibilityTopLevelUIElement +P:AppKit.NSCell.AccessibilityUnitDescription +P:AppKit.NSCell.AccessibilityUnits +P:AppKit.NSCell.AccessibilityUrl +P:AppKit.NSCell.AccessibilityUserInputLabels +P:AppKit.NSCell.AccessibilityValue +P:AppKit.NSCell.AccessibilityValueDescription +P:AppKit.NSCell.AccessibilityVerticalScrollBar +P:AppKit.NSCell.AccessibilityVerticalUnitDescription +P:AppKit.NSCell.AccessibilityVerticalUnits +P:AppKit.NSCell.AccessibilityVisibleCells +P:AppKit.NSCell.AccessibilityVisibleCharacterRange +P:AppKit.NSCell.AccessibilityVisibleChildren +P:AppKit.NSCell.AccessibilityVisibleColumns +P:AppKit.NSCell.AccessibilityVisibleRows +P:AppKit.NSCell.AccessibilityWarningValue +P:AppKit.NSCell.AccessibilityWindow +P:AppKit.NSCell.AccessibilityWindows +P:AppKit.NSCell.AccessibilityZoomButton P:AppKit.NSCell.AnnouncementRequestedNotification P:AppKit.NSCell.ApplicationActivatedNotification P:AppKit.NSCell.ApplicationDeactivatedNotification @@ -50120,6 +49572,7 @@ P:AppKit.NSCell.Enabled P:AppKit.NSCell.FocusedWindowChangedNotification P:AppKit.NSCell.HelpTagCreatedNotification P:AppKit.NSCell.Highlighted +P:AppKit.NSCell.Identifier P:AppKit.NSCell.IsContinuous P:AppKit.NSCell.IsOpaque P:AppKit.NSCell.LayoutChangedNotification @@ -50201,6 +49654,7 @@ P:AppKit.NSCollectionView.Delegate P:AppKit.NSCollectionView.IgnoreModifierKeysWhileDragging P:AppKit.NSCollectionView.IsFirstResponder P:AppKit.NSCollectionView.Selectable +P:AppKit.NSCollectionView.WantsPeriodicDraggingUpdates P:AppKit.NSCollectionViewElement.Identifier P:AppKit.NSCollectionViewItem.Selected P:AppKit.NSCollectionViewLayoutAttributes.Hidden @@ -50266,25 +49720,136 @@ P:AppKit.NSDocument.IsDraft P:AppKit.NSDocument.IsEntireFileLoaded P:AppKit.NSDocument.IsInViewingMode P:AppKit.NSDocument.IsLocked +P:AppKit.NSDocument.PresentedItemOperationQueue +P:AppKit.NSDocument.PrimaryPresentedItemUrl P:AppKit.NSDraggingDestination.WantsPeriodicDraggingUpdates P:AppKit.NSDraggingImageComponent.IconKey P:AppKit.NSDraggingImageComponent.LabelKey P:AppKit.NSDraggingSource.IgnoreModifierKeysWhileDragging +P:AppKit.NSDrawer.AccessibilityActivationPoint +P:AppKit.NSDrawer.AccessibilityAllowedValues P:AppKit.NSDrawer.AccessibilityAlternateUIVisible +P:AppKit.NSDrawer.AccessibilityApplicationFocusedUIElement +P:AppKit.NSDrawer.AccessibilityAttributedUserInputLabels +P:AppKit.NSDrawer.AccessibilityCancelButton +P:AppKit.NSDrawer.AccessibilityChildren +P:AppKit.NSDrawer.AccessibilityChildrenInNavigationOrder +P:AppKit.NSDrawer.AccessibilityClearButton +P:AppKit.NSDrawer.AccessibilityCloseButton +P:AppKit.NSDrawer.AccessibilityColumnCount +P:AppKit.NSDrawer.AccessibilityColumnHeaderUIElements +P:AppKit.NSDrawer.AccessibilityColumnIndexRange +P:AppKit.NSDrawer.AccessibilityColumns +P:AppKit.NSDrawer.AccessibilityColumnTitles +P:AppKit.NSDrawer.AccessibilityContents +P:AppKit.NSDrawer.AccessibilityCriticalValue +P:AppKit.NSDrawer.AccessibilityCustomActions +P:AppKit.NSDrawer.AccessibilityCustomRotors +P:AppKit.NSDrawer.AccessibilityDecrementButton +P:AppKit.NSDrawer.AccessibilityDefaultButton P:AppKit.NSDrawer.AccessibilityDisclosed +P:AppKit.NSDrawer.AccessibilityDisclosedByRow +P:AppKit.NSDrawer.AccessibilityDisclosedRows +P:AppKit.NSDrawer.AccessibilityDisclosureLevel +P:AppKit.NSDrawer.AccessibilityDocument P:AppKit.NSDrawer.AccessibilityEdited P:AppKit.NSDrawer.AccessibilityElement P:AppKit.NSDrawer.AccessibilityEnabled P:AppKit.NSDrawer.AccessibilityExpanded +P:AppKit.NSDrawer.AccessibilityExtrasMenuBar +P:AppKit.NSDrawer.AccessibilityFilename +P:AppKit.NSDrawer.AccessibilityFocused +P:AppKit.NSDrawer.AccessibilityFocusedWindow +P:AppKit.NSDrawer.AccessibilityFrame P:AppKit.NSDrawer.AccessibilityFrontmost +P:AppKit.NSDrawer.AccessibilityFullScreenButton +P:AppKit.NSDrawer.AccessibilityGrowArea +P:AppKit.NSDrawer.AccessibilityHandles +P:AppKit.NSDrawer.AccessibilityHeader +P:AppKit.NSDrawer.AccessibilityHelp P:AppKit.NSDrawer.AccessibilityHidden +P:AppKit.NSDrawer.AccessibilityHorizontalScrollBar +P:AppKit.NSDrawer.AccessibilityHorizontalUnitDescription +P:AppKit.NSDrawer.AccessibilityHorizontalUnits +P:AppKit.NSDrawer.AccessibilityIdentifier +P:AppKit.NSDrawer.AccessibilityIncrementButton +P:AppKit.NSDrawer.AccessibilityIndex +P:AppKit.NSDrawer.AccessibilityInsertionPointLineNumber +P:AppKit.NSDrawer.AccessibilityLabel +P:AppKit.NSDrawer.AccessibilityLabelUIElements +P:AppKit.NSDrawer.AccessibilityLabelValue +P:AppKit.NSDrawer.AccessibilityLinkedUIElements P:AppKit.NSDrawer.AccessibilityMain +P:AppKit.NSDrawer.AccessibilityMainWindow +P:AppKit.NSDrawer.AccessibilityMarkerGroupUIElement +P:AppKit.NSDrawer.AccessibilityMarkerTypeDescription +P:AppKit.NSDrawer.AccessibilityMarkerUIElements +P:AppKit.NSDrawer.AccessibilityMarkerValues +P:AppKit.NSDrawer.AccessibilityMaxValue +P:AppKit.NSDrawer.AccessibilityMenuBar +P:AppKit.NSDrawer.AccessibilityMinimizeButton P:AppKit.NSDrawer.AccessibilityMinimized +P:AppKit.NSDrawer.AccessibilityMinValue P:AppKit.NSDrawer.AccessibilityModal +P:AppKit.NSDrawer.AccessibilityNextContents +P:AppKit.NSDrawer.AccessibilityNumberOfCharacters P:AppKit.NSDrawer.AccessibilityOrderedByRow +P:AppKit.NSDrawer.AccessibilityOrientation +P:AppKit.NSDrawer.AccessibilityOverflowButton +P:AppKit.NSDrawer.AccessibilityParent +P:AppKit.NSDrawer.AccessibilityPlaceholderValue +P:AppKit.NSDrawer.AccessibilityPreviousContents P:AppKit.NSDrawer.AccessibilityProtectedContent +P:AppKit.NSDrawer.AccessibilityProxy P:AppKit.NSDrawer.AccessibilityRequired +P:AppKit.NSDrawer.AccessibilityRole +P:AppKit.NSDrawer.AccessibilityRoleDescription +P:AppKit.NSDrawer.AccessibilityRowCount +P:AppKit.NSDrawer.AccessibilityRowHeaderUIElements +P:AppKit.NSDrawer.AccessibilityRowIndexRange +P:AppKit.NSDrawer.AccessibilityRows +P:AppKit.NSDrawer.AccessibilityRulerMarkerType +P:AppKit.NSDrawer.AccessibilitySearchButton +P:AppKit.NSDrawer.AccessibilitySearchMenu P:AppKit.NSDrawer.AccessibilitySelected +P:AppKit.NSDrawer.AccessibilitySelectedCells +P:AppKit.NSDrawer.AccessibilitySelectedChildren +P:AppKit.NSDrawer.AccessibilitySelectedColumns +P:AppKit.NSDrawer.AccessibilitySelectedRows +P:AppKit.NSDrawer.AccessibilitySelectedText +P:AppKit.NSDrawer.AccessibilitySelectedTextRange +P:AppKit.NSDrawer.AccessibilitySelectedTextRanges +P:AppKit.NSDrawer.AccessibilityServesAsTitleForUIElements +P:AppKit.NSDrawer.AccessibilitySharedCharacterRange +P:AppKit.NSDrawer.AccessibilitySharedFocusElements +P:AppKit.NSDrawer.AccessibilitySharedTextUIElements +P:AppKit.NSDrawer.AccessibilityShownMenu +P:AppKit.NSDrawer.AccessibilitySortDirection +P:AppKit.NSDrawer.AccessibilitySplitters +P:AppKit.NSDrawer.AccessibilitySubrole +P:AppKit.NSDrawer.AccessibilityTabs +P:AppKit.NSDrawer.AccessibilityTitle +P:AppKit.NSDrawer.AccessibilityTitleUIElement +P:AppKit.NSDrawer.AccessibilityToolbarButton +P:AppKit.NSDrawer.AccessibilityTopLevelUIElement +P:AppKit.NSDrawer.AccessibilityUnitDescription +P:AppKit.NSDrawer.AccessibilityUnits +P:AppKit.NSDrawer.AccessibilityUrl +P:AppKit.NSDrawer.AccessibilityUserInputLabels +P:AppKit.NSDrawer.AccessibilityValue +P:AppKit.NSDrawer.AccessibilityValueDescription +P:AppKit.NSDrawer.AccessibilityVerticalScrollBar +P:AppKit.NSDrawer.AccessibilityVerticalUnitDescription +P:AppKit.NSDrawer.AccessibilityVerticalUnits +P:AppKit.NSDrawer.AccessibilityVisibleCells +P:AppKit.NSDrawer.AccessibilityVisibleCharacterRange +P:AppKit.NSDrawer.AccessibilityVisibleChildren +P:AppKit.NSDrawer.AccessibilityVisibleColumns +P:AppKit.NSDrawer.AccessibilityVisibleRows +P:AppKit.NSDrawer.AccessibilityWarningValue +P:AppKit.NSDrawer.AccessibilityWindow +P:AppKit.NSDrawer.AccessibilityWindows +P:AppKit.NSDrawer.AccessibilityZoomButton P:AppKit.NSDrawer.AnnouncementRequestedNotification P:AppKit.NSDrawer.ApplicationActivatedNotification P:AppKit.NSDrawer.ApplicationDeactivatedNotification @@ -50435,6 +50000,7 @@ P:AppKit.NSImageRep.RegistryDidChangeNotification P:AppKit.NSImageView.AccessibilityFocused P:AppKit.NSImageView.AccessibilityFrame P:AppKit.NSImageView.AccessibilityIdentifier +P:AppKit.NSImageView.AccessibilityLabel P:AppKit.NSImageView.AccessibilityParent P:AppKit.NSImageView.Editable P:AppKit.NSLayoutConstraint.Active @@ -50474,22 +50040,133 @@ P:AppKit.NSMatrix.Autoscroll P:AppKit.NSMatrix.Delegate P:AppKit.NSMatrix.Item(System.IntPtr,System.IntPtr) P:AppKit.NSMatrix.SelectionByRect +P:AppKit.NSMenu.AccessibilityActivationPoint +P:AppKit.NSMenu.AccessibilityAllowedValues P:AppKit.NSMenu.AccessibilityAlternateUIVisible +P:AppKit.NSMenu.AccessibilityApplicationFocusedUIElement +P:AppKit.NSMenu.AccessibilityAttributedUserInputLabels +P:AppKit.NSMenu.AccessibilityCancelButton +P:AppKit.NSMenu.AccessibilityChildren +P:AppKit.NSMenu.AccessibilityChildrenInNavigationOrder +P:AppKit.NSMenu.AccessibilityClearButton +P:AppKit.NSMenu.AccessibilityCloseButton +P:AppKit.NSMenu.AccessibilityColumnCount +P:AppKit.NSMenu.AccessibilityColumnHeaderUIElements +P:AppKit.NSMenu.AccessibilityColumnIndexRange +P:AppKit.NSMenu.AccessibilityColumns +P:AppKit.NSMenu.AccessibilityColumnTitles +P:AppKit.NSMenu.AccessibilityContents +P:AppKit.NSMenu.AccessibilityCriticalValue +P:AppKit.NSMenu.AccessibilityCustomActions +P:AppKit.NSMenu.AccessibilityCustomRotors +P:AppKit.NSMenu.AccessibilityDecrementButton +P:AppKit.NSMenu.AccessibilityDefaultButton P:AppKit.NSMenu.AccessibilityDisclosed +P:AppKit.NSMenu.AccessibilityDisclosedByRow +P:AppKit.NSMenu.AccessibilityDisclosedRows +P:AppKit.NSMenu.AccessibilityDisclosureLevel +P:AppKit.NSMenu.AccessibilityDocument P:AppKit.NSMenu.AccessibilityEdited P:AppKit.NSMenu.AccessibilityElement P:AppKit.NSMenu.AccessibilityEnabled P:AppKit.NSMenu.AccessibilityExpanded +P:AppKit.NSMenu.AccessibilityExtrasMenuBar +P:AppKit.NSMenu.AccessibilityFilename +P:AppKit.NSMenu.AccessibilityFocused +P:AppKit.NSMenu.AccessibilityFocusedWindow +P:AppKit.NSMenu.AccessibilityFrame +P:AppKit.NSMenu.AccessibilityFrameInParentSpace P:AppKit.NSMenu.AccessibilityFrontmost +P:AppKit.NSMenu.AccessibilityFullScreenButton +P:AppKit.NSMenu.AccessibilityGrowArea +P:AppKit.NSMenu.AccessibilityHandles +P:AppKit.NSMenu.AccessibilityHeader +P:AppKit.NSMenu.AccessibilityHelp P:AppKit.NSMenu.AccessibilityHidden +P:AppKit.NSMenu.AccessibilityHorizontalScrollBar +P:AppKit.NSMenu.AccessibilityHorizontalUnitDescription +P:AppKit.NSMenu.AccessibilityHorizontalUnits +P:AppKit.NSMenu.AccessibilityIdentifier +P:AppKit.NSMenu.AccessibilityIncrementButton +P:AppKit.NSMenu.AccessibilityIndex +P:AppKit.NSMenu.AccessibilityInsertionPointLineNumber +P:AppKit.NSMenu.AccessibilityLabel +P:AppKit.NSMenu.AccessibilityLabelUIElements +P:AppKit.NSMenu.AccessibilityLabelValue +P:AppKit.NSMenu.AccessibilityLinkedUIElements P:AppKit.NSMenu.AccessibilityMain +P:AppKit.NSMenu.AccessibilityMainWindow +P:AppKit.NSMenu.AccessibilityMarkerGroupUIElement +P:AppKit.NSMenu.AccessibilityMarkerTypeDescription +P:AppKit.NSMenu.AccessibilityMarkerUIElements +P:AppKit.NSMenu.AccessibilityMarkerValues +P:AppKit.NSMenu.AccessibilityMaxValue +P:AppKit.NSMenu.AccessibilityMenuBar +P:AppKit.NSMenu.AccessibilityMinimizeButton P:AppKit.NSMenu.AccessibilityMinimized +P:AppKit.NSMenu.AccessibilityMinValue P:AppKit.NSMenu.AccessibilityModal +P:AppKit.NSMenu.AccessibilityNextContents +P:AppKit.NSMenu.AccessibilityNumberOfCharacters P:AppKit.NSMenu.AccessibilityOrderedByRow +P:AppKit.NSMenu.AccessibilityOrientation +P:AppKit.NSMenu.AccessibilityOverflowButton +P:AppKit.NSMenu.AccessibilityParent +P:AppKit.NSMenu.AccessibilityPlaceholderValue +P:AppKit.NSMenu.AccessibilityPreviousContents P:AppKit.NSMenu.AccessibilityProtectedContent +P:AppKit.NSMenu.AccessibilityProxy P:AppKit.NSMenu.AccessibilityRequired +P:AppKit.NSMenu.AccessibilityRole +P:AppKit.NSMenu.AccessibilityRoleDescription +P:AppKit.NSMenu.AccessibilityRowCount +P:AppKit.NSMenu.AccessibilityRowHeaderUIElements +P:AppKit.NSMenu.AccessibilityRowIndexRange +P:AppKit.NSMenu.AccessibilityRows +P:AppKit.NSMenu.AccessibilityRulerMarkerType +P:AppKit.NSMenu.AccessibilitySearchButton +P:AppKit.NSMenu.AccessibilitySearchMenu P:AppKit.NSMenu.AccessibilitySelected +P:AppKit.NSMenu.AccessibilitySelectedCells +P:AppKit.NSMenu.AccessibilitySelectedChildren +P:AppKit.NSMenu.AccessibilitySelectedColumns +P:AppKit.NSMenu.AccessibilitySelectedRows +P:AppKit.NSMenu.AccessibilitySelectedText +P:AppKit.NSMenu.AccessibilitySelectedTextRange +P:AppKit.NSMenu.AccessibilitySelectedTextRanges +P:AppKit.NSMenu.AccessibilityServesAsTitleForUIElements +P:AppKit.NSMenu.AccessibilitySharedCharacterRange +P:AppKit.NSMenu.AccessibilitySharedFocusElements +P:AppKit.NSMenu.AccessibilitySharedTextUIElements +P:AppKit.NSMenu.AccessibilityShownMenu +P:AppKit.NSMenu.AccessibilitySortDirection +P:AppKit.NSMenu.AccessibilitySplitters +P:AppKit.NSMenu.AccessibilitySubrole +P:AppKit.NSMenu.AccessibilityTabs +P:AppKit.NSMenu.AccessibilityTitle +P:AppKit.NSMenu.AccessibilityTitleUIElement +P:AppKit.NSMenu.AccessibilityToolbarButton +P:AppKit.NSMenu.AccessibilityTopLevelUIElement +P:AppKit.NSMenu.AccessibilityUnitDescription +P:AppKit.NSMenu.AccessibilityUnits +P:AppKit.NSMenu.AccessibilityUrl +P:AppKit.NSMenu.AccessibilityUserInputLabels +P:AppKit.NSMenu.AccessibilityValue +P:AppKit.NSMenu.AccessibilityValueDescription +P:AppKit.NSMenu.AccessibilityVerticalScrollBar +P:AppKit.NSMenu.AccessibilityVerticalUnitDescription +P:AppKit.NSMenu.AccessibilityVerticalUnits +P:AppKit.NSMenu.AccessibilityVisibleCells +P:AppKit.NSMenu.AccessibilityVisibleCharacterRange +P:AppKit.NSMenu.AccessibilityVisibleChildren +P:AppKit.NSMenu.AccessibilityVisibleColumns +P:AppKit.NSMenu.AccessibilityVisibleRows +P:AppKit.NSMenu.AccessibilityWarningValue +P:AppKit.NSMenu.AccessibilityWindow +P:AppKit.NSMenu.AccessibilityWindows +P:AppKit.NSMenu.AccessibilityZoomButton P:AppKit.NSMenu.AnnouncementRequestedNotification +P:AppKit.NSMenu.Appearance P:AppKit.NSMenu.ApplicationActivatedNotification P:AppKit.NSMenu.ApplicationDeactivatedNotification P:AppKit.NSMenu.ApplicationHiddenNotification @@ -50503,8 +50180,10 @@ P:AppKit.NSMenu.DidEndTrackingNotification P:AppKit.NSMenu.DidRemoveItemNotification P:AppKit.NSMenu.DidSendActionNotification P:AppKit.NSMenu.DrawerCreatedNotification +P:AppKit.NSMenu.EffectiveAppearance P:AppKit.NSMenu.FocusedWindowChangedNotification P:AppKit.NSMenu.HelpTagCreatedNotification +P:AppKit.NSMenu.Identifier P:AppKit.NSMenu.IsTornOff P:AppKit.NSMenu.LayoutChangedNotification P:AppKit.NSMenu.MainWindowChangedNotification @@ -50531,21 +50210,131 @@ P:AppKit.NSMenu.WindowDeminiaturizedNotification P:AppKit.NSMenu.WindowMiniaturizedNotification P:AppKit.NSMenu.WindowMovedNotification P:AppKit.NSMenu.WindowResizedNotification +P:AppKit.NSMenuItem.AccessibilityActivationPoint +P:AppKit.NSMenuItem.AccessibilityAllowedValues P:AppKit.NSMenuItem.AccessibilityAlternateUIVisible +P:AppKit.NSMenuItem.AccessibilityApplicationFocusedUIElement +P:AppKit.NSMenuItem.AccessibilityAttributedUserInputLabels +P:AppKit.NSMenuItem.AccessibilityCancelButton +P:AppKit.NSMenuItem.AccessibilityChildren +P:AppKit.NSMenuItem.AccessibilityChildrenInNavigationOrder +P:AppKit.NSMenuItem.AccessibilityClearButton +P:AppKit.NSMenuItem.AccessibilityCloseButton +P:AppKit.NSMenuItem.AccessibilityColumnCount +P:AppKit.NSMenuItem.AccessibilityColumnHeaderUIElements +P:AppKit.NSMenuItem.AccessibilityColumnIndexRange +P:AppKit.NSMenuItem.AccessibilityColumns +P:AppKit.NSMenuItem.AccessibilityColumnTitles +P:AppKit.NSMenuItem.AccessibilityContents +P:AppKit.NSMenuItem.AccessibilityCriticalValue +P:AppKit.NSMenuItem.AccessibilityCustomActions +P:AppKit.NSMenuItem.AccessibilityCustomRotors +P:AppKit.NSMenuItem.AccessibilityDecrementButton +P:AppKit.NSMenuItem.AccessibilityDefaultButton P:AppKit.NSMenuItem.AccessibilityDisclosed +P:AppKit.NSMenuItem.AccessibilityDisclosedByRow +P:AppKit.NSMenuItem.AccessibilityDisclosedRows +P:AppKit.NSMenuItem.AccessibilityDisclosureLevel +P:AppKit.NSMenuItem.AccessibilityDocument P:AppKit.NSMenuItem.AccessibilityEdited P:AppKit.NSMenuItem.AccessibilityElement P:AppKit.NSMenuItem.AccessibilityEnabled P:AppKit.NSMenuItem.AccessibilityExpanded +P:AppKit.NSMenuItem.AccessibilityExtrasMenuBar +P:AppKit.NSMenuItem.AccessibilityFilename +P:AppKit.NSMenuItem.AccessibilityFocused +P:AppKit.NSMenuItem.AccessibilityFocusedWindow +P:AppKit.NSMenuItem.AccessibilityFrame +P:AppKit.NSMenuItem.AccessibilityFrameInParentSpace P:AppKit.NSMenuItem.AccessibilityFrontmost +P:AppKit.NSMenuItem.AccessibilityFullScreenButton +P:AppKit.NSMenuItem.AccessibilityGrowArea +P:AppKit.NSMenuItem.AccessibilityHandles +P:AppKit.NSMenuItem.AccessibilityHeader +P:AppKit.NSMenuItem.AccessibilityHelp P:AppKit.NSMenuItem.AccessibilityHidden +P:AppKit.NSMenuItem.AccessibilityHorizontalScrollBar +P:AppKit.NSMenuItem.AccessibilityHorizontalUnitDescription +P:AppKit.NSMenuItem.AccessibilityHorizontalUnits +P:AppKit.NSMenuItem.AccessibilityIdentifier +P:AppKit.NSMenuItem.AccessibilityIncrementButton +P:AppKit.NSMenuItem.AccessibilityIndex +P:AppKit.NSMenuItem.AccessibilityInsertionPointLineNumber +P:AppKit.NSMenuItem.AccessibilityLabel +P:AppKit.NSMenuItem.AccessibilityLabelUIElements +P:AppKit.NSMenuItem.AccessibilityLabelValue +P:AppKit.NSMenuItem.AccessibilityLinkedUIElements P:AppKit.NSMenuItem.AccessibilityMain +P:AppKit.NSMenuItem.AccessibilityMainWindow +P:AppKit.NSMenuItem.AccessibilityMarkerGroupUIElement +P:AppKit.NSMenuItem.AccessibilityMarkerTypeDescription +P:AppKit.NSMenuItem.AccessibilityMarkerUIElements +P:AppKit.NSMenuItem.AccessibilityMarkerValues +P:AppKit.NSMenuItem.AccessibilityMaxValue +P:AppKit.NSMenuItem.AccessibilityMenuBar +P:AppKit.NSMenuItem.AccessibilityMinimizeButton P:AppKit.NSMenuItem.AccessibilityMinimized +P:AppKit.NSMenuItem.AccessibilityMinValue P:AppKit.NSMenuItem.AccessibilityModal +P:AppKit.NSMenuItem.AccessibilityNextContents +P:AppKit.NSMenuItem.AccessibilityNumberOfCharacters P:AppKit.NSMenuItem.AccessibilityOrderedByRow +P:AppKit.NSMenuItem.AccessibilityOrientation +P:AppKit.NSMenuItem.AccessibilityOverflowButton +P:AppKit.NSMenuItem.AccessibilityParent +P:AppKit.NSMenuItem.AccessibilityPlaceholderValue +P:AppKit.NSMenuItem.AccessibilityPreviousContents P:AppKit.NSMenuItem.AccessibilityProtectedContent +P:AppKit.NSMenuItem.AccessibilityProxy P:AppKit.NSMenuItem.AccessibilityRequired +P:AppKit.NSMenuItem.AccessibilityRole +P:AppKit.NSMenuItem.AccessibilityRoleDescription +P:AppKit.NSMenuItem.AccessibilityRowCount +P:AppKit.NSMenuItem.AccessibilityRowHeaderUIElements +P:AppKit.NSMenuItem.AccessibilityRowIndexRange +P:AppKit.NSMenuItem.AccessibilityRows +P:AppKit.NSMenuItem.AccessibilityRulerMarkerType +P:AppKit.NSMenuItem.AccessibilitySearchButton +P:AppKit.NSMenuItem.AccessibilitySearchMenu P:AppKit.NSMenuItem.AccessibilitySelected +P:AppKit.NSMenuItem.AccessibilitySelectedCells +P:AppKit.NSMenuItem.AccessibilitySelectedChildren +P:AppKit.NSMenuItem.AccessibilitySelectedColumns +P:AppKit.NSMenuItem.AccessibilitySelectedRows +P:AppKit.NSMenuItem.AccessibilitySelectedText +P:AppKit.NSMenuItem.AccessibilitySelectedTextRange +P:AppKit.NSMenuItem.AccessibilitySelectedTextRanges +P:AppKit.NSMenuItem.AccessibilityServesAsTitleForUIElements +P:AppKit.NSMenuItem.AccessibilitySharedCharacterRange +P:AppKit.NSMenuItem.AccessibilitySharedFocusElements +P:AppKit.NSMenuItem.AccessibilitySharedTextUIElements +P:AppKit.NSMenuItem.AccessibilityShownMenu +P:AppKit.NSMenuItem.AccessibilitySortDirection +P:AppKit.NSMenuItem.AccessibilitySplitters +P:AppKit.NSMenuItem.AccessibilitySubrole +P:AppKit.NSMenuItem.AccessibilityTabs +P:AppKit.NSMenuItem.AccessibilityTitle +P:AppKit.NSMenuItem.AccessibilityTitleUIElement +P:AppKit.NSMenuItem.AccessibilityToolbarButton +P:AppKit.NSMenuItem.AccessibilityTopLevelUIElement +P:AppKit.NSMenuItem.AccessibilityUnitDescription +P:AppKit.NSMenuItem.AccessibilityUnits +P:AppKit.NSMenuItem.AccessibilityUrl +P:AppKit.NSMenuItem.AccessibilityUserInputLabels +P:AppKit.NSMenuItem.AccessibilityValue +P:AppKit.NSMenuItem.AccessibilityValueDescription +P:AppKit.NSMenuItem.AccessibilityVerticalScrollBar +P:AppKit.NSMenuItem.AccessibilityVerticalUnitDescription +P:AppKit.NSMenuItem.AccessibilityVerticalUnits +P:AppKit.NSMenuItem.AccessibilityVisibleCells +P:AppKit.NSMenuItem.AccessibilityVisibleCharacterRange +P:AppKit.NSMenuItem.AccessibilityVisibleChildren +P:AppKit.NSMenuItem.AccessibilityVisibleColumns +P:AppKit.NSMenuItem.AccessibilityVisibleRows +P:AppKit.NSMenuItem.AccessibilityWarningValue +P:AppKit.NSMenuItem.AccessibilityWindow +P:AppKit.NSMenuItem.AccessibilityWindows +P:AppKit.NSMenuItem.AccessibilityZoomButton P:AppKit.NSMenuItem.Alternate P:AppKit.NSMenuItem.AnnouncementRequestedNotification P:AppKit.NSMenuItem.ApplicationActivatedNotification @@ -50559,6 +50348,7 @@ P:AppKit.NSMenuItem.FocusedWindowChangedNotification P:AppKit.NSMenuItem.HelpTagCreatedNotification P:AppKit.NSMenuItem.Hidden P:AppKit.NSMenuItem.Highlighted +P:AppKit.NSMenuItem.Identifier P:AppKit.NSMenuItem.IsHiddenOrHasHiddenAncestor P:AppKit.NSMenuItem.IsSectionHeader P:AppKit.NSMenuItem.IsSeparatorItem @@ -50647,6 +50437,8 @@ P:AppKit.NSOutlineView.ItemWillExpandNotification P:AppKit.NSOutlineView.SelectionDidChangeNotification P:AppKit.NSOutlineView.SelectionIsChangingNotification P:AppKit.NSOutlineViewItemEventArgs.Item +P:AppKit.NSPageController.Animations +P:AppKit.NSPageController.Animator P:AppKit.NSPageController.Delegate P:AppKit.NSPageController.GetFrame P:AppKit.NSPageController.GetIdentifier @@ -50727,21 +50519,130 @@ P:AppKit.NSPathCellMenuEventArgs.Menu P:AppKit.NSPathControl.Delegate P:AppKit.NSPathControl.Editable P:AppKit.NSPickerTouchBarItem.Enabled +P:AppKit.NSPopover.AccessibilityActivationPoint +P:AppKit.NSPopover.AccessibilityAllowedValues P:AppKit.NSPopover.AccessibilityAlternateUIVisible +P:AppKit.NSPopover.AccessibilityApplicationFocusedUIElement +P:AppKit.NSPopover.AccessibilityAttributedUserInputLabels +P:AppKit.NSPopover.AccessibilityCancelButton +P:AppKit.NSPopover.AccessibilityChildren +P:AppKit.NSPopover.AccessibilityChildrenInNavigationOrder +P:AppKit.NSPopover.AccessibilityClearButton +P:AppKit.NSPopover.AccessibilityCloseButton +P:AppKit.NSPopover.AccessibilityColumnCount +P:AppKit.NSPopover.AccessibilityColumnHeaderUIElements +P:AppKit.NSPopover.AccessibilityColumnIndexRange +P:AppKit.NSPopover.AccessibilityColumns +P:AppKit.NSPopover.AccessibilityColumnTitles +P:AppKit.NSPopover.AccessibilityContents +P:AppKit.NSPopover.AccessibilityCriticalValue +P:AppKit.NSPopover.AccessibilityCustomActions +P:AppKit.NSPopover.AccessibilityCustomRotors +P:AppKit.NSPopover.AccessibilityDecrementButton +P:AppKit.NSPopover.AccessibilityDefaultButton P:AppKit.NSPopover.AccessibilityDisclosed +P:AppKit.NSPopover.AccessibilityDisclosedByRow +P:AppKit.NSPopover.AccessibilityDisclosedRows +P:AppKit.NSPopover.AccessibilityDisclosureLevel +P:AppKit.NSPopover.AccessibilityDocument P:AppKit.NSPopover.AccessibilityEdited P:AppKit.NSPopover.AccessibilityElement P:AppKit.NSPopover.AccessibilityEnabled P:AppKit.NSPopover.AccessibilityExpanded +P:AppKit.NSPopover.AccessibilityExtrasMenuBar +P:AppKit.NSPopover.AccessibilityFilename +P:AppKit.NSPopover.AccessibilityFocused +P:AppKit.NSPopover.AccessibilityFocusedWindow +P:AppKit.NSPopover.AccessibilityFrame P:AppKit.NSPopover.AccessibilityFrontmost +P:AppKit.NSPopover.AccessibilityFullScreenButton +P:AppKit.NSPopover.AccessibilityGrowArea +P:AppKit.NSPopover.AccessibilityHandles +P:AppKit.NSPopover.AccessibilityHeader +P:AppKit.NSPopover.AccessibilityHelp P:AppKit.NSPopover.AccessibilityHidden +P:AppKit.NSPopover.AccessibilityHorizontalScrollBar +P:AppKit.NSPopover.AccessibilityHorizontalUnitDescription +P:AppKit.NSPopover.AccessibilityHorizontalUnits +P:AppKit.NSPopover.AccessibilityIdentifier +P:AppKit.NSPopover.AccessibilityIncrementButton +P:AppKit.NSPopover.AccessibilityIndex +P:AppKit.NSPopover.AccessibilityInsertionPointLineNumber +P:AppKit.NSPopover.AccessibilityLabel +P:AppKit.NSPopover.AccessibilityLabelUIElements +P:AppKit.NSPopover.AccessibilityLabelValue +P:AppKit.NSPopover.AccessibilityLinkedUIElements P:AppKit.NSPopover.AccessibilityMain +P:AppKit.NSPopover.AccessibilityMainWindow +P:AppKit.NSPopover.AccessibilityMarkerGroupUIElement +P:AppKit.NSPopover.AccessibilityMarkerTypeDescription +P:AppKit.NSPopover.AccessibilityMarkerUIElements +P:AppKit.NSPopover.AccessibilityMarkerValues +P:AppKit.NSPopover.AccessibilityMaxValue +P:AppKit.NSPopover.AccessibilityMenuBar +P:AppKit.NSPopover.AccessibilityMinimizeButton P:AppKit.NSPopover.AccessibilityMinimized +P:AppKit.NSPopover.AccessibilityMinValue P:AppKit.NSPopover.AccessibilityModal +P:AppKit.NSPopover.AccessibilityNextContents +P:AppKit.NSPopover.AccessibilityNumberOfCharacters P:AppKit.NSPopover.AccessibilityOrderedByRow +P:AppKit.NSPopover.AccessibilityOrientation +P:AppKit.NSPopover.AccessibilityOverflowButton +P:AppKit.NSPopover.AccessibilityParent +P:AppKit.NSPopover.AccessibilityPlaceholderValue +P:AppKit.NSPopover.AccessibilityPreviousContents P:AppKit.NSPopover.AccessibilityProtectedContent +P:AppKit.NSPopover.AccessibilityProxy P:AppKit.NSPopover.AccessibilityRequired +P:AppKit.NSPopover.AccessibilityRole +P:AppKit.NSPopover.AccessibilityRoleDescription +P:AppKit.NSPopover.AccessibilityRowCount +P:AppKit.NSPopover.AccessibilityRowHeaderUIElements +P:AppKit.NSPopover.AccessibilityRowIndexRange +P:AppKit.NSPopover.AccessibilityRows +P:AppKit.NSPopover.AccessibilityRulerMarkerType +P:AppKit.NSPopover.AccessibilitySearchButton +P:AppKit.NSPopover.AccessibilitySearchMenu P:AppKit.NSPopover.AccessibilitySelected +P:AppKit.NSPopover.AccessibilitySelectedCells +P:AppKit.NSPopover.AccessibilitySelectedChildren +P:AppKit.NSPopover.AccessibilitySelectedColumns +P:AppKit.NSPopover.AccessibilitySelectedRows +P:AppKit.NSPopover.AccessibilitySelectedText +P:AppKit.NSPopover.AccessibilitySelectedTextRange +P:AppKit.NSPopover.AccessibilitySelectedTextRanges +P:AppKit.NSPopover.AccessibilityServesAsTitleForUIElements +P:AppKit.NSPopover.AccessibilitySharedCharacterRange +P:AppKit.NSPopover.AccessibilitySharedFocusElements +P:AppKit.NSPopover.AccessibilitySharedTextUIElements +P:AppKit.NSPopover.AccessibilityShownMenu +P:AppKit.NSPopover.AccessibilitySortDirection +P:AppKit.NSPopover.AccessibilitySplitters +P:AppKit.NSPopover.AccessibilitySubrole +P:AppKit.NSPopover.AccessibilityTabs +P:AppKit.NSPopover.AccessibilityTitle +P:AppKit.NSPopover.AccessibilityTitleUIElement +P:AppKit.NSPopover.AccessibilityToolbarButton +P:AppKit.NSPopover.AccessibilityTopLevelUIElement +P:AppKit.NSPopover.AccessibilityUnitDescription +P:AppKit.NSPopover.AccessibilityUnits +P:AppKit.NSPopover.AccessibilityUrl +P:AppKit.NSPopover.AccessibilityUserInputLabels +P:AppKit.NSPopover.AccessibilityValue +P:AppKit.NSPopover.AccessibilityValueDescription +P:AppKit.NSPopover.AccessibilityVerticalScrollBar +P:AppKit.NSPopover.AccessibilityVerticalUnitDescription +P:AppKit.NSPopover.AccessibilityVerticalUnits +P:AppKit.NSPopover.AccessibilityVisibleCells +P:AppKit.NSPopover.AccessibilityVisibleCharacterRange +P:AppKit.NSPopover.AccessibilityVisibleChildren +P:AppKit.NSPopover.AccessibilityVisibleColumns +P:AppKit.NSPopover.AccessibilityVisibleRows +P:AppKit.NSPopover.AccessibilityWarningValue +P:AppKit.NSPopover.AccessibilityWindow +P:AppKit.NSPopover.AccessibilityWindows +P:AppKit.NSPopover.AccessibilityZoomButton P:AppKit.NSPopover.AnnouncementRequestedNotification P:AppKit.NSPopover.ApplicationActivatedNotification P:AppKit.NSPopover.ApplicationDeactivatedNotification @@ -50792,6 +50693,10 @@ P:AppKit.NSPopUpButtonCell.Item(System.IntPtr) P:AppKit.NSPopUpButtonCell.Item(System.String) P:AppKit.NSPopUpButtonCell.ObjectValue P:AppKit.NSPopUpButtonCell.WillPopUpNotification +P:AppKit.NSPreviewRepresentingActivityItem.IconProvider +P:AppKit.NSPreviewRepresentingActivityItem.ImageProvider +P:AppKit.NSPreviewRepresentingActivityItem.Item +P:AppKit.NSPreviewRepresentingActivityItem.Title P:AppKit.NSPrintInfo.HorizontallyCentered P:AppKit.NSPrintInfo.SelectionOnly P:AppKit.NSPrintInfo.VerticallyCentered @@ -50800,6 +50705,7 @@ P:AppKit.NSProgressIndicator.AccessibilityFocused P:AppKit.NSProgressIndicator.AccessibilityFrame P:AppKit.NSProgressIndicator.AccessibilityIdentifier P:AppKit.NSProgressIndicator.AccessibilityParent +P:AppKit.NSProgressIndicator.AccessibilityValue P:AppKit.NSProgressIndicator.Bezeled P:AppKit.NSProgressIndicator.Indeterminate P:AppKit.NSProgressIndicator.IsDisplayedWhenStopped @@ -50835,6 +50741,7 @@ P:AppKit.NSScroller.PreferredStyleChangedNotification P:AppKit.NSScrollView.DidEndLiveMagnifyNotification P:AppKit.NSScrollView.DidEndLiveScrollNotification P:AppKit.NSScrollView.DidLiveScrollNotification +P:AppKit.NSScrollView.FindBarView P:AppKit.NSScrollView.FindBarVisible P:AppKit.NSScrollView.WillStartLiveMagnifyNotification P:AppKit.NSScrollView.WillStartLiveScrollNotification @@ -50880,7 +50787,9 @@ P:AppKit.NSSharingServicePickerTouchBarItem.Enabled P:AppKit.NSSlider.AccessibilityFocused P:AppKit.NSSlider.AccessibilityFrame P:AppKit.NSSlider.AccessibilityIdentifier +P:AppKit.NSSlider.AccessibilityLabel P:AppKit.NSSlider.AccessibilityParent +P:AppKit.NSSlider.AccessibilityValue P:AppKit.NSSlider.IsVertical P:AppKit.NSSliderAccessory.AccessibilityActivationPoint P:AppKit.NSSliderAccessory.AccessibilityAllowedValues @@ -51082,6 +50991,8 @@ P:AppKit.NSSplitView.IsVertical P:AppKit.NSSplitView.NSSplitViewDidResizeSubviewsNotification P:AppKit.NSSplitView.NSSplitViewWillResizeSubviewsNotification P:AppKit.NSSplitViewController.AutomaticDimension +P:AppKit.NSSplitViewItem.Animations +P:AppKit.NSSplitViewItem.Animator P:AppKit.NSSplitViewItem.Collapsed P:AppKit.NSSplitViewItem.SpringLoaded P:AppKit.NSSplitViewItem.UnspecifiedDimension @@ -51092,7 +51003,9 @@ P:AppKit.NSStatusItem.Visible P:AppKit.NSStepper.AccessibilityFocused P:AppKit.NSStepper.AccessibilityFrame P:AppKit.NSStepper.AccessibilityIdentifier +P:AppKit.NSStepper.AccessibilityLabel P:AppKit.NSStepper.AccessibilityParent +P:AppKit.NSStepper.AccessibilityValue P:AppKit.NSStringAttributeKey.Attachment P:AppKit.NSStringAttributeKey.BackgroundColor P:AppKit.NSStringAttributeKey.BaselineOffset @@ -51160,11 +51073,14 @@ P:AppKit.NSSwitch.AccessibilityFrame P:AppKit.NSSwitch.AccessibilityIdentifier P:AppKit.NSSwitch.AccessibilityLabel P:AppKit.NSSwitch.AccessibilityParent +P:AppKit.NSSwitch.AccessibilityValue P:AppKit.NSTableColumn.Editable P:AppKit.NSTableColumn.Hidden +P:AppKit.NSTableRowView.AccessibilityDisclosureLevel P:AppKit.NSTableRowView.AccessibilityFocused P:AppKit.NSTableRowView.AccessibilityFrame P:AppKit.NSTableRowView.AccessibilityIdentifier +P:AppKit.NSTableRowView.AccessibilityIndex P:AppKit.NSTableRowView.AccessibilityParent P:AppKit.NSTableRowView.Emphasized P:AppKit.NSTableRowView.Floating @@ -51173,10 +51089,22 @@ P:AppKit.NSTableRowView.NextRowSelected P:AppKit.NSTableRowView.PreviousRowSelected P:AppKit.NSTableRowView.Selected P:AppKit.NSTableRowView.TargetForDropOperation +P:AppKit.NSTableView.AccessibilityColumnHeaderUIElements +P:AppKit.NSTableView.AccessibilityColumns P:AppKit.NSTableView.AccessibilityFocused P:AppKit.NSTableView.AccessibilityFrame +P:AppKit.NSTableView.AccessibilityHeaderGroup P:AppKit.NSTableView.AccessibilityIdentifier +P:AppKit.NSTableView.AccessibilityLabel P:AppKit.NSTableView.AccessibilityParent +P:AppKit.NSTableView.AccessibilityRowHeaderUIElements +P:AppKit.NSTableView.AccessibilityRows +P:AppKit.NSTableView.AccessibilitySelectedCells +P:AppKit.NSTableView.AccessibilitySelectedColumns +P:AppKit.NSTableView.AccessibilitySelectedRows +P:AppKit.NSTableView.AccessibilityVisibleCells +P:AppKit.NSTableView.AccessibilityVisibleColumns +P:AppKit.NSTableView.AccessibilityVisibleRows P:AppKit.NSTableView.ColumnDidMoveNotification P:AppKit.NSTableView.ColumnDidResizeNotification P:AppKit.NSTableView.CoreGetRowView @@ -51404,6 +51332,7 @@ P:AppKit.NSTextView.AccessibilityIdentifier P:AppKit.NSTextView.AccessibilityParent P:AppKit.NSTextView.AccessibilityValue P:AppKit.NSTextView.AccessibilityVisibleCharacterRange +P:AppKit.NSTextView.AttributedString P:AppKit.NSTextView.AutomaticDashSubstitutionEnabled P:AppKit.NSTextView.AutomaticDataDetectionEnabled P:AppKit.NSTextView.AutomaticLinkDetectionEnabled @@ -51413,12 +51342,14 @@ P:AppKit.NSTextView.AutomaticTextCompletionEnabled P:AppKit.NSTextView.AutomaticTextReplacementEnabled P:AppKit.NSTextView.ContentType P:AppKit.NSTextView.ContinuousSpellCheckingEnabled +P:AppKit.NSTextView.ConversationIdentifier P:AppKit.NSTextView.Delegate P:AppKit.NSTextView.DidChangeSelectionNotification P:AppKit.NSTextView.DidChangeTypingAttributesNotification P:AppKit.NSTextView.DidCheckText P:AppKit.NSTextView.DidSwitchToNSLayoutManagerNotification P:AppKit.NSTextView.DoCommandBySelector +P:AppKit.NSTextView.DocumentVisibleRect P:AppKit.NSTextView.Editable P:AppKit.NSTextView.FieldEditor P:AppKit.NSTextView.GetCandidates @@ -51427,10 +51358,14 @@ P:AppKit.NSTextView.GetTextCheckingCandidates P:AppKit.NSTextView.GetUndoManager P:AppKit.NSTextView.GetWritablePasteboardTypes P:AppKit.NSTextView.GrammarCheckingEnabled +P:AppKit.NSTextView.HasMarkedText P:AppKit.NSTextView.IgnoreModifierKeysWhileDragging P:AppKit.NSTextView.IsIncrementalSearchingEnabled +P:AppKit.NSTextView.LayoutOrientation P:AppKit.NSTextView.LinkClicked +P:AppKit.NSTextView.MarkedRange P:AppKit.NSTextView.MenuForEvent +P:AppKit.NSTextView.PreferredTextAccessoryPlacement P:AppKit.NSTextView.RichText P:AppKit.NSTextView.RulerVisible P:AppKit.NSTextView.Selectable @@ -51440,12 +51375,15 @@ P:AppKit.NSTextView.ShouldChangeTypingAttributes P:AppKit.NSTextView.ShouldSelectCandidates P:AppKit.NSTextView.ShouldSetSpellingState P:AppKit.NSTextView.ShouldUpdateTouchBarItemIdentifiers +P:AppKit.NSTextView.UnionRectInVisibleSelectedRange +P:AppKit.NSTextView.ValidAttributesForMarkedText P:AppKit.NSTextView.WillChangeNotifyingTextViewNotification P:AppKit.NSTextView.WillChangeSelection P:AppKit.NSTextView.WillChangeSelectionFromRanges P:AppKit.NSTextView.WillCheckText P:AppKit.NSTextView.WillDisplayToolTip P:AppKit.NSTextView.WillSwitchToNSLayoutManagerNotification +P:AppKit.NSTextView.WindowLevel P:AppKit.NSTextView.WriteCell P:AppKit.NSTextViewClickedEventArgs.Cell P:AppKit.NSTextViewClickedEventArgs.CellFrame @@ -51465,6 +51403,8 @@ P:AppKit.NSTextViewportLayoutController.ViewportRange P:AppKit.NSTextViewportLayoutController.WeakDelegate P:AppKit.NSTextViewWillChangeNotifyingTextViewEventArgs.NewView P:AppKit.NSTextViewWillChangeNotifyingTextViewEventArgs.OldView +P:AppKit.NSTitlebarAccessoryViewController.Animations +P:AppKit.NSTitlebarAccessoryViewController.Animator P:AppKit.NSTitlebarAccessoryViewController.IsHidden P:AppKit.NSTokenField.Delegate P:AppKit.NSTokenFieldCell.Delegate @@ -51510,26 +51450,138 @@ P:AppKit.NSTreeController.SelectionIndexPaths P:AppKit.NSTreeNode.IsLeaf P:AppKit.NSUserInterfaceCompressionOptions.Empty P:AppKit.NSView.AccessibilityActionNames +P:AppKit.NSView.AccessibilityActivationPoint +P:AppKit.NSView.AccessibilityAllowedValues P:AppKit.NSView.AccessibilityAlternateUIVisible +P:AppKit.NSView.AccessibilityApplicationFocusedUIElement +P:AppKit.NSView.AccessibilityAttributedUserInputLabels P:AppKit.NSView.AccessibilityAttributeNames +P:AppKit.NSView.AccessibilityCancelButton +P:AppKit.NSView.AccessibilityChildren +P:AppKit.NSView.AccessibilityChildrenInNavigationOrder +P:AppKit.NSView.AccessibilityClearButton +P:AppKit.NSView.AccessibilityCloseButton +P:AppKit.NSView.AccessibilityColumnCount +P:AppKit.NSView.AccessibilityColumnHeaderUIElements +P:AppKit.NSView.AccessibilityColumnIndexRange +P:AppKit.NSView.AccessibilityColumns +P:AppKit.NSView.AccessibilityColumnTitles +P:AppKit.NSView.AccessibilityContents +P:AppKit.NSView.AccessibilityCriticalValue +P:AppKit.NSView.AccessibilityCustomActions +P:AppKit.NSView.AccessibilityCustomRotors +P:AppKit.NSView.AccessibilityDecrementButton +P:AppKit.NSView.AccessibilityDefaultButton P:AppKit.NSView.AccessibilityDisclosed +P:AppKit.NSView.AccessibilityDisclosedByRow +P:AppKit.NSView.AccessibilityDisclosedRows +P:AppKit.NSView.AccessibilityDisclosureLevel +P:AppKit.NSView.AccessibilityDocument P:AppKit.NSView.AccessibilityEdited P:AppKit.NSView.AccessibilityElement P:AppKit.NSView.AccessibilityEnabled P:AppKit.NSView.AccessibilityExpanded +P:AppKit.NSView.AccessibilityExtrasMenuBar +P:AppKit.NSView.AccessibilityFilename +P:AppKit.NSView.AccessibilityFocused +P:AppKit.NSView.AccessibilityFocusedWindow +P:AppKit.NSView.AccessibilityFrame P:AppKit.NSView.AccessibilityFrontmost +P:AppKit.NSView.AccessibilityFullScreenButton +P:AppKit.NSView.AccessibilityGrowArea +P:AppKit.NSView.AccessibilityHandles +P:AppKit.NSView.AccessibilityHeader +P:AppKit.NSView.AccessibilityHelp P:AppKit.NSView.AccessibilityHidden +P:AppKit.NSView.AccessibilityHorizontalScrollBar +P:AppKit.NSView.AccessibilityHorizontalUnitDescription +P:AppKit.NSView.AccessibilityHorizontalUnits +P:AppKit.NSView.AccessibilityIdentifier +P:AppKit.NSView.AccessibilityIncrementButton +P:AppKit.NSView.AccessibilityIndex +P:AppKit.NSView.AccessibilityInsertionPointLineNumber P:AppKit.NSView.AccessibilityIsIgnored +P:AppKit.NSView.AccessibilityLabel +P:AppKit.NSView.AccessibilityLabelUIElements +P:AppKit.NSView.AccessibilityLabelValue +P:AppKit.NSView.AccessibilityLinkedUIElements P:AppKit.NSView.AccessibilityMain +P:AppKit.NSView.AccessibilityMainWindow +P:AppKit.NSView.AccessibilityMarkerGroupUIElement +P:AppKit.NSView.AccessibilityMarkerTypeDescription +P:AppKit.NSView.AccessibilityMarkerUIElements +P:AppKit.NSView.AccessibilityMarkerValues +P:AppKit.NSView.AccessibilityMaxValue +P:AppKit.NSView.AccessibilityMenuBar +P:AppKit.NSView.AccessibilityMinimizeButton P:AppKit.NSView.AccessibilityMinimized +P:AppKit.NSView.AccessibilityMinValue P:AppKit.NSView.AccessibilityModal +P:AppKit.NSView.AccessibilityNextContents P:AppKit.NSView.AccessibilityNotifiesWhenDestroyed +P:AppKit.NSView.AccessibilityNumberOfCharacters P:AppKit.NSView.AccessibilityOrderedByRow +P:AppKit.NSView.AccessibilityOrientation +P:AppKit.NSView.AccessibilityOverflowButton P:AppKit.NSView.AccessibilityParameterizedAttributeNames +P:AppKit.NSView.AccessibilityParent +P:AppKit.NSView.AccessibilityPlaceholderValue +P:AppKit.NSView.AccessibilityPreviousContents P:AppKit.NSView.AccessibilityProtectedContent +P:AppKit.NSView.AccessibilityProxy P:AppKit.NSView.AccessibilityRequired +P:AppKit.NSView.AccessibilityRole +P:AppKit.NSView.AccessibilityRoleDescription +P:AppKit.NSView.AccessibilityRowCount +P:AppKit.NSView.AccessibilityRowHeaderUIElements +P:AppKit.NSView.AccessibilityRowIndexRange +P:AppKit.NSView.AccessibilityRows +P:AppKit.NSView.AccessibilityRulerMarkerType +P:AppKit.NSView.AccessibilitySearchButton +P:AppKit.NSView.AccessibilitySearchMenu P:AppKit.NSView.AccessibilitySelected +P:AppKit.NSView.AccessibilitySelectedCells +P:AppKit.NSView.AccessibilitySelectedChildren +P:AppKit.NSView.AccessibilitySelectedColumns +P:AppKit.NSView.AccessibilitySelectedRows +P:AppKit.NSView.AccessibilitySelectedText +P:AppKit.NSView.AccessibilitySelectedTextRange +P:AppKit.NSView.AccessibilitySelectedTextRanges +P:AppKit.NSView.AccessibilityServesAsTitleForUIElements +P:AppKit.NSView.AccessibilitySharedCharacterRange +P:AppKit.NSView.AccessibilitySharedFocusElements +P:AppKit.NSView.AccessibilitySharedTextUIElements +P:AppKit.NSView.AccessibilityShownMenu +P:AppKit.NSView.AccessibilitySortDirection +P:AppKit.NSView.AccessibilitySplitters +P:AppKit.NSView.AccessibilitySubrole +P:AppKit.NSView.AccessibilityTabs +P:AppKit.NSView.AccessibilityTitle +P:AppKit.NSView.AccessibilityTitleUIElement +P:AppKit.NSView.AccessibilityToolbarButton +P:AppKit.NSView.AccessibilityTopLevelUIElement +P:AppKit.NSView.AccessibilityUnitDescription +P:AppKit.NSView.AccessibilityUnits +P:AppKit.NSView.AccessibilityUrl +P:AppKit.NSView.AccessibilityUserInputLabels +P:AppKit.NSView.AccessibilityValue +P:AppKit.NSView.AccessibilityValueDescription +P:AppKit.NSView.AccessibilityVerticalScrollBar +P:AppKit.NSView.AccessibilityVerticalUnitDescription +P:AppKit.NSView.AccessibilityVerticalUnits +P:AppKit.NSView.AccessibilityVisibleCells +P:AppKit.NSView.AccessibilityVisibleCharacterRange +P:AppKit.NSView.AccessibilityVisibleChildren +P:AppKit.NSView.AccessibilityVisibleColumns +P:AppKit.NSView.AccessibilityVisibleRows +P:AppKit.NSView.AccessibilityWarningValue +P:AppKit.NSView.AccessibilityWindow +P:AppKit.NSView.AccessibilityWindows +P:AppKit.NSView.AccessibilityZoomButton +P:AppKit.NSView.Animations +P:AppKit.NSView.Animator P:AppKit.NSView.AnnouncementRequestedNotification +P:AppKit.NSView.Appearance P:AppKit.NSView.ApplicationActivatedNotification P:AppKit.NSView.ApplicationDeactivatedNotification P:AppKit.NSView.ApplicationHiddenNotification @@ -51537,6 +51589,7 @@ P:AppKit.NSView.ApplicationShownNotification P:AppKit.NSView.BoundsChangedNotification P:AppKit.NSView.CreatedNotification P:AppKit.NSView.DrawerCreatedNotification +P:AppKit.NSView.EffectiveAppearance P:AppKit.NSView.FocusChangedNotification P:AppKit.NSView.FocusedWindowChangedNotification P:AppKit.NSView.FrameChangedNotification @@ -51544,6 +51597,7 @@ P:AppKit.NSView.GlobalFrameChangedNotification P:AppKit.NSView.HelpTagCreatedNotification P:AppKit.NSView.Hidden P:AppKit.NSView.HorizontalContentSizeConstraintActive +P:AppKit.NSView.Identifier P:AppKit.NSView.IsCompatibleWithResponsiveScrolling P:AppKit.NSView.IsDrawingFindIndicator P:AppKit.NSView.IsFlipped @@ -51578,6 +51632,7 @@ P:AppKit.NSView.UnitsChangedNotification P:AppKit.NSView.UpdatedTrackingAreasNotification P:AppKit.NSView.ValueChangedNotification P:AppKit.NSView.VerticalContentSizeConstraintActive +P:AppKit.NSView.WantsPeriodicDraggingUpdates P:AppKit.NSView.WindowCreatedNotification P:AppKit.NSView.WindowDeminiaturizedNotification P:AppKit.NSView.WindowMiniaturizedNotification @@ -51595,28 +51650,141 @@ P:AppKit.NSViewColumnMoveEventArgs.NewColumn P:AppKit.NSViewColumnMoveEventArgs.OldColumn P:AppKit.NSViewColumnResizeEventArgs.Column P:AppKit.NSViewColumnResizeEventArgs.OldWidth +P:AppKit.NSViewController.Identifier P:AppKit.NSViewController.Menu P:AppKit.NSViewController.NextResponder P:AppKit.NSViewController.TouchBar P:AppKit.NSViewController.UserActivity P:AppKit.NSViewController.ViewLoaded P:AppKit.NSVisualEffectView.Emphasized +P:AppKit.NSWindow.AccessibilityActivationPoint +P:AppKit.NSWindow.AccessibilityAllowedValues P:AppKit.NSWindow.AccessibilityAlternateUIVisible +P:AppKit.NSWindow.AccessibilityApplicationFocusedUIElement +P:AppKit.NSWindow.AccessibilityAttributedUserInputLabels +P:AppKit.NSWindow.AccessibilityCancelButton +P:AppKit.NSWindow.AccessibilityChildren +P:AppKit.NSWindow.AccessibilityChildrenInNavigationOrder +P:AppKit.NSWindow.AccessibilityClearButton +P:AppKit.NSWindow.AccessibilityCloseButton +P:AppKit.NSWindow.AccessibilityColumnCount +P:AppKit.NSWindow.AccessibilityColumnHeaderUIElements +P:AppKit.NSWindow.AccessibilityColumnIndexRange +P:AppKit.NSWindow.AccessibilityColumns +P:AppKit.NSWindow.AccessibilityColumnTitles +P:AppKit.NSWindow.AccessibilityContents +P:AppKit.NSWindow.AccessibilityCriticalValue +P:AppKit.NSWindow.AccessibilityCustomActions +P:AppKit.NSWindow.AccessibilityCustomRotors +P:AppKit.NSWindow.AccessibilityDecrementButton +P:AppKit.NSWindow.AccessibilityDefaultButton P:AppKit.NSWindow.AccessibilityDisclosed +P:AppKit.NSWindow.AccessibilityDisclosedByRow +P:AppKit.NSWindow.AccessibilityDisclosedRows +P:AppKit.NSWindow.AccessibilityDisclosureLevel +P:AppKit.NSWindow.AccessibilityDocument P:AppKit.NSWindow.AccessibilityEdited P:AppKit.NSWindow.AccessibilityElement P:AppKit.NSWindow.AccessibilityEnabled P:AppKit.NSWindow.AccessibilityExpanded +P:AppKit.NSWindow.AccessibilityExtrasMenuBar +P:AppKit.NSWindow.AccessibilityFilename +P:AppKit.NSWindow.AccessibilityFocused +P:AppKit.NSWindow.AccessibilityFocusedWindow +P:AppKit.NSWindow.AccessibilityFrame P:AppKit.NSWindow.AccessibilityFrontmost +P:AppKit.NSWindow.AccessibilityFullScreenButton +P:AppKit.NSWindow.AccessibilityGrowArea +P:AppKit.NSWindow.AccessibilityHandles +P:AppKit.NSWindow.AccessibilityHeader +P:AppKit.NSWindow.AccessibilityHelp P:AppKit.NSWindow.AccessibilityHidden +P:AppKit.NSWindow.AccessibilityHorizontalScrollBar +P:AppKit.NSWindow.AccessibilityHorizontalUnitDescription +P:AppKit.NSWindow.AccessibilityHorizontalUnits +P:AppKit.NSWindow.AccessibilityIdentifier +P:AppKit.NSWindow.AccessibilityIncrementButton +P:AppKit.NSWindow.AccessibilityIndex +P:AppKit.NSWindow.AccessibilityInsertionPointLineNumber +P:AppKit.NSWindow.AccessibilityLabel +P:AppKit.NSWindow.AccessibilityLabelUIElements +P:AppKit.NSWindow.AccessibilityLabelValue +P:AppKit.NSWindow.AccessibilityLinkedUIElements P:AppKit.NSWindow.AccessibilityMain +P:AppKit.NSWindow.AccessibilityMainWindow +P:AppKit.NSWindow.AccessibilityMarkerGroupUIElement +P:AppKit.NSWindow.AccessibilityMarkerTypeDescription +P:AppKit.NSWindow.AccessibilityMarkerUIElements +P:AppKit.NSWindow.AccessibilityMarkerValues +P:AppKit.NSWindow.AccessibilityMaxValue +P:AppKit.NSWindow.AccessibilityMenuBar +P:AppKit.NSWindow.AccessibilityMinimizeButton P:AppKit.NSWindow.AccessibilityMinimized +P:AppKit.NSWindow.AccessibilityMinValue P:AppKit.NSWindow.AccessibilityModal +P:AppKit.NSWindow.AccessibilityNextContents +P:AppKit.NSWindow.AccessibilityNumberOfCharacters P:AppKit.NSWindow.AccessibilityOrderedByRow +P:AppKit.NSWindow.AccessibilityOrientation +P:AppKit.NSWindow.AccessibilityOverflowButton +P:AppKit.NSWindow.AccessibilityParent +P:AppKit.NSWindow.AccessibilityPlaceholderValue +P:AppKit.NSWindow.AccessibilityPreviousContents P:AppKit.NSWindow.AccessibilityProtectedContent +P:AppKit.NSWindow.AccessibilityProxy P:AppKit.NSWindow.AccessibilityRequired +P:AppKit.NSWindow.AccessibilityRole +P:AppKit.NSWindow.AccessibilityRoleDescription +P:AppKit.NSWindow.AccessibilityRowCount +P:AppKit.NSWindow.AccessibilityRowHeaderUIElements +P:AppKit.NSWindow.AccessibilityRowIndexRange +P:AppKit.NSWindow.AccessibilityRows +P:AppKit.NSWindow.AccessibilityRulerMarkerType +P:AppKit.NSWindow.AccessibilitySearchButton +P:AppKit.NSWindow.AccessibilitySearchMenu P:AppKit.NSWindow.AccessibilitySelected +P:AppKit.NSWindow.AccessibilitySelectedCells +P:AppKit.NSWindow.AccessibilitySelectedChildren +P:AppKit.NSWindow.AccessibilitySelectedColumns +P:AppKit.NSWindow.AccessibilitySelectedRows +P:AppKit.NSWindow.AccessibilitySelectedText +P:AppKit.NSWindow.AccessibilitySelectedTextRange +P:AppKit.NSWindow.AccessibilitySelectedTextRanges +P:AppKit.NSWindow.AccessibilityServesAsTitleForUIElements +P:AppKit.NSWindow.AccessibilitySharedCharacterRange +P:AppKit.NSWindow.AccessibilitySharedFocusElements +P:AppKit.NSWindow.AccessibilitySharedTextUIElements +P:AppKit.NSWindow.AccessibilityShownMenu +P:AppKit.NSWindow.AccessibilitySortDirection +P:AppKit.NSWindow.AccessibilitySplitters +P:AppKit.NSWindow.AccessibilitySubrole +P:AppKit.NSWindow.AccessibilityTabs +P:AppKit.NSWindow.AccessibilityTitle +P:AppKit.NSWindow.AccessibilityTitleUIElement +P:AppKit.NSWindow.AccessibilityToolbarButton +P:AppKit.NSWindow.AccessibilityTopLevelUIElement +P:AppKit.NSWindow.AccessibilityUnitDescription +P:AppKit.NSWindow.AccessibilityUnits +P:AppKit.NSWindow.AccessibilityUrl +P:AppKit.NSWindow.AccessibilityUserInputLabels +P:AppKit.NSWindow.AccessibilityValue +P:AppKit.NSWindow.AccessibilityValueDescription +P:AppKit.NSWindow.AccessibilityVerticalScrollBar +P:AppKit.NSWindow.AccessibilityVerticalUnitDescription +P:AppKit.NSWindow.AccessibilityVerticalUnits +P:AppKit.NSWindow.AccessibilityVisibleCells +P:AppKit.NSWindow.AccessibilityVisibleCharacterRange +P:AppKit.NSWindow.AccessibilityVisibleChildren +P:AppKit.NSWindow.AccessibilityVisibleColumns +P:AppKit.NSWindow.AccessibilityVisibleRows +P:AppKit.NSWindow.AccessibilityWarningValue +P:AppKit.NSWindow.AccessibilityWindow +P:AppKit.NSWindow.AccessibilityWindows +P:AppKit.NSWindow.AccessibilityZoomButton +P:AppKit.NSWindow.Animations +P:AppKit.NSWindow.Animator P:AppKit.NSWindow.AnnouncementRequestedNotification +P:AppKit.NSWindow.Appearance P:AppKit.NSWindow.ApplicationActivatedNotification P:AppKit.NSWindow.ApplicationDeactivatedNotification P:AppKit.NSWindow.ApplicationHiddenNotification @@ -51648,11 +51816,13 @@ P:AppKit.NSWindow.DidResizeNotification P:AppKit.NSWindow.DidUpdateNotification P:AppKit.NSWindow.DocumentEdited P:AppKit.NSWindow.DrawerCreatedNotification +P:AppKit.NSWindow.EffectiveAppearance P:AppKit.NSWindow.ExcludedFromWindowsMenu P:AppKit.NSWindow.FlushWindowDisabled P:AppKit.NSWindow.FocusedWindowChangedNotification P:AppKit.NSWindow.FrameAutosaveName P:AppKit.NSWindow.HelpTagCreatedNotification +P:AppKit.NSWindow.Identifier P:AppKit.NSWindow.IsKeyWindow P:AppKit.NSWindow.IsMainWindow P:AppKit.NSWindow.IsMovable @@ -51761,6 +51931,7 @@ P:AppKit.NSWorkspaceRenamedEventArgs.OldVolumeUrl P:AppKit.NSWorkspaceRenamedEventArgs.VolumeLocalizedName P:AppKit.NSWorkspaceRenamedEventArgs.VolumeUrl P:AppTrackingTransparency.ATTrackingManager.TrackingAuthorizationStatus +P:ARKit.ARAppClipCodeAnchor.IsTracked P:ARKit.ARBlendShapeLocationOptions.BrowDownLeft P:ARKit.ARBlendShapeLocationOptions.BrowDownRight P:ARKit.ARBlendShapeLocationOptions.BrowInnerUp @@ -51813,17 +51984,23 @@ P:ARKit.ARBlendShapeLocationOptions.MouthUpperUpRight P:ARKit.ARBlendShapeLocationOptions.NoseSneerLeft P:ARKit.ARBlendShapeLocationOptions.NoseSneerRight P:ARKit.ARBlendShapeLocationOptions.TongueOut +P:ARKit.ARBodyAnchor.IsTracked P:ARKit.ARBodyTrackingConfiguration.AutoFocusEnabled P:ARKit.ARCoachingOverlayView.Delegate P:ARKit.ARConfiguration.LightEstimationEnabled P:ARKit.ARFaceAnchor.BlendShapes +P:ARKit.ARFaceAnchor.IsTracked P:ARKit.ARFaceTrackingConfiguration.WorldTrackingEnabled +P:ARKit.ARGeoAnchor.IsTracked +P:ARKit.ARImageAnchor.IsTracked P:ARKit.ARImageTrackingConfiguration.AutoFocusEnabled P:ARKit.ARObjectScanningConfiguration.AutoFocusEnabled P:ARKit.AROrientationTrackingConfiguration.AutoFocusEnabled P:ARKit.ARPlaneAnchor.ClassificationSupported P:ARKit.ARPointCloud.Identifiers P:ARKit.ARPointCloud.Points +P:ARKit.ARQuickLookPreviewItem.PreviewItemTitle +P:ARKit.ARQuickLookPreviewItem.PreviewItemUrl P:ARKit.ARReferenceObject.ArchiveExtension P:ARKit.ARSCNDebugOptions.ShowFeaturePoints P:ARKit.ARSCNDebugOptions.ShowWorldOrigin @@ -53933,8 +54110,10 @@ P:AVFoundation.AVRouteDetector.MultipleRoutesDetectedDidChange P:AVFoundation.AVRouteDetector.RouteDetectionEnabled P:AVFoundation.AVSampleBufferAudioRenderer.AudioRendererWasFlushedAutomaticallyNotification P:AVFoundation.AVSampleBufferAudioRenderer.ConfigurationDidChangeNotification +P:AVFoundation.AVSampleBufferAudioRenderer.HasSufficientMediaDataForReliablePlaybackStart P:AVFoundation.AVSampleBufferAudioRenderer.Muted P:AVFoundation.AVSampleBufferAudioRenderer.ReadyForMoreMediaData +P:AVFoundation.AVSampleBufferAudioRenderer.Timebase P:AVFoundation.AVSampleBufferDisplayLayer.FailedToDecodeNotification P:AVFoundation.AVSampleBufferDisplayLayer.FailedToDecodeNotificationErrorKey P:AVFoundation.AVSampleBufferDisplayLayer.OutputObscuredDueToInsufficientExternalProtectionDidChangeNotification @@ -54087,6 +54266,7 @@ P:AVFoundation.IAVQueuedSampleBufferRendering.Timebase P:AVFoundation.RenderingModeChangeNotificationEventArgs.NewRenderingMode P:AVFoundation.SpatialPlaybackCapabilitiesChangedEventArgs.SpatialAudioEnabledKey P:AVKit.AVCaptureEventInteraction.Enabled +P:AVKit.AVCaptureEventInteraction.View P:AVKit.AVDisplayManager.DisplayCriteriaMatchingEnabled P:AVKit.AVDisplayManager.DisplayModeSwitchInProgress P:AVKit.AVDisplayManager.ModeSwitchEndNotification @@ -54149,13 +54329,73 @@ P:CallKit.CXSetHeldCallAction.OnHold P:CallKit.CXSetMutedCallAction.Muted P:CallKit.CXStartCallAction.Video P:CallKit.CXTransaction.Complete +P:CarPlay.CPActionSheetTemplate.Actions +P:CarPlay.CPActionSheetTemplate.Message +P:CarPlay.CPActionSheetTemplate.Title +P:CarPlay.CPAlertAction.Color +P:CarPlay.CPAlertAction.Handler +P:CarPlay.CPAlertAction.Style +P:CarPlay.CPAlertAction.Title +P:CarPlay.CPAlertTemplate.Actions +P:CarPlay.CPAlertTemplate.MaximumActionCount +P:CarPlay.CPAlertTemplate.TitleVariants P:CarPlay.CPApplicationDelegate.Window +P:CarPlay.CPAssistantCellConfiguration.AssistantAction +P:CarPlay.CPAssistantCellConfiguration.Position +P:CarPlay.CPAssistantCellConfiguration.Visibility +P:CarPlay.CPBarButton.ButtonStyle +P:CarPlay.CPBarButton.ButtonType P:CarPlay.CPBarButton.Enabled +P:CarPlay.CPBarButton.Image +P:CarPlay.CPBarButton.Title P:CarPlay.CPButton.Enabled +P:CarPlay.CPButton.Image P:CarPlay.CPButton.MaximumImageSize +P:CarPlay.CPButton.Title +P:CarPlay.CPContact.Actions +P:CarPlay.CPContact.Image +P:CarPlay.CPContact.InformativeText +P:CarPlay.CPContact.Name +P:CarPlay.CPContact.Subtitle +P:CarPlay.CPContactMessageButton.PhoneOrEmail +P:CarPlay.CPContactTemplate.BackButton +P:CarPlay.CPContactTemplate.Contact +P:CarPlay.CPContactTemplate.LeadingNavigationBarButtons +P:CarPlay.CPContactTemplate.TrailingNavigationBarButtons +P:CarPlay.CPDashboardButton.Image +P:CarPlay.CPDashboardButton.SubtitleVariants +P:CarPlay.CPDashboardButton.TitleVariants +P:CarPlay.CPDashboardController.ShortcutButtons P:CarPlay.CPGridButton.Enabled +P:CarPlay.CPGridButton.Image +P:CarPlay.CPGridButton.TitleVariants +P:CarPlay.CPGridTemplate.BackButton +P:CarPlay.CPGridTemplate.GridButtons +P:CarPlay.CPGridTemplate.LeadingNavigationBarButtons P:CarPlay.CPGridTemplate.MaximumItems +P:CarPlay.CPGridTemplate.Title +P:CarPlay.CPGridTemplate.TrailingNavigationBarButtons +P:CarPlay.CPImageSet.DarkContentImage +P:CarPlay.CPImageSet.LightContentImage +P:CarPlay.CPInformationItem.Detail +P:CarPlay.CPInformationItem.Title +P:CarPlay.CPInformationRatingItem.MaximumRating +P:CarPlay.CPInformationRatingItem.Rating +P:CarPlay.CPInformationTemplate.Actions +P:CarPlay.CPInformationTemplate.BackButton +P:CarPlay.CPInformationTemplate.Items +P:CarPlay.CPInformationTemplate.Layout +P:CarPlay.CPInformationTemplate.LeadingNavigationBarButtons +P:CarPlay.CPInformationTemplate.Title +P:CarPlay.CPInformationTemplate.TrailingNavigationBarButtons +P:CarPlay.CPInstrumentClusterController.AttributedInactiveDescriptionVariants +P:CarPlay.CPInstrumentClusterController.CompassSetting P:CarPlay.CPInstrumentClusterController.Delegate +P:CarPlay.CPInstrumentClusterController.InactiveDescriptionVariants +P:CarPlay.CPInstrumentClusterController.InstrumentClusterWindow +P:CarPlay.CPInstrumentClusterController.SpeedLimitSetting +P:CarPlay.CPInstrumentClusterController.WeakDelegate +P:CarPlay.CPInterfaceController.CarTraitCollection P:CarPlay.CPInterfaceController.Delegate P:CarPlay.CPInterfaceController.PrefersDarkUserInterfaceStyle P:CarPlay.CPInterfaceController.PresentedTemplate @@ -54174,13 +54414,33 @@ P:CarPlay.CPListImageRowItem.Handler P:CarPlay.CPListImageRowItem.ImageTitles P:CarPlay.CPListImageRowItem.ListImageRowHandler P:CarPlay.CPListImageRowItem.MaximumImageSize -P:CarPlay.CPListImageRowItem.Enabled P:CarPlay.CPListImageRowItem.MaximumNumberOfGridImages +P:CarPlay.CPListImageRowItem.Text +P:CarPlay.CPListImageRowItem.UserInfo +P:CarPlay.CPListItem.AccessoryImage +P:CarPlay.CPListItem.AccessoryType +P:CarPlay.CPListItem.DetailText P:CarPlay.CPListItem.Enabled +P:CarPlay.CPListItem.Handler +P:CarPlay.CPListItem.Image P:CarPlay.CPListItem.IsExplicitContent P:CarPlay.CPListItem.IsPlaying +P:CarPlay.CPListItem.MaximumImageSize P:CarPlay.CPListItem.MaximumListItemImageSize +P:CarPlay.CPListItem.PlaybackProgress +P:CarPlay.CPListItem.PlayingIndicatorLocation +P:CarPlay.CPListItem.ShowsDisclosureIndicator +P:CarPlay.CPListItem.Text +P:CarPlay.CPListItem.UserInfo +P:CarPlay.CPListSection.Header +P:CarPlay.CPListSection.HeaderButton +P:CarPlay.CPListSection.HeaderImage +P:CarPlay.CPListSection.HeaderSubtitle +P:CarPlay.CPListSection.Items2 P:CarPlay.CPListSection.MaximumImageSize +P:CarPlay.CPListSection.SectionIndexTitle +P:CarPlay.CPListTemplate.AssistantCellConfiguration +P:CarPlay.CPListTemplate.BackButton P:CarPlay.CPListTemplate.Delegate P:CarPlay.CPListTemplate.EmptyViewSubtitleVariants P:CarPlay.CPListTemplate.EmptyViewTitleVariants @@ -54217,11 +54477,33 @@ P:CarPlay.CPManeuver.SymbolSet P:CarPlay.CPManeuver.TrafficSide P:CarPlay.CPManeuver.UserInfo P:CarPlay.CPMapButton.Enabled +P:CarPlay.CPMapButton.FocusedImage P:CarPlay.CPMapButton.Hidden +P:CarPlay.CPMapButton.Image +P:CarPlay.CPMapTemplate.AutomaticallyHidesNavigationBar +P:CarPlay.CPMapTemplate.BackButton +P:CarPlay.CPMapTemplate.CurrentNavigationAlert +P:CarPlay.CPMapTemplate.GuidanceBackgroundColor +P:CarPlay.CPMapTemplate.HidesButtonsWithNavigationBar +P:CarPlay.CPMapTemplate.LeadingNavigationBarButtons +P:CarPlay.CPMapTemplate.MapButtons P:CarPlay.CPMapTemplate.MapDelegate P:CarPlay.CPMapTemplate.PanningInterfaceVisible +P:CarPlay.CPMapTemplate.TrailingNavigationBarButtons +P:CarPlay.CPMapTemplate.TripEstimateStyle +P:CarPlay.CPMapTemplate.WeakMapDelegate +P:CarPlay.CPMessageListItem.ConversationIdentifier +P:CarPlay.CPMessageListItem.DetailText P:CarPlay.CPMessageListItem.Enabled +P:CarPlay.CPMessageListItem.LeadingConfiguration P:CarPlay.CPMessageListItem.MaximumMessageItemImageSize +P:CarPlay.CPMessageListItem.PhoneOrEmailAddress +P:CarPlay.CPMessageListItem.Text +P:CarPlay.CPMessageListItem.TrailingConfiguration +P:CarPlay.CPMessageListItem.TrailingText +P:CarPlay.CPMessageListItem.UserInfo +P:CarPlay.CPMessageListItemLeadingConfiguration.LeadingImage +P:CarPlay.CPMessageListItemLeadingConfiguration.LeadingItem P:CarPlay.CPMessageListItemLeadingConfiguration.Unread P:CarPlay.CPMessageListItemTrailingConfiguration.TrailingImage P:CarPlay.CPMessageListItemTrailingConfiguration.TrailingItem @@ -54240,8 +54522,28 @@ P:CarPlay.CPNavigationSession.UpcomingManeuvers P:CarPlay.CPNowPlayingButton.Enabled P:CarPlay.CPNowPlayingButton.MaximumImageSize P:CarPlay.CPNowPlayingButton.Selected +P:CarPlay.CPNowPlayingImageButton.Image P:CarPlay.CPNowPlayingTemplate.IsAlbumArtistButtonEnabled P:CarPlay.CPNowPlayingTemplate.IsUpNextButtonEnabled +P:CarPlay.CPNowPlayingTemplate.NowPlayingButtons +P:CarPlay.CPNowPlayingTemplate.SharedTemplate +P:CarPlay.CPNowPlayingTemplate.UpNextTitle +P:CarPlay.CPPointOfInterest.DetailSubtitle +P:CarPlay.CPPointOfInterest.DetailSummary +P:CarPlay.CPPointOfInterest.DetailTitle +P:CarPlay.CPPointOfInterest.Location +P:CarPlay.CPPointOfInterest.PinImage +P:CarPlay.CPPointOfInterest.PinImageSize +P:CarPlay.CPPointOfInterest.PrimaryButton +P:CarPlay.CPPointOfInterest.SecondaryButton +P:CarPlay.CPPointOfInterest.SelectedPinImage +P:CarPlay.CPPointOfInterest.SelectedPinImageSize +P:CarPlay.CPPointOfInterest.Subtitle +P:CarPlay.CPPointOfInterest.Summary +P:CarPlay.CPPointOfInterest.Title +P:CarPlay.CPPointOfInterest.UserInfo +P:CarPlay.CPPointOfInterestTemplate.BackButton +P:CarPlay.CPPointOfInterestTemplate.LeadingNavigationBarButtons P:CarPlay.CPPointOfInterestTemplate.PointOfInterestDelegate P:CarPlay.CPPointOfInterestTemplate.PointsOfInterest P:CarPlay.CPPointOfInterestTemplate.SelectedIndex @@ -54259,13 +54561,35 @@ P:CarPlay.CPRouteInformation.Maneuvers P:CarPlay.CPRouteInformation.ManeuverTravelEstimates P:CarPlay.CPRouteInformation.TripTravelEstimates P:CarPlay.CPSearchTemplate.Delegate +P:CarPlay.CPSearchTemplate.WeakDelegate +P:CarPlay.CPSessionConfiguration.ContentStyle P:CarPlay.CPSessionConfiguration.Delegate +P:CarPlay.CPSessionConfiguration.LimitedUserInterfaces +P:CarPlay.CPSessionConfiguration.WeakDelegate P:CarPlay.CPTabBarTemplate.Delegate +P:CarPlay.CPTabBarTemplate.MaximumTabCount +P:CarPlay.CPTabBarTemplate.SelectedTemplate +P:CarPlay.CPTabBarTemplate.Templates +P:CarPlay.CPTabBarTemplate.WeakDelegate +P:CarPlay.CPTemplate.ShowsTabBadge +P:CarPlay.CPTemplate.TabImage +P:CarPlay.CPTemplate.TabSystemItem +P:CarPlay.CPTemplate.TabTitle +P:CarPlay.CPTemplate.UserInfo +P:CarPlay.CPTemplateApplicationDashboardScene.DashboardController +P:CarPlay.CPTemplateApplicationDashboardScene.DashboardWindow P:CarPlay.CPTemplateApplicationDashboardScene.Delegate P:CarPlay.CPTemplateApplicationDashboardScene.SessionRoleApplication +P:CarPlay.CPTemplateApplicationDashboardScene.WeakDelegate +P:CarPlay.CPTemplateApplicationInstrumentClusterScene.ContentStyle P:CarPlay.CPTemplateApplicationInstrumentClusterScene.Delegate +P:CarPlay.CPTemplateApplicationInstrumentClusterScene.InstrumentClusterController P:CarPlay.CPTemplateApplicationInstrumentClusterScene.SessionRoleApplication +P:CarPlay.CPTemplateApplicationInstrumentClusterScene.WeakDelegate +P:CarPlay.CPTemplateApplicationScene.CarWindow +P:CarPlay.CPTemplateApplicationScene.ContentStyle P:CarPlay.CPTemplateApplicationScene.Delegate +P:CarPlay.CPTemplateApplicationScene.InterfaceController P:CarPlay.CPTemplateApplicationScene.SessionRoleApplication P:CarPlay.CPTemplateApplicationScene.WeakDelegate P:CarPlay.CPTextButton.TextStyle @@ -54365,11 +54689,71 @@ P:Compression.CompressionStream.CanSeek P:Compression.CompressionStream.CanWrite P:Compression.CompressionStream.Length P:Compression.CompressionStream.Position +P:Contacts.CNChangeHistoryAddContactEvent.Contact +P:Contacts.CNChangeHistoryAddContactEvent.ContainerIdentifier +P:Contacts.CNChangeHistoryAddGroupEvent.ContainerIdentifier +P:Contacts.CNChangeHistoryAddGroupEvent.Group +P:Contacts.CNChangeHistoryAddMemberToGroupEvent.Group +P:Contacts.CNChangeHistoryAddMemberToGroupEvent.Member +P:Contacts.CNChangeHistoryAddSubgroupToGroupEvent.Group +P:Contacts.CNChangeHistoryAddSubgroupToGroupEvent.Subgroup +P:Contacts.CNChangeHistoryDeleteContactEvent.ContactIdentifier +P:Contacts.CNChangeHistoryDeleteGroupEvent.GroupIdentifier +P:Contacts.CNChangeHistoryFetchRequest.AdditionalContactKeyDescriptors +P:Contacts.CNChangeHistoryFetchRequest.ExcludedTransactionAuthors +P:Contacts.CNChangeHistoryFetchRequest.IncludeGroupChanges +P:Contacts.CNChangeHistoryFetchRequest.MutableObjects +P:Contacts.CNChangeHistoryFetchRequest.ShouldUnifyResults +P:Contacts.CNChangeHistoryFetchRequest.StartingToken +P:Contacts.CNChangeHistoryRemoveMemberFromGroupEvent.Group +P:Contacts.CNChangeHistoryRemoveMemberFromGroupEvent.Member +P:Contacts.CNChangeHistoryRemoveSubgroupFromGroupEvent.Group +P:Contacts.CNChangeHistoryRemoveSubgroupFromGroupEvent.Subgroup +P:Contacts.CNChangeHistoryUpdateContactEvent.Contact +P:Contacts.CNChangeHistoryUpdateGroupEvent.Group +P:Contacts.CNContact.Birthday +P:Contacts.CNContact.ContactRelations +P:Contacts.CNContact.ContactType +P:Contacts.CNContact.Dates +P:Contacts.CNContact.DepartmentName +P:Contacts.CNContact.EmailAddresses +P:Contacts.CNContact.FamilyName +P:Contacts.CNContact.GivenName +P:Contacts.CNContact.Identifier +P:Contacts.CNContact.ImageData +P:Contacts.CNContact.ImageDataAvailable +P:Contacts.CNContact.InstantMessageAddresses +P:Contacts.CNContact.JobTitle +P:Contacts.CNContact.MiddleName +P:Contacts.CNContact.NamePrefix +P:Contacts.CNContact.NameSuffix +P:Contacts.CNContact.Nickname +P:Contacts.CNContact.NonGregorianBirthday +P:Contacts.CNContact.Note +P:Contacts.CNContact.OrganizationName +P:Contacts.CNContact.PhoneNumbers +P:Contacts.CNContact.PhoneticFamilyName +P:Contacts.CNContact.PhoneticGivenName +P:Contacts.CNContact.PhoneticMiddleName +P:Contacts.CNContact.PhoneticOrganizationName +P:Contacts.CNContact.PostalAddresses +P:Contacts.CNContact.PreviousFamilyName P:Contacts.CNContact.PropertyNotFetchedExceptionName P:Contacts.CNContact.ReadableTypeIdentifiers +P:Contacts.CNContact.SocialProfiles +P:Contacts.CNContact.ThumbnailImageData +P:Contacts.CNContact.UrlAddresses P:Contacts.CNContact.WritableTypeIdentifiers P:Contacts.CNContact.WritableTypeIdentifiersForItemProvider +P:Contacts.CNContactFetchRequest.KeysToFetch +P:Contacts.CNContactFetchRequest.MutableObjects +P:Contacts.CNContactFetchRequest.Predicate +P:Contacts.CNContactFetchRequest.SortOrder +P:Contacts.CNContactFetchRequest.UnifyResults P:Contacts.CNContactFormatter.ContactPropertyAttribute +P:Contacts.CNContactFormatter.RequiredKeysForDelimiter +P:Contacts.CNContactFormatter.RequiredKeysForNameOrder +P:Contacts.CNContactFormatter.Style P:Contacts.CNContactKey.Birthday P:Contacts.CNContactKey.Dates P:Contacts.CNContactKey.DepartmentName @@ -54400,7 +54784,20 @@ P:Contacts.CNContactKey.SocialProfiles P:Contacts.CNContactKey.ThumbnailImageData P:Contacts.CNContactKey.Type P:Contacts.CNContactKey.UrlAddresses +P:Contacts.CNContactProperty.Contact +P:Contacts.CNContactProperty.Identifier +P:Contacts.CNContactProperty.Key +P:Contacts.CNContactProperty.Label +P:Contacts.CNContactProperty.Value +P:Contacts.CNContactRelation.Name +P:Contacts.CNContactStore.CurrentHistoryToken +P:Contacts.CNContactStore.DefaultContainerIdentifier P:Contacts.CNContactStore.NotificationDidChange +P:Contacts.CNContactsUserDefaults.CountryCode +P:Contacts.CNContactsUserDefaults.SortOrder +P:Contacts.CNContainer.ContainerType +P:Contacts.CNContainer.Identifier +P:Contacts.CNContainer.Name P:Contacts.CNContainerKey.Identifier P:Contacts.CNContainerKey.Name P:Contacts.CNContainerKey.Type @@ -54408,8 +54805,14 @@ P:Contacts.CNErrorUserInfoKey.AffectedRecordIdentifiers P:Contacts.CNErrorUserInfoKey.AffectedRecords P:Contacts.CNErrorUserInfoKey.KeyPaths P:Contacts.CNErrorUserInfoKey.ValidationErrors +P:Contacts.CNFetchResult`1.CurrentHistoryToken +P:Contacts.CNFetchResult`1.Value +P:Contacts.CNGroup.Identifier +P:Contacts.CNGroup.Name P:Contacts.CNGroupKey.Identifier P:Contacts.CNGroupKey.Name +P:Contacts.CNInstantMessageAddress.Service +P:Contacts.CNInstantMessageAddress.Username P:Contacts.CNInstantMessageAddressKey.Service P:Contacts.CNInstantMessageAddressKey.Username P:Contacts.CNInstantMessageServiceKey.Aim @@ -54638,6 +55041,9 @@ P:Contacts.CNLabelContactRelationKey.YoungerSister P:Contacts.CNLabelContactRelationKey.YoungerSisterInLaw P:Contacts.CNLabelContactRelationKey.YoungestBrother P:Contacts.CNLabelContactRelationKey.YoungestSister +P:Contacts.CNLabeledValue`1.Identifier +P:Contacts.CNLabeledValue`1.Label +P:Contacts.CNLabeledValue`1.Value P:Contacts.CNLabelKey.DateAnniversary P:Contacts.CNLabelKey.EmailiCloud P:Contacts.CNLabelKey.Home @@ -54653,8 +55059,60 @@ P:Contacts.CNLabelPhoneNumberKey.Mobile P:Contacts.CNLabelPhoneNumberKey.OtherFax P:Contacts.CNLabelPhoneNumberKey.Pager P:Contacts.CNLabelPhoneNumberKey.WorkFax +P:Contacts.CNMutableContact.Birthday +P:Contacts.CNMutableContact.ContactRelations +P:Contacts.CNMutableContact.ContactType +P:Contacts.CNMutableContact.Dates +P:Contacts.CNMutableContact.DepartmentName +P:Contacts.CNMutableContact.EmailAddresses +P:Contacts.CNMutableContact.FamilyName +P:Contacts.CNMutableContact.GivenName +P:Contacts.CNMutableContact.ImageData +P:Contacts.CNMutableContact.InstantMessageAddresses +P:Contacts.CNMutableContact.JobTitle +P:Contacts.CNMutableContact.MiddleName +P:Contacts.CNMutableContact.NamePrefix +P:Contacts.CNMutableContact.NameSuffix +P:Contacts.CNMutableContact.Nickname +P:Contacts.CNMutableContact.NonGregorianBirthday +P:Contacts.CNMutableContact.Note +P:Contacts.CNMutableContact.OrganizationName +P:Contacts.CNMutableContact.PhoneNumbers +P:Contacts.CNMutableContact.PhoneticFamilyName +P:Contacts.CNMutableContact.PhoneticGivenName +P:Contacts.CNMutableContact.PhoneticMiddleName +P:Contacts.CNMutableContact.PhoneticOrganizationName +P:Contacts.CNMutableContact.PostalAddresses +P:Contacts.CNMutableContact.PreviousFamilyName +P:Contacts.CNMutableContact.SocialProfiles +P:Contacts.CNMutableContact.UrlAddresses +P:Contacts.CNMutableGroup.Name +P:Contacts.CNMutablePostalAddress.City +P:Contacts.CNMutablePostalAddress.Country +P:Contacts.CNMutablePostalAddress.IsoCountryCode +P:Contacts.CNMutablePostalAddress.PostalCode +P:Contacts.CNMutablePostalAddress.State +P:Contacts.CNMutablePostalAddress.Street +P:Contacts.CNMutablePostalAddress.SubAdministrativeArea +P:Contacts.CNMutablePostalAddress.SubLocality +P:Contacts.CNPhoneNumber.StringValue +P:Contacts.CNPostalAddress.City +P:Contacts.CNPostalAddress.Country +P:Contacts.CNPostalAddress.IsoCountryCode +P:Contacts.CNPostalAddress.PostalCode +P:Contacts.CNPostalAddress.State +P:Contacts.CNPostalAddress.Street +P:Contacts.CNPostalAddress.SubAdministrativeArea +P:Contacts.CNPostalAddress.SubLocality P:Contacts.CNPostalAddressFormatter.LocalizedPropertyNameAttribute P:Contacts.CNPostalAddressFormatter.PropertyAttribute +P:Contacts.CNPostalAddressFormatter.Style +P:Contacts.CNSaveRequest.ShouldRefetchContacts +P:Contacts.CNSaveRequest.TransactionAuthor +P:Contacts.CNSocialProfile.Service +P:Contacts.CNSocialProfile.UrlString +P:Contacts.CNSocialProfile.UserIdentifier +P:Contacts.CNSocialProfile.Username P:Contacts.CNSocialProfileKey.Service P:Contacts.CNSocialProfileKey.UrlString P:Contacts.CNSocialProfileKey.UserIdentifier @@ -55045,6 +55503,7 @@ P:CoreAnimation.ICAMediaTiming.Speed P:CoreAnimation.ICAMediaTiming.TimeOffset P:CoreAnimation.ICAMetalDrawable.Layer P:CoreAnimation.ICAMetalDrawable.Texture +P:CoreAudioKit.AUGenericView.CustomViewPersistentData P:CoreAudioKit.CAInterAppAudioSwitcherView.ShowingAppNames P:CoreAudioKit.CAInterAppAudioTransportView.Connected P:CoreAudioKit.CAInterAppAudioTransportView.Enabled @@ -58181,6 +58640,10 @@ P:CoreLocation.CLVisit.Coordinate P:CoreLocation.CLVisit.DepartureDate P:CoreLocation.CLVisit.HorizontalAccuracy P:CoreLocation.CLVisitedEventArgs.Visit +P:CoreLocationUI.CLLocationButton.CornerRadius +P:CoreLocationUI.CLLocationButton.FontSize +P:CoreLocationUI.CLLocationButton.Icon +P:CoreLocationUI.CLLocationButton.Label P:CoreMedia.CMBlockBuffer.DataLength P:CoreMedia.CMBlockBuffer.IsEmpty P:CoreMedia.CMBufferQueue.BufferCount @@ -59599,7 +60062,9 @@ P:Darwin.Message.Sender P:Darwin.Message.Time P:Darwin.Message.UID P:Darwin.SystemLog.Default +P:DeviceCheck.DCAppAttestService.SharedService P:DeviceCheck.DCAppAttestService.Supported +P:DeviceCheck.DCDevice.CurrentDevice P:DeviceCheck.DCDevice.Supported P:DeviceDiscoveryExtension.DDDevice.NetworkEndpoint P:DeviceDiscoveryExtension.DDDeviceProtocolStrings.Dial @@ -59632,6 +60097,8 @@ P:EventKitUI.EKEventViewEventArgs.Action P:EventKitUI.EKUIBundle.UIBundle P:ExecutionPolicy.EPDeveloperTool.AuthorizationStatus P:ExtensionKit.EXHostViewController.Delegate +P:ExtensionKit.EXHostViewController.PlaceholderView +P:ExtensionKit.EXHostViewController.WeakDelegate P:ExternalAccessory.EAAccessory.Connected P:ExternalAccessory.EAAccessory.ConnectionID P:ExternalAccessory.EAAccessory.Delegate @@ -60538,6 +61005,7 @@ P:Foundation.NSProgress.Pausable P:Foundation.NSProgress.Paused P:Foundation.NSProgress.Throughput P:Foundation.NSProgress.ThroughputKey +P:Foundation.NSPurgeableData.IsContentDiscarded P:Foundation.NSRunLoop.CurrentRunLoopMode P:Foundation.NSScriptCommandArgumentDescription.AppleEventCode P:Foundation.NSScriptCommandArgumentDescription.IsOptional @@ -61701,6 +62169,10 @@ P:GameplayKit.GKHybridStrategist.ExplorationParameter P:GameplayKit.GKHybridStrategist.GameModel P:GameplayKit.GKHybridStrategist.MaxLookAheadDepth P:GameplayKit.GKHybridStrategist.RandomSource +P:GameplayKit.GKMinMaxStrategist.GameModel +P:GameplayKit.GKMinMaxStrategist.RandomSource +P:GameplayKit.GKMonteCarloStrategist.GameModel +P:GameplayKit.GKMonteCarloStrategist.RandomSource P:GameplayKit.GKNoiseMap.Seamless P:GameplayKit.GKPath.Cyclical P:GameplayKit.GKTriangle.Points @@ -61709,6 +62181,7 @@ P:GameplayKit.IGKGameModelPlayer.PlayerId P:GameplayKit.IGKGameModelUpdate.Value P:GameplayKit.IGKStrategist.GameModel P:GameplayKit.IGKStrategist.RandomSource +P:GLKit.GLKMeshBuffer.Map P:GLKit.GLKModelError.Domain P:GLKit.GLKModelError.Key P:GLKit.GLKTextureLoader.ApplyPremultiplication @@ -63137,6 +63610,8 @@ P:Intents.INNoteContentTypeResolutionResult.Unsupported P:Intents.INNoteResolutionResult.NeedsValue P:Intents.INNoteResolutionResult.NotRequired P:Intents.INNoteResolutionResult.Unsupported +P:Intents.INObject.SpokenPhrase +P:Intents.INObject.VocabularyIdentifier P:Intents.INObjectResolutionResult.NeedsValue P:Intents.INObjectResolutionResult.NotRequired P:Intents.INObjectResolutionResult.Unsupported @@ -63233,6 +63708,11 @@ P:Intents.INSnoozeTasksTaskResolutionResult.Unsupported P:Intents.INSpatialEventTriggerResolutionResult.NeedsValue P:Intents.INSpatialEventTriggerResolutionResult.NotRequired P:Intents.INSpatialEventTriggerResolutionResult.Unsupported +P:Intents.INSpeakableString.AlternativeSpeakableMatches +P:Intents.INSpeakableString.Identifier +P:Intents.INSpeakableString.PronunciationHint +P:Intents.INSpeakableString.SpokenPhrase +P:Intents.INSpeakableString.VocabularyIdentifier P:Intents.INSpeakableStringResolutionResult.NeedsValue P:Intents.INSpeakableStringResolutionResult.NotRequired P:Intents.INSpeakableStringResolutionResult.Unsupported @@ -63471,6 +63951,8 @@ P:MapKit.MKAnnotationView.Enabled P:MapKit.MKAnnotationView.Highlighted P:MapKit.MKAnnotationView.Selected P:MapKit.MKAnnotationViewEventArgs.View +P:MapKit.MKCircle.CanReplaceMapContent +P:MapKit.MKClusterAnnotation.Coordinate P:MapKit.MKDidAddOverlayRenderersEventArgs.Renderers P:MapKit.MKDidFinishRenderingMapEventArgs.FullyRendered P:MapKit.MKDirections.Calculating @@ -63490,6 +63972,9 @@ P:MapKit.MKLookAroundSnapshotter.IsLoading P:MapKit.MKLookAroundViewController.Delegate P:MapKit.MKLookAroundViewController.NavigationEnabled P:MapKit.MKMapCameraZoomRange.ZoomDefault +P:MapKit.MKMapFeatureAnnotation.Coordinate +P:MapKit.MKMapFeatureAnnotation.Subtitle +P:MapKit.MKMapFeatureAnnotation.Title P:MapKit.MKMapItem.ReadableTypeIdentifiers P:MapKit.MKMapItem.TypeIdentifier P:MapKit.MKMapItem.WritableTypeIdentifiers @@ -63535,19 +64020,36 @@ P:MapKit.MKMarkerAnnotationView.MKMarkerAnnotationViewAppearance.GlyphTintColor P:MapKit.MKMarkerAnnotationView.MKMarkerAnnotationViewAppearance.MarkerTintColor P:MapKit.MKMarkerAnnotationView.MKMarkerAnnotationViewAppearance.SelectedGlyphImage P:MapKit.MKMultiPoint.Points +P:MapKit.MKMultiPolygon.BoundingMapRect +P:MapKit.MKMultiPolygon.CanReplaceMapContent +P:MapKit.MKMultiPolyline.BoundingMapRect +P:MapKit.MKMultiPolyline.CanReplaceMapContent P:MapKit.MKOverlay.BoundingMapRect P:MapKit.MKOverlay.CanReplaceMapContent P:MapKit.MKOverlayViewsEventArgs.OverlayViews P:MapKit.MKPinAnnotationView.MKPinAnnotationViewAppearance.PinTintColor +P:MapKit.MKPlacemark.Coordinate +P:MapKit.MKPlacemark.Subtitle +P:MapKit.MKPlacemark.Title P:MapKit.MKPlacemarkAddress.City P:MapKit.MKPlacemarkAddress.Country P:MapKit.MKPlacemarkAddress.CountryCode P:MapKit.MKPlacemarkAddress.State P:MapKit.MKPlacemarkAddress.Street P:MapKit.MKPlacemarkAddress.Zip +P:MapKit.MKPolygon.BoundingMapRect +P:MapKit.MKPolygon.CanReplaceMapContent +P:MapKit.MKPolygon.Coordinate +P:MapKit.MKPolyline.BoundingMapRect +P:MapKit.MKPolyline.CanReplaceMapContent +P:MapKit.MKPolyline.Coordinate P:MapKit.MKReverseGeocoder.Delegate P:MapKit.MKReverseGeocoder.Querying +P:MapKit.MKShape.Coordinate +P:MapKit.MKTileOverlay.BoundingMapRect +P:MapKit.MKTileOverlay.Coordinate P:MapKit.MKTileOverlay.GeometryFlipped +P:MapKit.MKUserLocation.Coordinate P:MapKit.MKUserLocation.Updating P:MapKit.MKUserLocationEventArgs.UserLocation P:MapKit.MMapViewUserTrackingEventArgs.Animated @@ -64141,7 +64643,41 @@ P:MediaToolbox.MTAudioProcessingTapCallbacks.Initialize P:MediaToolbox.MTAudioProcessingTapCallbacks.Prepare P:MediaToolbox.MTAudioProcessingTapCallbacks.Processing P:MediaToolbox.MTAudioProcessingTapCallbacks.Unprepare +P:Messages.MSConversation.LocalParticipantIdentifier +P:Messages.MSConversation.RemoteParticipantIdentifiers +P:Messages.MSConversation.SelectedMessage +P:Messages.MSMessage.AccessibilityLabel +P:Messages.MSMessage.Error +P:Messages.MSMessage.Layout P:Messages.MSMessage.Pending +P:Messages.MSMessage.SenderParticipantIdentifier +P:Messages.MSMessage.Session +P:Messages.MSMessage.ShouldExpire +P:Messages.MSMessage.SummaryText +P:Messages.MSMessage.Url +P:Messages.MSMessageLiveLayout.AlternateLayout +P:Messages.MSMessagesAppViewController.ActiveConversation +P:Messages.MSMessagesAppViewController.PresentationContext +P:Messages.MSMessagesAppViewController.PresentationStyle +P:Messages.MSMessageTemplateLayout.Caption +P:Messages.MSMessageTemplateLayout.Image +P:Messages.MSMessageTemplateLayout.ImageSubtitle +P:Messages.MSMessageTemplateLayout.ImageTitle +P:Messages.MSMessageTemplateLayout.MediaFileUrl +P:Messages.MSMessageTemplateLayout.Subcaption +P:Messages.MSMessageTemplateLayout.TrailingCaption +P:Messages.MSMessageTemplateLayout.TrailingSubcaption +P:Messages.MSSticker.ImageFileUrl +P:Messages.MSSticker.LocalizedDescription +P:Messages.MSStickerBrowserView.ContentInset +P:Messages.MSStickerBrowserView.ContentOffset +P:Messages.MSStickerBrowserView.DataSource +P:Messages.MSStickerBrowserView.StickerSize +P:Messages.MSStickerBrowserViewController.StickerBrowserView +P:Messages.MSStickerBrowserViewController.StickerSize +P:Messages.MSStickerView.AnimationDuration +P:Messages.MSStickerView.IsAnimating +P:Messages.MSStickerView.Sticker P:MessageUI.MFComposeResultEventArgs.Controller P:MessageUI.MFComposeResultEventArgs.Error P:MessageUI.MFComposeResultEventArgs.Result @@ -64461,10 +64997,48 @@ P:MetalFX.IMTLFXTemporalScaler.OutputTextureUsage P:MetalFX.IMTLFXTemporalScaler.OutputWidth P:MetalFX.IMTLFXTemporalScaler.PreExposure P:MetalFX.IMTLFXTemporalScaler.Reset +P:MetalFX.MTLFXSpatialScalerDescriptor.ColorProcessingMode +P:MetalFX.MTLFXSpatialScalerDescriptor.ColorTextureFormat +P:MetalFX.MTLFXSpatialScalerDescriptor.InputHeight +P:MetalFX.MTLFXSpatialScalerDescriptor.InputWidth +P:MetalFX.MTLFXSpatialScalerDescriptor.OutputHeight +P:MetalFX.MTLFXSpatialScalerDescriptor.OutputTextureFormat +P:MetalFX.MTLFXSpatialScalerDescriptor.OutputWidth P:MetalFX.MTLFXTemporalScalerDescriptor.AutoExposureEnabled +P:MetalFX.MTLFXTemporalScalerDescriptor.ColorTextureFormat +P:MetalFX.MTLFXTemporalScalerDescriptor.DepthTextureFormat +P:MetalFX.MTLFXTemporalScalerDescriptor.InputContentMaxScale +P:MetalFX.MTLFXTemporalScalerDescriptor.InputContentMinScale P:MetalFX.MTLFXTemporalScalerDescriptor.InputContentPropertiesEnabled +P:MetalFX.MTLFXTemporalScalerDescriptor.InputHeight +P:MetalFX.MTLFXTemporalScalerDescriptor.InputWidth +P:MetalFX.MTLFXTemporalScalerDescriptor.MotionTextureFormat +P:MetalFX.MTLFXTemporalScalerDescriptor.OutputHeight +P:MetalFX.MTLFXTemporalScalerDescriptor.OutputTextureFormat +P:MetalFX.MTLFXTemporalScalerDescriptor.OutputWidth +P:MetalKit.MTKMesh.Name +P:MetalKit.MTKMesh.Submeshes +P:MetalKit.MTKMesh.VertexBuffers +P:MetalKit.MTKMesh.VertexCount +P:MetalKit.MTKMesh.VertexDescriptor +P:MetalKit.MTKMeshBuffer.Allocator +P:MetalKit.MTKMeshBuffer.Buffer +P:MetalKit.MTKMeshBuffer.Length +P:MetalKit.MTKMeshBuffer.Map +P:MetalKit.MTKMeshBuffer.Name +P:MetalKit.MTKMeshBuffer.Offset +P:MetalKit.MTKMeshBuffer.Type +P:MetalKit.MTKMeshBuffer.Zone +P:MetalKit.MTKMeshBufferAllocator.Device P:MetalKit.MTKModel.ErrorDomain P:MetalKit.MTKModel.ErrorKey +P:MetalKit.MTKSubmesh.IndexBuffer +P:MetalKit.MTKSubmesh.IndexCount +P:MetalKit.MTKSubmesh.IndexType +P:MetalKit.MTKSubmesh.Mesh +P:MetalKit.MTKSubmesh.Name +P:MetalKit.MTKSubmesh.PrimitiveType +P:MetalKit.MTKTextureLoader.Device P:MetalKit.MTKTextureLoaderError.Domain P:MetalKit.MTKTextureLoaderError.Key P:MetalKit.MTKTextureLoaderOptions.AllocateMipmaps @@ -64476,8 +65050,32 @@ P:MetalKit.MTKTextureLoaderOptions.Srgb P:MetalKit.MTKTextureLoaderOptions.TextureCpuCacheMode P:MetalKit.MTKTextureLoaderOptions.TextureStorageMode P:MetalKit.MTKTextureLoaderOptions.TextureUsage +P:MetalKit.MTKView.AutoResizeDrawable +P:MetalKit.MTKView.ClearColor +P:MetalKit.MTKView.ClearDepth +P:MetalKit.MTKView.ClearStencil +P:MetalKit.MTKView.ColorPixelFormat +P:MetalKit.MTKView.ColorSpace +P:MetalKit.MTKView.CurrentDrawable +P:MetalKit.MTKView.CurrentRenderPassDescriptor P:MetalKit.MTKView.Delegate +P:MetalKit.MTKView.DepthStencilAttachmentTextureUsage +P:MetalKit.MTKView.DepthStencilPixelFormat +P:MetalKit.MTKView.DepthStencilStorageMode +P:MetalKit.MTKView.DepthStencilTexture +P:MetalKit.MTKView.Device +P:MetalKit.MTKView.DrawableSize +P:MetalKit.MTKView.EnableSetNeedsDisplay +P:MetalKit.MTKView.FramebufferOnly +P:MetalKit.MTKView.MultisampleColorAttachmentTextureUsage +P:MetalKit.MTKView.MultisampleColorTexture P:MetalKit.MTKView.Paused +P:MetalKit.MTKView.PreferredDevice +P:MetalKit.MTKView.PreferredDrawableSize +P:MetalKit.MTKView.PreferredFramesPerSecond +P:MetalKit.MTKView.PresentsWithTransaction +P:MetalKit.MTKView.SampleCount +P:MetalKit.MTKView.WeakDelegate P:MetalPerformanceShaders.IMPSCnnBatchNormalizationDataSource.Beta P:MetalPerformanceShaders.IMPSCnnBatchNormalizationDataSource.Gamma P:MetalPerformanceShaders.IMPSCnnBatchNormalizationDataSource.Label @@ -66855,6 +67453,46 @@ P:OSLog.IOSLogEntryWithPayload.Category P:OSLog.IOSLogEntryWithPayload.Components P:OSLog.IOSLogEntryWithPayload.FormatString P:OSLog.IOSLogEntryWithPayload.Subsystem +P:OSLog.OSLogEntry.ComposedMessage +P:OSLog.OSLogEntry.Date +P:OSLog.OSLogEntry.StoreCategory +P:OSLog.OSLogEntryActivity.ActivityIdentifier +P:OSLog.OSLogEntryActivity.ParentActivityIdentifier +P:OSLog.OSLogEntryActivity.Process +P:OSLog.OSLogEntryActivity.ProcessIdentifier +P:OSLog.OSLogEntryActivity.Sender +P:OSLog.OSLogEntryActivity.ThreadIdentifier +P:OSLog.OSLogEntryLog.ActivityIdentifier +P:OSLog.OSLogEntryLog.Category +P:OSLog.OSLogEntryLog.Components +P:OSLog.OSLogEntryLog.FormatString +P:OSLog.OSLogEntryLog.Level +P:OSLog.OSLogEntryLog.Process +P:OSLog.OSLogEntryLog.ProcessIdentifier +P:OSLog.OSLogEntryLog.Sender +P:OSLog.OSLogEntryLog.Subsystem +P:OSLog.OSLogEntryLog.ThreadIdentifier +P:OSLog.OSLogEntrySignpost.ActivityIdentifier +P:OSLog.OSLogEntrySignpost.Category +P:OSLog.OSLogEntrySignpost.Components +P:OSLog.OSLogEntrySignpost.FormatString +P:OSLog.OSLogEntrySignpost.Process +P:OSLog.OSLogEntrySignpost.ProcessIdentifier +P:OSLog.OSLogEntrySignpost.Sender +P:OSLog.OSLogEntrySignpost.SignpostIdentifier +P:OSLog.OSLogEntrySignpost.SignpostName +P:OSLog.OSLogEntrySignpost.SignpostType +P:OSLog.OSLogEntrySignpost.Subsystem +P:OSLog.OSLogEntrySignpost.ThreadIdentifier +P:OSLog.OSLogMessageComponent.ArgumentCategory +P:OSLog.OSLogMessageComponent.ArgumentDataValue +P:OSLog.OSLogMessageComponent.ArgumentDoubleValue +P:OSLog.OSLogMessageComponent.ArgumentInt64Value +P:OSLog.OSLogMessageComponent.ArgumentNumberValue +P:OSLog.OSLogMessageComponent.ArgumentStringValue +P:OSLog.OSLogMessageComponent.ArgumentUInt64Value +P:OSLog.OSLogMessageComponent.FormatSubstring +P:OSLog.OSLogMessageComponent.Placeholder P:PassKit.IPKIdentityDocumentDescriptor.Elements P:PassKit.IPKIssuerProvisioningExtensionAuthorizationProviding.CompletionHandler P:PassKit.PKAddCarKeyPassConfiguration.ManufacturerIdentifier @@ -67715,7 +68353,13 @@ P:PrintCore.PMRect.Right P:PrintCore.PMRect.Top P:PrintCore.PMResolution.HorizontalResolution P:PrintCore.PMResolution.VerticalResolution +P:PushKit.PKPushCredentials.Token +P:PushKit.PKPushCredentials.Type +P:PushKit.PKPushPayload.DictionaryPayload +P:PushKit.PKPushPayload.Type P:PushKit.PKPushRegistry.Delegate +P:PushKit.PKPushRegistry.DesiredPushTypes +P:PushKit.PKPushRegistry.WeakDelegate P:PushKit.PKPushType.Complication P:PushKit.PKPushType.FileProvider P:PushKit.PKPushType.Voip @@ -67816,15 +68460,31 @@ P:QuickLookUI.QLPreviewReply.Title P:QuickLookUI.QLPreviewReplyAttachment.ContentType P:QuickLookUI.QLPreviewReplyAttachment.Data P:ReplayKit.RPBroadcastActivityController.Delegate +P:ReplayKit.RPBroadcastActivityController.WeakDelegate +P:ReplayKit.RPBroadcastActivityViewController.Delegate +P:ReplayKit.RPBroadcastConfiguration.ClipDuration P:ReplayKit.RPBroadcastConfiguration.VideoCompressionProperties +P:ReplayKit.RPBroadcastConfiguration.WeakVideoCompressionProperties +P:ReplayKit.RPBroadcastController.BroadcastExtensionBundleID P:ReplayKit.RPBroadcastController.Broadcasting +P:ReplayKit.RPBroadcastController.BroadcastUrl +P:ReplayKit.RPBroadcastController.Delegate P:ReplayKit.RPBroadcastController.Paused +P:ReplayKit.RPBroadcastController.ServiceInfo P:ReplayKit.RPBroadcastSampleHandler.ApplicationInfoBundleIdentifierKey P:ReplayKit.RPBroadcastSampleHandler.VideoSampleOrientationKey +P:ReplayKit.RPPreviewViewController.Mode +P:ReplayKit.RPPreviewViewController.PreviewControllerDelegate P:ReplayKit.RPScreenRecorder.Available P:ReplayKit.RPScreenRecorder.CameraEnabled +P:ReplayKit.RPScreenRecorder.CameraPosition +P:ReplayKit.RPScreenRecorder.CameraPreviewView +P:ReplayKit.RPScreenRecorder.Delegate P:ReplayKit.RPScreenRecorder.MicrophoneEnabled P:ReplayKit.RPScreenRecorder.Recording +P:ReplayKit.RPScreenRecorder.SharedRecorder +P:ReplayKit.RPSystemBroadcastPickerView.PreferredExtension +P:ReplayKit.RPSystemBroadcastPickerView.ShowsMicrophoneButton P:SafariServices.SFContentBlockerState.Enabled P:SafariServices.SFExtension.MessageKey P:SafariServices.SFExtension.ProfileKey @@ -67854,9 +68514,15 @@ P:SafariServices.SFUniversalLink.WebpageUrl P:SafariServices.SFValidationResult.Arg1 P:SafariServices.SFValidationResult.Arg2 P:SafariServices.SSReadingList.DefaultReadingList +P:SafetyKit.SACrashDetectionEvent.Date +P:SafetyKit.SACrashDetectionEvent.Location +P:SafetyKit.SACrashDetectionEvent.Response +P:SafetyKit.SACrashDetectionManager.AuthorizationStatus P:SafetyKit.SACrashDetectionManager.Available P:SafetyKit.SACrashDetectionManager.Delegate +P:SafetyKit.SACrashDetectionManager.WeakDelegate P:SafetyKit.SAEmergencyResponseManager.Delegate +P:SafetyKit.SAEmergencyResponseManager.WeakDelegate P:SceneKit.ISCNActionable.ActionKeys P:SceneKit.ISCNCameraControlConfiguration.AllowsTranslation P:SceneKit.ISCNCameraControlConfiguration.AutoSwitchToFreeCamera @@ -67898,10 +68564,14 @@ P:SceneKit.SCNAnimation.AppliedOnCompletion P:SceneKit.SCNAnimation.Cumulative P:SceneKit.SCNAnimation.RemovedOnCompletion P:SceneKit.SCNAudioSource.Positional +P:SceneKit.SCNCamera.Technique P:SceneKit.SCNCameraController.InertiaRunning P:SceneKit.SCNConstraint.Enabled P:SceneKit.SCNConstraint.Incremental +P:SceneKit.SCNGeometry.MinimumLanguageVersion +P:SceneKit.SCNGeometry.Program P:SceneKit.SCNGeometry.ShaderModifiers +P:SceneKit.SCNGeometry.WeakShaderModifiers P:SceneKit.SCNGeometrySourceSemantic.BoneIndices P:SceneKit.SCNGeometrySourceSemantic.BoneWeights P:SceneKit.SCNGeometrySourceSemantic.Color @@ -67933,10 +68603,35 @@ P:SceneKit.SCNHitTestOptions.IgnoreLightArea P:SceneKit.SCNHitTestOptions.RootNode P:SceneKit.SCNHitTestOptions.SearchMode P:SceneKit.SCNHitTestOptions.SortResults +P:SceneKit.SCNLayer.AudioEngine +P:SceneKit.SCNLayer.AudioEnvironmentNode +P:SceneKit.SCNLayer.AudioListener +P:SceneKit.SCNLayer.AutoenablesDefaultLighting +P:SceneKit.SCNLayer.ColorPixelFormat +P:SceneKit.SCNLayer.CommandQueue +P:SceneKit.SCNLayer.Context +P:SceneKit.SCNLayer.CurrentRenderCommandEncoder +P:SceneKit.SCNLayer.CurrentRenderPassDescriptor +P:SceneKit.SCNLayer.CurrentTime +P:SceneKit.SCNLayer.CurrentViewport +P:SceneKit.SCNLayer.DebugOptions +P:SceneKit.SCNLayer.DepthPixelFormat +P:SceneKit.SCNLayer.Device P:SceneKit.SCNLayer.JitteringEnabled +P:SceneKit.SCNLayer.Loops +P:SceneKit.SCNLayer.OverlayScene P:SceneKit.SCNLayer.Playing +P:SceneKit.SCNLayer.PointOfView +P:SceneKit.SCNLayer.RenderingApi P:SceneKit.SCNLayer.SceneRendererDelegate +P:SceneKit.SCNLayer.SceneTimeInSeconds +P:SceneKit.SCNLayer.ShowsStatistics +P:SceneKit.SCNLayer.StencilPixelFormat +P:SceneKit.SCNLayer.Technique P:SceneKit.SCNLayer.TemporalAntialiasingEnabled +P:SceneKit.SCNLayer.UsesReverseZ +P:SceneKit.SCNLayer.WeakSceneRendererDelegate +P:SceneKit.SCNLayer.WorkingColorSpace P:SceneKit.SCNLight.Color P:SceneKit.SCNLight.ShadowColor P:SceneKit.SCNLight.Technique @@ -67962,7 +68657,10 @@ P:SceneKit.SCNLightType.Probe P:SceneKit.SCNLightType.Spot P:SceneKit.SCNMaterial.DoubleSided P:SceneKit.SCNMaterial.LitPerPixel +P:SceneKit.SCNMaterial.MinimumLanguageVersion +P:SceneKit.SCNMaterial.Program P:SceneKit.SCNMaterial.ShaderModifiers +P:SceneKit.SCNMaterial.WeakShaderModifiers P:SceneKit.SCNMaterialProperty.ContentColor P:SceneKit.SCNMaterialProperty.ContentImage P:SceneKit.SCNMaterialProperty.ContentImageCube @@ -67971,9 +68669,15 @@ P:SceneKit.SCNMaterialProperty.ContentPath P:SceneKit.SCNMaterialProperty.ContentScene P:SceneKit.SCNMaterialProperty.ContentTexture P:SceneKit.SCNMaterialProperty.ContentUrl +P:SceneKit.SCNNode.ActionKeys +P:SceneKit.SCNNode.CanBecomeFocused +P:SceneKit.SCNNode.FocusEffect P:SceneKit.SCNNode.FocusGroupIdentifier +P:SceneKit.SCNNode.FocusGroupPriority P:SceneKit.SCNNode.FocusItemContainer +P:SceneKit.SCNNode.Frame P:SceneKit.SCNNode.Hidden +P:SceneKit.SCNNode.IsTransparentFocusItem P:SceneKit.SCNNode.ParentFocusEnvironment P:SceneKit.SCNNode.Paused P:SceneKit.SCNNode.PreferredFocusedView @@ -68043,10 +68747,35 @@ P:SceneKit.SCNPropertyControllers.RotationAxis P:SceneKit.SCNPropertyControllers.Size P:SceneKit.SCNPropertyControllers.Velocity P:SceneKit.SCNReferenceNode.Loaded +P:SceneKit.SCNRenderer.AudioEngine +P:SceneKit.SCNRenderer.AudioEnvironmentNode +P:SceneKit.SCNRenderer.AudioListener +P:SceneKit.SCNRenderer.AutoenablesDefaultLighting +P:SceneKit.SCNRenderer.ColorPixelFormat +P:SceneKit.SCNRenderer.CommandQueue +P:SceneKit.SCNRenderer.Context +P:SceneKit.SCNRenderer.CurrentRenderCommandEncoder +P:SceneKit.SCNRenderer.CurrentRenderPassDescriptor +P:SceneKit.SCNRenderer.CurrentTime +P:SceneKit.SCNRenderer.CurrentViewport +P:SceneKit.SCNRenderer.DebugOptions +P:SceneKit.SCNRenderer.DepthPixelFormat +P:SceneKit.SCNRenderer.Device P:SceneKit.SCNRenderer.JitteringEnabled +P:SceneKit.SCNRenderer.Loops +P:SceneKit.SCNRenderer.OverlayScene P:SceneKit.SCNRenderer.Playing +P:SceneKit.SCNRenderer.PointOfView +P:SceneKit.SCNRenderer.RenderingApi P:SceneKit.SCNRenderer.SceneRendererDelegate +P:SceneKit.SCNRenderer.SceneTimeInSeconds +P:SceneKit.SCNRenderer.ShowsStatistics +P:SceneKit.SCNRenderer.StencilPixelFormat +P:SceneKit.SCNRenderer.Technique P:SceneKit.SCNRenderer.TemporalAntialiasingEnabled +P:SceneKit.SCNRenderer.UsesReverseZ +P:SceneKit.SCNRenderer.WeakSceneRendererDelegate +P:SceneKit.SCNRenderer.WorkingColorSpace P:SceneKit.SCNRenderingArguments.ModelTransform P:SceneKit.SCNRenderingArguments.ModelViewProjectionTransform P:SceneKit.SCNRenderingArguments.ModelViewTransform @@ -68143,13 +68872,36 @@ P:SceneKit.SCNSphere.Geodesic P:SceneKit.SCNTechnique.Item(Foundation.NSString) P:SceneKit.SCNTechniqueSupport.Technique P:SceneKit.SCNText.Wrapped +P:SceneKit.SCNView.AudioEngine +P:SceneKit.SCNView.AudioEnvironmentNode +P:SceneKit.SCNView.AudioListener +P:SceneKit.SCNView.AutoenablesDefaultLighting +P:SceneKit.SCNView.ColorPixelFormat +P:SceneKit.SCNView.CommandQueue +P:SceneKit.SCNView.Context +P:SceneKit.SCNView.CurrentRenderCommandEncoder +P:SceneKit.SCNView.CurrentRenderPassDescriptor +P:SceneKit.SCNView.CurrentTime +P:SceneKit.SCNView.CurrentViewport +P:SceneKit.SCNView.DebugOptions +P:SceneKit.SCNView.DepthPixelFormat +P:SceneKit.SCNView.Device P:SceneKit.SCNView.JitteringEnabled +P:SceneKit.SCNView.Loops +P:SceneKit.SCNView.OverlayScene P:SceneKit.SCNView.Playing +P:SceneKit.SCNView.PointOfView +P:SceneKit.SCNView.RenderingApi P:SceneKit.SCNView.SceneRendererDelegate +P:SceneKit.SCNView.SceneTimeInSeconds +P:SceneKit.SCNView.ShowsStatistics +P:SceneKit.SCNView.StencilPixelFormat +P:SceneKit.SCNView.Technique P:SceneKit.SCNView.TemporalAntialiasingEnabled -P:ScreenCaptureKit.SCContentFilter.IncludeMenuBar +P:SceneKit.SCNView.UsesReverseZ +P:SceneKit.SCNView.WeakSceneRendererDelegate +P:SceneKit.SCNView.WorkingColorSpace P:ScreenCaptureKit.SCContentSharingPicker.Active -P:ScreenCaptureKit.SCStreamConfiguration.IncludeChildWindows P:ScreenCaptureKit.SCStreamFrameInfoKeys.BoundingRect P:ScreenCaptureKit.SCStreamFrameInfoKeys.ContentRect P:ScreenCaptureKit.SCStreamFrameInfoKeys.ContentScale @@ -68389,6 +69141,7 @@ P:Security.SslContext.PeerTrust P:Security.SslContext.SessionState P:Security.SslStreamConnection.InnerStream P:SensitiveContentAnalysis.SCSensitivityAnalysis.Sensitive +P:SensitiveContentAnalysis.SCSensitivityAnalyzer.AnalysisPolicy P:SensorKit.SRSensorReader.Delegate P:SensorKit.SRSensorReader.Sensor P:ServiceManagement.SMAppService.MainApp @@ -68402,6 +69155,9 @@ P:SharedWithYou.SWCollaborationView.Delegate P:SharedWithYou.SWHighlight.MetadataTypeIdentifier P:SharedWithYou.SWHighlightCenter.Delegate P:SharedWithYou.SWHighlightCenter.SystemCollaborationSupportAvailable +P:SharedWithYou.SWHighlightMembershipEvent.HighlightUrl +P:SharedWithYou.SWHighlightMentionEvent.HighlightUrl +P:SharedWithYou.SWHighlightPersistenceEvent.HighlightUrl P:SharedWithYouCore.SWAction.Complete P:SharedWithYouCore.SWCollaborationMetadata.ReadableTypeIdentifiers P:SharedWithYouCore.SWCollaborationMetadata.WritableTypeIdentifiers @@ -68409,6 +69165,21 @@ P:SharedWithYouCore.SWCollaborationMetadata.WritableTypeIdentifiersForItemProvid P:SharedWithYouCore.SWCollaborationOption.Selected P:SharedWithYouCore.SWCollaborationOptionsGroup.TypeIdentifier P:ShazamKit.SHSession.Delegate +P:Social.SLComposeServiceViewController.AutoCompletionViewController +P:Social.SLComposeServiceViewController.CharactersRemaining +P:Social.SLComposeServiceViewController.ContentText +P:Social.SLComposeServiceViewController.Placeholder +P:Social.SLComposeServiceViewController.TextView +P:Social.SLComposeSheetConfigurationItem.TapHandler +P:Social.SLComposeSheetConfigurationItem.Title +P:Social.SLComposeSheetConfigurationItem.Value +P:Social.SLComposeSheetConfigurationItem.ValuePending +P:Social.SLComposeViewController.CompletionHandler +P:Social.SLComposeViewController.ServiceType +P:Social.SLRequest.Account +P:Social.SLRequest.Parameters +P:Social.SLRequest.RequestMethod +P:Social.SLRequest.Url P:Social.SLRequestResult.Arg1 P:Social.SLRequestResult.Arg2 P:Social.SLServiceType.Facebook @@ -68435,12 +69206,18 @@ P:SpriteKit.ISKWarpable.SubdivisionLevels P:SpriteKit.ISKWarpable.WarpGeometry P:SpriteKit.SK3DNode.Playing P:SpriteKit.SKAudioNode.Positional +P:SpriteKit.SKEffectNode.SubdivisionLevels +P:SpriteKit.SKEffectNode.WarpGeometry P:SpriteKit.SKFieldNode.Enabled P:SpriteKit.SKFieldNode.Exclusive P:SpriteKit.SKLightNode.Enabled +P:SpriteKit.SKNode.CanBecomeFocused +P:SpriteKit.SKNode.FocusEffect P:SpriteKit.SKNode.FocusGroupIdentifier +P:SpriteKit.SKNode.FocusGroupPriority P:SpriteKit.SKNode.FocusItemContainer P:SpriteKit.SKNode.Hidden +P:SpriteKit.SKNode.IsTransparentFocusItem P:SpriteKit.SKNode.ParentFocusEnvironment P:SpriteKit.SKNode.Paused P:SpriteKit.SKNode.PreferredFocusedView @@ -68451,6 +69228,8 @@ P:SpriteKit.SKPhysicsBody.Resting P:SpriteKit.SKPhysicsWorld.ContactDelegate P:SpriteKit.SKScene.Delegate P:SpriteKit.SKShapeNode.Antialiased +P:SpriteKit.SKSpriteNode.SubdivisionLevels +P:SpriteKit.SKSpriteNode.WarpGeometry P:SpriteKit.SKTextureAtlasLoadResult.Error P:SpriteKit.SKTextureAtlasLoadResult.FoundAtlases P:SpriteKit.SKUniform.FloatVector2Value @@ -68529,6 +69308,16 @@ P:SystemConfiguration.CaptiveNetwork.NetworkInfoKeyBSSID P:SystemConfiguration.CaptiveNetwork.NetworkInfoKeySSID P:SystemConfiguration.CaptiveNetwork.NetworkInfoKeySSIDData P:SystemConfiguration.SystemConfigurationException.StatusErrorCode +P:ThreadNetwork.THCredentials.ActiveOperationalDataSet +P:ThreadNetwork.THCredentials.BorderAgentId +P:ThreadNetwork.THCredentials.Channel +P:ThreadNetwork.THCredentials.CreationDate +P:ThreadNetwork.THCredentials.ExtendedPanId +P:ThreadNetwork.THCredentials.LastModificationDate +P:ThreadNetwork.THCredentials.NetworkKey +P:ThreadNetwork.THCredentials.NetworkName +P:ThreadNetwork.THCredentials.PanId +P:ThreadNetwork.THCredentials.Pskc P:TVMLKit.ITVPlaybackEventMarshaling.Properties P:TVMLKit.TVApplicationController.Delegate P:TVMLKit.TVBrowserViewController.DataSource @@ -68536,6 +69325,7 @@ P:TVMLKit.TVBrowserViewController.Delegate P:TVMLKit.TVDocumentViewController.Delegate P:TVMLKit.TVMediaItem.ContentRatingDomain P:TVMLKit.TVMediaItem.Type +P:TVMLKit.TVPlaybackCustomEventUserInfo.Properties P:TVMLKit.TVViewElement.Disabled P:TVMLKit.TVViewElementDispatchResult.IsCancelled P:TVMLKit.TVViewElementDispatchResult.IsDispatched @@ -68798,10 +69588,14 @@ P:UIKit.NSPreviewInteractionPreviewUpdateEventArgs.Ended P:UIKit.NSPreviewInteractionPreviewUpdateEventArgs.TransitionProgress P:UIKit.NSTextAttachment.AdjustsImageSizeForAccessibilityContentSizeCategory P:UIKit.NSTextContainer.IsSimpleRectangularTextContainer +P:UIKit.NSTextContainer.LayoutOrientation P:UIKit.NSTextContentManager.Delegate +P:UIKit.NSTextContentManager.DocumentRange P:UIKit.NSTextContentManager.StorageUnsupportedAttributeAddedNotification P:UIKit.NSTextContentStorage.Delegate +P:UIKit.NSTextContentStorage.TextStorage P:UIKit.NSTextLayoutManager.Delegate +P:UIKit.NSTextLayoutManager.DocumentRange P:UIKit.NSTextList.CustomMarkerFormat P:UIKit.NSTextList.Ordered P:UIKit.NSTextRange.Empty @@ -68842,10 +69636,14 @@ P:UIKit.UIAccessibilityAnnouncementFinishedEventArgs.Announcement P:UIKit.UIAccessibilityAnnouncementFinishedEventArgs.WasSuccessful P:UIKit.UIAccessibilityContainerDataTable.AccessibilityColumnCount P:UIKit.UIAccessibilityContainerDataTable.AccessibilityRowCount +P:UIKit.UIAccessibilityElement.AccessibilityIdentifier +P:UIKit.UIAction.PresentationSourceItem +P:UIKit.UIAction.SelectedImage P:UIKit.UIActionSheet.Delegate P:UIKit.UIActionSheet.Visible P:UIKit.UIActivityIndicatorView.IsAnimating P:UIKit.UIActivityIndicatorView.UIActivityIndicatorViewAppearance.Color +P:UIKit.UIActivityItemsConfiguration.ItemProvidersForActivityItemsConfiguration P:UIKit.UIActivityItemsConfigurationMetadataKey.LinkPresentationMetadata P:UIKit.UIActivityItemsConfigurationMetadataKey.MessageBody P:UIKit.UIActivityItemsConfigurationMetadataKey.Title @@ -68936,6 +69734,7 @@ P:UIKit.UIApplicationOpenUrlOptions.OpenInPlace P:UIKit.UIApplicationOpenUrlOptions.SourceApplication P:UIKit.UIApplicationOpenUrlOptions.UniversalLinksOnly P:UIKit.UIBandSelectionInteraction.Enabled +P:UIKit.UIBandSelectionInteraction.View P:UIKit.UIBarButtonItem.Enabled P:UIKit.UIBarButtonItem.Hidden P:UIKit.UIBarButtonItem.Image @@ -69059,6 +69858,8 @@ P:UIKit.UICollectionViewCell.Selected P:UIKit.UICollectionViewCellRegistration.CellType P:UIKit.UICollectionViewFlowLayout.AutomaticSize P:UIKit.UICollectionViewLayout.AutomaticDimension +P:UIKit.UICollectionViewLayoutAttributes.CollisionBoundingPath +P:UIKit.UICollectionViewLayoutAttributes.CollisionBoundsType P:UIKit.UICollectionViewLayoutAttributes.Hidden P:UIKit.UICollectionViewSupplementaryRegistration.SupplementaryType P:UIKit.UICollectionViewTransitionResult.Completed @@ -69078,6 +69879,9 @@ P:UIKit.UIColor.ReadableTypeIdentifiers P:UIKit.UIColor.WritableTypeIdentifiers P:UIKit.UIColor.WritableTypeIdentifiersForItemProvider P:UIKit.UIColorPickerViewController.Delegate +P:UIKit.UICommand.PresentationSourceItem +P:UIKit.UICommand.SelectedImage +P:UIKit.UICommand.Sender P:UIKit.UICommand.UICommandTagShare P:UIKit.UIConfigurationColorTransformer.Grayscale P:UIKit.UIConfigurationColorTransformer.MonochromeTint @@ -69088,6 +69892,7 @@ P:UIKit.UIContentSizeCategoryChangedEventArgs.WeakNewValue P:UIKit.UIContentUnavailableButtonProperties.Enabled P:UIKit.UIContentUnavailableView.ScrollEnabled P:UIKit.UIContextMenuInteraction.Delegate +P:UIKit.UIContextMenuInteraction.View P:UIKit.UIControl.ContextMenuInteractionEnabled P:UIKit.UIControl.Enabled P:UIKit.UIControl.Highlighted @@ -69096,6 +69901,9 @@ P:UIKit.UIControl.SymbolAnimationEnabled P:UIKit.UIControl.TouchInside P:UIKit.UIControl.Tracking P:UIKit.UICoordinateSpace.Bounds +P:UIKit.UICubicTimingParameters.CubicTimingParameters +P:UIKit.UICubicTimingParameters.SpringTimingParameters +P:UIKit.UICubicTimingParameters.TimingCurveType P:UIKit.UIDevice.BatteryLevelDidChangeNotification P:UIKit.UIDevice.BatteryMonitoringEnabled P:UIKit.UIDevice.BatteryStateDidChangeNotification @@ -69104,6 +69912,9 @@ P:UIKit.UIDevice.IsMultitaskingSupported P:UIKit.UIDevice.OrientationDidChangeNotification P:UIKit.UIDevice.ProximityMonitoringEnabled P:UIKit.UIDevice.ProximityStateDidChangeNotification +P:UIKit.UIDocument.PresentedItemObservedUbiquityAttributes +P:UIKit.UIDocument.PresentedItemOperationQueue +P:UIKit.UIDocument.PresentedItemUrl P:UIKit.UIDocument.StateChangedNotification P:UIKit.UIDocument.UserActivityDocumentUrlKey P:UIKit.UIDocumentInteractionController.CanPerformAction @@ -69120,6 +69931,8 @@ P:UIKit.UIDocumentPickerViewController.Delegate P:UIKit.UIDocumentSendingToApplicationEventArgs.Application P:UIKit.UIDragInteraction.Enabled P:UIKit.UIDragInteraction.EnabledByDefault +P:UIKit.UIDragInteraction.View +P:UIKit.UIDropInteraction.View P:UIKit.UIDropProposal.Precise P:UIKit.UIDynamicAnimator.Delegate P:UIKit.UIDynamicAnimator.Running @@ -69129,10 +69942,17 @@ P:UIKit.UIDynamicItem.CollisionBoundingPath P:UIKit.UIDynamicItem.CollisionBoundsType P:UIKit.UIDynamicItem.Transform P:UIKit.UIDynamicItemBehavior.Anchored +P:UIKit.UIDynamicItemGroup.Bounds +P:UIKit.UIDynamicItemGroup.Center +P:UIKit.UIDynamicItemGroup.CollisionBoundingPath +P:UIKit.UIDynamicItemGroup.CollisionBoundsType +P:UIKit.UIDynamicItemGroup.Transform P:UIKit.UIEditMenuInteraction.Delegate +P:UIKit.UIEditMenuInteraction.View P:UIKit.UIExtensionPointIdentifier.Keyboard P:UIKit.UIFindInteraction.Delegate P:UIKit.UIFindInteraction.FindNavigatorVisible +P:UIKit.UIFindInteraction.View P:UIKit.UIFloatRange.IsInfinite P:UIKit.UIFocusGuide.Enabled P:UIKit.UIFocusUpdateContext.AnimationCoordinatorKey @@ -69316,6 +70136,7 @@ P:UIKit.UIImageView.Highlighted P:UIKit.UIImageView.IsAnimating P:UIKit.UIIndirectScribbleInteraction.Delegate P:UIKit.UIIndirectScribbleInteraction.HandlingWriting +P:UIKit.UIIndirectScribbleInteraction.View P:UIKit.UIKeyboard.AnimationCurveUserInfoKey P:UIKit.UIKeyboard.AnimationDurationUserInfoKey P:UIKit.UIKeyboard.DidChangeFrameNotification @@ -69353,8 +70174,10 @@ P:UIKit.UIKeyCommand.PageDown P:UIKit.UIKeyCommand.PageUp P:UIKit.UIKeyCommand.RightArrow P:UIKit.UIKeyCommand.UpArrow +P:UIKit.UILabel.AdjustsFontForContentSizeCategory P:UIKit.UILabel.Enabled P:UIKit.UILabel.Highlighted +P:UIKit.UILabel.SizingRule P:UIKit.UILabel.UILabelAppearance.Font P:UIKit.UILabel.UILabelAppearance.HighlightedTextColor P:UIKit.UILabel.UILabelAppearance.PreferredVibrancy @@ -69364,6 +70187,7 @@ P:UIKit.UILabel.UILabelAppearance.TextColor P:UIKit.UILargeContentViewerInteraction.Delegate P:UIKit.UILargeContentViewerInteraction.Enabled P:UIKit.UILargeContentViewerInteraction.InteractionEnabledStatusDidChangeNotification +P:UIKit.UILargeContentViewerInteraction.View P:UIKit.UILayoutSupport.BottomAnchor P:UIKit.UILayoutSupport.HeightAnchor P:UIKit.UILayoutSupport.Length @@ -69398,6 +70222,7 @@ P:UIKit.UIMutableTraits.UserInterfaceStyle P:UIKit.UIMutableTraits.VerticalSizeClass P:UIKit.UIMutableUserNotificationAction.AuthenticationRequired P:UIKit.UIMutableUserNotificationAction.Destructive +P:UIKit.UINavigationBar.BarPosition P:UIKit.UINavigationBar.Delegate P:UIKit.UINavigationBar.LargeTitleTextAttributes P:UIKit.UINavigationBar.TitleTextAttributes @@ -69472,6 +70297,7 @@ P:UIKit.UIPasteboardOptions.LocalOnly P:UIKit.UIPathEventArgs.Path P:UIKit.UIPencilInteraction.Delegate P:UIKit.UIPencilInteraction.Enabled +P:UIKit.UIPencilInteraction.View P:UIKit.UIPickerView.DataSource P:UIKit.UIPickerView.Delegate P:UIKit.UIPickerView.Model @@ -69484,6 +70310,7 @@ P:UIKit.UIPointerAccessoryPosition.Top P:UIKit.UIPointerAccessoryPosition.TopLeft P:UIKit.UIPointerAccessoryPosition.TopRight P:UIKit.UIPointerInteraction.Enabled +P:UIKit.UIPointerInteraction.View P:UIKit.UIPointerLockState.DidChangeNotification P:UIKit.UIPointerLockState.Locked P:UIKit.UIPointerLockStateDidChangeEventArgs.Scene @@ -69499,6 +70326,15 @@ P:UIKit.UIPopoverPresentationController.ShouldDismissPopover P:UIKit.UIPopoverPresentationControllerRepositionEventArgs.InView P:UIKit.UIPopoverPresentationControllerRepositionEventArgs.TargetRect P:UIKit.UIPresentationController.Delegate +P:UIKit.UIPresentationController.FocusGroupIdentifier +P:UIKit.UIPresentationController.FocusItemContainer +P:UIKit.UIPresentationController.ParentFocusEnvironment +P:UIKit.UIPresentationController.PreferredContentSize +P:UIKit.UIPresentationController.PreferredFocusedView +P:UIKit.UIPresentationController.PreferredFocusEnvironments +P:UIKit.UIPresentationController.TraitCollection +P:UIKit.UIPreviewAction.Title +P:UIKit.UIPreviewActionGroup.Title P:UIKit.UIPreviewInteraction.ShouldBegin P:UIKit.UIPrinterPickerCompletionResult.PrinterPickerController P:UIKit.UIPrinterPickerCompletionResult.UserDidSelect @@ -69542,10 +70378,12 @@ P:UIKit.UIScreen.DidConnectNotification P:UIKit.UIScreen.DidDisconnectNotification P:UIKit.UIScreen.ModeDidChangeNotification P:UIKit.UIScreen.ReferenceDisplayModeStatusDidChangeNotification +P:UIKit.UIScreen.TraitCollection P:UIKit.UIScreenshotService.Delegate P:UIKit.UIScribbleInteraction.Delegate P:UIKit.UIScribbleInteraction.HandlingWriting P:UIKit.UIScribbleInteraction.PencilInputExpected +P:UIKit.UIScribbleInteraction.View P:UIKit.UIScrollView.CoordinateSpace P:UIKit.UIScrollView.Decelerating P:UIKit.UIScrollView.DecelerationRateFast @@ -69558,17 +70396,32 @@ P:UIKit.UIScrollView.ScrollEnabled P:UIKit.UIScrollView.ShouldScrollToTop P:UIKit.UIScrollView.Tracking P:UIKit.UIScrollView.ViewForZoomingInScrollView +P:UIKit.UIScrollView.VisibleSize P:UIKit.UIScrollView.ZoomBouncing P:UIKit.UIScrollView.Zooming P:UIKit.UIScrollViewZoomingEventArgs.View +P:UIKit.UISearchBar.AutocapitalizationType +P:UIKit.UISearchBar.AutocorrectionType +P:UIKit.UISearchBar.BarPosition P:UIKit.UISearchBar.Delegate P:UIKit.UISearchBar.Enabled +P:UIKit.UISearchBar.EnablesReturnKeyAutomatically +P:UIKit.UISearchBar.InlinePredictionType +P:UIKit.UISearchBar.KeyboardAppearance +P:UIKit.UISearchBar.KeyboardType P:UIKit.UISearchBar.LookToDictateEnabled +P:UIKit.UISearchBar.PasswordRules +P:UIKit.UISearchBar.ReturnKeyType P:UIKit.UISearchBar.SearchResultsButtonSelected P:UIKit.UISearchBar.SecureTextEntry P:UIKit.UISearchBar.ShouldBeginEditing P:UIKit.UISearchBar.ShouldChangeTextInRange P:UIKit.UISearchBar.ShouldEndEditing +P:UIKit.UISearchBar.SmartDashesType +P:UIKit.UISearchBar.SmartInsertDeleteType +P:UIKit.UISearchBar.SmartQuotesType +P:UIKit.UISearchBar.SpellCheckingType +P:UIKit.UISearchBar.TextContentType P:UIKit.UISearchBar.Translucent P:UIKit.UISearchBar.UISearchBarAppearance.BackgroundImage P:UIKit.UISearchBar.UISearchBarAppearance.BarTintColor @@ -69621,6 +70474,10 @@ P:UIKit.UISplitViewPresentEventArgs.AViewController P:UIKit.UISplitViewPresentEventArgs.Pc P:UIKit.UISplitViewShowEventArgs.AViewController P:UIKit.UISplitViewShowEventArgs.Button +P:UIKit.UISpringLoadedInteraction.View +P:UIKit.UISpringTimingParameters.CubicTimingParameters +P:UIKit.UISpringTimingParameters.SpringTimingParameters +P:UIKit.UISpringTimingParameters.TimingCurveType P:UIKit.UIStackView.BaselineRelativeArrangement P:UIKit.UIStackView.LayoutMarginsRelativeArrangement P:UIKit.UIStateRestoration.ViewControllerStoryboardKey @@ -69809,28 +70666,36 @@ P:UIKit.UITextDocumentProxy.SmartInsertDeleteType P:UIKit.UITextDocumentProxy.SmartQuotesType P:UIKit.UITextDocumentProxy.SpellCheckingType P:UIKit.UITextDocumentProxy.TextContentType +P:UIKit.UITextField.AdjustsFontForContentSizeCategory P:UIKit.UITextField.AutocapitalizationType P:UIKit.UITextField.AutocorrectionType +P:UIKit.UITextField.BeginningOfDocument P:UIKit.UITextField.CurrentInputModeDidChangeNotification P:UIKit.UITextField.Delegate P:UIKit.UITextField.DidEndEditingReasonKey P:UIKit.UITextField.EnablesReturnKeyAutomatically +P:UIKit.UITextField.EndOfDocument P:UIKit.UITextField.HasText P:UIKit.UITextField.InlinePredictionType P:UIKit.UITextField.InputDelegate P:UIKit.UITextField.IsEditing P:UIKit.UITextField.KeyboardAppearance P:UIKit.UITextField.KeyboardType +P:UIKit.UITextField.MarkedTextRange +P:UIKit.UITextField.MarkedTextStyle P:UIKit.UITextField.PasswordRules P:UIKit.UITextField.PasteConfiguration P:UIKit.UITextField.PasteDelegate P:UIKit.UITextField.ReturnKeyType P:UIKit.UITextField.SecureTextEntry +P:UIKit.UITextField.SelectedTextRange +P:UIKit.UITextField.SelectionAffinity P:UIKit.UITextField.ShouldBeginEditing P:UIKit.UITextField.ShouldChangeCharacters P:UIKit.UITextField.ShouldClear P:UIKit.UITextField.ShouldEndEditing P:UIKit.UITextField.ShouldReturn +P:UIKit.UITextField.SizingRule P:UIKit.UITextField.SmartDashesType P:UIKit.UITextField.SmartInsertDeleteType P:UIKit.UITextField.SmartQuotesType @@ -69849,7 +70714,10 @@ P:UIKit.UITextField.TextDropDelegate P:UIKit.UITextField.TextDropInteraction P:UIKit.UITextField.TextFieldTextDidChangeNotification P:UIKit.UITextField.TextFontKey +P:UIKit.UITextField.TextInputView P:UIKit.UITextField.Tokenizer +P:UIKit.UITextField.WeakInputDelegate +P:UIKit.UITextField.WeakTokenizer P:UIKit.UITextFieldEditingEndedEventArgs.Reason P:UIKit.UITextFormattingCoordinator.Delegate P:UIKit.UITextFormattingCoordinator.FontPanelVisible @@ -69858,34 +70726,44 @@ P:UIKit.UITextInputContext.HardwareKeyboardInputExpected P:UIKit.UITextInputContext.PencilInputExpected P:UIKit.UITextInputMode.CurrentInputModeDidChangeNotification P:UIKit.UITextInteraction.Delegate +P:UIKit.UITextInteraction.View P:UIKit.UITextRange.IsEmpty P:UIKit.UITextSelectionDisplayInteraction.Activated P:UIKit.UITextSelectionDisplayInteraction.Delegate +P:UIKit.UITextSelectionDisplayInteraction.View +P:UIKit.UITextView.AdjustsFontForContentSizeCategory P:UIKit.UITextView.AllowTextAttachmentInteraction P:UIKit.UITextView.AllowUrlInteraction P:UIKit.UITextView.AutocapitalizationType P:UIKit.UITextView.AutocorrectionType +P:UIKit.UITextView.BeginningOfDocument P:UIKit.UITextView.CurrentInputModeDidChangeNotification P:UIKit.UITextView.Delegate P:UIKit.UITextView.Editable P:UIKit.UITextView.EnablesReturnKeyAutomatically +P:UIKit.UITextView.EndOfDocument P:UIKit.UITextView.FindInteractionEnabled P:UIKit.UITextView.HasText P:UIKit.UITextView.InlinePredictionType P:UIKit.UITextView.InputDelegate P:UIKit.UITextView.KeyboardAppearance P:UIKit.UITextView.KeyboardType +P:UIKit.UITextView.MarkedTextRange +P:UIKit.UITextView.MarkedTextStyle P:UIKit.UITextView.PasswordRules P:UIKit.UITextView.PasteConfiguration P:UIKit.UITextView.PasteDelegate P:UIKit.UITextView.ReturnKeyType P:UIKit.UITextView.SecureTextEntry P:UIKit.UITextView.Selectable +P:UIKit.UITextView.SelectedTextRange +P:UIKit.UITextView.SelectionAffinity P:UIKit.UITextView.ShouldBeginEditing P:UIKit.UITextView.ShouldChangeText P:UIKit.UITextView.ShouldEndEditing P:UIKit.UITextView.ShouldInteractWithTextAttachment P:UIKit.UITextView.ShouldInteractWithUrl +P:UIKit.UITextView.SizingRule P:UIKit.UITextView.SmartDashesType P:UIKit.UITextView.SmartInsertDeleteType P:UIKit.UITextView.SmartQuotesType @@ -69904,8 +70782,12 @@ P:UIKit.UITextView.TextDropActive P:UIKit.UITextView.TextDropDelegate P:UIKit.UITextView.TextDropInteraction P:UIKit.UITextView.TextFontKey +P:UIKit.UITextView.TextInputView P:UIKit.UITextView.Tokenizer P:UIKit.UITextView.TypingAttributes2 +P:UIKit.UITextView.WeakInputDelegate +P:UIKit.UITextView.WeakTokenizer +P:UIKit.UIToolbar.BarPosition P:UIKit.UIToolbar.Delegate P:UIKit.UIToolbar.Translucent P:UIKit.UIToolbar.UIToolbarAppearance.BarStyle @@ -69917,58 +70799,76 @@ P:UIKit.UIToolbar.UIToolbarAppearance.StandardAppearance P:UIKit.UIToolbar.UIToolbarAppearance.Translucent P:UIKit.UIToolTipInteraction.Delegate P:UIKit.UIToolTipInteraction.Enabled +P:UIKit.UIToolTipInteraction.View P:UIKit.UITraitAccessibilityContrast.AffectsColorAppearance +P:UIKit.UITraitAccessibilityContrast.DefaultValue P:UIKit.UITraitAccessibilityContrast.Identifier P:UIKit.UITraitAccessibilityContrast.Name P:UIKit.UITraitActiveAppearance.AffectsColorAppearance +P:UIKit.UITraitActiveAppearance.DefaultValue P:UIKit.UITraitActiveAppearance.Identifier P:UIKit.UITraitActiveAppearance.Name P:UIKit.UITraitCollection.SystemTraitsAffectingColorAppearance2 P:UIKit.UITraitCollection.SystemTraitsAffectingImageLookup2 P:UIKit.UITraitDisplayGamut.AffectsColorAppearance +P:UIKit.UITraitDisplayGamut.DefaultValue P:UIKit.UITraitDisplayGamut.Identifier P:UIKit.UITraitDisplayGamut.Name P:UIKit.UITraitDisplayScale.AffectsColorAppearance +P:UIKit.UITraitDisplayScale.DefaultValue P:UIKit.UITraitDisplayScale.Identifier P:UIKit.UITraitDisplayScale.Name P:UIKit.UITraitEnvironment.TraitCollection P:UIKit.UITraitForceTouchCapability.AffectsColorAppearance +P:UIKit.UITraitForceTouchCapability.DefaultValue P:UIKit.UITraitForceTouchCapability.Identifier P:UIKit.UITraitForceTouchCapability.Name P:UIKit.UITraitHorizontalSizeClass.AffectsColorAppearance +P:UIKit.UITraitHorizontalSizeClass.DefaultValue P:UIKit.UITraitHorizontalSizeClass.Identifier P:UIKit.UITraitHorizontalSizeClass.Name P:UIKit.UITraitImageDynamicRange.AffectsColorAppearance +P:UIKit.UITraitImageDynamicRange.DefaultValue P:UIKit.UITraitImageDynamicRange.Identifier P:UIKit.UITraitImageDynamicRange.Name P:UIKit.UITraitLayoutDirection.AffectsColorAppearance +P:UIKit.UITraitLayoutDirection.DefaultValue P:UIKit.UITraitLayoutDirection.Identifier P:UIKit.UITraitLayoutDirection.Name P:UIKit.UITraitLegibilityWeight.AffectsColorAppearance +P:UIKit.UITraitLegibilityWeight.DefaultValue P:UIKit.UITraitLegibilityWeight.Identifier P:UIKit.UITraitLegibilityWeight.Name P:UIKit.UITraitPreferredContentSizeCategory.AffectsColorAppearance +P:UIKit.UITraitPreferredContentSizeCategory.DefaultValue P:UIKit.UITraitPreferredContentSizeCategory.Identifier P:UIKit.UITraitPreferredContentSizeCategory.Name P:UIKit.UITraitSceneCaptureState.AffectsColorAppearance +P:UIKit.UITraitSceneCaptureState.DefaultValue P:UIKit.UITraitSceneCaptureState.Identifier P:UIKit.UITraitSceneCaptureState.Name P:UIKit.UITraitToolbarItemPresentationSize.AffectsColorAppearance +P:UIKit.UITraitToolbarItemPresentationSize.DefaultValue P:UIKit.UITraitToolbarItemPresentationSize.Identifier P:UIKit.UITraitToolbarItemPresentationSize.Name P:UIKit.UITraitTypesettingLanguage.AffectsColorAppearance +P:UIKit.UITraitTypesettingLanguage.DefaultValue P:UIKit.UITraitTypesettingLanguage.Identifier P:UIKit.UITraitTypesettingLanguage.Name P:UIKit.UITraitUserInterfaceIdiom.AffectsColorAppearance +P:UIKit.UITraitUserInterfaceIdiom.DefaultValue P:UIKit.UITraitUserInterfaceIdiom.Identifier P:UIKit.UITraitUserInterfaceIdiom.Name P:UIKit.UITraitUserInterfaceLevel.AffectsColorAppearance +P:UIKit.UITraitUserInterfaceLevel.DefaultValue P:UIKit.UITraitUserInterfaceLevel.Identifier P:UIKit.UITraitUserInterfaceLevel.Name P:UIKit.UITraitUserInterfaceStyle.AffectsColorAppearance +P:UIKit.UITraitUserInterfaceStyle.DefaultValue P:UIKit.UITraitUserInterfaceStyle.Identifier P:UIKit.UITraitUserInterfaceStyle.Name P:UIKit.UITraitVerticalSizeClass.AffectsColorAppearance +P:UIKit.UITraitVerticalSizeClass.DefaultValue P:UIKit.UITraitVerticalSizeClass.Identifier P:UIKit.UITraitVerticalSizeClass.Name P:UIKit.UITransitionContext.FromViewControllerKey @@ -70008,6 +70908,9 @@ P:UIKit.UIView.AssistiveTouchStatusDidChangeNotification P:UIKit.UIView.BoldTextStatusDidChangeNotification P:UIKit.UIView.ButtonShapesEnabledStatusDidChangeNotification P:UIKit.UIView.ClosedCaptioningStatusDidChangeNotification +P:UIKit.UIView.CollisionBoundingPath +P:UIKit.UIView.CollisionBoundsType +P:UIKit.UIView.CoordinateSpace P:UIKit.UIView.DarkerSystemColorsStatusDidChangeNotification P:UIKit.UIView.ElementFocusedNotification P:UIKit.UIView.ExclusiveTouch @@ -70020,6 +70923,7 @@ P:UIKit.UIView.HearingDevicePairedEarDidChangeNotification P:UIKit.UIView.Hidden P:UIKit.UIView.InvertColorsStatusDidChangeNotification P:UIKit.UIView.IsAccessibilityElement +P:UIKit.UIView.IsTransparentFocusItem P:UIKit.UIView.LayoutChangedNotification P:UIKit.UIView.MonoAudioStatusDidChangeNotification P:UIKit.UIView.MultipleTouchEnabled @@ -70054,6 +70958,7 @@ P:UIKit.UIView.SwitchControlStatusDidChangeNotification P:UIKit.UIView.TextAttributeContext P:UIKit.UIView.TextAttributeCustom P:UIKit.UIView.TextAttributeHeadingLevel +P:UIKit.UIView.TraitCollection P:UIKit.UIView.UILayoutFittingCompressedSize P:UIKit.UIView.UILayoutFittingExpandedSize P:UIKit.UIView.UIViewAppearance.BackgroundColor @@ -70069,6 +70974,7 @@ P:UIKit.UIViewConfigurationState.Highlighted P:UIKit.UIViewConfigurationState.Pinned P:UIKit.UIViewConfigurationState.Selected P:UIKit.UIViewController.Editing +P:UIKit.UIViewController.FocusItemContainer P:UIKit.UIViewController.HierarchyInconsistencyException P:UIKit.UIViewController.IsBeingDismissed P:UIKit.UIViewController.IsBeingPresented @@ -70077,7 +70983,11 @@ P:UIKit.UIViewController.IsMovingToParentViewController P:UIKit.UIViewController.IsViewLoaded P:UIKit.UIViewController.ModalInPopover P:UIKit.UIViewController.ModalInPresentation +P:UIKit.UIViewController.ParentFocusEnvironment +P:UIKit.UIViewController.PreferredFocusedView +P:UIKit.UIViewController.PreferredFocusEnvironments P:UIKit.UIViewController.ShowDetailTargetDidChangeNotification +P:UIKit.UIViewController.TraitCollection P:UIKit.UIViewController.TransitioningDelegate P:UIKit.UIViewControllerContextTransitioning.ContainerView P:UIKit.UIViewControllerContextTransitioning.IsAnimated @@ -70108,7 +71018,9 @@ P:UIKit.UIWindowLevel.Alert P:UIKit.UIWindowLevel.Normal P:UIKit.UIWindowLevel.StatusBar P:UIKit.UIWindowScene.FullScreen +P:UIKit.UIWindowSceneActivationInteraction.View P:UIKit.UIWindowSceneDelegate.Window +P:UIKit.UIWindowSceneDragInteraction.View P:UIKit.WillEndDraggingEventArgs.TargetContentOffset P:UIKit.WillEndDraggingEventArgs.Velocity P:UIKit.ZoomingEndedEventArgs.AtScale @@ -70738,6 +71650,7 @@ P:Vision.VNClassifyImageRequest.DefaultRevision P:Vision.VNClassifyImageRequest.Revision P:Vision.VNClassifyImageRequest.SupportedRevisions P:Vision.VNClassifyImageRequest.WeakSupportedRevisions +P:Vision.VNContour.RequestRevision P:Vision.VNContoursObservation.RecognizedPointGroupKeyAll P:Vision.VNCoreMLRequest.CurrentRevision P:Vision.VNCoreMLRequest.DefaultRevision @@ -70758,11 +71671,13 @@ P:Vision.VNDetectContoursRequest.SupportedRevisions P:Vision.VNDetectContoursRequest.WeakSupportedRevisions P:Vision.VNDetectFaceCaptureQualityRequest.CurrentRevision P:Vision.VNDetectFaceCaptureQualityRequest.DefaultRevision +P:Vision.VNDetectFaceCaptureQualityRequest.InputFaceObservations P:Vision.VNDetectFaceCaptureQualityRequest.Revision P:Vision.VNDetectFaceCaptureQualityRequest.SupportedRevisions P:Vision.VNDetectFaceCaptureQualityRequest.WeakSupportedRevisions P:Vision.VNDetectFaceLandmarksRequest.CurrentRevision P:Vision.VNDetectFaceLandmarksRequest.DefaultRevision +P:Vision.VNDetectFaceLandmarksRequest.InputFaceObservations P:Vision.VNDetectFaceLandmarksRequest.Revision P:Vision.VNDetectFaceLandmarksRequest.SupportedRevisions P:Vision.VNDetectFaceLandmarksRequest.WeakSupportedRevisions @@ -70811,7 +71726,9 @@ P:Vision.VNDetectTrajectoriesRequest.DefaultRevision P:Vision.VNDetectTrajectoriesRequest.Revision P:Vision.VNDetectTrajectoriesRequest.SupportedRevisions P:Vision.VNDetectTrajectoriesRequest.WeakSupportedRevisions +P:Vision.VNFaceLandmarkRegion.RequestRevision P:Vision.VNFaceLandmarkRegion2D.NormalizedPoints +P:Vision.VNFaceLandmarks.RequestRevision P:Vision.VNGenerateAttentionBasedSaliencyImageRequest.CurrentRevision P:Vision.VNGenerateAttentionBasedSaliencyImageRequest.DefaultRevision P:Vision.VNGenerateAttentionBasedSaliencyImageRequest.Revision @@ -70841,14 +71758,18 @@ P:Vision.VNImageOptions.CameraIntrinsics P:Vision.VNImageOptions.CIContext P:Vision.VNImageOptions.Properties P:Vision.VNImageOptions.WeakProperties +P:Vision.VNObservation.RequestRevision P:Vision.VNRecognizeAnimalsRequest.CurrentRevision P:Vision.VNRecognizeAnimalsRequest.DefaultRevision P:Vision.VNRecognizeAnimalsRequest.Revision P:Vision.VNRecognizeAnimalsRequest.SupportedRevisions P:Vision.VNRecognizeAnimalsRequest.WeakSupportedRevisions P:Vision.VNRecognizedPoint3D.GroupKeyAll +P:Vision.VNRecognizedText.RequestRevision P:Vision.VNRecognizeTextRequest.CurrentRevision P:Vision.VNRecognizeTextRequest.DefaultRevision +P:Vision.VNRecognizeTextRequest.Indeterminate +P:Vision.VNRecognizeTextRequest.ProgressHandler P:Vision.VNRecognizeTextRequest.Revision P:Vision.VNRecognizeTextRequest.SupportedRevisions P:Vision.VNRecognizeTextRequest.WeakSupportedRevisions @@ -70883,8 +71804,11 @@ P:Vision.VNTranslationalImageRegistrationRequest.DefaultRevision P:Vision.VNTranslationalImageRegistrationRequest.SupportedRevisions P:Vision.VNTranslationalImageRegistrationRequest.WeakSupportedRevisions P:Vision.VNUtils.NormalizedIdentityRect +P:VisionKit.VNDocumentCameraScan.PageCount +P:VisionKit.VNDocumentCameraScan.Title P:VisionKit.VNDocumentCameraViewController.Delegate P:VisionKit.VNDocumentCameraViewController.Supported +P:VisionKit.VNDocumentCameraViewController.WeakDelegate P:WatchConnectivity.WCSession.ActivationState P:WatchConnectivity.WCSession.ApplicationContext P:WatchConnectivity.WCSession.ComplicationEnabled @@ -71060,6 +71984,7 @@ P:WebKit.WebViewStatusBarEventArgs.Visible P:WebKit.WebViewStatusTextEventArgs.Text P:WebKit.WebViewToolBarsEventArgs.Visible P:WebKit.WKDownload.Delegate +P:WebKit.WKDownload.Progress P:WebKit.WKFrameInfo.MainFrame P:WebKit.WKNavigationResponse.IsForMainFrame P:WebKit.WKPreferences.ElementFullscreenEnabled @@ -72896,7 +73821,6 @@ T:CarPlay.CPInformationTemplateLayout T:CarPlay.CPInstrumentClusterControllerDelegate T:CarPlay.CPInstrumentClusterSetting T:CarPlay.CPInterfaceControllerDelegate -T:CarPlay.CPInterfaceControllerDelegate_Extensions T:CarPlay.CPJunctionType T:CarPlay.CPLaneStatus T:CarPlay.CPLimitableUserInterface From 177c5b91a119b7af720043f2177ad16c2902a42e Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Tue, 21 May 2024 16:50:57 +0200 Subject: [PATCH 34/73] [dotnet] Stop tracking dotnet/runtime separately, it's not needed anymore. --- Make.config | 2 +- eng/Version.Details.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Make.config b/Make.config index 5c7b53b4c4b5..e53534288ce3 100644 --- a/Make.config +++ b/Make.config @@ -634,7 +634,7 @@ ALL_PLATFORMS=iOS tvOS watchOS macOS ALL_DOTNET_PLATFORMS=iOS macOS tvOS MacCatalyst # Set this to 1 if the Microsoft.NETCore.App.Ref dependency in eng/Version.Details.xml does *not* specify a CoherentParentDependency on Microsoft.Dotnet.Sdk.Internal. -TRACKING_DOTNET_RUNTIME_SEPARATELY=1 +TRACKING_DOTNET_RUNTIME_SEPARATELY= -include $(TOP)/dotnet.config $(TOP)/dotnet.config: $(TOP)/eng/Versions.props $(TOP)/Build.props diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 4ae4cf4bea09..0342b2646331 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -13,7 +13,7 @@ 2d7eea252964e69be94cb9c847b371b23e4dd470 - + https://github.com/dotnet/runtime ca4f0fe37455882baa00c75b1ef30a7ff1494457 From 9f99c87915228bf7d2bd25fae400b0139107d294 Mon Sep 17 00:00:00 2001 From: Alex Soto Date: Tue, 21 May 2024 21:31:33 -0400 Subject: [PATCH 35/73] [CoreML] Update bindings to Xcode 15.3 --- src/coreml.cs | 231 ++++++++++++++++++ .../api-annotations-dotnet/iOS-CoreML.todo | 58 ----- .../api-annotations-dotnet/macOS-CoreML.todo | 58 ----- .../api-annotations-dotnet/tvOS-CoreML.todo | 58 ----- tests/xtro-sharpie/iOS-CoreML.todo | 58 ----- tests/xtro-sharpie/macOS-CoreML.todo | 58 ----- tests/xtro-sharpie/tvOS-CoreML.todo | 58 ----- tests/xtro-sharpie/watchOS-CoreML.todo | 58 ----- 8 files changed, 231 insertions(+), 406 deletions(-) delete mode 100644 tests/xtro-sharpie/api-annotations-dotnet/iOS-CoreML.todo delete mode 100644 tests/xtro-sharpie/api-annotations-dotnet/macOS-CoreML.todo delete mode 100644 tests/xtro-sharpie/api-annotations-dotnet/tvOS-CoreML.todo delete mode 100644 tests/xtro-sharpie/iOS-CoreML.todo delete mode 100644 tests/xtro-sharpie/macOS-CoreML.todo delete mode 100644 tests/xtro-sharpie/tvOS-CoreML.todo delete mode 100644 tests/xtro-sharpie/watchOS-CoreML.todo diff --git a/src/coreml.cs b/src/coreml.cs index c6c497e4483e..612d7094248a 100644 --- a/src/coreml.cs +++ b/src/coreml.cs @@ -129,6 +129,13 @@ public enum MLUpdateProgressEvent : ulong { MiniBatchEnd = 1L << 2, } + [Watch (10, 4), TV (17, 4), Mac (14, 4), iOS (17, 4), MacCatalyst (17, 4)] + [Native] + public enum MLReshapeFrequencyHint : long { + Frequent = 0, + Infrequent = 1, + } + [MacCatalyst (13, 1)] [BaseType (typeof (NSObject))] interface MLDictionaryFeatureProvider : MLFeatureProvider, NSSecureCoding { @@ -906,6 +913,10 @@ interface MLModelConfiguration : NSCopying, NSSecureCoding { [Export ("computeUnits", ArgumentSemantic.Assign)] MLComputeUnits ComputeUnits { get; set; } + [Watch (10, 4), TV (17, 4), Mac (14, 4), iOS (17, 4), MacCatalyst (17, 4)] + [Export ("optimizationHints", ArgumentSemantic.Copy)] + MLOptimizationHints OptimizationHints { get; set; } + [Watch (9, 0), TV (16, 0), Mac (13, 0), iOS (16, 0), MacCatalyst (16, 0)] [NullAllowed, Export ("modelDisplayName")] string ModelDisplayName { get; set; } @@ -1264,4 +1275,224 @@ interface MLGpuComputeDevice : MLComputeDeviceProtocol { IMTLDevice MetalDevice { get; } } + [Watch (10, 4), TV (17, 4), Mac (14, 4), iOS (17, 4), MacCatalyst (17, 4)] + [BaseType (typeof (NSObject))] + [DisableDefaultCtor] + interface MLComputePlan { + + [Static] + [Export ("loadContentsOfURL:configuration:completionHandler:")] + void Load (NSUrl contentsUrl, MLModelConfiguration configuration, Action handler); + + [Static] + [Export ("loadModelAsset:configuration:completionHandler:")] + void Load (MLModelAsset modelAsset, MLModelConfiguration configuration, Action handler); + + [Export ("estimatedCostOfMLProgramOperation:")] + [return: NullAllowed] + MLComputePlanCost GetEstimatedCost (MLModelStructureProgramOperation programOperation); + + [Export ("computeDeviceUsageForNeuralNetworkLayer:")] + [return: NullAllowed] + MLComputePlanDeviceUsage ComputeDeviceUsage (MLModelStructureNeuralNetworkLayer neuralNetworkLayer); + + [Export ("computeDeviceUsageForMLProgramOperation:")] + [return: NullAllowed] + MLComputePlanDeviceUsage ComputeDeviceUsage (MLModelStructureProgramOperation programOperation); + + [Export ("modelStructure", ArgumentSemantic.Strong)] + MLModelStructure ModelStructure { get; } + } + + [Watch (10, 4), TV (17, 4), Mac (14, 4), iOS (17, 4), MacCatalyst (17, 4)] + [BaseType (typeof (NSObject))] + [DisableDefaultCtor] + interface MLComputePlanCost { + + [Export ("weight")] + double Weight { get; } + } + + [Watch (10, 4), TV (17, 4), Mac (14, 4), iOS (17, 4), MacCatalyst (17, 4)] + [BaseType (typeof (NSObject))] + [DisableDefaultCtor] + interface MLComputePlanDeviceUsage { + + [Export ("supportedComputeDevices", ArgumentSemantic.Copy)] + IMLComputeDeviceProtocol[] SupportedComputeDevices { get; } + + [Export ("preferredComputeDevice", ArgumentSemantic.Strong)] + IMLComputeDeviceProtocol PreferredComputeDevice { get; } + } + + [Watch (10, 4), TV (17, 4), Mac (14, 4), iOS (17, 4), MacCatalyst (17, 4)] + [BaseType (typeof (NSObject))] + [DisableDefaultCtor] + interface MLModelStructure { + + [Static] + [Export ("loadContentsOfURL:completionHandler:")] + void Load (NSUrl url, Action handler); + + [Static] + [Export ("loadModelAsset:completionHandler:")] + void Load (MLModelAsset modelAsset, Action handler); + + [NullAllowed, Export ("neuralNetwork", ArgumentSemantic.Strong)] + MLModelStructureNeuralNetwork NeuralNetwork { get; } + + [NullAllowed, Export ("program", ArgumentSemantic.Strong)] + MLModelStructureProgram Program { get; } + + [NullAllowed, Export ("pipeline", ArgumentSemantic.Strong)] + MLModelStructurePipeline Pipeline { get; } + } + + [Watch (10, 4), TV (17, 4), Mac (14, 4), iOS (17, 4), MacCatalyst (17, 4)] + [BaseType (typeof (NSObject))] + [DisableDefaultCtor] + interface MLModelStructureNeuralNetwork { + + [Export ("layers", ArgumentSemantic.Copy)] + MLModelStructureNeuralNetworkLayer[] Layers { get; } + } + + [Watch (10, 4), TV (17, 4), Mac (14, 4), iOS (17, 4), MacCatalyst (17, 4)] + [BaseType (typeof (NSObject))] + [DisableDefaultCtor] + interface MLModelStructureNeuralNetworkLayer { + + [Export ("name")] + string Name { get; } + + [Export ("type")] + string Type { get; } + + [Export ("inputNames", ArgumentSemantic.Copy)] + string[] InputNames { get; } + + [Export ("outputNames", ArgumentSemantic.Copy)] + string[] OutputNames { get; } + } + + [Watch (10, 4), TV (17, 4), Mac (14, 4), iOS (17, 4), MacCatalyst (17, 4)] + [BaseType (typeof (NSObject))] + [DisableDefaultCtor] + interface MLModelStructurePipeline { + + [Export ("subModelNames", ArgumentSemantic.Copy)] + string[] SubModelNames { get; } + + [Export ("subModels", ArgumentSemantic.Copy)] + MLModelStructure[] SubModels { get; } + } + + [Watch (10, 4), TV (17, 4), Mac (14, 4), iOS (17, 4), MacCatalyst (17, 4)] + [BaseType (typeof (NSObject))] + [DisableDefaultCtor] + interface MLModelStructureProgram { + [Export ("functions", ArgumentSemantic.Copy)] + NSDictionary Functions { get; } + } + + [Watch (10, 4), TV (17, 4), Mac (14, 4), iOS (17, 4), MacCatalyst (17, 4)] + [BaseType (typeof (NSObject))] + [DisableDefaultCtor] + interface MLModelStructureProgramArgument { + + [Export ("bindings", ArgumentSemantic.Copy)] + MLModelStructureProgramBinding[] Bindings { get; } + } + + [Watch (10, 4), TV (17, 4), Mac (14, 4), iOS (17, 4), MacCatalyst (17, 4)] + [BaseType (typeof (NSObject))] + [DisableDefaultCtor] + interface MLModelStructureProgramBinding { + + [NullAllowed, Export ("name")] + string Name { get; } + + [NullAllowed, Export ("value", ArgumentSemantic.Copy)] + MLModelStructureProgramValue Value { get; } + } + + [Watch (10, 4), TV (17, 4), Mac (14, 4), iOS (17, 4), MacCatalyst (17, 4)] + [BaseType (typeof (NSObject))] + [DisableDefaultCtor] + interface MLModelStructureProgramBlock { + + [Export ("inputs", ArgumentSemantic.Copy)] + MLModelStructureProgramNamedValueType[] Inputs { get; } + + [Export ("outputNames", ArgumentSemantic.Copy)] + string[] OutputNames { get; } + + [Export ("operations", ArgumentSemantic.Copy)] + MLModelStructureProgramOperation[] Operations { get; } + } + + [Watch (10, 4), TV (17, 4), Mac (14, 4), iOS (17, 4), MacCatalyst (17, 4)] + [BaseType (typeof (NSObject))] + [DisableDefaultCtor] + interface MLModelStructureProgramFunction { + + [Export ("inputs", ArgumentSemantic.Copy)] + MLModelStructureProgramNamedValueType[] Inputs { get; } + + [Export ("block", ArgumentSemantic.Strong)] + MLModelStructureProgramBlock Block { get; } + } + + [Watch (10, 4), TV (17, 4), Mac (14, 4), iOS (17, 4), MacCatalyst (17, 4)] + [BaseType (typeof (NSObject))] + [DisableDefaultCtor] + interface MLModelStructureProgramNamedValueType { + + [Export ("name")] + string Name { get; } + + [Export ("type", ArgumentSemantic.Strong)] + MLModelStructureProgramValueType Type { get; } + } + + [Watch (10, 4), TV (17, 4), Mac (14, 4), iOS (17, 4), MacCatalyst (17, 4)] + [BaseType (typeof (NSObject))] + [DisableDefaultCtor] + interface MLModelStructureProgramOperation { + + [Export ("operatorName")] + string OperatorName { get; } + + [Export ("inputs", ArgumentSemantic.Copy)] + NSDictionary Inputs { get; } + + [Export ("outputs", ArgumentSemantic.Copy)] + MLModelStructureProgramNamedValueType[] Outputs { get; } + + [Export ("blocks", ArgumentSemantic.Copy)] + MLModelStructureProgramBlock[] Blocks { get; } + } + + [Watch (10, 4), TV (17, 4), Mac (14, 4), iOS (17, 4), MacCatalyst (17, 4)] + [BaseType (typeof (NSObject))] + [DisableDefaultCtor] + interface MLModelStructureProgramValue { + // Empty class!! + } + + [Watch (10, 4), TV (17, 4), Mac (14, 4), iOS (17, 4), MacCatalyst (17, 4)] + [BaseType (typeof (NSObject))] + [DisableDefaultCtor] + interface MLModelStructureProgramValueType { + // Empty class!! + } + + [Watch (10, 4), TV (17, 4), Mac (14, 4), iOS (17, 4), MacCatalyst (17, 4)] + [BaseType (typeof (NSObject))] + interface MLOptimizationHints : NSCopying, NSSecureCoding { + + [Export ("reshapeFrequency", ArgumentSemantic.Assign)] + MLReshapeFrequencyHint ReshapeFrequency { get; set; } + } + } diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-CoreML.todo b/tests/xtro-sharpie/api-annotations-dotnet/iOS-CoreML.todo deleted file mode 100644 index cd65c2081202..000000000000 --- a/tests/xtro-sharpie/api-annotations-dotnet/iOS-CoreML.todo +++ /dev/null @@ -1,58 +0,0 @@ -!missing-enum! MLReshapeFrequencyHint not bound -!missing-selector! +MLComputePlan::loadContentsOfURL:configuration:completionHandler: not bound -!missing-selector! +MLComputePlan::loadModelAsset:configuration:completionHandler: not bound -!missing-selector! +MLModelStructure::loadContentsOfURL:completionHandler: not bound -!missing-selector! +MLModelStructure::loadModelAsset:completionHandler: not bound -!missing-selector! MLComputePlan::computeDeviceUsageForMLProgramOperation: not bound -!missing-selector! MLComputePlan::computeDeviceUsageForNeuralNetworkLayer: not bound -!missing-selector! MLComputePlan::estimatedCostOfMLProgramOperation: not bound -!missing-selector! MLComputePlan::modelStructure not bound -!missing-selector! MLComputePlanCost::weight not bound -!missing-selector! MLComputePlanDeviceUsage::preferredComputeDevice not bound -!missing-selector! MLComputePlanDeviceUsage::supportedComputeDevices not bound -!missing-selector! MLModelConfiguration::optimizationHints not bound -!missing-selector! MLModelConfiguration::setOptimizationHints: not bound -!missing-selector! MLModelStructure::neuralNetwork not bound -!missing-selector! MLModelStructure::pipeline not bound -!missing-selector! MLModelStructure::program not bound -!missing-selector! MLModelStructureNeuralNetwork::layers not bound -!missing-selector! MLModelStructureNeuralNetworkLayer::inputNames not bound -!missing-selector! MLModelStructureNeuralNetworkLayer::name not bound -!missing-selector! MLModelStructureNeuralNetworkLayer::outputNames not bound -!missing-selector! MLModelStructureNeuralNetworkLayer::type not bound -!missing-selector! MLModelStructurePipeline::subModelNames not bound -!missing-selector! MLModelStructurePipeline::subModels not bound -!missing-selector! MLModelStructureProgram::functions not bound -!missing-selector! MLModelStructureProgramArgument::bindings not bound -!missing-selector! MLModelStructureProgramBinding::name not bound -!missing-selector! MLModelStructureProgramBinding::value not bound -!missing-selector! MLModelStructureProgramBlock::inputs not bound -!missing-selector! MLModelStructureProgramBlock::operations not bound -!missing-selector! MLModelStructureProgramBlock::outputNames not bound -!missing-selector! MLModelStructureProgramFunction::block not bound -!missing-selector! MLModelStructureProgramFunction::inputs not bound -!missing-selector! MLModelStructureProgramNamedValueType::name not bound -!missing-selector! MLModelStructureProgramNamedValueType::type not bound -!missing-selector! MLModelStructureProgramOperation::blocks not bound -!missing-selector! MLModelStructureProgramOperation::inputs not bound -!missing-selector! MLModelStructureProgramOperation::operatorName not bound -!missing-selector! MLModelStructureProgramOperation::outputs not bound -!missing-selector! MLOptimizationHints::reshapeFrequency not bound -!missing-selector! MLOptimizationHints::setReshapeFrequency: not bound -!missing-type! MLComputePlan not bound -!missing-type! MLComputePlanCost not bound -!missing-type! MLComputePlanDeviceUsage not bound -!missing-type! MLModelStructure not bound -!missing-type! MLModelStructureNeuralNetwork not bound -!missing-type! MLModelStructureNeuralNetworkLayer not bound -!missing-type! MLModelStructurePipeline not bound -!missing-type! MLModelStructureProgram not bound -!missing-type! MLModelStructureProgramArgument not bound -!missing-type! MLModelStructureProgramBinding not bound -!missing-type! MLModelStructureProgramBlock not bound -!missing-type! MLModelStructureProgramFunction not bound -!missing-type! MLModelStructureProgramNamedValueType not bound -!missing-type! MLModelStructureProgramOperation not bound -!missing-type! MLModelStructureProgramValue not bound -!missing-type! MLModelStructureProgramValueType not bound -!missing-type! MLOptimizationHints not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-CoreML.todo b/tests/xtro-sharpie/api-annotations-dotnet/macOS-CoreML.todo deleted file mode 100644 index cd65c2081202..000000000000 --- a/tests/xtro-sharpie/api-annotations-dotnet/macOS-CoreML.todo +++ /dev/null @@ -1,58 +0,0 @@ -!missing-enum! MLReshapeFrequencyHint not bound -!missing-selector! +MLComputePlan::loadContentsOfURL:configuration:completionHandler: not bound -!missing-selector! +MLComputePlan::loadModelAsset:configuration:completionHandler: not bound -!missing-selector! +MLModelStructure::loadContentsOfURL:completionHandler: not bound -!missing-selector! +MLModelStructure::loadModelAsset:completionHandler: not bound -!missing-selector! MLComputePlan::computeDeviceUsageForMLProgramOperation: not bound -!missing-selector! MLComputePlan::computeDeviceUsageForNeuralNetworkLayer: not bound -!missing-selector! MLComputePlan::estimatedCostOfMLProgramOperation: not bound -!missing-selector! MLComputePlan::modelStructure not bound -!missing-selector! MLComputePlanCost::weight not bound -!missing-selector! MLComputePlanDeviceUsage::preferredComputeDevice not bound -!missing-selector! MLComputePlanDeviceUsage::supportedComputeDevices not bound -!missing-selector! MLModelConfiguration::optimizationHints not bound -!missing-selector! MLModelConfiguration::setOptimizationHints: not bound -!missing-selector! MLModelStructure::neuralNetwork not bound -!missing-selector! MLModelStructure::pipeline not bound -!missing-selector! MLModelStructure::program not bound -!missing-selector! MLModelStructureNeuralNetwork::layers not bound -!missing-selector! MLModelStructureNeuralNetworkLayer::inputNames not bound -!missing-selector! MLModelStructureNeuralNetworkLayer::name not bound -!missing-selector! MLModelStructureNeuralNetworkLayer::outputNames not bound -!missing-selector! MLModelStructureNeuralNetworkLayer::type not bound -!missing-selector! MLModelStructurePipeline::subModelNames not bound -!missing-selector! MLModelStructurePipeline::subModels not bound -!missing-selector! MLModelStructureProgram::functions not bound -!missing-selector! MLModelStructureProgramArgument::bindings not bound -!missing-selector! MLModelStructureProgramBinding::name not bound -!missing-selector! MLModelStructureProgramBinding::value not bound -!missing-selector! MLModelStructureProgramBlock::inputs not bound -!missing-selector! MLModelStructureProgramBlock::operations not bound -!missing-selector! MLModelStructureProgramBlock::outputNames not bound -!missing-selector! MLModelStructureProgramFunction::block not bound -!missing-selector! MLModelStructureProgramFunction::inputs not bound -!missing-selector! MLModelStructureProgramNamedValueType::name not bound -!missing-selector! MLModelStructureProgramNamedValueType::type not bound -!missing-selector! MLModelStructureProgramOperation::blocks not bound -!missing-selector! MLModelStructureProgramOperation::inputs not bound -!missing-selector! MLModelStructureProgramOperation::operatorName not bound -!missing-selector! MLModelStructureProgramOperation::outputs not bound -!missing-selector! MLOptimizationHints::reshapeFrequency not bound -!missing-selector! MLOptimizationHints::setReshapeFrequency: not bound -!missing-type! MLComputePlan not bound -!missing-type! MLComputePlanCost not bound -!missing-type! MLComputePlanDeviceUsage not bound -!missing-type! MLModelStructure not bound -!missing-type! MLModelStructureNeuralNetwork not bound -!missing-type! MLModelStructureNeuralNetworkLayer not bound -!missing-type! MLModelStructurePipeline not bound -!missing-type! MLModelStructureProgram not bound -!missing-type! MLModelStructureProgramArgument not bound -!missing-type! MLModelStructureProgramBinding not bound -!missing-type! MLModelStructureProgramBlock not bound -!missing-type! MLModelStructureProgramFunction not bound -!missing-type! MLModelStructureProgramNamedValueType not bound -!missing-type! MLModelStructureProgramOperation not bound -!missing-type! MLModelStructureProgramValue not bound -!missing-type! MLModelStructureProgramValueType not bound -!missing-type! MLOptimizationHints not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-CoreML.todo b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-CoreML.todo deleted file mode 100644 index cd65c2081202..000000000000 --- a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-CoreML.todo +++ /dev/null @@ -1,58 +0,0 @@ -!missing-enum! MLReshapeFrequencyHint not bound -!missing-selector! +MLComputePlan::loadContentsOfURL:configuration:completionHandler: not bound -!missing-selector! +MLComputePlan::loadModelAsset:configuration:completionHandler: not bound -!missing-selector! +MLModelStructure::loadContentsOfURL:completionHandler: not bound -!missing-selector! +MLModelStructure::loadModelAsset:completionHandler: not bound -!missing-selector! MLComputePlan::computeDeviceUsageForMLProgramOperation: not bound -!missing-selector! MLComputePlan::computeDeviceUsageForNeuralNetworkLayer: not bound -!missing-selector! MLComputePlan::estimatedCostOfMLProgramOperation: not bound -!missing-selector! MLComputePlan::modelStructure not bound -!missing-selector! MLComputePlanCost::weight not bound -!missing-selector! MLComputePlanDeviceUsage::preferredComputeDevice not bound -!missing-selector! MLComputePlanDeviceUsage::supportedComputeDevices not bound -!missing-selector! MLModelConfiguration::optimizationHints not bound -!missing-selector! MLModelConfiguration::setOptimizationHints: not bound -!missing-selector! MLModelStructure::neuralNetwork not bound -!missing-selector! MLModelStructure::pipeline not bound -!missing-selector! MLModelStructure::program not bound -!missing-selector! MLModelStructureNeuralNetwork::layers not bound -!missing-selector! MLModelStructureNeuralNetworkLayer::inputNames not bound -!missing-selector! MLModelStructureNeuralNetworkLayer::name not bound -!missing-selector! MLModelStructureNeuralNetworkLayer::outputNames not bound -!missing-selector! MLModelStructureNeuralNetworkLayer::type not bound -!missing-selector! MLModelStructurePipeline::subModelNames not bound -!missing-selector! MLModelStructurePipeline::subModels not bound -!missing-selector! MLModelStructureProgram::functions not bound -!missing-selector! MLModelStructureProgramArgument::bindings not bound -!missing-selector! MLModelStructureProgramBinding::name not bound -!missing-selector! MLModelStructureProgramBinding::value not bound -!missing-selector! MLModelStructureProgramBlock::inputs not bound -!missing-selector! MLModelStructureProgramBlock::operations not bound -!missing-selector! MLModelStructureProgramBlock::outputNames not bound -!missing-selector! MLModelStructureProgramFunction::block not bound -!missing-selector! MLModelStructureProgramFunction::inputs not bound -!missing-selector! MLModelStructureProgramNamedValueType::name not bound -!missing-selector! MLModelStructureProgramNamedValueType::type not bound -!missing-selector! MLModelStructureProgramOperation::blocks not bound -!missing-selector! MLModelStructureProgramOperation::inputs not bound -!missing-selector! MLModelStructureProgramOperation::operatorName not bound -!missing-selector! MLModelStructureProgramOperation::outputs not bound -!missing-selector! MLOptimizationHints::reshapeFrequency not bound -!missing-selector! MLOptimizationHints::setReshapeFrequency: not bound -!missing-type! MLComputePlan not bound -!missing-type! MLComputePlanCost not bound -!missing-type! MLComputePlanDeviceUsage not bound -!missing-type! MLModelStructure not bound -!missing-type! MLModelStructureNeuralNetwork not bound -!missing-type! MLModelStructureNeuralNetworkLayer not bound -!missing-type! MLModelStructurePipeline not bound -!missing-type! MLModelStructureProgram not bound -!missing-type! MLModelStructureProgramArgument not bound -!missing-type! MLModelStructureProgramBinding not bound -!missing-type! MLModelStructureProgramBlock not bound -!missing-type! MLModelStructureProgramFunction not bound -!missing-type! MLModelStructureProgramNamedValueType not bound -!missing-type! MLModelStructureProgramOperation not bound -!missing-type! MLModelStructureProgramValue not bound -!missing-type! MLModelStructureProgramValueType not bound -!missing-type! MLOptimizationHints not bound diff --git a/tests/xtro-sharpie/iOS-CoreML.todo b/tests/xtro-sharpie/iOS-CoreML.todo deleted file mode 100644 index cd65c2081202..000000000000 --- a/tests/xtro-sharpie/iOS-CoreML.todo +++ /dev/null @@ -1,58 +0,0 @@ -!missing-enum! MLReshapeFrequencyHint not bound -!missing-selector! +MLComputePlan::loadContentsOfURL:configuration:completionHandler: not bound -!missing-selector! +MLComputePlan::loadModelAsset:configuration:completionHandler: not bound -!missing-selector! +MLModelStructure::loadContentsOfURL:completionHandler: not bound -!missing-selector! +MLModelStructure::loadModelAsset:completionHandler: not bound -!missing-selector! MLComputePlan::computeDeviceUsageForMLProgramOperation: not bound -!missing-selector! MLComputePlan::computeDeviceUsageForNeuralNetworkLayer: not bound -!missing-selector! MLComputePlan::estimatedCostOfMLProgramOperation: not bound -!missing-selector! MLComputePlan::modelStructure not bound -!missing-selector! MLComputePlanCost::weight not bound -!missing-selector! MLComputePlanDeviceUsage::preferredComputeDevice not bound -!missing-selector! MLComputePlanDeviceUsage::supportedComputeDevices not bound -!missing-selector! MLModelConfiguration::optimizationHints not bound -!missing-selector! MLModelConfiguration::setOptimizationHints: not bound -!missing-selector! MLModelStructure::neuralNetwork not bound -!missing-selector! MLModelStructure::pipeline not bound -!missing-selector! MLModelStructure::program not bound -!missing-selector! MLModelStructureNeuralNetwork::layers not bound -!missing-selector! MLModelStructureNeuralNetworkLayer::inputNames not bound -!missing-selector! MLModelStructureNeuralNetworkLayer::name not bound -!missing-selector! MLModelStructureNeuralNetworkLayer::outputNames not bound -!missing-selector! MLModelStructureNeuralNetworkLayer::type not bound -!missing-selector! MLModelStructurePipeline::subModelNames not bound -!missing-selector! MLModelStructurePipeline::subModels not bound -!missing-selector! MLModelStructureProgram::functions not bound -!missing-selector! MLModelStructureProgramArgument::bindings not bound -!missing-selector! MLModelStructureProgramBinding::name not bound -!missing-selector! MLModelStructureProgramBinding::value not bound -!missing-selector! MLModelStructureProgramBlock::inputs not bound -!missing-selector! MLModelStructureProgramBlock::operations not bound -!missing-selector! MLModelStructureProgramBlock::outputNames not bound -!missing-selector! MLModelStructureProgramFunction::block not bound -!missing-selector! MLModelStructureProgramFunction::inputs not bound -!missing-selector! MLModelStructureProgramNamedValueType::name not bound -!missing-selector! MLModelStructureProgramNamedValueType::type not bound -!missing-selector! MLModelStructureProgramOperation::blocks not bound -!missing-selector! MLModelStructureProgramOperation::inputs not bound -!missing-selector! MLModelStructureProgramOperation::operatorName not bound -!missing-selector! MLModelStructureProgramOperation::outputs not bound -!missing-selector! MLOptimizationHints::reshapeFrequency not bound -!missing-selector! MLOptimizationHints::setReshapeFrequency: not bound -!missing-type! MLComputePlan not bound -!missing-type! MLComputePlanCost not bound -!missing-type! MLComputePlanDeviceUsage not bound -!missing-type! MLModelStructure not bound -!missing-type! MLModelStructureNeuralNetwork not bound -!missing-type! MLModelStructureNeuralNetworkLayer not bound -!missing-type! MLModelStructurePipeline not bound -!missing-type! MLModelStructureProgram not bound -!missing-type! MLModelStructureProgramArgument not bound -!missing-type! MLModelStructureProgramBinding not bound -!missing-type! MLModelStructureProgramBlock not bound -!missing-type! MLModelStructureProgramFunction not bound -!missing-type! MLModelStructureProgramNamedValueType not bound -!missing-type! MLModelStructureProgramOperation not bound -!missing-type! MLModelStructureProgramValue not bound -!missing-type! MLModelStructureProgramValueType not bound -!missing-type! MLOptimizationHints not bound diff --git a/tests/xtro-sharpie/macOS-CoreML.todo b/tests/xtro-sharpie/macOS-CoreML.todo deleted file mode 100644 index cd65c2081202..000000000000 --- a/tests/xtro-sharpie/macOS-CoreML.todo +++ /dev/null @@ -1,58 +0,0 @@ -!missing-enum! MLReshapeFrequencyHint not bound -!missing-selector! +MLComputePlan::loadContentsOfURL:configuration:completionHandler: not bound -!missing-selector! +MLComputePlan::loadModelAsset:configuration:completionHandler: not bound -!missing-selector! +MLModelStructure::loadContentsOfURL:completionHandler: not bound -!missing-selector! +MLModelStructure::loadModelAsset:completionHandler: not bound -!missing-selector! MLComputePlan::computeDeviceUsageForMLProgramOperation: not bound -!missing-selector! MLComputePlan::computeDeviceUsageForNeuralNetworkLayer: not bound -!missing-selector! MLComputePlan::estimatedCostOfMLProgramOperation: not bound -!missing-selector! MLComputePlan::modelStructure not bound -!missing-selector! MLComputePlanCost::weight not bound -!missing-selector! MLComputePlanDeviceUsage::preferredComputeDevice not bound -!missing-selector! MLComputePlanDeviceUsage::supportedComputeDevices not bound -!missing-selector! MLModelConfiguration::optimizationHints not bound -!missing-selector! MLModelConfiguration::setOptimizationHints: not bound -!missing-selector! MLModelStructure::neuralNetwork not bound -!missing-selector! MLModelStructure::pipeline not bound -!missing-selector! MLModelStructure::program not bound -!missing-selector! MLModelStructureNeuralNetwork::layers not bound -!missing-selector! MLModelStructureNeuralNetworkLayer::inputNames not bound -!missing-selector! MLModelStructureNeuralNetworkLayer::name not bound -!missing-selector! MLModelStructureNeuralNetworkLayer::outputNames not bound -!missing-selector! MLModelStructureNeuralNetworkLayer::type not bound -!missing-selector! MLModelStructurePipeline::subModelNames not bound -!missing-selector! MLModelStructurePipeline::subModels not bound -!missing-selector! MLModelStructureProgram::functions not bound -!missing-selector! MLModelStructureProgramArgument::bindings not bound -!missing-selector! MLModelStructureProgramBinding::name not bound -!missing-selector! MLModelStructureProgramBinding::value not bound -!missing-selector! MLModelStructureProgramBlock::inputs not bound -!missing-selector! MLModelStructureProgramBlock::operations not bound -!missing-selector! MLModelStructureProgramBlock::outputNames not bound -!missing-selector! MLModelStructureProgramFunction::block not bound -!missing-selector! MLModelStructureProgramFunction::inputs not bound -!missing-selector! MLModelStructureProgramNamedValueType::name not bound -!missing-selector! MLModelStructureProgramNamedValueType::type not bound -!missing-selector! MLModelStructureProgramOperation::blocks not bound -!missing-selector! MLModelStructureProgramOperation::inputs not bound -!missing-selector! MLModelStructureProgramOperation::operatorName not bound -!missing-selector! MLModelStructureProgramOperation::outputs not bound -!missing-selector! MLOptimizationHints::reshapeFrequency not bound -!missing-selector! MLOptimizationHints::setReshapeFrequency: not bound -!missing-type! MLComputePlan not bound -!missing-type! MLComputePlanCost not bound -!missing-type! MLComputePlanDeviceUsage not bound -!missing-type! MLModelStructure not bound -!missing-type! MLModelStructureNeuralNetwork not bound -!missing-type! MLModelStructureNeuralNetworkLayer not bound -!missing-type! MLModelStructurePipeline not bound -!missing-type! MLModelStructureProgram not bound -!missing-type! MLModelStructureProgramArgument not bound -!missing-type! MLModelStructureProgramBinding not bound -!missing-type! MLModelStructureProgramBlock not bound -!missing-type! MLModelStructureProgramFunction not bound -!missing-type! MLModelStructureProgramNamedValueType not bound -!missing-type! MLModelStructureProgramOperation not bound -!missing-type! MLModelStructureProgramValue not bound -!missing-type! MLModelStructureProgramValueType not bound -!missing-type! MLOptimizationHints not bound diff --git a/tests/xtro-sharpie/tvOS-CoreML.todo b/tests/xtro-sharpie/tvOS-CoreML.todo deleted file mode 100644 index cd65c2081202..000000000000 --- a/tests/xtro-sharpie/tvOS-CoreML.todo +++ /dev/null @@ -1,58 +0,0 @@ -!missing-enum! MLReshapeFrequencyHint not bound -!missing-selector! +MLComputePlan::loadContentsOfURL:configuration:completionHandler: not bound -!missing-selector! +MLComputePlan::loadModelAsset:configuration:completionHandler: not bound -!missing-selector! +MLModelStructure::loadContentsOfURL:completionHandler: not bound -!missing-selector! +MLModelStructure::loadModelAsset:completionHandler: not bound -!missing-selector! MLComputePlan::computeDeviceUsageForMLProgramOperation: not bound -!missing-selector! MLComputePlan::computeDeviceUsageForNeuralNetworkLayer: not bound -!missing-selector! MLComputePlan::estimatedCostOfMLProgramOperation: not bound -!missing-selector! MLComputePlan::modelStructure not bound -!missing-selector! MLComputePlanCost::weight not bound -!missing-selector! MLComputePlanDeviceUsage::preferredComputeDevice not bound -!missing-selector! MLComputePlanDeviceUsage::supportedComputeDevices not bound -!missing-selector! MLModelConfiguration::optimizationHints not bound -!missing-selector! MLModelConfiguration::setOptimizationHints: not bound -!missing-selector! MLModelStructure::neuralNetwork not bound -!missing-selector! MLModelStructure::pipeline not bound -!missing-selector! MLModelStructure::program not bound -!missing-selector! MLModelStructureNeuralNetwork::layers not bound -!missing-selector! MLModelStructureNeuralNetworkLayer::inputNames not bound -!missing-selector! MLModelStructureNeuralNetworkLayer::name not bound -!missing-selector! MLModelStructureNeuralNetworkLayer::outputNames not bound -!missing-selector! MLModelStructureNeuralNetworkLayer::type not bound -!missing-selector! MLModelStructurePipeline::subModelNames not bound -!missing-selector! MLModelStructurePipeline::subModels not bound -!missing-selector! MLModelStructureProgram::functions not bound -!missing-selector! MLModelStructureProgramArgument::bindings not bound -!missing-selector! MLModelStructureProgramBinding::name not bound -!missing-selector! MLModelStructureProgramBinding::value not bound -!missing-selector! MLModelStructureProgramBlock::inputs not bound -!missing-selector! MLModelStructureProgramBlock::operations not bound -!missing-selector! MLModelStructureProgramBlock::outputNames not bound -!missing-selector! MLModelStructureProgramFunction::block not bound -!missing-selector! MLModelStructureProgramFunction::inputs not bound -!missing-selector! MLModelStructureProgramNamedValueType::name not bound -!missing-selector! MLModelStructureProgramNamedValueType::type not bound -!missing-selector! MLModelStructureProgramOperation::blocks not bound -!missing-selector! MLModelStructureProgramOperation::inputs not bound -!missing-selector! MLModelStructureProgramOperation::operatorName not bound -!missing-selector! MLModelStructureProgramOperation::outputs not bound -!missing-selector! MLOptimizationHints::reshapeFrequency not bound -!missing-selector! MLOptimizationHints::setReshapeFrequency: not bound -!missing-type! MLComputePlan not bound -!missing-type! MLComputePlanCost not bound -!missing-type! MLComputePlanDeviceUsage not bound -!missing-type! MLModelStructure not bound -!missing-type! MLModelStructureNeuralNetwork not bound -!missing-type! MLModelStructureNeuralNetworkLayer not bound -!missing-type! MLModelStructurePipeline not bound -!missing-type! MLModelStructureProgram not bound -!missing-type! MLModelStructureProgramArgument not bound -!missing-type! MLModelStructureProgramBinding not bound -!missing-type! MLModelStructureProgramBlock not bound -!missing-type! MLModelStructureProgramFunction not bound -!missing-type! MLModelStructureProgramNamedValueType not bound -!missing-type! MLModelStructureProgramOperation not bound -!missing-type! MLModelStructureProgramValue not bound -!missing-type! MLModelStructureProgramValueType not bound -!missing-type! MLOptimizationHints not bound diff --git a/tests/xtro-sharpie/watchOS-CoreML.todo b/tests/xtro-sharpie/watchOS-CoreML.todo deleted file mode 100644 index cd65c2081202..000000000000 --- a/tests/xtro-sharpie/watchOS-CoreML.todo +++ /dev/null @@ -1,58 +0,0 @@ -!missing-enum! MLReshapeFrequencyHint not bound -!missing-selector! +MLComputePlan::loadContentsOfURL:configuration:completionHandler: not bound -!missing-selector! +MLComputePlan::loadModelAsset:configuration:completionHandler: not bound -!missing-selector! +MLModelStructure::loadContentsOfURL:completionHandler: not bound -!missing-selector! +MLModelStructure::loadModelAsset:completionHandler: not bound -!missing-selector! MLComputePlan::computeDeviceUsageForMLProgramOperation: not bound -!missing-selector! MLComputePlan::computeDeviceUsageForNeuralNetworkLayer: not bound -!missing-selector! MLComputePlan::estimatedCostOfMLProgramOperation: not bound -!missing-selector! MLComputePlan::modelStructure not bound -!missing-selector! MLComputePlanCost::weight not bound -!missing-selector! MLComputePlanDeviceUsage::preferredComputeDevice not bound -!missing-selector! MLComputePlanDeviceUsage::supportedComputeDevices not bound -!missing-selector! MLModelConfiguration::optimizationHints not bound -!missing-selector! MLModelConfiguration::setOptimizationHints: not bound -!missing-selector! MLModelStructure::neuralNetwork not bound -!missing-selector! MLModelStructure::pipeline not bound -!missing-selector! MLModelStructure::program not bound -!missing-selector! MLModelStructureNeuralNetwork::layers not bound -!missing-selector! MLModelStructureNeuralNetworkLayer::inputNames not bound -!missing-selector! MLModelStructureNeuralNetworkLayer::name not bound -!missing-selector! MLModelStructureNeuralNetworkLayer::outputNames not bound -!missing-selector! MLModelStructureNeuralNetworkLayer::type not bound -!missing-selector! MLModelStructurePipeline::subModelNames not bound -!missing-selector! MLModelStructurePipeline::subModels not bound -!missing-selector! MLModelStructureProgram::functions not bound -!missing-selector! MLModelStructureProgramArgument::bindings not bound -!missing-selector! MLModelStructureProgramBinding::name not bound -!missing-selector! MLModelStructureProgramBinding::value not bound -!missing-selector! MLModelStructureProgramBlock::inputs not bound -!missing-selector! MLModelStructureProgramBlock::operations not bound -!missing-selector! MLModelStructureProgramBlock::outputNames not bound -!missing-selector! MLModelStructureProgramFunction::block not bound -!missing-selector! MLModelStructureProgramFunction::inputs not bound -!missing-selector! MLModelStructureProgramNamedValueType::name not bound -!missing-selector! MLModelStructureProgramNamedValueType::type not bound -!missing-selector! MLModelStructureProgramOperation::blocks not bound -!missing-selector! MLModelStructureProgramOperation::inputs not bound -!missing-selector! MLModelStructureProgramOperation::operatorName not bound -!missing-selector! MLModelStructureProgramOperation::outputs not bound -!missing-selector! MLOptimizationHints::reshapeFrequency not bound -!missing-selector! MLOptimizationHints::setReshapeFrequency: not bound -!missing-type! MLComputePlan not bound -!missing-type! MLComputePlanCost not bound -!missing-type! MLComputePlanDeviceUsage not bound -!missing-type! MLModelStructure not bound -!missing-type! MLModelStructureNeuralNetwork not bound -!missing-type! MLModelStructureNeuralNetworkLayer not bound -!missing-type! MLModelStructurePipeline not bound -!missing-type! MLModelStructureProgram not bound -!missing-type! MLModelStructureProgramArgument not bound -!missing-type! MLModelStructureProgramBinding not bound -!missing-type! MLModelStructureProgramBlock not bound -!missing-type! MLModelStructureProgramFunction not bound -!missing-type! MLModelStructureProgramNamedValueType not bound -!missing-type! MLModelStructureProgramOperation not bound -!missing-type! MLModelStructureProgramValue not bound -!missing-type! MLModelStructureProgramValueType not bound -!missing-type! MLOptimizationHints not bound From 5767265a06ed0719492957d8c15c2287aa5eb265 Mon Sep 17 00:00:00 2001 From: GitHub Actions Autoformatter Date: Wed, 22 May 2024 01:35:34 +0000 Subject: [PATCH 36/73] Auto-format source code --- src/coreml.cs | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/src/coreml.cs b/src/coreml.cs index 612d7094248a..2ae72c11ff0d 100644 --- a/src/coreml.cs +++ b/src/coreml.cs @@ -1319,7 +1319,7 @@ interface MLComputePlanCost { interface MLComputePlanDeviceUsage { [Export ("supportedComputeDevices", ArgumentSemantic.Copy)] - IMLComputeDeviceProtocol[] SupportedComputeDevices { get; } + IMLComputeDeviceProtocol [] SupportedComputeDevices { get; } [Export ("preferredComputeDevice", ArgumentSemantic.Strong)] IMLComputeDeviceProtocol PreferredComputeDevice { get; } @@ -1354,7 +1354,7 @@ interface MLModelStructure { interface MLModelStructureNeuralNetwork { [Export ("layers", ArgumentSemantic.Copy)] - MLModelStructureNeuralNetworkLayer[] Layers { get; } + MLModelStructureNeuralNetworkLayer [] Layers { get; } } [Watch (10, 4), TV (17, 4), Mac (14, 4), iOS (17, 4), MacCatalyst (17, 4)] @@ -1369,10 +1369,10 @@ interface MLModelStructureNeuralNetworkLayer { string Type { get; } [Export ("inputNames", ArgumentSemantic.Copy)] - string[] InputNames { get; } + string [] InputNames { get; } [Export ("outputNames", ArgumentSemantic.Copy)] - string[] OutputNames { get; } + string [] OutputNames { get; } } [Watch (10, 4), TV (17, 4), Mac (14, 4), iOS (17, 4), MacCatalyst (17, 4)] @@ -1381,10 +1381,10 @@ interface MLModelStructureNeuralNetworkLayer { interface MLModelStructurePipeline { [Export ("subModelNames", ArgumentSemantic.Copy)] - string[] SubModelNames { get; } + string [] SubModelNames { get; } [Export ("subModels", ArgumentSemantic.Copy)] - MLModelStructure[] SubModels { get; } + MLModelStructure [] SubModels { get; } } [Watch (10, 4), TV (17, 4), Mac (14, 4), iOS (17, 4), MacCatalyst (17, 4)] @@ -1401,7 +1401,7 @@ interface MLModelStructureProgram { interface MLModelStructureProgramArgument { [Export ("bindings", ArgumentSemantic.Copy)] - MLModelStructureProgramBinding[] Bindings { get; } + MLModelStructureProgramBinding [] Bindings { get; } } [Watch (10, 4), TV (17, 4), Mac (14, 4), iOS (17, 4), MacCatalyst (17, 4)] @@ -1422,13 +1422,13 @@ interface MLModelStructureProgramBinding { interface MLModelStructureProgramBlock { [Export ("inputs", ArgumentSemantic.Copy)] - MLModelStructureProgramNamedValueType[] Inputs { get; } + MLModelStructureProgramNamedValueType [] Inputs { get; } [Export ("outputNames", ArgumentSemantic.Copy)] - string[] OutputNames { get; } + string [] OutputNames { get; } [Export ("operations", ArgumentSemantic.Copy)] - MLModelStructureProgramOperation[] Operations { get; } + MLModelStructureProgramOperation [] Operations { get; } } [Watch (10, 4), TV (17, 4), Mac (14, 4), iOS (17, 4), MacCatalyst (17, 4)] @@ -1437,7 +1437,7 @@ interface MLModelStructureProgramBlock { interface MLModelStructureProgramFunction { [Export ("inputs", ArgumentSemantic.Copy)] - MLModelStructureProgramNamedValueType[] Inputs { get; } + MLModelStructureProgramNamedValueType [] Inputs { get; } [Export ("block", ArgumentSemantic.Strong)] MLModelStructureProgramBlock Block { get; } @@ -1467,10 +1467,10 @@ interface MLModelStructureProgramOperation { NSDictionary Inputs { get; } [Export ("outputs", ArgumentSemantic.Copy)] - MLModelStructureProgramNamedValueType[] Outputs { get; } + MLModelStructureProgramNamedValueType [] Outputs { get; } [Export ("blocks", ArgumentSemantic.Copy)] - MLModelStructureProgramBlock[] Blocks { get; } + MLModelStructureProgramBlock [] Blocks { get; } } [Watch (10, 4), TV (17, 4), Mac (14, 4), iOS (17, 4), MacCatalyst (17, 4)] From 1ce124b2dfb048a1da4c7589271cafddaec06633 Mon Sep 17 00:00:00 2001 From: Alex Soto Date: Tue, 21 May 2024 22:02:17 -0400 Subject: [PATCH 37/73] [FileProvider] Update bindings to Xcode 15.3 --- src/fileprovider.cs | 3 +++ .../xtro-sharpie/api-annotations-dotnet/iOS-FileProvider.todo | 3 --- .../api-annotations-dotnet/macOS-FileProvider.todo | 3 --- tests/xtro-sharpie/iOS-FileProvider.todo | 3 --- tests/xtro-sharpie/macOS-FileProvider.todo | 3 --- 5 files changed, 3 insertions(+), 12 deletions(-) delete mode 100644 tests/xtro-sharpie/api-annotations-dotnet/iOS-FileProvider.todo delete mode 100644 tests/xtro-sharpie/api-annotations-dotnet/macOS-FileProvider.todo delete mode 100644 tests/xtro-sharpie/iOS-FileProvider.todo delete mode 100644 tests/xtro-sharpie/macOS-FileProvider.todo diff --git a/src/fileprovider.cs b/src/fileprovider.cs index 854695eb3c9b..f5efec2a49fb 100644 --- a/src/fileprovider.cs +++ b/src/fileprovider.cs @@ -181,6 +181,9 @@ enum NSFileProviderError : long { VersionNoLongerAvailable = -2009, ExcludedFromSync = -2010, DomainDisabled = -2011, + ProviderDomainTemporarilyUnavailable = -2012, + ProviderDomainNotFound = -2013, + ApplicationExtensionNotFound = -2014, } [iOS (16, 0), Mac (12, 0), NoMacCatalyst] diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-FileProvider.todo b/tests/xtro-sharpie/api-annotations-dotnet/iOS-FileProvider.todo deleted file mode 100644 index f93b23c66048..000000000000 --- a/tests/xtro-sharpie/api-annotations-dotnet/iOS-FileProvider.todo +++ /dev/null @@ -1,3 +0,0 @@ -!missing-enum-value! NSFileProviderError native value NSFileProviderErrorApplicationExtensionNotFound = -2014 not bound -!missing-enum-value! NSFileProviderError native value NSFileProviderErrorProviderDomainNotFound = -2013 not bound -!missing-enum-value! NSFileProviderError native value NSFileProviderErrorProviderDomainTemporarilyUnavailable = -2012 not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-FileProvider.todo b/tests/xtro-sharpie/api-annotations-dotnet/macOS-FileProvider.todo deleted file mode 100644 index f93b23c66048..000000000000 --- a/tests/xtro-sharpie/api-annotations-dotnet/macOS-FileProvider.todo +++ /dev/null @@ -1,3 +0,0 @@ -!missing-enum-value! NSFileProviderError native value NSFileProviderErrorApplicationExtensionNotFound = -2014 not bound -!missing-enum-value! NSFileProviderError native value NSFileProviderErrorProviderDomainNotFound = -2013 not bound -!missing-enum-value! NSFileProviderError native value NSFileProviderErrorProviderDomainTemporarilyUnavailable = -2012 not bound diff --git a/tests/xtro-sharpie/iOS-FileProvider.todo b/tests/xtro-sharpie/iOS-FileProvider.todo deleted file mode 100644 index f93b23c66048..000000000000 --- a/tests/xtro-sharpie/iOS-FileProvider.todo +++ /dev/null @@ -1,3 +0,0 @@ -!missing-enum-value! NSFileProviderError native value NSFileProviderErrorApplicationExtensionNotFound = -2014 not bound -!missing-enum-value! NSFileProviderError native value NSFileProviderErrorProviderDomainNotFound = -2013 not bound -!missing-enum-value! NSFileProviderError native value NSFileProviderErrorProviderDomainTemporarilyUnavailable = -2012 not bound diff --git a/tests/xtro-sharpie/macOS-FileProvider.todo b/tests/xtro-sharpie/macOS-FileProvider.todo deleted file mode 100644 index f93b23c66048..000000000000 --- a/tests/xtro-sharpie/macOS-FileProvider.todo +++ /dev/null @@ -1,3 +0,0 @@ -!missing-enum-value! NSFileProviderError native value NSFileProviderErrorApplicationExtensionNotFound = -2014 not bound -!missing-enum-value! NSFileProviderError native value NSFileProviderErrorProviderDomainNotFound = -2013 not bound -!missing-enum-value! NSFileProviderError native value NSFileProviderErrorProviderDomainTemporarilyUnavailable = -2012 not bound From f2e7d7ec03a17a1e47aa55f3403a684f2a787569 Mon Sep 17 00:00:00 2001 From: Alex Soto Date: Tue, 21 May 2024 22:53:03 -0400 Subject: [PATCH 38/73] [Foundation] Update bindings to Xcode 15.3 --- src/foundation.cs | 17 +++++++++++++++++ .../iOS-Foundation.ignore | 4 ++++ .../api-annotations-dotnet/iOS-Foundation.todo | 3 --- .../macOS-Foundation.todo | 5 ----- .../api-annotations-dotnet/tvOS-Foundation.todo | 2 -- tests/xtro-sharpie/iOS-Foundation.ignore | 4 ++++ tests/xtro-sharpie/iOS-Foundation.todo | 3 --- tests/xtro-sharpie/macOS-Foundation.todo | 5 ----- tests/xtro-sharpie/tvOS-Foundation.todo | 2 -- tests/xtro-sharpie/watchOS-Foundation.todo | 2 -- 10 files changed, 25 insertions(+), 22 deletions(-) delete mode 100644 tests/xtro-sharpie/api-annotations-dotnet/macOS-Foundation.todo delete mode 100644 tests/xtro-sharpie/api-annotations-dotnet/tvOS-Foundation.todo delete mode 100644 tests/xtro-sharpie/macOS-Foundation.todo delete mode 100644 tests/xtro-sharpie/tvOS-Foundation.todo delete mode 100644 tests/xtro-sharpie/watchOS-Foundation.todo diff --git a/src/foundation.cs b/src/foundation.cs index 406320cf2e8e..8f3156865b6d 100644 --- a/src/foundation.cs +++ b/src/foundation.cs @@ -8452,6 +8452,14 @@ interface NSUndoManager { [Export ("canRedo")] bool CanRedo { get; } + [Watch (10, 4), TV (17, 4), Mac (14, 4), iOS (17, 4), MacCatalyst (17, 4)] + [Export ("undoCount")] + nuint UndoCount { get; } + + [Watch (10, 4), TV (17, 4), Mac (14, 4), iOS (17, 4), MacCatalyst (17, 4)] + [Export ("redoCount")] + nuint RedoCount { get; } + [Export ("isUndoing")] bool IsUndoing { get; } @@ -13988,6 +13996,10 @@ partial interface NSFilePresenter { [Export ("accommodatePresentedItemDeletionWithCompletionHandler:")] void AccommodatePresentedItemDeletion (Action completionHandler); + [NoWatch, NoTV, Mac (14, 4), iOS (17, 4), MacCatalyst (17, 4)] + [Export ("accommodatePresentedItemEvictionWithCompletionHandler:")] + void AccommodatePresentedItemEviction (Action completionHandler); + [Export ("presentedItemDidMoveToURL:")] void PresentedItemMoved (NSUrl newURL); @@ -15784,6 +15796,11 @@ interface NSTask { [Export ("currentDirectoryURL")] NSUrl CurrentDirectoryUrl { get; set; } + [NullAllowed] + [Mac (14, 4), MacCatalyst (17, 4)] + [Export ("launchRequirementData", ArgumentSemantic.Copy)] + NSData LaunchRequirementData { get; set; } + [NullAllowed] [Export ("standardInput", ArgumentSemantic.Retain)] NSObject StandardInput { get; set; } diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-Foundation.ignore b/tests/xtro-sharpie/api-annotations-dotnet/iOS-Foundation.ignore index 8b5c3518b6f1..4a4d505c279d 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/iOS-Foundation.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-Foundation.ignore @@ -2,6 +2,10 @@ !missing-protocol-conformance! NSXPCConnection should conform to NSXPCProxyCreating !missing-selector! NSXPCInterface::interfaceForSelector:argumentIndex:ofReply: not bound !missing-selector! NSXPCInterface::setInterface:forSelector:argumentIndex:ofReply: not bound +!missing-selector! NSXPCCoder::decodeXPCObjectOfType:forKey: not bound +!missing-selector! NSXPCCoder::encodeXPCObject:forKey: not bound +!missing-selector! NSXPCInterface::setXPCType:forSelector:argumentIndex:ofReply: not bound +!missing-selector! NSXPCInterface::XPCTypeForSelector:argumentIndex:ofReply: not bound ## does not exists in iOS as a type - but some API refers to it (messy) !unknown-type! NSPortMessage bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-Foundation.todo b/tests/xtro-sharpie/api-annotations-dotnet/iOS-Foundation.todo index cce243852bab..93054fc44a8f 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/iOS-Foundation.todo +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-Foundation.todo @@ -1,6 +1,3 @@ -!missing-protocol-member! NSFilePresenter::accommodatePresentedItemEvictionWithCompletionHandler: not found -!missing-selector! NSUndoManager::redoCount not bound -!missing-selector! NSUndoManager::undoCount not bound !missing-selector! NSXPCCoder::decodeXPCObjectOfType:forKey: not bound !missing-selector! NSXPCCoder::encodeXPCObject:forKey: not bound !missing-selector! NSXPCInterface::setXPCType:forSelector:argumentIndex:ofReply: not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-Foundation.todo b/tests/xtro-sharpie/api-annotations-dotnet/macOS-Foundation.todo deleted file mode 100644 index 5a3715756ab5..000000000000 --- a/tests/xtro-sharpie/api-annotations-dotnet/macOS-Foundation.todo +++ /dev/null @@ -1,5 +0,0 @@ -!missing-protocol-member! NSFilePresenter::accommodatePresentedItemEvictionWithCompletionHandler: not found -!missing-selector! NSTask::launchRequirementData not bound -!missing-selector! NSTask::setLaunchRequirementData: not bound -!missing-selector! NSUndoManager::redoCount not bound -!missing-selector! NSUndoManager::undoCount not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-Foundation.todo b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-Foundation.todo deleted file mode 100644 index 2630cbe5af9f..000000000000 --- a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-Foundation.todo +++ /dev/null @@ -1,2 +0,0 @@ -!missing-selector! NSUndoManager::redoCount not bound -!missing-selector! NSUndoManager::undoCount not bound diff --git a/tests/xtro-sharpie/iOS-Foundation.ignore b/tests/xtro-sharpie/iOS-Foundation.ignore index 8908d5f23b0c..29b002f30156 100644 --- a/tests/xtro-sharpie/iOS-Foundation.ignore +++ b/tests/xtro-sharpie/iOS-Foundation.ignore @@ -2,6 +2,10 @@ !missing-selector! NSXPCInterface::interfaceForSelector:argumentIndex:ofReply: not bound !missing-selector! NSXPCInterface::setInterface:forSelector:argumentIndex:ofReply: not bound !missing-enum! NSNetServicesError not bound +!missing-selector! NSXPCCoder::decodeXPCObjectOfType:forKey: not bound +!missing-selector! NSXPCCoder::encodeXPCObject:forKey: not bound +!missing-selector! NSXPCInterface::setXPCType:forSelector:argumentIndex:ofReply: not bound +!missing-selector! NSXPCInterface::XPCTypeForSelector:argumentIndex:ofReply: not bound # Apple started refusing applications that use those selectors (desk #63237) # The situation is a bit confusing since NSPortMessage.h is not part of iOS SDK - diff --git a/tests/xtro-sharpie/iOS-Foundation.todo b/tests/xtro-sharpie/iOS-Foundation.todo index cce243852bab..93054fc44a8f 100644 --- a/tests/xtro-sharpie/iOS-Foundation.todo +++ b/tests/xtro-sharpie/iOS-Foundation.todo @@ -1,6 +1,3 @@ -!missing-protocol-member! NSFilePresenter::accommodatePresentedItemEvictionWithCompletionHandler: not found -!missing-selector! NSUndoManager::redoCount not bound -!missing-selector! NSUndoManager::undoCount not bound !missing-selector! NSXPCCoder::decodeXPCObjectOfType:forKey: not bound !missing-selector! NSXPCCoder::encodeXPCObject:forKey: not bound !missing-selector! NSXPCInterface::setXPCType:forSelector:argumentIndex:ofReply: not bound diff --git a/tests/xtro-sharpie/macOS-Foundation.todo b/tests/xtro-sharpie/macOS-Foundation.todo deleted file mode 100644 index 5a3715756ab5..000000000000 --- a/tests/xtro-sharpie/macOS-Foundation.todo +++ /dev/null @@ -1,5 +0,0 @@ -!missing-protocol-member! NSFilePresenter::accommodatePresentedItemEvictionWithCompletionHandler: not found -!missing-selector! NSTask::launchRequirementData not bound -!missing-selector! NSTask::setLaunchRequirementData: not bound -!missing-selector! NSUndoManager::redoCount not bound -!missing-selector! NSUndoManager::undoCount not bound diff --git a/tests/xtro-sharpie/tvOS-Foundation.todo b/tests/xtro-sharpie/tvOS-Foundation.todo deleted file mode 100644 index 2630cbe5af9f..000000000000 --- a/tests/xtro-sharpie/tvOS-Foundation.todo +++ /dev/null @@ -1,2 +0,0 @@ -!missing-selector! NSUndoManager::redoCount not bound -!missing-selector! NSUndoManager::undoCount not bound diff --git a/tests/xtro-sharpie/watchOS-Foundation.todo b/tests/xtro-sharpie/watchOS-Foundation.todo deleted file mode 100644 index 2630cbe5af9f..000000000000 --- a/tests/xtro-sharpie/watchOS-Foundation.todo +++ /dev/null @@ -1,2 +0,0 @@ -!missing-selector! NSUndoManager::redoCount not bound -!missing-selector! NSUndoManager::undoCount not bound From d26db0f81a8ba99468ed5b042b9abfa7d95f03b7 Mon Sep 17 00:00:00 2001 From: Alex Soto Date: Tue, 21 May 2024 23:45:28 -0400 Subject: [PATCH 39/73] [GameKit] Update bindings to Xcode 15.3 --- src/GameKit/GameKit.cs | 1 + src/gamekit.cs | 8 ++++++++ tests/introspection/ApiSignatureTest.cs | 2 ++ .../xtro-sharpie/api-annotations-dotnet/iOS-GameKit.todo | 3 --- .../api-annotations-dotnet/macOS-GameKit.todo | 2 -- .../xtro-sharpie/api-annotations-dotnet/tvOS-GameKit.todo | 3 --- tests/xtro-sharpie/iOS-GameKit.todo | 3 --- tests/xtro-sharpie/macOS-GameKit.todo | 2 -- tests/xtro-sharpie/tvOS-GameKit.todo | 3 --- tests/xtro-sharpie/watchOS-GameKit.todo | 1 - 10 files changed, 11 insertions(+), 17 deletions(-) delete mode 100644 tests/xtro-sharpie/api-annotations-dotnet/iOS-GameKit.todo delete mode 100644 tests/xtro-sharpie/api-annotations-dotnet/macOS-GameKit.todo delete mode 100644 tests/xtro-sharpie/api-annotations-dotnet/tvOS-GameKit.todo delete mode 100644 tests/xtro-sharpie/iOS-GameKit.todo delete mode 100644 tests/xtro-sharpie/macOS-GameKit.todo delete mode 100644 tests/xtro-sharpie/tvOS-GameKit.todo diff --git a/src/GameKit/GameKit.cs b/src/GameKit/GameKit.cs index 4775b8c45bd7..592fa4fa381f 100644 --- a/src/GameKit/GameKit.cs +++ b/src/GameKit/GameKit.cs @@ -152,6 +152,7 @@ public enum GKError : long { ApiObsolete = 34, ICloudUnavailable = 35, LockdownMode = 36, + AppUnlisted = 37, FriendListDescriptionMissing = 100, FriendListRestricted = 101, FriendListDenied = 102, diff --git a/src/gamekit.cs b/src/gamekit.cs index 5d9221197229..88d7862a3351 100644 --- a/src/gamekit.cs +++ b/src/gamekit.cs @@ -2413,9 +2413,17 @@ interface GKChallenge : NSSecureCoding { [BaseType (typeof (GKChallenge))] interface GKScoreChallenge { + [Deprecated (PlatformName.iOS, 17, 4, message: "Use 'GKScoreChallenge.LeaderboardEntry' instead.")] + [Deprecated (PlatformName.MacOSX, 14, 4, message: "Use 'GKScoreChallenge.LeaderboardEntry' instead.")] + [Deprecated (PlatformName.TvOS, 17, 4, message: "Use 'GKScoreChallenge.LeaderboardEntry' instead.")] + [Deprecated (PlatformName.MacCatalyst, 17, 4, message: "Use 'GKScoreChallenge.LeaderboardEntry' instead.")] [Export ("score", ArgumentSemantic.Retain)] [NullAllowed] GKScore Score { get; } + + [TV (17, 4), Mac (14, 4), iOS (17, 4), MacCatalyst (17, 4)] + [NullAllowed, Export ("leaderboardEntry", ArgumentSemantic.Retain)] + GKLeaderboardEntry LeaderboardEntry { get; } } [NoWatch] diff --git a/tests/introspection/ApiSignatureTest.cs b/tests/introspection/ApiSignatureTest.cs index 309f43f6ebb1..ccd220a21dd7 100644 --- a/tests/introspection/ApiSignatureTest.cs +++ b/tests/introspection/ApiSignatureTest.cs @@ -972,6 +972,8 @@ protected virtual bool IgnoreAsync (MethodInfo m) return m.DeclaringType.Name == "NSFileProviderManager"; case "Synchronize": // comes from a protocol implementation return m.DeclaringType.Name == "NSTextContentManager"; + case "AccommodatePresentedItemEviction": // comes from a protocol implementation + return m.DeclaringType.Name == "NSFilePresenter" || m.DeclaringType.Name == "UIDocument"; } return false; } diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-GameKit.todo b/tests/xtro-sharpie/api-annotations-dotnet/iOS-GameKit.todo deleted file mode 100644 index fbc685833dbe..000000000000 --- a/tests/xtro-sharpie/api-annotations-dotnet/iOS-GameKit.todo +++ /dev/null @@ -1,3 +0,0 @@ -!deprecated-attribute-missing! GKScoreChallenge::score missing a [Deprecated] attribute -!missing-enum-value! GKError native value GKErrorAppUnlisted = 37 not bound -!missing-selector! GKScoreChallenge::leaderboardEntry not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-GameKit.todo b/tests/xtro-sharpie/api-annotations-dotnet/macOS-GameKit.todo deleted file mode 100644 index dfab76092956..000000000000 --- a/tests/xtro-sharpie/api-annotations-dotnet/macOS-GameKit.todo +++ /dev/null @@ -1,2 +0,0 @@ -!missing-enum-value! GKError native value GKErrorAppUnlisted = 37 not bound -!missing-selector! GKScoreChallenge::leaderboardEntry not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-GameKit.todo b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-GameKit.todo deleted file mode 100644 index fbc685833dbe..000000000000 --- a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-GameKit.todo +++ /dev/null @@ -1,3 +0,0 @@ -!deprecated-attribute-missing! GKScoreChallenge::score missing a [Deprecated] attribute -!missing-enum-value! GKError native value GKErrorAppUnlisted = 37 not bound -!missing-selector! GKScoreChallenge::leaderboardEntry not bound diff --git a/tests/xtro-sharpie/iOS-GameKit.todo b/tests/xtro-sharpie/iOS-GameKit.todo deleted file mode 100644 index fbc685833dbe..000000000000 --- a/tests/xtro-sharpie/iOS-GameKit.todo +++ /dev/null @@ -1,3 +0,0 @@ -!deprecated-attribute-missing! GKScoreChallenge::score missing a [Deprecated] attribute -!missing-enum-value! GKError native value GKErrorAppUnlisted = 37 not bound -!missing-selector! GKScoreChallenge::leaderboardEntry not bound diff --git a/tests/xtro-sharpie/macOS-GameKit.todo b/tests/xtro-sharpie/macOS-GameKit.todo deleted file mode 100644 index dfab76092956..000000000000 --- a/tests/xtro-sharpie/macOS-GameKit.todo +++ /dev/null @@ -1,2 +0,0 @@ -!missing-enum-value! GKError native value GKErrorAppUnlisted = 37 not bound -!missing-selector! GKScoreChallenge::leaderboardEntry not bound diff --git a/tests/xtro-sharpie/tvOS-GameKit.todo b/tests/xtro-sharpie/tvOS-GameKit.todo deleted file mode 100644 index fbc685833dbe..000000000000 --- a/tests/xtro-sharpie/tvOS-GameKit.todo +++ /dev/null @@ -1,3 +0,0 @@ -!deprecated-attribute-missing! GKScoreChallenge::score missing a [Deprecated] attribute -!missing-enum-value! GKError native value GKErrorAppUnlisted = 37 not bound -!missing-selector! GKScoreChallenge::leaderboardEntry not bound diff --git a/tests/xtro-sharpie/watchOS-GameKit.todo b/tests/xtro-sharpie/watchOS-GameKit.todo index aa29966d0b46..ab5f2854b2a8 100644 --- a/tests/xtro-sharpie/watchOS-GameKit.todo +++ b/tests/xtro-sharpie/watchOS-GameKit.todo @@ -1,3 +1,2 @@ !unknown-native-enum! GKMatchSendDataMode bound !unknown-native-enum! GKVoiceChatPlayerState bound -!missing-enum-value! GKError native value GKErrorAppUnlisted = 37 not bound From 92e8d90452500e447450443c109c445601799572 Mon Sep 17 00:00:00 2001 From: Alex Soto Date: Wed, 22 May 2024 00:10:27 -0400 Subject: [PATCH 40/73] [HomeKit] Update bindings to Xcode 15.3 --- src/HomeKit/HMEnums.cs | 1 + tests/xtro-sharpie/api-annotations-dotnet/iOS-HomeKit.todo | 1 - tests/xtro-sharpie/api-annotations-dotnet/tvOS-HomeKit.todo | 1 - tests/xtro-sharpie/iOS-HomeKit.todo | 1 - tests/xtro-sharpie/tvOS-HomeKit.todo | 1 - tests/xtro-sharpie/watchOS-HomeKit.todo | 1 - 6 files changed, 1 insertion(+), 5 deletions(-) delete mode 100644 tests/xtro-sharpie/api-annotations-dotnet/iOS-HomeKit.todo delete mode 100644 tests/xtro-sharpie/api-annotations-dotnet/tvOS-HomeKit.todo delete mode 100644 tests/xtro-sharpie/iOS-HomeKit.todo delete mode 100644 tests/xtro-sharpie/tvOS-HomeKit.todo delete mode 100644 tests/xtro-sharpie/watchOS-HomeKit.todo diff --git a/src/HomeKit/HMEnums.cs b/src/HomeKit/HMEnums.cs index f784bc688873..793b71b44c62 100644 --- a/src/HomeKit/HMEnums.cs +++ b/src/HomeKit/HMEnums.cs @@ -116,6 +116,7 @@ public enum HMError : long { FailedToJoinNetwork = 102, // iOS 15 AccessoryIsSuspended = 103, + PartialCommunicationFailure = 104, } diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-HomeKit.todo b/tests/xtro-sharpie/api-annotations-dotnet/iOS-HomeKit.todo deleted file mode 100644 index 4e339b4433d5..000000000000 --- a/tests/xtro-sharpie/api-annotations-dotnet/iOS-HomeKit.todo +++ /dev/null @@ -1 +0,0 @@ -!missing-enum-value! HMError native value HMErrorCodePartialCommunicationFailure = 104 not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-HomeKit.todo b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-HomeKit.todo deleted file mode 100644 index 4e339b4433d5..000000000000 --- a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-HomeKit.todo +++ /dev/null @@ -1 +0,0 @@ -!missing-enum-value! HMError native value HMErrorCodePartialCommunicationFailure = 104 not bound diff --git a/tests/xtro-sharpie/iOS-HomeKit.todo b/tests/xtro-sharpie/iOS-HomeKit.todo deleted file mode 100644 index 4e339b4433d5..000000000000 --- a/tests/xtro-sharpie/iOS-HomeKit.todo +++ /dev/null @@ -1 +0,0 @@ -!missing-enum-value! HMError native value HMErrorCodePartialCommunicationFailure = 104 not bound diff --git a/tests/xtro-sharpie/tvOS-HomeKit.todo b/tests/xtro-sharpie/tvOS-HomeKit.todo deleted file mode 100644 index 4e339b4433d5..000000000000 --- a/tests/xtro-sharpie/tvOS-HomeKit.todo +++ /dev/null @@ -1 +0,0 @@ -!missing-enum-value! HMError native value HMErrorCodePartialCommunicationFailure = 104 not bound diff --git a/tests/xtro-sharpie/watchOS-HomeKit.todo b/tests/xtro-sharpie/watchOS-HomeKit.todo deleted file mode 100644 index 4e339b4433d5..000000000000 --- a/tests/xtro-sharpie/watchOS-HomeKit.todo +++ /dev/null @@ -1 +0,0 @@ -!missing-enum-value! HMError native value HMErrorCodePartialCommunicationFailure = 104 not bound From be6f9618a55f573434c8284d2a680787a12e2ab6 Mon Sep 17 00:00:00 2001 From: Alex Soto Date: Wed, 22 May 2024 01:34:35 -0400 Subject: [PATCH 41/73] [ImageIO] Update bindings to Xcode 15.3 --- src/ImageIO/CGImageSource.cs | 35 +++++++++++++++++++ src/imageio.cs | 6 ++++ .../api-annotations-dotnet/iOS-ImageIO.todo | 3 -- .../api-annotations-dotnet/macOS-ImageIO.todo | 3 -- .../api-annotations-dotnet/tvOS-ImageIO.todo | 3 -- tests/xtro-sharpie/iOS-ImageIO.todo | 3 -- tests/xtro-sharpie/macOS-ImageIO.todo | 3 -- tests/xtro-sharpie/tvOS-ImageIO.todo | 3 -- tests/xtro-sharpie/watchOS-ImageIO.todo | 3 -- 9 files changed, 41 insertions(+), 21 deletions(-) delete mode 100644 tests/xtro-sharpie/api-annotations-dotnet/iOS-ImageIO.todo delete mode 100644 tests/xtro-sharpie/api-annotations-dotnet/macOS-ImageIO.todo delete mode 100644 tests/xtro-sharpie/api-annotations-dotnet/tvOS-ImageIO.todo delete mode 100644 tests/xtro-sharpie/iOS-ImageIO.todo delete mode 100644 tests/xtro-sharpie/macOS-ImageIO.todo delete mode 100644 tests/xtro-sharpie/tvOS-ImageIO.todo delete mode 100644 tests/xtro-sharpie/watchOS-ImageIO.todo diff --git a/src/ImageIO/CGImageSource.cs b/src/ImageIO/CGImageSource.cs index fd2955c7c403..a2c8c37ca986 100644 --- a/src/ImageIO/CGImageSource.cs +++ b/src/ImageIO/CGImageSource.cs @@ -41,6 +41,8 @@ using NativeHandle = System.IntPtr; #endif +using OSStatus = System.Int32; + namespace ImageIO { #if !COREBUILD @@ -415,5 +417,38 @@ public nuint GetPrimaryImageIndex () return CGImageSourceGetPrimaryImageIndex (Handle); } #endif + +#if !COREBUILD +#if NET + [SupportedOSPlatform ("macos14.4")] + [SupportedOSPlatform ("ios17.4")] + [SupportedOSPlatform ("tvos17.4")] + [SupportedOSPlatform ("maccatalyst17.4")] +#else + [Watch (10, 4), TV (17, 4), Mac (14, 4), iOS (17, 4)] +#endif + [DllImport (Constants.ImageIOLibrary)] + static extern OSStatus CGImageSourceSetAllowableTypes (IntPtr allowableTypes); + +#if NET + [SupportedOSPlatform ("macos14.4")] + [SupportedOSPlatform ("ios17.4")] + [SupportedOSPlatform ("tvos17.4")] + [SupportedOSPlatform ("maccatalyst17.4")] +#else + [Watch (10, 4), TV (17, 4), Mac (14, 4), iOS (17, 4)] +#endif + public static void SetAllowableTypes (string [] allowableTypes) + { + if (allowableTypes is null || allowableTypes.Length == 0) + throw new ArgumentException ($"{nameof (allowableTypes)} cannot be null or empty."); + + using (var array = NSArray.FromStrings (allowableTypes)) { + var errorCode = CGImageSourceSetAllowableTypes (array.Handle); + if (errorCode != 0) + throw new InvalidOperationException ($"Unable to set allowable types, error code: 0x{errorCode:x}"); + } + } +#endif } } diff --git a/src/imageio.cs b/src/imageio.cs index 4154d2533483..89208b353106 100644 --- a/src/imageio.cs +++ b/src/imageio.cs @@ -679,6 +679,12 @@ interface CGImageProperties { NSString TIFFXResolution { get; } [Field ("kCGImagePropertyTIFFYResolution")] NSString TIFFYResolution { get; } + [Mac (14, 4), iOS (17, 4), MacCatalyst (17, 4)] + [Field ("kCGImagePropertyTIFFXPosition")] + NSString TIFFXPosition { get; } + [Mac (14, 4), iOS (17, 4), MacCatalyst (17, 4)] + [Field ("kCGImagePropertyTIFFYPosition")] + NSString TIFFYPosition { get; } [Field ("kCGImagePropertyTIFFResolutionUnit")] NSString TIFFResolutionUnit { get; } [Field ("kCGImagePropertyTIFFSoftware")] diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-ImageIO.todo b/tests/xtro-sharpie/api-annotations-dotnet/iOS-ImageIO.todo deleted file mode 100644 index 4c217d8b7e78..000000000000 --- a/tests/xtro-sharpie/api-annotations-dotnet/iOS-ImageIO.todo +++ /dev/null @@ -1,3 +0,0 @@ -!missing-field! kCGImagePropertyTIFFXPosition not bound -!missing-field! kCGImagePropertyTIFFYPosition not bound -!missing-pinvoke! CGImageSourceSetAllowableTypes is not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-ImageIO.todo b/tests/xtro-sharpie/api-annotations-dotnet/macOS-ImageIO.todo deleted file mode 100644 index 4c217d8b7e78..000000000000 --- a/tests/xtro-sharpie/api-annotations-dotnet/macOS-ImageIO.todo +++ /dev/null @@ -1,3 +0,0 @@ -!missing-field! kCGImagePropertyTIFFXPosition not bound -!missing-field! kCGImagePropertyTIFFYPosition not bound -!missing-pinvoke! CGImageSourceSetAllowableTypes is not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-ImageIO.todo b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-ImageIO.todo deleted file mode 100644 index 4c217d8b7e78..000000000000 --- a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-ImageIO.todo +++ /dev/null @@ -1,3 +0,0 @@ -!missing-field! kCGImagePropertyTIFFXPosition not bound -!missing-field! kCGImagePropertyTIFFYPosition not bound -!missing-pinvoke! CGImageSourceSetAllowableTypes is not bound diff --git a/tests/xtro-sharpie/iOS-ImageIO.todo b/tests/xtro-sharpie/iOS-ImageIO.todo deleted file mode 100644 index 4c217d8b7e78..000000000000 --- a/tests/xtro-sharpie/iOS-ImageIO.todo +++ /dev/null @@ -1,3 +0,0 @@ -!missing-field! kCGImagePropertyTIFFXPosition not bound -!missing-field! kCGImagePropertyTIFFYPosition not bound -!missing-pinvoke! CGImageSourceSetAllowableTypes is not bound diff --git a/tests/xtro-sharpie/macOS-ImageIO.todo b/tests/xtro-sharpie/macOS-ImageIO.todo deleted file mode 100644 index 4c217d8b7e78..000000000000 --- a/tests/xtro-sharpie/macOS-ImageIO.todo +++ /dev/null @@ -1,3 +0,0 @@ -!missing-field! kCGImagePropertyTIFFXPosition not bound -!missing-field! kCGImagePropertyTIFFYPosition not bound -!missing-pinvoke! CGImageSourceSetAllowableTypes is not bound diff --git a/tests/xtro-sharpie/tvOS-ImageIO.todo b/tests/xtro-sharpie/tvOS-ImageIO.todo deleted file mode 100644 index 4c217d8b7e78..000000000000 --- a/tests/xtro-sharpie/tvOS-ImageIO.todo +++ /dev/null @@ -1,3 +0,0 @@ -!missing-field! kCGImagePropertyTIFFXPosition not bound -!missing-field! kCGImagePropertyTIFFYPosition not bound -!missing-pinvoke! CGImageSourceSetAllowableTypes is not bound diff --git a/tests/xtro-sharpie/watchOS-ImageIO.todo b/tests/xtro-sharpie/watchOS-ImageIO.todo deleted file mode 100644 index 4c217d8b7e78..000000000000 --- a/tests/xtro-sharpie/watchOS-ImageIO.todo +++ /dev/null @@ -1,3 +0,0 @@ -!missing-field! kCGImagePropertyTIFFXPosition not bound -!missing-field! kCGImagePropertyTIFFYPosition not bound -!missing-pinvoke! CGImageSourceSetAllowableTypes is not bound From da15846b34c2289e7952a4622fde37dbf02e0c64 Mon Sep 17 00:00:00 2001 From: Alex Soto Date: Wed, 22 May 2024 02:00:14 -0400 Subject: [PATCH 42/73] [Intents] Update bindings to Xcode 15.3 --- src/intents.cs | 10 ++++++++++ .../api-annotations-dotnet/iOS-Intents.todo | 2 -- tests/xtro-sharpie/iOS-Intents.todo | 2 -- tests/xtro-sharpie/watchOS-Intents.todo | 2 -- 4 files changed, 10 insertions(+), 6 deletions(-) delete mode 100644 tests/xtro-sharpie/api-annotations-dotnet/iOS-Intents.todo delete mode 100644 tests/xtro-sharpie/iOS-Intents.todo delete mode 100644 tests/xtro-sharpie/watchOS-Intents.todo diff --git a/src/intents.cs b/src/intents.cs index 8ce44a54cf41..e3470795a9dc 100644 --- a/src/intents.cs +++ b/src/intents.cs @@ -2619,11 +2619,21 @@ enum INCarChargingConnectorType { [Field ("INCarChargingConnectorTypeGBTDC")] Gbtdc, + [Deprecated (PlatformName.iOS, 17, 4, message: "Use 'INCarChargingConnectorType.NacsDc' instead.")] + [Deprecated (PlatformName.WatchOS, 10, 4, message: "Use 'INCarChargingConnectorType.NacsDc' instead.")] [Field ("INCarChargingConnectorTypeTesla")] Tesla, [Field ("INCarChargingConnectorTypeMennekes")] Mennekes, + + [Watch (10, 4), iOS (17, 4), MacCatalyst (17, 4)] + [Field ("INCarChargingConnectorTypeNACSDC")] + NacsDC, + + [Watch (10, 4), iOS (17, 4), MacCatalyst (17, 4)] + [Field ("INCarChargingConnectorTypeNACSAC")] + NacsAC, } // End of enums diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-Intents.todo b/tests/xtro-sharpie/api-annotations-dotnet/iOS-Intents.todo deleted file mode 100644 index 4b974589bf5e..000000000000 --- a/tests/xtro-sharpie/api-annotations-dotnet/iOS-Intents.todo +++ /dev/null @@ -1,2 +0,0 @@ -!missing-field! INCarChargingConnectorTypeNACSAC not bound -!missing-field! INCarChargingConnectorTypeNACSDC not bound diff --git a/tests/xtro-sharpie/iOS-Intents.todo b/tests/xtro-sharpie/iOS-Intents.todo deleted file mode 100644 index 4b974589bf5e..000000000000 --- a/tests/xtro-sharpie/iOS-Intents.todo +++ /dev/null @@ -1,2 +0,0 @@ -!missing-field! INCarChargingConnectorTypeNACSAC not bound -!missing-field! INCarChargingConnectorTypeNACSDC not bound diff --git a/tests/xtro-sharpie/watchOS-Intents.todo b/tests/xtro-sharpie/watchOS-Intents.todo deleted file mode 100644 index 4b974589bf5e..000000000000 --- a/tests/xtro-sharpie/watchOS-Intents.todo +++ /dev/null @@ -1,2 +0,0 @@ -!missing-field! INCarChargingConnectorTypeNACSAC not bound -!missing-field! INCarChargingConnectorTypeNACSDC not bound From e744d322befca8ef126a0b893ebf92873f8a6327 Mon Sep 17 00:00:00 2001 From: Alex Soto Date: Wed, 22 May 2024 13:33:37 -0400 Subject: [PATCH 43/73] Update cecil tests --- tests/cecil-tests/ApiAvailabilityTest.cs | 23 +++--- .../Documentation.KnownFailures.txt | 74 +++++++++++++++++++ tests/cecil-tests/Documentation.cs | 2 +- 3 files changed, 87 insertions(+), 12 deletions(-) diff --git a/tests/cecil-tests/ApiAvailabilityTest.cs b/tests/cecil-tests/ApiAvailabilityTest.cs index 1cf4a00c4cee..5926c5ce7421 100644 --- a/tests/cecil-tests/ApiAvailabilityTest.cs +++ b/tests/cecil-tests/ApiAvailabilityTest.cs @@ -110,22 +110,22 @@ public void FindMissingObsoleteAttributes () "CoreGraphics.CGColorSpace.CreateIccProfile(Foundation.NSData)", "CoreGraphics.CGColorSpace.GetIccProfile()", "CoreGraphics.CGContext.SelectFont(System.String, System.Runtime.InteropServices.NFloat, CoreGraphics.CGTextEncoding)", - "CoreGraphics.CGContext.ShowGlyphs(System.UInt16[])", "CoreGraphics.CGContext.ShowGlyphs(System.UInt16[], System.Int32)", - "CoreGraphics.CGContext.ShowGlyphsAtPoint(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat, System.UInt16[])", + "CoreGraphics.CGContext.ShowGlyphs(System.UInt16[])", "CoreGraphics.CGContext.ShowGlyphsAtPoint(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat, System.UInt16[], System.Int32)", + "CoreGraphics.CGContext.ShowGlyphsAtPoint(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat, System.UInt16[])", "CoreGraphics.CGContext.ShowGlyphsWithAdvances(System.UInt16[], CoreGraphics.CGSize[], System.Int32)", - "CoreGraphics.CGContext.ShowText(System.Byte[])", "CoreGraphics.CGContext.ShowText(System.Byte[], System.Int32)", - "CoreGraphics.CGContext.ShowText(System.String)", + "CoreGraphics.CGContext.ShowText(System.Byte[])", "CoreGraphics.CGContext.ShowText(System.String, System.Int32)", - "CoreGraphics.CGContext.ShowTextAtPoint(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat, System.String)", + "CoreGraphics.CGContext.ShowText(System.String)", "CoreGraphics.CGContext.ShowTextAtPoint(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat, System.String, System.Int32)", + "CoreGraphics.CGContext.ShowTextAtPoint(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat, System.String)", "CoreGraphics.CGImage PassKit.PKShareablePassMetadata::PassThumbnailImage()", "CoreLocation.CLAuthorizationStatus CoreLocation.CLAuthorizationStatus::Authorized", "CoreLocation.CLAuthorizationStatus CoreLocation.CLAuthorizationStatus::AuthorizedWhenInUse", - "CoreLocation.CLLocationManagerDelegate.UpdatedLocation(CoreLocation.CLLocationManager, CoreLocation.CLLocation, CoreLocation.CLLocation)", "CoreLocation.CLLocationManagerDelegate_Extensions.UpdatedLocation(CoreLocation.ICLLocationManagerDelegate, CoreLocation.CLLocationManager, CoreLocation.CLLocation, CoreLocation.CLLocation)", + "CoreLocation.CLLocationManagerDelegate.UpdatedLocation(CoreLocation.CLLocationManager, CoreLocation.CLLocation, CoreLocation.CLLocation)", "CoreMedia.CMTime AVFoundation.AVCaptureConnection::VideoMaxFrameDuration()", "CoreMedia.CMTime AVFoundation.AVCaptureConnection::VideoMinFrameDuration()", "CoreMedia.CMTime AVFoundation.AVCaptureVideoDataOutput::MinFrameDuration()", @@ -170,13 +170,14 @@ public void FindMissingObsoleteAttributes () "HealthKit.HKUnit HealthKit.HKUnit::Calorie()", "HealthKit.HKWorkoutActivityType HealthKit.HKWorkoutActivityType::DanceInspiredTraining", "HealthKit.HKWorkoutActivityType HealthKit.HKWorkoutActivityType::MixedMetabolicCardioTraining", - "HealthKit.HKWorkoutEvent.Create(HealthKit.HKWorkoutEventType, Foundation.NSDate)", "HealthKit.HKWorkoutEvent.Create(HealthKit.HKWorkoutEventType, Foundation.NSDate, Foundation.NSDictionary)", "HealthKit.HKWorkoutEvent.Create(HealthKit.HKWorkoutEventType, Foundation.NSDate, HealthKit.HKMetadata)", + "HealthKit.HKWorkoutEvent.Create(HealthKit.HKWorkoutEventType, Foundation.NSDate)", "HomeKit.HMEventTrigger.CreatePredicateForEvaluatingTriggerOccurringAfterSignificantEvent(HomeKit.HMSignificantEvent, Foundation.NSDateComponents)", "HomeKit.HMEventTrigger.CreatePredicateForEvaluatingTriggerOccurringBeforeSignificantEvent(HomeKit.HMSignificantEvent, Foundation.NSDateComponents)", "Intents.INCallRecord..ctor(System.String, Foundation.NSDate, Intents.INPerson, Intents.INCallRecordType, Intents.INCallCapability, System.Nullable`1, System.Nullable`1, System.Nullable`1)", "Intents.INCallRecordType Intents.INStartCallIntent::RecordTypeForRedialing()", + "Intents.INCarChargingConnectorType Intents.INCarChargingConnectorType::Tesla", "Intents.INSetClimateSettingsInCarIntent..ctor(System.Nullable`1, System.Nullable`1, System.Nullable`1, System.Nullable`1, Intents.INCarAirCirculationMode, Foundation.NSNumber, Foundation.NSNumber, Intents.INRelativeSetting, Foundation.NSMeasurement`1, Intents.INRelativeSetting, Intents.INCarSeat)", "Intents.INSetDefrosterSettingsInCarIntent..ctor(System.Nullable`1, Intents.INCarDefroster)", "Intents.INSetProfileInCarIntent..ctor(Foundation.NSNumber, System.String, Foundation.NSNumber)", @@ -260,14 +261,14 @@ public void FindMissingObsoleteAttributes () "UIKit.UIStringDrawing.DrawString(System.String, CoreGraphics.CGPoint, System.Runtime.InteropServices.NFloat, UIKit.UIFont, System.Runtime.InteropServices.NFloat, UIKit.UILineBreakMode, UIKit.UIBaselineAdjustment)", "UIKit.UIStringDrawing.DrawString(System.String, CoreGraphics.CGPoint, System.Runtime.InteropServices.NFloat, UIKit.UIFont, UIKit.UILineBreakMode)", "UIKit.UIStringDrawing.DrawString(System.String, CoreGraphics.CGPoint, UIKit.UIFont)", - "UIKit.UIStringDrawing.DrawString(System.String, CoreGraphics.CGRect, UIKit.UIFont)", - "UIKit.UIStringDrawing.DrawString(System.String, CoreGraphics.CGRect, UIKit.UIFont, UIKit.UILineBreakMode)", "UIKit.UIStringDrawing.DrawString(System.String, CoreGraphics.CGRect, UIKit.UIFont, UIKit.UILineBreakMode, UIKit.UITextAlignment)", - "UIKit.UIStringDrawing.StringSize(System.String, UIKit.UIFont)", - "UIKit.UIStringDrawing.StringSize(System.String, UIKit.UIFont, CoreGraphics.CGSize)", + "UIKit.UIStringDrawing.DrawString(System.String, CoreGraphics.CGRect, UIKit.UIFont, UIKit.UILineBreakMode)", + "UIKit.UIStringDrawing.DrawString(System.String, CoreGraphics.CGRect, UIKit.UIFont)", "UIKit.UIStringDrawing.StringSize(System.String, UIKit.UIFont, CoreGraphics.CGSize, UIKit.UILineBreakMode)", + "UIKit.UIStringDrawing.StringSize(System.String, UIKit.UIFont, CoreGraphics.CGSize)", "UIKit.UIStringDrawing.StringSize(System.String, UIKit.UIFont, System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat&, System.Runtime.InteropServices.NFloat, UIKit.UILineBreakMode)", "UIKit.UIStringDrawing.StringSize(System.String, UIKit.UIFont, System.Runtime.InteropServices.NFloat, UIKit.UILineBreakMode)", + "UIKit.UIStringDrawing.StringSize(System.String, UIKit.UIFont)", }; HashSet knownConsistencyIssues = new HashSet { }; diff --git a/tests/cecil-tests/Documentation.KnownFailures.txt b/tests/cecil-tests/Documentation.KnownFailures.txt index 18c7ebefa8b1..eb6a714d80fa 100644 --- a/tests/cecil-tests/Documentation.KnownFailures.txt +++ b/tests/cecil-tests/Documentation.KnownFailures.txt @@ -7551,6 +7551,8 @@ F:CoreML.MLMultiArrayDataType.Int32 F:CoreML.MLMultiArrayShapeConstraintType.Enumerated F:CoreML.MLMultiArrayShapeConstraintType.Range F:CoreML.MLMultiArrayShapeConstraintType.Unspecified +F:CoreML.MLReshapeFrequencyHint.Frequent +F:CoreML.MLReshapeFrequencyHint.Infrequent F:CoreML.MLTaskState.Cancelling F:CoreML.MLTaskState.Completed F:CoreML.MLTaskState.Failed @@ -8966,6 +8968,7 @@ F:FileProvider.NSFileProviderDomainRemovalMode.PreserveDownloadedUserData F:FileProvider.NSFileProviderDomainRemovalMode.RemoveAll F:FileProvider.NSFileProviderDomainTestingModes.AlwaysEnabled F:FileProvider.NSFileProviderDomainTestingModes.Interactive +F:FileProvider.NSFileProviderError.ApplicationExtensionNotFound F:FileProvider.NSFileProviderError.CannotSynchronize F:FileProvider.NSFileProviderError.DirectoryNotEmpty F:FileProvider.NSFileProviderError.DomainDisabled @@ -8979,6 +8982,8 @@ F:FileProvider.NSFileProviderError.NoSuchItem F:FileProvider.NSFileProviderError.NotAuthenticated F:FileProvider.NSFileProviderError.OlderExtensionVersionRunning F:FileProvider.NSFileProviderError.PageExpired +F:FileProvider.NSFileProviderError.ProviderDomainNotFound +F:FileProvider.NSFileProviderError.ProviderDomainTemporarilyUnavailable F:FileProvider.NSFileProviderError.ProviderNotFound F:FileProvider.NSFileProviderError.ProviderTranslocated F:FileProvider.NSFileProviderError.ServerUnreachable @@ -10238,6 +10243,7 @@ F:GameKit.GKConnectionState.Connected F:GameKit.GKConnectionState.NotConnected F:GameKit.GKError.ApiNotAvailable F:GameKit.GKError.ApiObsolete +F:GameKit.GKError.AppUnlisted F:GameKit.GKError.AuthenticationInProgress F:GameKit.GKError.Cancelled F:GameKit.GKError.ChallengeInvalid @@ -11436,6 +11442,7 @@ F:HomeKit.HMError.OperationInProgress F:HomeKit.HMError.OperationNotSupported F:HomeKit.HMError.OperationTimedOut F:HomeKit.HMError.OwnershipFailure +F:HomeKit.HMError.PartialCommunicationFailure F:HomeKit.HMError.ReadOnlyCharacteristic F:HomeKit.HMError.ReadWriteFailure F:HomeKit.HMError.ReadWritePartialSuccess @@ -11985,6 +11992,8 @@ F:Intents.INCarChargingConnectorType.Gbtac F:Intents.INCarChargingConnectorType.Gbtdc F:Intents.INCarChargingConnectorType.J1772 F:Intents.INCarChargingConnectorType.Mennekes +F:Intents.INCarChargingConnectorType.NacsAC +F:Intents.INCarChargingConnectorType.NacsDC F:Intents.INCarChargingConnectorType.None F:Intents.INCarChargingConnectorType.Tesla F:Intents.INCarDefroster.All @@ -22067,6 +22076,7 @@ M:AppKit.NSDirectionalEdgeInsets.op_Inequality(AppKit.NSDirectionalEdgeInsets,Ap M:AppKit.NSDockTilePlugIn_Extensions.DockMenu(AppKit.INSDockTilePlugIn) M:AppKit.NSDockTilePlugIn.DockMenu M:AppKit.NSDockTilePlugIn.SetDockTile(AppKit.NSDockTile) +M:AppKit.NSDocument.AccommodatePresentedItemEviction(System.Action{Foundation.NSError}) M:AppKit.NSDocument.AccommodatePresentedSubitemDeletion(Foundation.NSUrl,System.Action{Foundation.NSError}) M:AppKit.NSDocument.DuplicateDocument(AppKit.NSDocument.DuplicateCallback) M:AppKit.NSDocument.ObjectDidBeginEditing(AppKit.INSEditor) @@ -31191,6 +31201,11 @@ M:CoreML.IMLWritable.Write(Foundation.NSUrl,Foundation.NSError@) M:CoreML.MLArrayBatchProvider.#ctor(CoreML.IMLFeatureProvider[]) M:CoreML.MLArrayBatchProvider.#ctor(Foundation.NSDictionary{Foundation.NSString,Foundation.NSArray},Foundation.NSError@) M:CoreML.MLArrayBatchProvider.GetFeatures(System.IntPtr) +M:CoreML.MLComputePlan.ComputeDeviceUsage(CoreML.MLModelStructureNeuralNetworkLayer) +M:CoreML.MLComputePlan.ComputeDeviceUsage(CoreML.MLModelStructureProgramOperation) +M:CoreML.MLComputePlan.GetEstimatedCost(CoreML.MLModelStructureProgramOperation) +M:CoreML.MLComputePlan.Load(CoreML.MLModelAsset,CoreML.MLModelConfiguration,System.Action{CoreML.MLComputePlan,Foundation.NSError}) +M:CoreML.MLComputePlan.Load(Foundation.NSUrl,CoreML.MLModelConfiguration,System.Action{CoreML.MLComputePlan,Foundation.NSError}) M:CoreML.MLCustomLayer_Extensions.Encode(CoreML.IMLCustomLayer,Metal.IMTLCommandBuffer,Metal.IMTLTexture[],Metal.IMTLTexture[],Foundation.NSError@) M:CoreML.MLCustomModel_Extensions.GetPredictions(CoreML.IMLCustomModel,CoreML.IMLBatchProvider,CoreML.MLPredictionOptions,Foundation.NSError@) M:CoreML.MLCustomModel.#ctor(CoreML.MLModelDescription,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},Foundation.NSError@) @@ -31271,6 +31286,8 @@ M:CoreML.MLModelConfiguration.EncodeTo(Foundation.NSCoder) M:CoreML.MLModelDescription.EncodeTo(Foundation.NSCoder) M:CoreML.MLModelMetadata.#ctor M:CoreML.MLModelMetadata.#ctor(Foundation.NSDictionary) +M:CoreML.MLModelStructure.Load(CoreML.MLModelAsset,System.Action{CoreML.MLModelStructure,Foundation.NSError}) +M:CoreML.MLModelStructure.Load(Foundation.NSUrl,System.Action{CoreML.MLModelStructure,Foundation.NSError}) M:CoreML.MLMultiArray.#ctor(CoreVideo.CVPixelBuffer,Foundation.NSNumber[]) M:CoreML.MLMultiArray.#ctor(Foundation.NSNumber[],CoreML.MLMultiArrayDataType,Foundation.NSError@) M:CoreML.MLMultiArray.#ctor(System.IntPtr,Foundation.NSNumber[],CoreML.MLMultiArrayDataType,Foundation.NSNumber[],System.Action{System.IntPtr},Foundation.NSError@) @@ -31293,6 +31310,8 @@ M:CoreML.MLMultiArrayDataPointer.#ctor(System.IntPtr,System.IntPtr) M:CoreML.MLMultiArrayMutableDataPointer.#ctor(System.IntPtr,System.IntPtr,Foundation.NSArray{Foundation.NSNumber}) M:CoreML.MLMultiArrayShapeConstraint.EncodeTo(Foundation.NSCoder) M:CoreML.MLNumericConstraint.EncodeTo(Foundation.NSCoder) +M:CoreML.MLOptimizationHints.Copy(Foundation.NSZone) +M:CoreML.MLOptimizationHints.EncodeTo(Foundation.NSCoder) M:CoreML.MLParameterDescription.EncodeTo(Foundation.NSCoder) M:CoreML.MLParameterKey.GetScopedParameter(System.String) M:CoreML.MLSequence.Create(Foundation.NSNumber[]) @@ -32922,6 +32941,7 @@ M:Foundation.NSFileManagerDelegate.ShouldProceedAfterErrorRemovingItem(Foundatio M:Foundation.NSFileManagerDelegate.ShouldRemoveItemAtPath(Foundation.NSFileManager,System.String) M:Foundation.NSFileManagerDelegate.ShouldRemoveItemAtUrl(Foundation.NSFileManager,Foundation.NSUrl) M:Foundation.NSFilePresenter_Extensions.AccommodatePresentedItemDeletion(Foundation.INSFilePresenter,System.Action{Foundation.NSError}) +M:Foundation.NSFilePresenter_Extensions.AccommodatePresentedItemEviction(Foundation.INSFilePresenter,System.Action{Foundation.NSError}) M:Foundation.NSFilePresenter_Extensions.AccommodatePresentedSubitemDeletion(Foundation.INSFilePresenter,Foundation.NSUrl,System.Action{Foundation.NSError}) M:Foundation.NSFilePresenter_Extensions.GetPresentedItemObservedUbiquityAttributes(Foundation.INSFilePresenter) M:Foundation.NSFilePresenter_Extensions.GetPrimaryPresentedItemUrl(Foundation.INSFilePresenter) @@ -32941,6 +32961,7 @@ M:Foundation.NSFilePresenter_Extensions.RelinquishPresentedItemToReader(Foundati M:Foundation.NSFilePresenter_Extensions.RelinquishPresentedItemToWriter(Foundation.INSFilePresenter,Foundation.NSFilePresenterReacquirer) M:Foundation.NSFilePresenter_Extensions.SavePresentedItemChanges(Foundation.INSFilePresenter,System.Action{Foundation.NSError}) M:Foundation.NSFilePresenter.AccommodatePresentedItemDeletion(System.Action{Foundation.NSError}) +M:Foundation.NSFilePresenter.AccommodatePresentedItemEviction(System.Action{Foundation.NSError}) M:Foundation.NSFilePresenter.AccommodatePresentedSubitemDeletion(Foundation.NSUrl,System.Action{Foundation.NSError}) M:Foundation.NSFilePresenter.PresentedItemChanged M:Foundation.NSFilePresenter.PresentedItemChangedUbiquityAttributes(Foundation.NSSet{Foundation.NSString}) @@ -35348,6 +35369,7 @@ M:ImageIO.CGImageSource.GetStatus M:ImageIO.CGImageSource.GetStatus(System.Int32) M:ImageIO.CGImageSource.GetTypeID M:ImageIO.CGImageSource.RemoveCache(System.IntPtr) +M:ImageIO.CGImageSource.SetAllowableTypes(System.String[]) M:ImageIO.CGImageSource.UpdateData(Foundation.NSData,System.Boolean) M:ImageIO.CGImageSource.UpdateDataProvider(CoreGraphics.CGDataProvider,System.Boolean) M:ImageIO.CGImageThumbnailOptions.#ctor @@ -44984,6 +45006,7 @@ M:UIKit.UIDeviceOrientationExtensions.IsFlat(UIKit.UIDeviceOrientation) M:UIKit.UIDeviceOrientationExtensions.IsLandscape(UIKit.UIDeviceOrientation) M:UIKit.UIDeviceOrientationExtensions.IsPortrait(UIKit.UIDeviceOrientation) M:UIKit.UIDocument.AccommodatePresentedItemDeletion(System.Action{Foundation.NSError}) +M:UIKit.UIDocument.AccommodatePresentedItemEviction(System.Action{Foundation.NSError}) M:UIKit.UIDocument.AccommodatePresentedSubitemDeletion(Foundation.NSUrl,System.Action{Foundation.NSError}) M:UIKit.UIDocument.AutoSaveAsync M:UIKit.UIDocument.CloseAsync @@ -58945,6 +58968,10 @@ P:CoreML.IMLBatchProvider.Count P:CoreML.IMLFeatureProvider.FeatureNames P:CoreML.MLArrayBatchProvider.Array P:CoreML.MLArrayBatchProvider.Count +P:CoreML.MLComputePlan.ModelStructure +P:CoreML.MLComputePlanCost.Weight +P:CoreML.MLComputePlanDeviceUsage.PreferredComputeDevice +P:CoreML.MLComputePlanDeviceUsage.SupportedComputeDevices P:CoreML.MLDictionaryConstraint.KeyType P:CoreML.MLDictionaryFeatureProvider.Dictionary P:CoreML.MLDictionaryFeatureProvider.FeatureNames @@ -58998,6 +59025,7 @@ P:CoreML.MLModelCompilationResult.Arg1 P:CoreML.MLModelConfiguration.AllowLowPrecisionAccumulationOnGpu P:CoreML.MLModelConfiguration.ComputeUnits P:CoreML.MLModelConfiguration.ModelDisplayName +P:CoreML.MLModelConfiguration.OptimizationHints P:CoreML.MLModelConfiguration.Parameters P:CoreML.MLModelConfiguration.PreferredMetalDevice P:CoreML.MLModelDescription.ClassLabels @@ -59014,6 +59042,31 @@ P:CoreML.MLModelMetadata.CreatorDefined P:CoreML.MLModelMetadata.Description P:CoreML.MLModelMetadata.License P:CoreML.MLModelMetadata.VersionString +P:CoreML.MLModelStructure.NeuralNetwork +P:CoreML.MLModelStructure.Pipeline +P:CoreML.MLModelStructure.Program +P:CoreML.MLModelStructureNeuralNetwork.Layers +P:CoreML.MLModelStructureNeuralNetworkLayer.InputNames +P:CoreML.MLModelStructureNeuralNetworkLayer.Name +P:CoreML.MLModelStructureNeuralNetworkLayer.OutputNames +P:CoreML.MLModelStructureNeuralNetworkLayer.Type +P:CoreML.MLModelStructurePipeline.SubModelNames +P:CoreML.MLModelStructurePipeline.SubModels +P:CoreML.MLModelStructureProgram.Functions +P:CoreML.MLModelStructureProgramArgument.Bindings +P:CoreML.MLModelStructureProgramBinding.Name +P:CoreML.MLModelStructureProgramBinding.Value +P:CoreML.MLModelStructureProgramBlock.Inputs +P:CoreML.MLModelStructureProgramBlock.Operations +P:CoreML.MLModelStructureProgramBlock.OutputNames +P:CoreML.MLModelStructureProgramFunction.Block +P:CoreML.MLModelStructureProgramFunction.Inputs +P:CoreML.MLModelStructureProgramNamedValueType.Name +P:CoreML.MLModelStructureProgramNamedValueType.Type +P:CoreML.MLModelStructureProgramOperation.Blocks +P:CoreML.MLModelStructureProgramOperation.Inputs +P:CoreML.MLModelStructureProgramOperation.OperatorName +P:CoreML.MLModelStructureProgramOperation.Outputs P:CoreML.MLMultiArray.Count P:CoreML.MLMultiArray.DataPointer P:CoreML.MLMultiArray.DataType @@ -59038,6 +59091,7 @@ P:CoreML.MLNeuralEngineComputeDevice.TotalCoreCount P:CoreML.MLNumericConstraint.EnumeratedNumbers P:CoreML.MLNumericConstraint.MaxNumber P:CoreML.MLNumericConstraint.MinNumber +P:CoreML.MLOptimizationHints.ReshapeFrequency P:CoreML.MLParameterDescription.DefaultValue P:CoreML.MLParameterDescription.Key P:CoreML.MLParameterDescription.NumericConstraint @@ -63220,7 +63274,9 @@ P:ImageIO.CGImageProperties.TIFFTileLength P:ImageIO.CGImageProperties.TIFFTileWidth P:ImageIO.CGImageProperties.TIFFTransferFunction P:ImageIO.CGImageProperties.TIFFWhitePoint +P:ImageIO.CGImageProperties.TIFFXPosition P:ImageIO.CGImageProperties.TIFFXResolution +P:ImageIO.CGImageProperties.TIFFYPosition P:ImageIO.CGImageProperties.TIFFYResolution P:ImageIO.CGImageProperties.WebPCanvasPixelHeight P:ImageIO.CGImageProperties.WebPCanvasPixelWidth @@ -75090,6 +75146,9 @@ T:CoreML.IMLCustomModel T:CoreML.IMLFeatureProvider T:CoreML.IMLWritable T:CoreML.MLArrayBatchProvider +T:CoreML.MLComputePlan +T:CoreML.MLComputePlanCost +T:CoreML.MLComputePlanDeviceUsage T:CoreML.MLComputeUnits T:CoreML.MLCpuComputeDevice T:CoreML.MLCustomModel @@ -75116,6 +75175,19 @@ T:CoreML.MLModelConfiguration T:CoreML.MLModelDescription T:CoreML.MLModelError T:CoreML.MLModelMetadata +T:CoreML.MLModelStructure +T:CoreML.MLModelStructureNeuralNetwork +T:CoreML.MLModelStructureNeuralNetworkLayer +T:CoreML.MLModelStructurePipeline +T:CoreML.MLModelStructureProgram +T:CoreML.MLModelStructureProgramArgument +T:CoreML.MLModelStructureProgramBinding +T:CoreML.MLModelStructureProgramBlock +T:CoreML.MLModelStructureProgramFunction +T:CoreML.MLModelStructureProgramNamedValueType +T:CoreML.MLModelStructureProgramOperation +T:CoreML.MLModelStructureProgramValue +T:CoreML.MLModelStructureProgramValueType T:CoreML.MLMultiArray T:CoreML.MLMultiArrayConstraint T:CoreML.MLMultiArrayDataPointer @@ -75125,9 +75197,11 @@ T:CoreML.MLMultiArrayShapeConstraint T:CoreML.MLMultiArrayShapeConstraintType T:CoreML.MLNeuralEngineComputeDevice T:CoreML.MLNumericConstraint +T:CoreML.MLOptimizationHints T:CoreML.MLParameterDescription T:CoreML.MLParameterKey T:CoreML.MLPredictionOptions +T:CoreML.MLReshapeFrequencyHint T:CoreML.MLSequence T:CoreML.MLSequenceConstraint T:CoreML.MLTask diff --git a/tests/cecil-tests/Documentation.cs b/tests/cecil-tests/Documentation.cs index 170cc255ad4c..23b532ffe2b7 100644 --- a/tests/cecil-tests/Documentation.cs +++ b/tests/cecil-tests/Documentation.cs @@ -54,7 +54,7 @@ public void VerifyEveryVisibleMemberIsDocumented () var documentedButNotPresent = xmlMembers.Except (dllMembers).ToList (); Assert.Multiple (() => { foreach (var doc in documentedButNotPresent) - Assert.Fail ($"{doc}: Documented API not found in the platform assembly. This probably indicates that the code to compute the doc name for a given member is incorrect."); + Assert.Fail ($"{doc.DocId}: Documented API not found in the platform assembly. This probably indicates that the code to compute the doc name for a given member is incorrect."); }); var shouldHaveBeenDocumented = dllMembers From c058400c4cb099a3d76137ed6edc3ef0dd3e85db Mon Sep 17 00:00:00 2001 From: Alex Soto Date: Wed, 22 May 2024 22:45:49 -0400 Subject: [PATCH 44/73] Fix xtro --- tests/xtro-sharpie/api-annotations-dotnet/iOS-Foundation.todo | 4 ---- tests/xtro-sharpie/iOS-Foundation.todo | 4 ---- 2 files changed, 8 deletions(-) delete mode 100644 tests/xtro-sharpie/api-annotations-dotnet/iOS-Foundation.todo delete mode 100644 tests/xtro-sharpie/iOS-Foundation.todo diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-Foundation.todo b/tests/xtro-sharpie/api-annotations-dotnet/iOS-Foundation.todo deleted file mode 100644 index 93054fc44a8f..000000000000 --- a/tests/xtro-sharpie/api-annotations-dotnet/iOS-Foundation.todo +++ /dev/null @@ -1,4 +0,0 @@ -!missing-selector! NSXPCCoder::decodeXPCObjectOfType:forKey: not bound -!missing-selector! NSXPCCoder::encodeXPCObject:forKey: not bound -!missing-selector! NSXPCInterface::setXPCType:forSelector:argumentIndex:ofReply: not bound -!missing-selector! NSXPCInterface::XPCTypeForSelector:argumentIndex:ofReply: not bound diff --git a/tests/xtro-sharpie/iOS-Foundation.todo b/tests/xtro-sharpie/iOS-Foundation.todo deleted file mode 100644 index 93054fc44a8f..000000000000 --- a/tests/xtro-sharpie/iOS-Foundation.todo +++ /dev/null @@ -1,4 +0,0 @@ -!missing-selector! NSXPCCoder::decodeXPCObjectOfType:forKey: not bound -!missing-selector! NSXPCCoder::encodeXPCObject:forKey: not bound -!missing-selector! NSXPCInterface::setXPCType:forSelector:argumentIndex:ofReply: not bound -!missing-selector! NSXPCInterface::XPCTypeForSelector:argumentIndex:ofReply: not bound From 500c98e72895c02fa58defb9c0ab1579c0591eda Mon Sep 17 00:00:00 2001 From: Alex Soto Date: Thu, 23 May 2024 02:05:29 -0400 Subject: [PATCH 45/73] MapKit, IOSurface and LocalAuthenticationEmbeddedUI --- src/mapkit.cs | 11 +++++++++++ tests/cecil-tests/Documentation.KnownFailures.txt | 2 ++ .../api-annotations-dotnet/common-IOSurface.ignore | 3 +++ .../api-annotations-dotnet/iOS-IOSurface.ignore | 1 + ....todo => iOS-LocalAuthenticationEmbeddedUI.ignore} | 1 + .../api-annotations-dotnet/macOS-MapKit.todo | 2 -- .../api-annotations-dotnet/tvOS-IOSurface.ignore | 1 + tests/xtro-sharpie/common-IOSurface.ignore | 3 +++ tests/xtro-sharpie/iOS-IOSurface.ignore | 1 + ....todo => iOS-LocalAuthenticationEmbeddedUI.ignore} | 1 + tests/xtro-sharpie/macOS-MapKit.todo | 2 -- tests/xtro-sharpie/tvOS-IOSurface.ignore | 1 + 12 files changed, 25 insertions(+), 4 deletions(-) create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/iOS-IOSurface.ignore rename tests/xtro-sharpie/api-annotations-dotnet/{iOS-LocalAuthenticationEmbeddedUI.todo => iOS-LocalAuthenticationEmbeddedUI.ignore} (80%) delete mode 100644 tests/xtro-sharpie/api-annotations-dotnet/macOS-MapKit.todo create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/tvOS-IOSurface.ignore create mode 100644 tests/xtro-sharpie/iOS-IOSurface.ignore rename tests/xtro-sharpie/{iOS-LocalAuthenticationEmbeddedUI.todo => iOS-LocalAuthenticationEmbeddedUI.ignore} (80%) delete mode 100644 tests/xtro-sharpie/macOS-MapKit.todo create mode 100644 tests/xtro-sharpie/tvOS-IOSurface.ignore diff --git a/src/mapkit.cs b/src/mapkit.cs index 8393fc95c658..66c750e75573 100644 --- a/src/mapkit.cs +++ b/src/mapkit.cs @@ -375,6 +375,17 @@ interface MKMapItem : NSSecureCoding [Export ("openMapsWithItems:launchOptions:fromScene:completionHandler:")] void OpenMaps (MKMapItem [] mapItems, [NullAllowed] NSDictionary launchOptions, [NullAllowed] UIScene fromScene, [NullAllowed] Action completionHandler); + [NoWatch, NoTV, NoiOS, NoMacCatalyst, Mac (14, 4)] + [Async] + [Export ("openInMapsWithLaunchOptions:completionHandler:")] + void OpenInMaps ([NullAllowed] NSDictionary launchOptions, [NullAllowed] Action completion); + + [NoWatch, NoTV, NoiOS, NoMacCatalyst, Mac (14, 4)] + [Static] + [Async] + [Export ("openMapsWithItems:launchOptions:completionHandler:")] + void OpenMaps (MKMapItem [] mapItems, [NullAllowed] NSDictionary launchOptions, [NullAllowed] Action completion); + [NoTV] [MacCatalyst (13, 1)] [Field ("MKLaunchOptionsDirectionsModeKey"), Internal] diff --git a/tests/cecil-tests/Documentation.KnownFailures.txt b/tests/cecil-tests/Documentation.KnownFailures.txt index eb6a714d80fa..90bc72913c3f 100644 --- a/tests/cecil-tests/Documentation.KnownFailures.txt +++ b/tests/cecil-tests/Documentation.KnownFailures.txt @@ -36579,8 +36579,10 @@ M:MapKit.MKMapItem.LoadDataAsync(System.String,Foundation.NSProgress@) M:MapKit.MKMapItem.LoadDataAsync(System.String) M:MapKit.MKMapItem.OpenInMaps(MapKit.MKLaunchOptions) M:MapKit.MKMapItem.OpenInMapsAsync(Foundation.NSDictionary,UIKit.UIScene) +M:MapKit.MKMapItem.OpenInMapsAsync(Foundation.NSDictionary) M:MapKit.MKMapItem.OpenMaps(MapKit.MKMapItem[],MapKit.MKLaunchOptions) M:MapKit.MKMapItem.OpenMapsAsync(MapKit.MKMapItem[],Foundation.NSDictionary,UIKit.UIScene) +M:MapKit.MKMapItem.OpenMapsAsync(MapKit.MKMapItem[],Foundation.NSDictionary) M:MapKit.MKMapItemRequest.GetMapItemAsync M:MapKit.MKMapPoint.#ctor(System.Double,System.Double) M:MapKit.MKMapPoint.Equals(System.Object) diff --git a/tests/xtro-sharpie/api-annotations-dotnet/common-IOSurface.ignore b/tests/xtro-sharpie/api-annotations-dotnet/common-IOSurface.ignore index 2c2dad5ae7a7..84eecd61c0d2 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/common-IOSurface.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/common-IOSurface.ignore @@ -81,3 +81,6 @@ !missing-pinvoke! IOSurfaceSetValue is not bound !missing-pinvoke! IOSurfaceSetValues is not bound !missing-pinvoke! IOSurfaceUnlock is not bound +!missing-enum! IOSurfaceMemoryLedgerFlags not bound +!missing-enum! IOSurfaceMemoryLedgerTags not bound +!missing-pinvoke! IOSurfaceSetOwnershipIdentity is not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-IOSurface.ignore b/tests/xtro-sharpie/api-annotations-dotnet/iOS-IOSurface.ignore new file mode 100644 index 000000000000..b3c729926b86 --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-IOSurface.ignore @@ -0,0 +1 @@ +!deprecated-attribute-missing! IOSurface missing a [Deprecated] attribute diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-LocalAuthenticationEmbeddedUI.todo b/tests/xtro-sharpie/api-annotations-dotnet/iOS-LocalAuthenticationEmbeddedUI.ignore similarity index 80% rename from tests/xtro-sharpie/api-annotations-dotnet/iOS-LocalAuthenticationEmbeddedUI.todo rename to tests/xtro-sharpie/api-annotations-dotnet/iOS-LocalAuthenticationEmbeddedUI.ignore index 0f6830281662..d05e7ddc0bcd 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/iOS-LocalAuthenticationEmbeddedUI.todo +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-LocalAuthenticationEmbeddedUI.ignore @@ -1 +1,2 @@ +# unresponsive selector !missing-selector! LARight::authorizeWithLocalizedReason:inPresentationContext:completion: not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-MapKit.todo b/tests/xtro-sharpie/api-annotations-dotnet/macOS-MapKit.todo deleted file mode 100644 index dc35c07c28a2..000000000000 --- a/tests/xtro-sharpie/api-annotations-dotnet/macOS-MapKit.todo +++ /dev/null @@ -1,2 +0,0 @@ -!missing-selector! +MKMapItem::openMapsWithItems:launchOptions:completionHandler: not bound -!missing-selector! MKMapItem::openInMapsWithLaunchOptions:completionHandler: not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-IOSurface.ignore b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-IOSurface.ignore new file mode 100644 index 000000000000..b3c729926b86 --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-IOSurface.ignore @@ -0,0 +1 @@ +!deprecated-attribute-missing! IOSurface missing a [Deprecated] attribute diff --git a/tests/xtro-sharpie/common-IOSurface.ignore b/tests/xtro-sharpie/common-IOSurface.ignore index 2c2dad5ae7a7..84eecd61c0d2 100644 --- a/tests/xtro-sharpie/common-IOSurface.ignore +++ b/tests/xtro-sharpie/common-IOSurface.ignore @@ -81,3 +81,6 @@ !missing-pinvoke! IOSurfaceSetValue is not bound !missing-pinvoke! IOSurfaceSetValues is not bound !missing-pinvoke! IOSurfaceUnlock is not bound +!missing-enum! IOSurfaceMemoryLedgerFlags not bound +!missing-enum! IOSurfaceMemoryLedgerTags not bound +!missing-pinvoke! IOSurfaceSetOwnershipIdentity is not bound diff --git a/tests/xtro-sharpie/iOS-IOSurface.ignore b/tests/xtro-sharpie/iOS-IOSurface.ignore new file mode 100644 index 000000000000..b3c729926b86 --- /dev/null +++ b/tests/xtro-sharpie/iOS-IOSurface.ignore @@ -0,0 +1 @@ +!deprecated-attribute-missing! IOSurface missing a [Deprecated] attribute diff --git a/tests/xtro-sharpie/iOS-LocalAuthenticationEmbeddedUI.todo b/tests/xtro-sharpie/iOS-LocalAuthenticationEmbeddedUI.ignore similarity index 80% rename from tests/xtro-sharpie/iOS-LocalAuthenticationEmbeddedUI.todo rename to tests/xtro-sharpie/iOS-LocalAuthenticationEmbeddedUI.ignore index 0f6830281662..d05e7ddc0bcd 100644 --- a/tests/xtro-sharpie/iOS-LocalAuthenticationEmbeddedUI.todo +++ b/tests/xtro-sharpie/iOS-LocalAuthenticationEmbeddedUI.ignore @@ -1 +1,2 @@ +# unresponsive selector !missing-selector! LARight::authorizeWithLocalizedReason:inPresentationContext:completion: not bound diff --git a/tests/xtro-sharpie/macOS-MapKit.todo b/tests/xtro-sharpie/macOS-MapKit.todo deleted file mode 100644 index dc35c07c28a2..000000000000 --- a/tests/xtro-sharpie/macOS-MapKit.todo +++ /dev/null @@ -1,2 +0,0 @@ -!missing-selector! +MKMapItem::openMapsWithItems:launchOptions:completionHandler: not bound -!missing-selector! MKMapItem::openInMapsWithLaunchOptions:completionHandler: not bound diff --git a/tests/xtro-sharpie/tvOS-IOSurface.ignore b/tests/xtro-sharpie/tvOS-IOSurface.ignore new file mode 100644 index 000000000000..b3c729926b86 --- /dev/null +++ b/tests/xtro-sharpie/tvOS-IOSurface.ignore @@ -0,0 +1 @@ +!deprecated-attribute-missing! IOSurface missing a [Deprecated] attribute From ff5523b2317d04ba5e54bf4ecad5a03a2eb47698 Mon Sep 17 00:00:00 2001 From: Alex Soto Date: Thu, 23 May 2024 15:04:02 -0400 Subject: [PATCH 46/73] Fix xtro --- tests/xtro-sharpie/api-annotations-dotnet/iOS-IOSurface.todo | 4 ---- .../xtro-sharpie/api-annotations-dotnet/macOS-IOSurface.todo | 3 --- tests/xtro-sharpie/api-annotations-dotnet/tvOS-IOSurface.todo | 4 ---- tests/xtro-sharpie/iOS-IOSurface.todo | 4 ---- tests/xtro-sharpie/macOS-IOSurface.todo | 3 --- tests/xtro-sharpie/tvOS-IOSurface.todo | 4 ---- 6 files changed, 22 deletions(-) delete mode 100644 tests/xtro-sharpie/api-annotations-dotnet/iOS-IOSurface.todo delete mode 100644 tests/xtro-sharpie/api-annotations-dotnet/macOS-IOSurface.todo delete mode 100644 tests/xtro-sharpie/api-annotations-dotnet/tvOS-IOSurface.todo delete mode 100644 tests/xtro-sharpie/iOS-IOSurface.todo delete mode 100644 tests/xtro-sharpie/macOS-IOSurface.todo delete mode 100644 tests/xtro-sharpie/tvOS-IOSurface.todo diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-IOSurface.todo b/tests/xtro-sharpie/api-annotations-dotnet/iOS-IOSurface.todo deleted file mode 100644 index c6839a4fd0d7..000000000000 --- a/tests/xtro-sharpie/api-annotations-dotnet/iOS-IOSurface.todo +++ /dev/null @@ -1,4 +0,0 @@ -!deprecated-attribute-missing! IOSurface missing a [Deprecated] attribute -!missing-enum! IOSurfaceMemoryLedgerFlags not bound -!missing-enum! IOSurfaceMemoryLedgerTags not bound -!missing-pinvoke! IOSurfaceSetOwnershipIdentity is not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-IOSurface.todo b/tests/xtro-sharpie/api-annotations-dotnet/macOS-IOSurface.todo deleted file mode 100644 index f9eaac2545d4..000000000000 --- a/tests/xtro-sharpie/api-annotations-dotnet/macOS-IOSurface.todo +++ /dev/null @@ -1,3 +0,0 @@ -!missing-enum! IOSurfaceMemoryLedgerFlags not bound -!missing-enum! IOSurfaceMemoryLedgerTags not bound -!missing-pinvoke! IOSurfaceSetOwnershipIdentity is not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-IOSurface.todo b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-IOSurface.todo deleted file mode 100644 index c6839a4fd0d7..000000000000 --- a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-IOSurface.todo +++ /dev/null @@ -1,4 +0,0 @@ -!deprecated-attribute-missing! IOSurface missing a [Deprecated] attribute -!missing-enum! IOSurfaceMemoryLedgerFlags not bound -!missing-enum! IOSurfaceMemoryLedgerTags not bound -!missing-pinvoke! IOSurfaceSetOwnershipIdentity is not bound diff --git a/tests/xtro-sharpie/iOS-IOSurface.todo b/tests/xtro-sharpie/iOS-IOSurface.todo deleted file mode 100644 index c6839a4fd0d7..000000000000 --- a/tests/xtro-sharpie/iOS-IOSurface.todo +++ /dev/null @@ -1,4 +0,0 @@ -!deprecated-attribute-missing! IOSurface missing a [Deprecated] attribute -!missing-enum! IOSurfaceMemoryLedgerFlags not bound -!missing-enum! IOSurfaceMemoryLedgerTags not bound -!missing-pinvoke! IOSurfaceSetOwnershipIdentity is not bound diff --git a/tests/xtro-sharpie/macOS-IOSurface.todo b/tests/xtro-sharpie/macOS-IOSurface.todo deleted file mode 100644 index f9eaac2545d4..000000000000 --- a/tests/xtro-sharpie/macOS-IOSurface.todo +++ /dev/null @@ -1,3 +0,0 @@ -!missing-enum! IOSurfaceMemoryLedgerFlags not bound -!missing-enum! IOSurfaceMemoryLedgerTags not bound -!missing-pinvoke! IOSurfaceSetOwnershipIdentity is not bound diff --git a/tests/xtro-sharpie/tvOS-IOSurface.todo b/tests/xtro-sharpie/tvOS-IOSurface.todo deleted file mode 100644 index c6839a4fd0d7..000000000000 --- a/tests/xtro-sharpie/tvOS-IOSurface.todo +++ /dev/null @@ -1,4 +0,0 @@ -!deprecated-attribute-missing! IOSurface missing a [Deprecated] attribute -!missing-enum! IOSurfaceMemoryLedgerFlags not bound -!missing-enum! IOSurfaceMemoryLedgerTags not bound -!missing-pinvoke! IOSurfaceSetOwnershipIdentity is not bound From f05242ad379a4459e378e04f1e507f276e7af475 Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Tue, 25 Jun 2024 14:24:03 +0200 Subject: [PATCH 47/73] [siminstaller] Update to not require Xcode's Info.plist to have a DVTPlugInCompatibilityUUID entry. --- tools/siminstaller/Program.cs | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/tools/siminstaller/Program.cs b/tools/siminstaller/Program.cs index 9061e054cda2..a6f8ef947484 100644 --- a/tools/siminstaller/Program.cs +++ b/tools/siminstaller/Program.cs @@ -128,15 +128,10 @@ public async static Task Main (string [] args) if (!TryExecuteAndCapture (out var xcodeVersion, "/usr/libexec/PlistBuddy", $"-c", "Print :DTXcode", plist)) return 1; xcodeVersion = xcodeVersion.Trim (); - - if (!TryExecuteAndCapture (out var xcodeUuid, "/usr/libexec/PlistBuddy", "-c", "Print :DVTPlugInCompatibilityUUID", plist)) - return 1; - xcodeUuid = xcodeUuid.Trim (); - xcodeVersion = xcodeVersion.Insert (xcodeVersion.Length - 2, "."); xcodeVersion = xcodeVersion.Insert (xcodeVersion.Length - 1, "."); - var indexName = $"index2-{xcodeVersion}.dvtdownloadableindex"; + var indexName = $"index-{xcodeVersion}.dvtdownloadableindex"; var tmpfile = Path.Combine (TempDirectory, indexName); if (!File.Exists (tmpfile)) { var urls = new string [] { From 4c2cc033623ea6aac79f0c8566819416da97a785 Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Wed, 26 Jun 2024 14:08:35 +0200 Subject: [PATCH 48/73] [src/tools] Propagate the BackwardsCompatibleCodeGeneration field from Protocol attributes in bindings to the generated code. Also fix the MustSetBackwardsCompatibleCodeGenerationToFalse test to skip protocols that actually set BackwardsCompatibleCodeGeneration=false. --- src/bgen/Generator.cs | 6 ++++-- tests/cecil-tests/ProtocolTest.cs | 20 ++++++++++++++++++-- tools/common/StaticRegistrar.cs | 8 ++++++++ 3 files changed, 30 insertions(+), 4 deletions(-) diff --git a/src/bgen/Generator.cs b/src/bgen/Generator.cs index 4fc29f748a4d..f84a55cddf2f 100644 --- a/src/bgen/Generator.cs +++ b/src/bgen/Generator.cs @@ -4879,11 +4879,13 @@ void GenerateProtocolTypes (Type type, string class_visibility, string TypeName, WriteDocumentation (type); PrintAttributes (type, platform: true, preserve: true, advice: true); - print ("[Protocol (Name = \"{1}\", WrapperType = typeof ({0}Wrapper){2}{3})]", + print ("[Protocol (Name = \"{1}\", WrapperType = typeof ({0}Wrapper){2}{3}{4})]", TypeName, protocol_name, protocolAttribute.IsInformal ? ", IsInformal = true" : string.Empty, - protocolAttribute.FormalSince is not null ? $", FormalSince = \"{protocolAttribute.FormalSince}\"" : string.Empty); + protocolAttribute.FormalSince is not null ? $", FormalSince = \"{protocolAttribute.FormalSince}\"" : string.Empty, + backwardsCompatibleCodeGeneration ? string.Empty : ", BackwardsCompatibleCodeGeneration = false" + ); var sb = new StringBuilder (); diff --git a/tests/cecil-tests/ProtocolTest.cs b/tests/cecil-tests/ProtocolTest.cs index 3ef51758dc45..7dfe9dc74bba 100644 --- a/tests/cecil-tests/ProtocolTest.cs +++ b/tests/cecil-tests/ProtocolTest.cs @@ -30,13 +30,24 @@ public void MustSetBackwardsCompatibleCodeGenerationToFalse () continue; var hasProtocolAttribute = false; var hasProtocolMemberAttribute = false; + bool? isBackwardsCompatible = null; foreach (var ca in type.CustomAttributes) { - hasProtocolAttribute |= ca.AttributeType.Is ("Foundation", "ProtocolAttribute"); + if (ca.AttributeType.Is ("Foundation", "ProtocolAttribute")) { + hasProtocolAttribute = true; + foreach (var prop in ca.Properties) { + if (prop.Name == "BackwardsCompatibleCodeGeneration") { + isBackwardsCompatible = (bool) prop.Argument.Value; + break; + } + } + } hasProtocolMemberAttribute |= ca.AttributeType.Is ("Foundation", "ProtocolMemberAttribute"); } if (!hasProtocolAttribute) continue; if (!hasProtocolMemberAttribute) + continue; // doesn't need to be compatible if it doesn't have any members. + if (isBackwardsCompatible == false) continue; found.Add (type.FullName); } @@ -1146,7 +1157,12 @@ public void MustSetBackwardsCompatibleCodeGenerationToFalse () }; var unexpectedFailures = found.Except (expectedFailures); - Assert.That (unexpectedFailures, Is.Empty, $"{found.Count} new protocols found where 'BackwardsCompatibleCodeGeneration' should be set to 'false'."); + if (unexpectedFailures.Any ()) { + Console.WriteLine ("Protocols missing 'BackwardsCompatibleCodeGeneration = false':"); + foreach (var f in unexpectedFailures.OrderBy (v => v)) + Console.WriteLine ($" {f}"); + } + Assert.That (unexpectedFailures, Is.Empty, $"{unexpectedFailures.Count ()} new protocols found where 'BackwardsCompatibleCodeGeneration' should be set to 'false'."); } } } diff --git a/tools/common/StaticRegistrar.cs b/tools/common/StaticRegistrar.cs index c6c61a9bd357..c411be8721dd 100644 --- a/tools/common/StaticRegistrar.cs +++ b/tools/common/StaticRegistrar.cs @@ -1427,6 +1427,11 @@ public override ProtocolAttribute GetProtocolAttribute (TypeReference type) throw ErrorHelper.CreateError (4147, Errors.MT4147, "ProtocolAttribute", type.FullName); rv.FormalSinceVersion = version; break; +#if !XAMCORE_5_0 + case "BackwardsCompatibleCodeGeneration": + rv.BackwardsCompatibleCodeGeneration = (bool) prop.Argument.Value; + break; +#endif default: throw ErrorHelper.CreateError (4147, Errors.MT4147, "ProtocolAttribute", type.FullName); } @@ -5798,6 +5803,9 @@ class ProtocolAttribute : Attribute { public string Name { get; set; } public bool IsInformal { get; set; } public Version FormalSinceVersion { get; set; } +#if !XAMCORE_5_0 + public bool BackwardsCompatibleCodeGeneration { get; set; } +#endif } class BlockProxyAttribute : Attribute { From d61c501852d710926efaaad4d39607295fbbccfa Mon Sep 17 00:00:00 2001 From: Alex Soto Date: Mon, 8 Jul 2024 12:47:23 -0400 Subject: [PATCH 49/73] [Metal] Update bindings to Xcode 15.3 --- src/metal.cs | 14 ++++++++++++++ tests/cecil-tests/Documentation.KnownFailures.txt | 4 ++++ .../api-annotations-dotnet/iOS-Metal.ignore | 2 ++ .../api-annotations-dotnet/iOS-Metal.todo | 2 -- .../api-annotations-dotnet/macOS-Metal.ignore | 2 ++ .../api-annotations-dotnet/macOS-Metal.todo | 2 -- .../api-annotations-dotnet/tvOS-Metal.ignore | 2 ++ .../api-annotations-dotnet/tvOS-Metal.todo | 2 -- tests/xtro-sharpie/iOS-Metal.ignore | 2 ++ tests/xtro-sharpie/iOS-Metal.todo | 2 -- tests/xtro-sharpie/macOS-Metal.ignore | 2 ++ tests/xtro-sharpie/macOS-Metal.todo | 2 -- tests/xtro-sharpie/tvOS-Metal.ignore | 2 ++ tests/xtro-sharpie/tvOS-Metal.todo | 2 -- 14 files changed, 30 insertions(+), 12 deletions(-) delete mode 100644 tests/xtro-sharpie/api-annotations-dotnet/iOS-Metal.todo delete mode 100644 tests/xtro-sharpie/api-annotations-dotnet/tvOS-Metal.todo delete mode 100644 tests/xtro-sharpie/iOS-Metal.todo delete mode 100644 tests/xtro-sharpie/tvOS-Metal.todo diff --git a/src/metal.cs b/src/metal.cs index 57d2db3d76f5..4e7da41d3f62 100644 --- a/src/metal.cs +++ b/src/metal.cs @@ -5258,6 +5258,13 @@ partial interface MTLResource { [Export ("isAliasable")] bool IsAliasable { get; } + [Watch (10, 4), TV (17, 4), Mac (14, 4), iOS (17, 4), MacCatalyst (17, 4)] +#if XAMCORE_5_0 + [Abstract] +#endif + [Export ("setOwnerWithIdentity:")] + int SetOwnerWithIdentity (uint taskIdToken); + [NoWatch] [MacCatalyst (13, 1)] #if NET @@ -5963,6 +5970,13 @@ interface MTLSharedEvent : MTLEvent { [Abstract] [Export ("signaledValue")] ulong SignaledValue { get; set; } + + [Mac (14, 4), iOS (17, 4), TV (17, 4), MacCatalyst (17, 4)] +#if XAMCORE_5_0 + [Abstract] +#endif + [Export ("waitUntilSignaledValue:timeoutMS:")] + bool WaitUntilSignaledValue (ulong value, ulong milliseconds); } [iOS (12, 0), TV (12, 0)] diff --git a/tests/cecil-tests/Documentation.KnownFailures.txt b/tests/cecil-tests/Documentation.KnownFailures.txt index e5439a3fa453..fa7d295bd870 100644 --- a/tests/cecil-tests/Documentation.KnownFailures.txt +++ b/tests/cecil-tests/Documentation.KnownFailures.txt @@ -39350,6 +39350,7 @@ M:Metal.IMTLRenderPipelineState.NewIntersectionFunctionTableWithDescriptor(Metal M:Metal.IMTLRenderPipelineState.NewRenderPipelineStateWithAdditionalBinaryFunctions(Metal.MTLRenderPipelineFunctionsDescriptor,Foundation.NSError@) M:Metal.IMTLRenderPipelineState.NewVisibleFunctionTableWithDescriptor(Metal.MTLVisibleFunctionTableDescriptor,Metal.MTLRenderStages) M:Metal.IMTLResource.MakeAliasable +M:Metal.IMTLResource.SetOwnerWithIdentity(System.UInt32) M:Metal.IMTLResource.SetPurgeableState(Metal.MTLPurgeableState) M:Metal.IMTLResourceStateCommandEncoder.MoveTextureMappings(Metal.IMTLTexture,System.UIntPtr,System.UIntPtr,Metal.MTLOrigin,Metal.MTLSize,Metal.IMTLTexture,System.UIntPtr,System.UIntPtr,Metal.MTLOrigin) M:Metal.IMTLResourceStateCommandEncoder.Update(Metal.IMTLFence) @@ -39359,6 +39360,7 @@ M:Metal.IMTLResourceStateCommandEncoder.Update(Metal.IMTLTexture,Metal.MTLSparse M:Metal.IMTLResourceStateCommandEncoder.Wait(Metal.IMTLFence) M:Metal.IMTLSharedEvent.CreateSharedEventHandle M:Metal.IMTLSharedEvent.NotifyListener(Metal.MTLSharedEventListener,System.UInt64,Metal.MTLSharedEventNotificationBlock) +M:Metal.IMTLSharedEvent.WaitUntilSignaledValue(System.UInt64,System.UInt64) M:Metal.IMTLTexture.Create(Metal.MTLPixelFormat,Metal.MTLTextureType,Foundation.NSRange,Foundation.NSRange,Metal.MTLTextureSwizzleChannels) M:Metal.IMTLTexture.CreateRemoteTexture(Metal.IMTLDevice) M:Metal.IMTLTexture.CreateSharedTextureHandle @@ -39584,6 +39586,7 @@ M:Metal.MTLRenderPipelineState_Extensions.GetObjectThreadExecutionWidth(Metal.IM M:Metal.MTLRenderPipelineState_Extensions.NewIntersectionFunctionTableWithDescriptor(Metal.IMTLRenderPipelineState,Metal.MTLIntersectionFunctionTableDescriptor,Metal.MTLRenderStages) M:Metal.MTLRenderPipelineState_Extensions.NewRenderPipelineStateWithAdditionalBinaryFunctions(Metal.IMTLRenderPipelineState,Metal.MTLRenderPipelineFunctionsDescriptor,Foundation.NSError@) M:Metal.MTLRenderPipelineState_Extensions.NewVisibleFunctionTableWithDescriptor(Metal.IMTLRenderPipelineState,Metal.MTLVisibleFunctionTableDescriptor,Metal.MTLRenderStages) +M:Metal.MTLResource_Extensions.SetOwnerWithIdentity(Metal.IMTLResource,System.UInt32) M:Metal.MTLResourceStateCommandEncoder_Extensions.MoveTextureMappings(Metal.IMTLResourceStateCommandEncoder,Metal.IMTLTexture,System.UIntPtr,System.UIntPtr,Metal.MTLOrigin,Metal.MTLSize,Metal.IMTLTexture,System.UIntPtr,System.UIntPtr,Metal.MTLOrigin) M:Metal.MTLResourceStateCommandEncoder_Extensions.Update(Metal.IMTLResourceStateCommandEncoder,Metal.IMTLFence) M:Metal.MTLResourceStateCommandEncoder_Extensions.Update(Metal.IMTLResourceStateCommandEncoder,Metal.IMTLTexture,Metal.MTLSparseTextureMappingMode,Metal.IMTLBuffer,System.UIntPtr) @@ -39598,6 +39601,7 @@ M:Metal.MTLSamplerDescriptor.Copy(Foundation.NSZone) M:Metal.MTLSamplerState_Extensions.GetGpuResourceId(Metal.IMTLSamplerState) M:Metal.MTLScissorRect.#ctor(System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr) M:Metal.MTLScissorRect.ToString +M:Metal.MTLSharedEvent_Extensions.WaitUntilSignaledValue(Metal.IMTLSharedEvent,System.UInt64,System.UInt64) M:Metal.MTLSharedEventHandle.EncodeTo(Foundation.NSCoder) M:Metal.MTLSharedTextureHandle.EncodeTo(Foundation.NSCoder) M:Metal.MTLSize.#ctor(System.IntPtr,System.IntPtr,System.IntPtr) diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-Metal.ignore b/tests/xtro-sharpie/api-annotations-dotnet/iOS-Metal.ignore index f6b3d5615be6..c064b3a293e1 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/iOS-Metal.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-Metal.ignore @@ -43,6 +43,8 @@ !incorrect-protocol-member! MTLRenderCommandEncoder::setVertexBufferOffset:attributeStride:atIndex: is REQUIRED and should be abstract !incorrect-protocol-member! MTLRenderCommandEncoder::setVertexBuffers:offsets:attributeStrides:withRange: is REQUIRED and should be abstract !incorrect-protocol-member! MTLRenderCommandEncoder::setVertexBytes:length:attributeStride:atIndex: is REQUIRED and should be abstract +!incorrect-protocol-member! MTLResource::setOwnerWithIdentity: is REQUIRED and should be abstract +!incorrect-protocol-member! MTLSharedEvent::waitUntilSignaledValue:timeoutMS: is REQUIRED and should be abstract # deprecated but cannot be removed !unknown-native-enum! MTLArgumentAccess bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-Metal.todo b/tests/xtro-sharpie/api-annotations-dotnet/iOS-Metal.todo deleted file mode 100644 index 1bb2b6b6ef03..000000000000 --- a/tests/xtro-sharpie/api-annotations-dotnet/iOS-Metal.todo +++ /dev/null @@ -1,2 +0,0 @@ -!missing-protocol-member! MTLResource::setOwnerWithIdentity: not found -!missing-protocol-member! MTLSharedEvent::waitUntilSignaledValue:timeoutMS: not found diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-Metal.ignore b/tests/xtro-sharpie/api-annotations-dotnet/macOS-Metal.ignore index e90578cb7d85..418b8f2bf907 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/macOS-Metal.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/macOS-Metal.ignore @@ -46,6 +46,8 @@ !incorrect-protocol-member! MTLRenderCommandEncoder::setVertexBufferOffset:attributeStride:atIndex: is REQUIRED and should be abstract !incorrect-protocol-member! MTLRenderCommandEncoder::setVertexBuffers:offsets:attributeStrides:withRange: is REQUIRED and should be abstract !incorrect-protocol-member! MTLRenderCommandEncoder::setVertexBytes:length:attributeStride:atIndex: is REQUIRED and should be abstract +!incorrect-protocol-member! MTLResource::setOwnerWithIdentity: is REQUIRED and should be abstract +!incorrect-protocol-member! MTLSharedEvent::waitUntilSignaledValue:timeoutMS: is REQUIRED and should be abstract # deprecated but cannot be removed !unknown-native-enum! MTLArgumentAccess bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-Metal.todo b/tests/xtro-sharpie/api-annotations-dotnet/macOS-Metal.todo index 518da75143ef..3aecdefd9d51 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/macOS-Metal.todo +++ b/tests/xtro-sharpie/api-annotations-dotnet/macOS-Metal.todo @@ -5,5 +5,3 @@ !missing-protocol-member! MTLIndirectRenderCommand::setMeshBuffer:offset:atIndex: not found !missing-protocol-member! MTLIndirectRenderCommand::setObjectBuffer:offset:atIndex: not found !missing-protocol-member! MTLIndirectRenderCommand::setObjectThreadgroupMemoryLength:atIndex: not found -!missing-protocol-member! MTLResource::setOwnerWithIdentity: not found -!missing-protocol-member! MTLSharedEvent::waitUntilSignaledValue:timeoutMS: not found diff --git a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-Metal.ignore b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-Metal.ignore index 17f39e163b8f..42875b819206 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-Metal.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-Metal.ignore @@ -103,6 +103,8 @@ !incorrect-protocol-member! MTLRenderCommandEncoder::setVertexBufferOffset:attributeStride:atIndex: is REQUIRED and should be abstract !incorrect-protocol-member! MTLRenderCommandEncoder::setVertexBuffers:offsets:attributeStrides:withRange: is REQUIRED and should be abstract !incorrect-protocol-member! MTLRenderCommandEncoder::setVertexBytes:length:attributeStride:atIndex: is REQUIRED and should be abstract +!incorrect-protocol-member! MTLResource::setOwnerWithIdentity: is REQUIRED and should be abstract +!incorrect-protocol-member! MTLSharedEvent::waitUntilSignaledValue:timeoutMS: is REQUIRED and should be abstract # deprecated but cannot be removed !unknown-native-enum! MTLArgumentAccess bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-Metal.todo b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-Metal.todo deleted file mode 100644 index 1bb2b6b6ef03..000000000000 --- a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-Metal.todo +++ /dev/null @@ -1,2 +0,0 @@ -!missing-protocol-member! MTLResource::setOwnerWithIdentity: not found -!missing-protocol-member! MTLSharedEvent::waitUntilSignaledValue:timeoutMS: not found diff --git a/tests/xtro-sharpie/iOS-Metal.ignore b/tests/xtro-sharpie/iOS-Metal.ignore index 7aa8fa80a80f..f0c5e39d25b4 100644 --- a/tests/xtro-sharpie/iOS-Metal.ignore +++ b/tests/xtro-sharpie/iOS-Metal.ignore @@ -183,6 +183,8 @@ !incorrect-protocol-member! MTLIndirectCommandBuffer::gpuResourceID is REQUIRED and should be abstract !incorrect-protocol-member! MTLTexture::gpuResourceID is REQUIRED and should be abstract !incorrect-protocol-member! MTLBuffer::gpuAddress is REQUIRED and should be abstract +!incorrect-protocol-member! MTLResource::setOwnerWithIdentity: is REQUIRED and should be abstract +!incorrect-protocol-member! MTLSharedEvent::waitUntilSignaledValue:timeoutMS: is REQUIRED and should be abstract # deprecated but cannot be removed !unknown-native-enum! MTLArgumentAccess bound diff --git a/tests/xtro-sharpie/iOS-Metal.todo b/tests/xtro-sharpie/iOS-Metal.todo deleted file mode 100644 index 1bb2b6b6ef03..000000000000 --- a/tests/xtro-sharpie/iOS-Metal.todo +++ /dev/null @@ -1,2 +0,0 @@ -!missing-protocol-member! MTLResource::setOwnerWithIdentity: not found -!missing-protocol-member! MTLSharedEvent::waitUntilSignaledValue:timeoutMS: not found diff --git a/tests/xtro-sharpie/macOS-Metal.ignore b/tests/xtro-sharpie/macOS-Metal.ignore index 57e444f928b3..ba4f0f7821ff 100644 --- a/tests/xtro-sharpie/macOS-Metal.ignore +++ b/tests/xtro-sharpie/macOS-Metal.ignore @@ -192,6 +192,8 @@ !incorrect-protocol-member! MTLDevice::shouldMaximizeConcurrentCompilation is REQUIRED and should be abstract !incorrect-protocol-member! MTLTexture::compressionType is REQUIRED and should be abstract !incorrect-protocol-member! MTLBuffer::gpuAddress is REQUIRED and should be abstract +!incorrect-protocol-member! MTLResource::setOwnerWithIdentity: is REQUIRED and should be abstract +!incorrect-protocol-member! MTLSharedEvent::waitUntilSignaledValue:timeoutMS: is REQUIRED and should be abstract # deprecated but cannot be removed !unknown-native-enum! MTLArgumentAccess bound diff --git a/tests/xtro-sharpie/macOS-Metal.todo b/tests/xtro-sharpie/macOS-Metal.todo index 518da75143ef..3aecdefd9d51 100644 --- a/tests/xtro-sharpie/macOS-Metal.todo +++ b/tests/xtro-sharpie/macOS-Metal.todo @@ -5,5 +5,3 @@ !missing-protocol-member! MTLIndirectRenderCommand::setMeshBuffer:offset:atIndex: not found !missing-protocol-member! MTLIndirectRenderCommand::setObjectBuffer:offset:atIndex: not found !missing-protocol-member! MTLIndirectRenderCommand::setObjectThreadgroupMemoryLength:atIndex: not found -!missing-protocol-member! MTLResource::setOwnerWithIdentity: not found -!missing-protocol-member! MTLSharedEvent::waitUntilSignaledValue:timeoutMS: not found diff --git a/tests/xtro-sharpie/tvOS-Metal.ignore b/tests/xtro-sharpie/tvOS-Metal.ignore index b7f3ce9c5d74..cdaf2bb13279 100644 --- a/tests/xtro-sharpie/tvOS-Metal.ignore +++ b/tests/xtro-sharpie/tvOS-Metal.ignore @@ -174,6 +174,8 @@ !incorrect-protocol-member! MTLFunction::options is REQUIRED and should be abstract !incorrect-protocol-member! MTLHeap::newAccelerationStructureWithDescriptor: is REQUIRED and should be abstract !incorrect-protocol-member! MTLBuffer::gpuAddress is REQUIRED and should be abstract +!incorrect-protocol-member! MTLResource::setOwnerWithIdentity: is REQUIRED and should be abstract +!incorrect-protocol-member! MTLSharedEvent::waitUntilSignaledValue:timeoutMS: is REQUIRED and should be abstract # deprecated but cannot be removed !unknown-native-enum! MTLArgumentAccess bound diff --git a/tests/xtro-sharpie/tvOS-Metal.todo b/tests/xtro-sharpie/tvOS-Metal.todo deleted file mode 100644 index 1bb2b6b6ef03..000000000000 --- a/tests/xtro-sharpie/tvOS-Metal.todo +++ /dev/null @@ -1,2 +0,0 @@ -!missing-protocol-member! MTLResource::setOwnerWithIdentity: not found -!missing-protocol-member! MTLSharedEvent::waitUntilSignaledValue:timeoutMS: not found From ef7f28ac8e2824085867336b6902143635ffd08e Mon Sep 17 00:00:00 2001 From: Alex Soto Date: Mon, 8 Jul 2024 15:36:58 -0400 Subject: [PATCH 50/73] [MetalFX] Update bindings to Xcode 15.3 --- src/metalfx.cs | 22 +++++++++++++++++++ .../Documentation.KnownFailures.txt | 7 ++++++ .../api-annotations-dotnet/iOS-MetalFX.ignore | 3 +++ .../api-annotations-dotnet/iOS-MetalFX.todo | 7 ------ .../macOS-MetalFX.ignore | 3 +++ .../api-annotations-dotnet/macOS-MetalFX.todo | 7 ------ tests/xtro-sharpie/iOS-MetalFX.ignore | 3 +++ tests/xtro-sharpie/iOS-MetalFX.todo | 7 ------ tests/xtro-sharpie/macOS-MetalFX.ignore | 3 +++ tests/xtro-sharpie/macOS-MetalFX.todo | 7 ------ 10 files changed, 41 insertions(+), 28 deletions(-) delete mode 100644 tests/xtro-sharpie/api-annotations-dotnet/iOS-MetalFX.todo delete mode 100644 tests/xtro-sharpie/api-annotations-dotnet/macOS-MetalFX.todo delete mode 100644 tests/xtro-sharpie/iOS-MetalFX.todo delete mode 100644 tests/xtro-sharpie/macOS-MetalFX.todo diff --git a/src/metalfx.cs b/src/metalfx.cs index 67fbeeed8600..a6eac2a098c4 100644 --- a/src/metalfx.cs +++ b/src/metalfx.cs @@ -104,6 +104,13 @@ interface MTLFXTemporalScaler { [Export ("motionTextureUsage")] MTLTextureUsage MotionTextureUsage { get; } + [Mac (14, 4), iOS (17, 4), MacCatalyst (17, 4)] +#if XAMCORE_5_0 + [Abstract] +#endif + [Export ("reactiveTextureUsage")] + MTLTextureUsage ReactiveTextureUsage { get; } + [Abstract] [Export ("outputTextureUsage")] MTLTextureUsage OutputTextureUsage { get; } @@ -136,6 +143,13 @@ interface MTLFXTemporalScaler { [NullAllowed, Export ("exposureTexture", ArgumentSemantic.Retain)] IMTLTexture ExposureTexture { get; set; } + [Mac (14, 4), iOS (17, 4), MacCatalyst (17, 4)] +#if XAMCORE_5_0 + [Abstract] +#endif + [NullAllowed, Export ("reactiveMaskTexture", ArgumentSemantic.Retain)] + IMTLTexture ReactiveMaskTexture { get; set; } + [Abstract] [Export ("preExposure")] float PreExposure { get; set; } @@ -287,6 +301,14 @@ interface MTLFXTemporalScalerDescriptor { [Export ("inputContentMaxScale")] float InputContentMaxScale { get; set; } + [Mac (14, 4), iOS (17, 4), MacCatalyst (17, 4)] + [Export ("reactiveMaskTextureEnabled")] + bool ReactiveMaskTextureEnabled { [Bind ("isReactiveMaskTextureEnabled")] get; set; } + + [Mac (14, 4), iOS (17, 4), MacCatalyst (17, 4)] + [Export ("reactiveMaskTextureFormat", ArgumentSemantic.Assign)] + MTLPixelFormat ReactiveMaskTextureFormat { get; set; } + [Export ("newTemporalScalerWithDevice:")] [return: NullAllowed, Release] IMTLFXTemporalScaler Create (IMTLDevice device); diff --git a/tests/cecil-tests/Documentation.KnownFailures.txt b/tests/cecil-tests/Documentation.KnownFailures.txt index fa7d295bd870..62945f1b053f 100644 --- a/tests/cecil-tests/Documentation.KnownFailures.txt +++ b/tests/cecil-tests/Documentation.KnownFailures.txt @@ -39632,6 +39632,9 @@ M:MetalFX.IMTLFXSpatialScaler.Encode(Metal.IMTLCommandBuffer) M:MetalFX.IMTLFXTemporalScaler.Encode(Metal.IMTLCommandBuffer) M:MetalFX.MTLFXSpatialScalerDescriptor.Create(Metal.IMTLDevice) M:MetalFX.MTLFXSpatialScalerDescriptor.SupportsDevice(Metal.IMTLDevice) +M:MetalFX.MTLFXTemporalScaler_Extensions.GetReactiveMaskTexture(MetalFX.IMTLFXTemporalScaler) +M:MetalFX.MTLFXTemporalScaler_Extensions.GetReactiveTextureUsage(MetalFX.IMTLFXTemporalScaler) +M:MetalFX.MTLFXTemporalScaler_Extensions.SetReactiveMaskTexture(MetalFX.IMTLFXTemporalScaler,Metal.IMTLTexture) M:MetalFX.MTLFXTemporalScalerDescriptor.Create(Metal.IMTLDevice) M:MetalFX.MTLFXTemporalScalerDescriptor.GetSupportedInputContentMaxScale(Metal.IMTLDevice) M:MetalFX.MTLFXTemporalScalerDescriptor.GetSupportedInputContentMinScale(Metal.IMTLDevice) @@ -68136,6 +68139,8 @@ P:MetalFX.IMTLFXTemporalScaler.OutputTextureFormat P:MetalFX.IMTLFXTemporalScaler.OutputTextureUsage P:MetalFX.IMTLFXTemporalScaler.OutputWidth P:MetalFX.IMTLFXTemporalScaler.PreExposure +P:MetalFX.IMTLFXTemporalScaler.ReactiveMaskTexture +P:MetalFX.IMTLFXTemporalScaler.ReactiveTextureUsage P:MetalFX.IMTLFXTemporalScaler.Reset P:MetalFX.MTLFXSpatialScalerDescriptor.ColorProcessingMode P:MetalFX.MTLFXSpatialScalerDescriptor.ColorTextureFormat @@ -68156,6 +68161,8 @@ P:MetalFX.MTLFXTemporalScalerDescriptor.MotionTextureFormat P:MetalFX.MTLFXTemporalScalerDescriptor.OutputHeight P:MetalFX.MTLFXTemporalScalerDescriptor.OutputTextureFormat P:MetalFX.MTLFXTemporalScalerDescriptor.OutputWidth +P:MetalFX.MTLFXTemporalScalerDescriptor.ReactiveMaskTextureEnabled +P:MetalFX.MTLFXTemporalScalerDescriptor.ReactiveMaskTextureFormat P:MetalKit.MTKMesh.Name P:MetalKit.MTKMesh.Submeshes P:MetalKit.MTKMesh.VertexBuffers diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-MetalFX.ignore b/tests/xtro-sharpie/api-annotations-dotnet/iOS-MetalFX.ignore index 2fa1d6bbacee..cb6c8cc4cb08 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/iOS-MetalFX.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-MetalFX.ignore @@ -1,2 +1,5 @@ !missing-protocol-conformance! MTLFXSpatialScalerDescriptor should conform to NSCopying !missing-protocol-conformance! MTLFXTemporalScalerDescriptor should conform to NSCopying +!incorrect-protocol-member! MTLFXTemporalScaler::reactiveMaskTexture is REQUIRED and should be abstract +!incorrect-protocol-member! MTLFXTemporalScaler::reactiveTextureUsage is REQUIRED and should be abstract +!incorrect-protocol-member! MTLFXTemporalScaler::setReactiveMaskTexture: is REQUIRED and should be abstract diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-MetalFX.todo b/tests/xtro-sharpie/api-annotations-dotnet/iOS-MetalFX.todo deleted file mode 100644 index 0fa60384da65..000000000000 --- a/tests/xtro-sharpie/api-annotations-dotnet/iOS-MetalFX.todo +++ /dev/null @@ -1,7 +0,0 @@ -!missing-protocol-member! MTLFXTemporalScaler::reactiveMaskTexture not found -!missing-protocol-member! MTLFXTemporalScaler::reactiveTextureUsage not found -!missing-protocol-member! MTLFXTemporalScaler::setReactiveMaskTexture: not found -!missing-selector! MTLFXTemporalScalerDescriptor::isReactiveMaskTextureEnabled not bound -!missing-selector! MTLFXTemporalScalerDescriptor::reactiveMaskTextureFormat not bound -!missing-selector! MTLFXTemporalScalerDescriptor::setReactiveMaskTextureEnabled: not bound -!missing-selector! MTLFXTemporalScalerDescriptor::setReactiveMaskTextureFormat: not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-MetalFX.ignore b/tests/xtro-sharpie/api-annotations-dotnet/macOS-MetalFX.ignore index 2fa1d6bbacee..cb6c8cc4cb08 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/macOS-MetalFX.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/macOS-MetalFX.ignore @@ -1,2 +1,5 @@ !missing-protocol-conformance! MTLFXSpatialScalerDescriptor should conform to NSCopying !missing-protocol-conformance! MTLFXTemporalScalerDescriptor should conform to NSCopying +!incorrect-protocol-member! MTLFXTemporalScaler::reactiveMaskTexture is REQUIRED and should be abstract +!incorrect-protocol-member! MTLFXTemporalScaler::reactiveTextureUsage is REQUIRED and should be abstract +!incorrect-protocol-member! MTLFXTemporalScaler::setReactiveMaskTexture: is REQUIRED and should be abstract diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-MetalFX.todo b/tests/xtro-sharpie/api-annotations-dotnet/macOS-MetalFX.todo deleted file mode 100644 index 0fa60384da65..000000000000 --- a/tests/xtro-sharpie/api-annotations-dotnet/macOS-MetalFX.todo +++ /dev/null @@ -1,7 +0,0 @@ -!missing-protocol-member! MTLFXTemporalScaler::reactiveMaskTexture not found -!missing-protocol-member! MTLFXTemporalScaler::reactiveTextureUsage not found -!missing-protocol-member! MTLFXTemporalScaler::setReactiveMaskTexture: not found -!missing-selector! MTLFXTemporalScalerDescriptor::isReactiveMaskTextureEnabled not bound -!missing-selector! MTLFXTemporalScalerDescriptor::reactiveMaskTextureFormat not bound -!missing-selector! MTLFXTemporalScalerDescriptor::setReactiveMaskTextureEnabled: not bound -!missing-selector! MTLFXTemporalScalerDescriptor::setReactiveMaskTextureFormat: not bound diff --git a/tests/xtro-sharpie/iOS-MetalFX.ignore b/tests/xtro-sharpie/iOS-MetalFX.ignore index 2fa1d6bbacee..cb6c8cc4cb08 100644 --- a/tests/xtro-sharpie/iOS-MetalFX.ignore +++ b/tests/xtro-sharpie/iOS-MetalFX.ignore @@ -1,2 +1,5 @@ !missing-protocol-conformance! MTLFXSpatialScalerDescriptor should conform to NSCopying !missing-protocol-conformance! MTLFXTemporalScalerDescriptor should conform to NSCopying +!incorrect-protocol-member! MTLFXTemporalScaler::reactiveMaskTexture is REQUIRED and should be abstract +!incorrect-protocol-member! MTLFXTemporalScaler::reactiveTextureUsage is REQUIRED and should be abstract +!incorrect-protocol-member! MTLFXTemporalScaler::setReactiveMaskTexture: is REQUIRED and should be abstract diff --git a/tests/xtro-sharpie/iOS-MetalFX.todo b/tests/xtro-sharpie/iOS-MetalFX.todo deleted file mode 100644 index 0fa60384da65..000000000000 --- a/tests/xtro-sharpie/iOS-MetalFX.todo +++ /dev/null @@ -1,7 +0,0 @@ -!missing-protocol-member! MTLFXTemporalScaler::reactiveMaskTexture not found -!missing-protocol-member! MTLFXTemporalScaler::reactiveTextureUsage not found -!missing-protocol-member! MTLFXTemporalScaler::setReactiveMaskTexture: not found -!missing-selector! MTLFXTemporalScalerDescriptor::isReactiveMaskTextureEnabled not bound -!missing-selector! MTLFXTemporalScalerDescriptor::reactiveMaskTextureFormat not bound -!missing-selector! MTLFXTemporalScalerDescriptor::setReactiveMaskTextureEnabled: not bound -!missing-selector! MTLFXTemporalScalerDescriptor::setReactiveMaskTextureFormat: not bound diff --git a/tests/xtro-sharpie/macOS-MetalFX.ignore b/tests/xtro-sharpie/macOS-MetalFX.ignore index 2fa1d6bbacee..cb6c8cc4cb08 100644 --- a/tests/xtro-sharpie/macOS-MetalFX.ignore +++ b/tests/xtro-sharpie/macOS-MetalFX.ignore @@ -1,2 +1,5 @@ !missing-protocol-conformance! MTLFXSpatialScalerDescriptor should conform to NSCopying !missing-protocol-conformance! MTLFXTemporalScalerDescriptor should conform to NSCopying +!incorrect-protocol-member! MTLFXTemporalScaler::reactiveMaskTexture is REQUIRED and should be abstract +!incorrect-protocol-member! MTLFXTemporalScaler::reactiveTextureUsage is REQUIRED and should be abstract +!incorrect-protocol-member! MTLFXTemporalScaler::setReactiveMaskTexture: is REQUIRED and should be abstract diff --git a/tests/xtro-sharpie/macOS-MetalFX.todo b/tests/xtro-sharpie/macOS-MetalFX.todo deleted file mode 100644 index 0fa60384da65..000000000000 --- a/tests/xtro-sharpie/macOS-MetalFX.todo +++ /dev/null @@ -1,7 +0,0 @@ -!missing-protocol-member! MTLFXTemporalScaler::reactiveMaskTexture not found -!missing-protocol-member! MTLFXTemporalScaler::reactiveTextureUsage not found -!missing-protocol-member! MTLFXTemporalScaler::setReactiveMaskTexture: not found -!missing-selector! MTLFXTemporalScalerDescriptor::isReactiveMaskTextureEnabled not bound -!missing-selector! MTLFXTemporalScalerDescriptor::reactiveMaskTextureFormat not bound -!missing-selector! MTLFXTemporalScalerDescriptor::setReactiveMaskTextureEnabled: not bound -!missing-selector! MTLFXTemporalScalerDescriptor::setReactiveMaskTextureFormat: not bound From 97fdff4eb1a4b35eb67e7b07d3a27b21dfe5b436 Mon Sep 17 00:00:00 2001 From: Alex Soto Date: Mon, 8 Jul 2024 16:33:54 -0400 Subject: [PATCH 51/73] [NetworkExtension] Update bindings to Xcode 15.3 --- src/networkextension.cs | 4 ++++ tests/cecil-tests/Documentation.KnownFailures.txt | 1 + .../api-annotations-dotnet/iOS-NetworkExtension.todo | 2 -- .../api-annotations-dotnet/macOS-NetworkExtension.todo | 2 -- tests/xtro-sharpie/iOS-NetworkExtension.todo | 2 -- tests/xtro-sharpie/macOS-NetworkExtension.todo | 2 -- 6 files changed, 5 insertions(+), 8 deletions(-) delete mode 100644 tests/xtro-sharpie/api-annotations-dotnet/iOS-NetworkExtension.todo delete mode 100644 tests/xtro-sharpie/api-annotations-dotnet/macOS-NetworkExtension.todo delete mode 100644 tests/xtro-sharpie/iOS-NetworkExtension.todo delete mode 100644 tests/xtro-sharpie/macOS-NetworkExtension.todo diff --git a/src/networkextension.cs b/src/networkextension.cs index 5d92ca43edc2..a64cf8f14354 100644 --- a/src/networkextension.cs +++ b/src/networkextension.cs @@ -1464,6 +1464,10 @@ interface NEVpnProtocol : NSCopying, NSSecureCoding { [Export ("excludeAPNs")] bool ExcludeApns { get; set; } + [NoWatch, NoTV, Mac (14, 4), iOS (17, 4), MacCatalyst (17, 4)] + [Export ("excludeDeviceCommunication")] + bool ExcludeDeviceCommunication { get; set; } + [Mac (11, 0)] [iOS (14, 2)] [MacCatalyst (14, 2)] diff --git a/tests/cecil-tests/Documentation.KnownFailures.txt b/tests/cecil-tests/Documentation.KnownFailures.txt index 62945f1b053f..b3f2d085e9e7 100644 --- a/tests/cecil-tests/Documentation.KnownFailures.txt +++ b/tests/cecil-tests/Documentation.KnownFailures.txt @@ -70436,6 +70436,7 @@ P:NetworkExtension.NEVpnProtocol.DisconnectOnSleep P:NetworkExtension.NEVpnProtocol.EnforceRoutes P:NetworkExtension.NEVpnProtocol.ExcludeApns P:NetworkExtension.NEVpnProtocol.ExcludeCellularServices +P:NetworkExtension.NEVpnProtocol.ExcludeDeviceCommunication P:NetworkExtension.NEVpnProtocol.ExcludeLocalNetworks P:NetworkExtension.NEVpnProtocol.IdentityData P:NetworkExtension.NEVpnProtocol.IdentityDataPassword diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-NetworkExtension.todo b/tests/xtro-sharpie/api-annotations-dotnet/iOS-NetworkExtension.todo deleted file mode 100644 index feba76486668..000000000000 --- a/tests/xtro-sharpie/api-annotations-dotnet/iOS-NetworkExtension.todo +++ /dev/null @@ -1,2 +0,0 @@ -!missing-selector! NEVPNProtocol::excludeDeviceCommunication not bound -!missing-selector! NEVPNProtocol::setExcludeDeviceCommunication: not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-NetworkExtension.todo b/tests/xtro-sharpie/api-annotations-dotnet/macOS-NetworkExtension.todo deleted file mode 100644 index feba76486668..000000000000 --- a/tests/xtro-sharpie/api-annotations-dotnet/macOS-NetworkExtension.todo +++ /dev/null @@ -1,2 +0,0 @@ -!missing-selector! NEVPNProtocol::excludeDeviceCommunication not bound -!missing-selector! NEVPNProtocol::setExcludeDeviceCommunication: not bound diff --git a/tests/xtro-sharpie/iOS-NetworkExtension.todo b/tests/xtro-sharpie/iOS-NetworkExtension.todo deleted file mode 100644 index feba76486668..000000000000 --- a/tests/xtro-sharpie/iOS-NetworkExtension.todo +++ /dev/null @@ -1,2 +0,0 @@ -!missing-selector! NEVPNProtocol::excludeDeviceCommunication not bound -!missing-selector! NEVPNProtocol::setExcludeDeviceCommunication: not bound diff --git a/tests/xtro-sharpie/macOS-NetworkExtension.todo b/tests/xtro-sharpie/macOS-NetworkExtension.todo deleted file mode 100644 index feba76486668..000000000000 --- a/tests/xtro-sharpie/macOS-NetworkExtension.todo +++ /dev/null @@ -1,2 +0,0 @@ -!missing-selector! NEVPNProtocol::excludeDeviceCommunication not bound -!missing-selector! NEVPNProtocol::setExcludeDeviceCommunication: not bound From dbf195bce0d6e8c9bc64526a34254bda2125fbc8 Mon Sep 17 00:00:00 2001 From: Alex Soto Date: Mon, 8 Jul 2024 18:30:13 -0400 Subject: [PATCH 52/73] [PassKit] Update bindings to Xcode 15.3 --- src/passkit.cs | 4 ++++ tests/cecil-tests/Documentation.KnownFailures.txt | 1 + tests/xtro-sharpie/api-annotations-dotnet/iOS-PassKit.todo | 1 - tests/xtro-sharpie/api-annotations-dotnet/macOS-PassKit.todo | 1 - tests/xtro-sharpie/iOS-PassKit.todo | 1 - tests/xtro-sharpie/macOS-PassKit.todo | 1 - tests/xtro-sharpie/watchOS-PassKit.todo | 1 - 7 files changed, 5 insertions(+), 5 deletions(-) delete mode 100644 tests/xtro-sharpie/api-annotations-dotnet/iOS-PassKit.todo delete mode 100644 tests/xtro-sharpie/api-annotations-dotnet/macOS-PassKit.todo delete mode 100644 tests/xtro-sharpie/iOS-PassKit.todo delete mode 100644 tests/xtro-sharpie/macOS-PassKit.todo delete mode 100644 tests/xtro-sharpie/watchOS-PassKit.todo diff --git a/src/passkit.cs b/src/passkit.cs index 5f89a8b11e34..8bec9c8e5a04 100644 --- a/src/passkit.cs +++ b/src/passkit.cs @@ -1255,6 +1255,10 @@ interface PKPaymentNetwork { [iOS (17, 0), Mac (14, 0), Watch (10, 0), NoTV, MacCatalyst (17, 0)] [Field ("PKPaymentNetworkTmoney")] NSString Tmoney { get; } + + [Watch (10, 4), Mac (14, 4), iOS (17, 4), NoTV, MacCatalyst (17, 4)] + [Field ("PKPaymentNetworkMeeza")] + NSString Meeza { get; } } #if !WATCH diff --git a/tests/cecil-tests/Documentation.KnownFailures.txt b/tests/cecil-tests/Documentation.KnownFailures.txt index b3f2d085e9e7..44a793cab738 100644 --- a/tests/cecil-tests/Documentation.KnownFailures.txt +++ b/tests/cecil-tests/Documentation.KnownFailures.txt @@ -70857,6 +70857,7 @@ P:PassKit.PKPaymentNetwork.Jcb P:PassKit.PKPaymentNetwork.Mada P:PassKit.PKPaymentNetwork.Maestro P:PassKit.PKPaymentNetwork.MasterCard +P:PassKit.PKPaymentNetwork.Meeza P:PassKit.PKPaymentNetwork.Mir P:PassKit.PKPaymentNetwork.Nanaco P:PassKit.PKPaymentNetwork.PagoBancomat diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-PassKit.todo b/tests/xtro-sharpie/api-annotations-dotnet/iOS-PassKit.todo deleted file mode 100644 index 94f814a8e4ad..000000000000 --- a/tests/xtro-sharpie/api-annotations-dotnet/iOS-PassKit.todo +++ /dev/null @@ -1 +0,0 @@ -!missing-field! PKPaymentNetworkMeeza not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-PassKit.todo b/tests/xtro-sharpie/api-annotations-dotnet/macOS-PassKit.todo deleted file mode 100644 index 94f814a8e4ad..000000000000 --- a/tests/xtro-sharpie/api-annotations-dotnet/macOS-PassKit.todo +++ /dev/null @@ -1 +0,0 @@ -!missing-field! PKPaymentNetworkMeeza not bound diff --git a/tests/xtro-sharpie/iOS-PassKit.todo b/tests/xtro-sharpie/iOS-PassKit.todo deleted file mode 100644 index 94f814a8e4ad..000000000000 --- a/tests/xtro-sharpie/iOS-PassKit.todo +++ /dev/null @@ -1 +0,0 @@ -!missing-field! PKPaymentNetworkMeeza not bound diff --git a/tests/xtro-sharpie/macOS-PassKit.todo b/tests/xtro-sharpie/macOS-PassKit.todo deleted file mode 100644 index 94f814a8e4ad..000000000000 --- a/tests/xtro-sharpie/macOS-PassKit.todo +++ /dev/null @@ -1 +0,0 @@ -!missing-field! PKPaymentNetworkMeeza not bound diff --git a/tests/xtro-sharpie/watchOS-PassKit.todo b/tests/xtro-sharpie/watchOS-PassKit.todo deleted file mode 100644 index 94f814a8e4ad..000000000000 --- a/tests/xtro-sharpie/watchOS-PassKit.todo +++ /dev/null @@ -1 +0,0 @@ -!missing-field! PKPaymentNetworkMeeza not bound From 152d8e90405d148887c411332dcc03f9fb589c0c Mon Sep 17 00:00:00 2001 From: Alex Soto Date: Mon, 8 Jul 2024 18:50:37 -0400 Subject: [PATCH 53/73] [PencilKit] Update bindings to Xcode 15.3 --- src/pencilkit.cs | 2 ++ tests/cecil-tests/Documentation.KnownFailures.txt | 1 + tests/xtro-sharpie/api-annotations-dotnet/iOS-PencilKit.todo | 1 - tests/xtro-sharpie/api-annotations-dotnet/macOS-PencilKit.todo | 1 - tests/xtro-sharpie/iOS-PencilKit.todo | 1 - tests/xtro-sharpie/macOS-PencilKit.todo | 1 - 6 files changed, 3 insertions(+), 4 deletions(-) delete mode 100644 tests/xtro-sharpie/api-annotations-dotnet/iOS-PencilKit.todo delete mode 100644 tests/xtro-sharpie/api-annotations-dotnet/macOS-PencilKit.todo delete mode 100644 tests/xtro-sharpie/iOS-PencilKit.todo delete mode 100644 tests/xtro-sharpie/macOS-PencilKit.todo diff --git a/src/pencilkit.cs b/src/pencilkit.cs index edcb67525f83..ba04ad9f0d0d 100644 --- a/src/pencilkit.cs +++ b/src/pencilkit.cs @@ -92,6 +92,8 @@ enum PKCanvasViewDrawingPolicy : ulong { public enum PKContentVersion : long { Version1 = 1, Version2 = 2, + [iOS (17, 4), Mac (14, 4), MacCatalyst (17, 4)] + Version3 = 3, } [iOS (13, 0), NoMac] diff --git a/tests/cecil-tests/Documentation.KnownFailures.txt b/tests/cecil-tests/Documentation.KnownFailures.txt index 44a793cab738..9d8e15c146bf 100644 --- a/tests/cecil-tests/Documentation.KnownFailures.txt +++ b/tests/cecil-tests/Documentation.KnownFailures.txt @@ -16244,6 +16244,7 @@ F:PencilKit.PKCanvasViewDrawingPolicy.Default F:PencilKit.PKCanvasViewDrawingPolicy.PencilOnly F:PencilKit.PKContentVersion.Version1 F:PencilKit.PKContentVersion.Version2 +F:PencilKit.PKContentVersion.Version3 F:PencilKit.PKEraserType.Bitmap F:PencilKit.PKEraserType.FixedWidthBitmap F:PencilKit.PKEraserType.Vector diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-PencilKit.todo b/tests/xtro-sharpie/api-annotations-dotnet/iOS-PencilKit.todo deleted file mode 100644 index 9041a74cc57f..000000000000 --- a/tests/xtro-sharpie/api-annotations-dotnet/iOS-PencilKit.todo +++ /dev/null @@ -1 +0,0 @@ -!missing-enum-value! PKContentVersion native value PKContentVersionLatest = 3 not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-PencilKit.todo b/tests/xtro-sharpie/api-annotations-dotnet/macOS-PencilKit.todo deleted file mode 100644 index 9041a74cc57f..000000000000 --- a/tests/xtro-sharpie/api-annotations-dotnet/macOS-PencilKit.todo +++ /dev/null @@ -1 +0,0 @@ -!missing-enum-value! PKContentVersion native value PKContentVersionLatest = 3 not bound diff --git a/tests/xtro-sharpie/iOS-PencilKit.todo b/tests/xtro-sharpie/iOS-PencilKit.todo deleted file mode 100644 index 9041a74cc57f..000000000000 --- a/tests/xtro-sharpie/iOS-PencilKit.todo +++ /dev/null @@ -1 +0,0 @@ -!missing-enum-value! PKContentVersion native value PKContentVersionLatest = 3 not bound diff --git a/tests/xtro-sharpie/macOS-PencilKit.todo b/tests/xtro-sharpie/macOS-PencilKit.todo deleted file mode 100644 index 9041a74cc57f..000000000000 --- a/tests/xtro-sharpie/macOS-PencilKit.todo +++ /dev/null @@ -1 +0,0 @@ -!missing-enum-value! PKContentVersion native value PKContentVersionLatest = 3 not bound From 72965c14d687a020a5f95983f58ad757fabc3fcc Mon Sep 17 00:00:00 2001 From: Alex Soto Date: Mon, 8 Jul 2024 19:44:48 -0400 Subject: [PATCH 54/73] [SafariServices] Update bindings to Xcode 15.3 --- src/safariservices.cs | 16 ++++++++++++++++ .../cecil-tests/Documentation.KnownFailures.txt | 4 ++++ .../iOS-SafariServices.todo | 1 - tests/xtro-sharpie/iOS-SafariServices.todo | 1 - 4 files changed, 20 insertions(+), 2 deletions(-) delete mode 100644 tests/xtro-sharpie/api-annotations-dotnet/iOS-SafariServices.todo delete mode 100644 tests/xtro-sharpie/iOS-SafariServices.todo diff --git a/src/safariservices.cs b/src/safariservices.cs index ea35d5a8ff32..6baa32d06d7c 100644 --- a/src/safariservices.cs +++ b/src/safariservices.cs @@ -584,4 +584,20 @@ interface SFSafariViewControllerDataStore { void ClearWebsiteData ([NullAllowed] Action completion); } + [iOS (17, 4), MacCatalyst (17, 4), NoMac, NoTV, NoWatch] + [Protocol (BackwardsCompatibleCodeGeneration = false)] + interface SFAddToHomeScreenActivityItem { + + [Abstract] + [Export ("URL")] + NSUrl Url { get; } + + [Abstract] + [Export ("title")] + string Title { get; } + + [NullAllowed, Export ("iconItemProvider")] + NSItemProvider IconItemProvider { get; } + } + } diff --git a/tests/cecil-tests/Documentation.KnownFailures.txt b/tests/cecil-tests/Documentation.KnownFailures.txt index 9d8e15c146bf..71f03aefbd88 100644 --- a/tests/cecil-tests/Documentation.KnownFailures.txt +++ b/tests/cecil-tests/Documentation.KnownFailures.txt @@ -71644,6 +71644,9 @@ P:ReplayKit.RPScreenRecorder.Recording P:ReplayKit.RPScreenRecorder.SharedRecorder P:ReplayKit.RPSystemBroadcastPickerView.PreferredExtension P:ReplayKit.RPSystemBroadcastPickerView.ShowsMicrophoneButton +P:SafariServices.ISFAddToHomeScreenActivityItem.IconItemProvider +P:SafariServices.ISFAddToHomeScreenActivityItem.Title +P:SafariServices.ISFAddToHomeScreenActivityItem.Url P:SafariServices.ISFSafariExtensionHandling.PopoverViewController P:SafariServices.SFContentBlockerState.Enabled P:SafariServices.SFExtension.MessageKey @@ -80462,6 +80465,7 @@ T:ReplayKit.RPBroadcastActivityControllerDelegate T:ReplayKit.RPPreviewViewControllerMode T:ReplayKit.RPRecordingError T:ReplayKit.RPSampleBufferType +T:SafariServices.ISFAddToHomeScreenActivityItem T:SafariServices.ISFSafariExtensionHandling T:SafariServices.SFAuthenticationError T:SafariServices.SFContentBlockerErrorCode diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-SafariServices.todo b/tests/xtro-sharpie/api-annotations-dotnet/iOS-SafariServices.todo deleted file mode 100644 index 01525fe21402..000000000000 --- a/tests/xtro-sharpie/api-annotations-dotnet/iOS-SafariServices.todo +++ /dev/null @@ -1 +0,0 @@ -!missing-protocol! SFAddToHomeScreenActivityItem not bound diff --git a/tests/xtro-sharpie/iOS-SafariServices.todo b/tests/xtro-sharpie/iOS-SafariServices.todo deleted file mode 100644 index 01525fe21402..000000000000 --- a/tests/xtro-sharpie/iOS-SafariServices.todo +++ /dev/null @@ -1 +0,0 @@ -!missing-protocol! SFAddToHomeScreenActivityItem not bound From 36e8932544f58e706f5fdc51c237585e49f8fc0f Mon Sep 17 00:00:00 2001 From: Alex Soto Date: Mon, 8 Jul 2024 20:13:58 -0400 Subject: [PATCH 55/73] [ScreenCaptureKit] Update bindings to Xcode 15.3 --- src/screencapturekit.cs | 10 ++++++++++ tests/cecil-tests/Documentation.KnownFailures.txt | 4 ++++ .../api-annotations-dotnet/macOS-ScreenCaptureKit.todo | 2 -- tests/xtro-sharpie/macOS-ScreenCaptureKit.todo | 2 -- 4 files changed, 14 insertions(+), 4 deletions(-) delete mode 100644 tests/xtro-sharpie/api-annotations-dotnet/macOS-ScreenCaptureKit.todo delete mode 100644 tests/xtro-sharpie/macOS-ScreenCaptureKit.todo diff --git a/src/screencapturekit.cs b/src/screencapturekit.cs index de46aca3615a..39844ae4511c 100644 --- a/src/screencapturekit.cs +++ b/src/screencapturekit.cs @@ -214,6 +214,12 @@ interface SCShareableContent { [Export ("getShareableContentWithCompletionHandler:")] void GetShareableContent (Action completionHandler); + [Mac (14, 4)] + [Async] + [Static] + [Export ("getCurrentProcessShareableContentWithCompletionHandler:")] + void GetCurrentProcessShareableContent (Action completionHandler); + [Async] [Static] [Export ("getShareableContentExcludingDesktopWindows:onScreenWindowsOnly:completionHandler:")] @@ -448,6 +454,10 @@ interface SCStreamDelegate { [Export ("stream:didStopWithError:")] void DidStop (SCStream stream, NSError error); + [Mac (14,4)] + [Export ("userDidStopStream:")] + void UserDidStop (SCStream stream); + [Mac (14, 0)] [Export ("outputVideoEffectDidStartForStream:")] void OutputVideoEffectDidStart (SCStream stream); diff --git a/tests/cecil-tests/Documentation.KnownFailures.txt b/tests/cecil-tests/Documentation.KnownFailures.txt index 71f03aefbd88..b81ab303d896 100644 --- a/tests/cecil-tests/Documentation.KnownFailures.txt +++ b/tests/cecil-tests/Documentation.KnownFailures.txt @@ -44814,6 +44814,7 @@ M:ScreenCaptureKit.ISCContentSharingPickerObserver.DidUpdate(ScreenCaptureKit.SC M:ScreenCaptureKit.ISCStreamDelegate.DidStop(ScreenCaptureKit.SCStream,Foundation.NSError) M:ScreenCaptureKit.ISCStreamDelegate.OutputVideoEffectDidStart(ScreenCaptureKit.SCStream) M:ScreenCaptureKit.ISCStreamDelegate.OutputVideoEffectDidStop(ScreenCaptureKit.SCStream) +M:ScreenCaptureKit.ISCStreamDelegate.UserDidStop(ScreenCaptureKit.SCStream) M:ScreenCaptureKit.ISCStreamOutput.DidOutputSampleBuffer(ScreenCaptureKit.SCStream,CoreMedia.CMSampleBuffer,ScreenCaptureKit.SCStreamOutputType) M:ScreenCaptureKit.SCContentFilter.#ctor(ScreenCaptureKit.SCDisplay,ScreenCaptureKit.SCRunningApplication[],ScreenCaptureKit.SCWindow[],ScreenCaptureKit.SCContentFilterOption) M:ScreenCaptureKit.SCContentFilter.#ctor(ScreenCaptureKit.SCDisplay,ScreenCaptureKit.SCWindow[],ScreenCaptureKit.SCContentFilterOption) @@ -44822,6 +44823,7 @@ M:ScreenCaptureKit.SCContentSharingPickerObserver.DidFail(Foundation.NSError) M:ScreenCaptureKit.SCContentSharingPickerObserver.DidUpdate(ScreenCaptureKit.SCContentSharingPicker,ScreenCaptureKit.SCContentFilter,ScreenCaptureKit.SCStream) M:ScreenCaptureKit.SCScreenshotManager.CaptureImageAsync(ScreenCaptureKit.SCContentFilter,ScreenCaptureKit.SCStreamConfiguration) M:ScreenCaptureKit.SCScreenshotManager.CaptureSampleBufferAsync(ScreenCaptureKit.SCContentFilter,ScreenCaptureKit.SCStreamConfiguration) +M:ScreenCaptureKit.SCShareableContent.GetCurrentProcessShareableContentAsync M:ScreenCaptureKit.SCShareableContent.GetShareableContentAboveWindowAsync(System.Boolean,ScreenCaptureKit.SCWindow) M:ScreenCaptureKit.SCShareableContent.GetShareableContentAsync M:ScreenCaptureKit.SCShareableContent.GetShareableContentAsync(System.Boolean,System.Boolean) @@ -44832,9 +44834,11 @@ M:ScreenCaptureKit.SCStreamConfiguration.Dispose(System.Boolean) M:ScreenCaptureKit.SCStreamDelegate_Extensions.DidStop(ScreenCaptureKit.ISCStreamDelegate,ScreenCaptureKit.SCStream,Foundation.NSError) M:ScreenCaptureKit.SCStreamDelegate_Extensions.OutputVideoEffectDidStart(ScreenCaptureKit.ISCStreamDelegate,ScreenCaptureKit.SCStream) M:ScreenCaptureKit.SCStreamDelegate_Extensions.OutputVideoEffectDidStop(ScreenCaptureKit.ISCStreamDelegate,ScreenCaptureKit.SCStream) +M:ScreenCaptureKit.SCStreamDelegate_Extensions.UserDidStop(ScreenCaptureKit.ISCStreamDelegate,ScreenCaptureKit.SCStream) M:ScreenCaptureKit.SCStreamDelegate.DidStop(ScreenCaptureKit.SCStream,Foundation.NSError) M:ScreenCaptureKit.SCStreamDelegate.OutputVideoEffectDidStart(ScreenCaptureKit.SCStream) M:ScreenCaptureKit.SCStreamDelegate.OutputVideoEffectDidStop(ScreenCaptureKit.SCStream) +M:ScreenCaptureKit.SCStreamDelegate.UserDidStop(ScreenCaptureKit.SCStream) M:ScreenCaptureKit.SCStreamOutput_Extensions.DidOutputSampleBuffer(ScreenCaptureKit.ISCStreamOutput,ScreenCaptureKit.SCStream,CoreMedia.CMSampleBuffer,ScreenCaptureKit.SCStreamOutputType) M:ScreenTime.STScreenTimeConfiguration.EncodeTo(Foundation.NSCoder) M:ScreenTime.STScreenTimeConfigurationObserver.#ctor(CoreFoundation.DispatchQueue) diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-ScreenCaptureKit.todo b/tests/xtro-sharpie/api-annotations-dotnet/macOS-ScreenCaptureKit.todo deleted file mode 100644 index 46a1687c0986..000000000000 --- a/tests/xtro-sharpie/api-annotations-dotnet/macOS-ScreenCaptureKit.todo +++ /dev/null @@ -1,2 +0,0 @@ -!missing-protocol-member! SCStreamDelegate::userDidStopStream: not found -!missing-selector! +SCShareableContent::getCurrentProcessShareableContentWithCompletionHandler: not bound diff --git a/tests/xtro-sharpie/macOS-ScreenCaptureKit.todo b/tests/xtro-sharpie/macOS-ScreenCaptureKit.todo deleted file mode 100644 index 46a1687c0986..000000000000 --- a/tests/xtro-sharpie/macOS-ScreenCaptureKit.todo +++ /dev/null @@ -1,2 +0,0 @@ -!missing-protocol-member! SCStreamDelegate::userDidStopStream: not found -!missing-selector! +SCShareableContent::getCurrentProcessShareableContentWithCompletionHandler: not bound From 9a7936426d6ec706fbd94e47bb37051c6514a6d2 Mon Sep 17 00:00:00 2001 From: Alex Soto Date: Mon, 8 Jul 2024 23:14:00 -0400 Subject: [PATCH 56/73] [SensorKit] Update bindings to Xcode 15.3 --- src/sensorkit.cs | 400 ++++++++++++++++++ .../Documentation.KnownFailures.txt | 65 +++ tests/introspection/ApiSelectorTest.cs | 9 + .../api-annotations-dotnet/iOS-SensorKit.todo | 100 ----- tests/xtro-sharpie/iOS-SensorKit.todo | 100 ----- 5 files changed, 474 insertions(+), 200 deletions(-) delete mode 100644 tests/xtro-sharpie/api-annotations-dotnet/iOS-SensorKit.todo delete mode 100644 tests/xtro-sharpie/iOS-SensorKit.todo diff --git a/src/sensorkit.cs b/src/sensorkit.cs index 4802be02eb4b..1e1d442331fb 100644 --- a/src/sensorkit.cs +++ b/src/sensorkit.cs @@ -3,6 +3,15 @@ using Foundation; using ObjCRuntime; +using CoreMedia; +using Speech; +using SoundAnalysis; + +#if __MACCATALYST__ +using ARFaceAnchor = Foundation.NSObject; +#else +using ARKit; +#endif #if !NET using NativeHandle = System.IntPtr; @@ -14,6 +23,10 @@ namespace SensorKit { interface NSUnitDuration : NSUnit { } interface NSUnitIlluminance : NSUnit { } interface NSUnitLength : NSUnit { } + interface NSUnitElectricPotentialDifference : NSUnit { } + interface NSUnitFrequency : NSUnit { } + interface NSUnitAcceleration : NSUnit { } + interface NSUnitTemperature : NSUnit { } [NoWatch, NoTV, NoMac] [iOS (14, 0)] @@ -151,6 +164,60 @@ public enum SRMediaEventType : long { OffScreen, } + [Flags, NoWatch, NoTV, NoMac, iOS (17, 4), MacCatalyst (17, 4)] + [Native] + public enum SRElectrocardiogramDataFlags : ulong { + None = 0x0, + SignalInvalid = 1uL << 0, + CrownTouched = 1uL << 1, + } + + [NoWatch, NoTV, NoMac, iOS (17, 4), MacCatalyst (17, 4)] + [Native] + public enum SRElectrocardiogramLead : long { + RightArmMinusLeftArm = 1, + LeftArmMinusRightArm, + } + + [NoWatch, NoTV, NoMac, iOS (17, 4), MacCatalyst (17, 4)] + [Native] + public enum SRElectrocardiogramSessionState : long { + Begin = 1, + Active, + End, + } + + [NoWatch, NoTV, NoMac, iOS (17, 4), MacCatalyst (17, 4)] + [Native] + public enum SRElectrocardiogramSessionGuidance : long + { + Guided = 1, + Unguided, + } + + [Flags, NoWatch, NoTV, NoMac, iOS (17, 0), MacCatalyst (17, 0)] + [Native] + public enum SRFaceMetricsContext : ulong { + DeviceUnlock = 1uL << 0, + MessagingAppUsage = 1uL << 1 + } + + [Flags, NoWatch, NoTV, NoMac, iOS (17, 0), MacCatalyst (17, 0)] + [Native] + public enum SRSpeechMetricsSessionFlags : ulong { + Default = 0x0, + BypassVoiceProcessing = (1uL << 0) + } + + [Flags, NoWatch, NoTV, NoMac, iOS (17, 0), MacCatalyst (17, 0)] + [Native] + public enum SRWristTemperatureCondition : ulong{ + None = 0x0, + OffWrist = 1uL << 0, + OnCharger = 1uL << 1, + InMotion = 1uL << 2 + } + [NoWatch, NoTV, NoMac] [iOS (14, 0)] [MacCatalyst (14, 0)] @@ -328,6 +395,10 @@ interface SRDevice : NSSecureCoding, NSCopying { [Export ("systemVersion")] string SystemVersion { get; } + + [iOS (17, 0), MacCatalyst (17, 0)] + [Export ("productType")] + string ProductType { get; } } [NoWatch, NoTV, NoMac] @@ -823,6 +894,30 @@ enum SRSensor { [iOS (16, 4), MacCatalyst (16, 4)] [Field ("SRSensorMediaEvents")] MediaEvents, + + [iOS (17, 0), MacCatalyst (17, 0)] + [Field ("SRSensorFaceMetrics")] + FaceMetrics, + + [iOS (17, 0), MacCatalyst (17, 0)] + [Field ("SRSensorHeartRate")] + HeartRate, + + [iOS (17, 0), MacCatalyst (17, 0)] + [Field ("SRSensorOdometer")] + Odometer, + + [iOS (17, 0), MacCatalyst (17, 0)] + [Field ("SRSensorWristTemperature")] + WristTemperature, + + [iOS (17, 4), MacCatalyst (17, 4)] + [Field ("SRSensorElectrocardiogram")] + Electrocardiogram, + + [iOS (17, 4), MacCatalyst (17, 4)] + [Field ("SRSensorPhotoplethysmogram")] + Photoplethysmogram, } [NoWatch, NoTV, NoMac] @@ -982,4 +1077,309 @@ interface SRSupplementalCategory : NSCopying, NSSecureCoding { [Export ("identifier")] NSString Identifier { get; } } + + [NoWatch, NoTV, NoMac, iOS (17, 0), MacCatalyst (17, 0)] + [BaseType (typeof (NSObject))] + [DisableDefaultCtor] + interface SRAudioLevel : NSCopying, NSSecureCoding { + + [Export ("timeRange", ArgumentSemantic.Assign)] + CMTimeRange TimeRange { get; } + + [Export ("loudness")] + double Loudness { get; } + } + + [NoWatch, NoTV, NoMac, iOS (17, 0), MacCatalyst (17, 0)] + [BaseType (typeof (NSObject))] + [DisableDefaultCtor] + interface SRFaceMetricsExpression : NSCopying, NSSecureCoding { + + [Export ("identifier")] + string Identifier { get; } + + [Export ("value")] + double Value { get; } + } + + [NoWatch, NoTV, NoMac, iOS (17, 0), MacCatalyst (17, 0)] + [BaseType (typeof (NSObject))] + [DisableDefaultCtor] + interface SRSpeechExpression : NSCopying, NSSecureCoding { + + [Export ("version")] + string Version { get; } + + [Export ("timeRange", ArgumentSemantic.Assign)] + CMTimeRange TimeRange { get; } + + [Export ("confidence")] + double Confidence { get; } + + [Export ("mood")] + double Mood { get; } + + [Export ("valence")] + double Valence { get; } + + [Export ("activation")] + double Activation { get; } + + [Export ("dominance")] + double Dominance { get; } + } + + [NoWatch, NoTV, NoMac, iOS (17, 0), MacCatalyst (17, 0)] + [BaseType (typeof (NSObject))] + [DisableDefaultCtor] + interface SRSpeechMetrics : NSCopying, NSSecureCoding { + + [Export ("sessionIdentifier")] + string SessionIdentifier { get; } + + [Export ("sessionFlags", ArgumentSemantic.Assign)] + SRSpeechMetricsSessionFlags SessionFlags { get; } + + [Export ("timestamp", ArgumentSemantic.Strong)] + NSDate Timestamp { get; } + + [iOS (17, 2), MacCatalyst (17, 2)] + [Export ("timeSinceAudioStart")] + double TimeSinceAudioStart { get; } + + [NullAllowed, Export ("audioLevel", ArgumentSemantic.Strong)] + SRAudioLevel AudioLevel { get; } + + [NullAllowed, Export ("speechRecognition", ArgumentSemantic.Strong)] + SFSpeechRecognitionResult SpeechRecognition { get; } + + [NullAllowed, Export ("soundClassification", ArgumentSemantic.Strong)] + SNClassificationResult SoundClassification { get; } + + [NullAllowed, Export ("speechExpression", ArgumentSemantic.Strong)] + SRSpeechExpression SpeechExpression { get; } + } + + [NoWatch, NoTV, NoMac, iOS (17, 0), MacCatalyst (17, 0)] + [BaseType (typeof (NSObject))] + [DisableDefaultCtor] + interface SRWristTemperature : NSCopying, NSSecureCoding { + + [Export ("timestamp", ArgumentSemantic.Strong)] + NSDate Timestamp { get; } + + [Export ("value", ArgumentSemantic.Strong)] + NSMeasurement Value { get; } + + [Export ("condition")] + SRWristTemperatureCondition Condition { get; } + + [Export ("errorEstimate", ArgumentSemantic.Strong)] + NSMeasurement ErrorEstimate { get; } + } + + [NoWatch, NoTV, NoMac, iOS (17, 0), MacCatalyst (17, 0)] + [BaseType (typeof (NSObject))] + [DisableDefaultCtor] + interface SRWristTemperatureSession : NSCopying, NSSecureCoding { + + [Export ("startDate", ArgumentSemantic.Strong)] + NSDate StartDate { get; } + + [Export ("duration")] + double Duration { get; } + + [Export ("version")] + string Version { get; } + + [Export ("temperatures", ArgumentSemantic.Copy)] + NSEnumerator Temperatures { get; } + } + + [NoWatch, NoTV, NoMac, iOS (17, 0), NoMacCatalyst] + [BaseType (typeof (NSObject))] + [DisableDefaultCtor] + interface SRFaceMetrics : NSCopying, NSSecureCoding { + + [Export ("version")] + string Version { get; } + + [Export ("sessionIdentifier")] + string SessionIdentifier { get; } + + [Export ("context", ArgumentSemantic.Assign)] + SRFaceMetricsContext Context { get; } + + [Export ("faceAnchor", ArgumentSemantic.Copy)] + ARFaceAnchor FaceAnchor { get; } + + [Export ("wholeFaceExpressions", ArgumentSemantic.Copy)] + SRFaceMetricsExpression[] WholeFaceExpressions { get; } + + [Export ("partialFaceExpressions", ArgumentSemantic.Copy)] + SRFaceMetricsExpression[] PartialFaceExpressions { get; } + } + + [NoWatch, NoTV, NoMac, iOS (17, 4), MacCatalyst (17, 4)] + [BaseType (typeof (NSObject))] + [DisableDefaultCtor] + interface SRElectrocardiogramData : NSCopying, NSSecureCoding { + + [Export ("flags", ArgumentSemantic.Assign)] + SRElectrocardiogramDataFlags Flags { get; } + + [Export ("value", ArgumentSemantic.Strong)] + NSMeasurement Value { get; } + } + + [NoWatch, NoTV, NoMac, iOS (17, 4), MacCatalyst (17, 4)] + [BaseType (typeof (NSObject))] + [DisableDefaultCtor] + interface SRElectrocardiogramSample : NSCopying, NSSecureCoding { + + [Export ("date", ArgumentSemantic.Strong)] + NSDate Date { get; } + + [Export ("frequency", ArgumentSemantic.Strong)] + NSMeasurement Frequency { get; } + + [Export ("session", ArgumentSemantic.Strong)] + SRElectrocardiogramSession Session { get; } + + [Export ("lead", ArgumentSemantic.Assign)] + SRElectrocardiogramLead Lead { get; } + + [Export ("data", ArgumentSemantic.Copy)] + SRElectrocardiogramData[] Data { get; } + } + + [NoWatch, NoTV, NoMac, iOS (17, 4), MacCatalyst (17, 4)] + [BaseType (typeof (NSObject))] + [DisableDefaultCtor] + interface SRElectrocardiogramSession : NSCopying, NSSecureCoding { + + [Export ("state", ArgumentSemantic.Assign)] + SRElectrocardiogramSessionState State { get; } + + [Export ("sessionGuidance", ArgumentSemantic.Assign)] + SRElectrocardiogramSessionGuidance SessionGuidance { get; } + + [Export ("identifier")] + string Identifier { get; } + } + + [NoWatch, NoTV, NoMac, iOS (17, 4), MacCatalyst (17, 4)] + public enum SRPhotoplethysmogramOpticalSampleCondition { + [Field ("SRPhotoplethysmogramOpticalSampleConditionSignalSaturation")] + SignalSaturation, + [Field ("SRPhotoplethysmogramOpticalSampleConditionUnreliableNoise")] + UnreliableNoise, + } + + [NoWatch, NoTV, NoMac, iOS (17, 4), MacCatalyst (17, 4)] + [BaseType (typeof (NSObject))] + [DisableDefaultCtor] + interface SRPhotoplethysmogramOpticalSample : NSCopying, NSSecureCoding { + + [Export ("emitter")] + nint Emitter { get; } + + [Export ("activePhotodiodeIndexes", ArgumentSemantic.Strong)] + NSIndexSet ActivePhotodiodeIndexes { get; } + + [Export ("signalIdentifier")] + nint SignalIdentifier { get; } + + [Export ("nominalWavelength", ArgumentSemantic.Strong)] + NSMeasurement NominalWavelength { get; } + + [Export ("effectiveWavelength", ArgumentSemantic.Strong)] + NSMeasurement EffectiveWavelength { get; } + + [Export ("samplingFrequency", ArgumentSemantic.Strong)] + NSMeasurement SamplingFrequency { get; } + + [Export ("nanosecondsSinceStart")] + long NanosecondsSinceStart { get; } + + [NullAllowed] + [Export ("normalizedReflectance", ArgumentSemantic.Strong)] + NSNumber NormalizedReflectance { get; } + + [NullAllowed] + [Export ("whiteNoise", ArgumentSemantic.Strong)] + NSNumber WhiteNoise { get; } + + [NullAllowed] + [Export ("pinkNoise", ArgumentSemantic.Strong)] + NSNumber PinkNoise { get; } + + [NullAllowed] + [Export ("backgroundNoise", ArgumentSemantic.Strong)] + NSNumber BackgroundNoise { get; } + + [NullAllowed] + [Export ("backgroundNoiseOffset", ArgumentSemantic.Strong)] + NSNumber BackgroundNoiseOffset { get; } + + [Export ("conditions", ArgumentSemantic.Copy)] + NSString[] Conditions { get; } + } + + [NoWatch, NoTV, NoMac, iOS (17, 4), MacCatalyst (17, 4)] + [BaseType (typeof (NSObject))] + [DisableDefaultCtor] + interface SRPhotoplethysmogramAccelerometerSample : NSCopying, NSSecureCoding { + + [Export ("nanosecondsSinceStart")] + long NanosecondsSinceStart { get; } + + [Export ("samplingFrequency", ArgumentSemantic.Strong)] + NSMeasurement SamplingFrequency { get; } + + [Export ("x", ArgumentSemantic.Strong)] + NSMeasurement X { get; } + + [Export ("y", ArgumentSemantic.Strong)] + NSMeasurement Y { get; } + + [Export ("z", ArgumentSemantic.Strong)] + NSMeasurement Z { get; } + } + + [NoWatch, NoTV, NoMac, iOS (17, 4), MacCatalyst (17, 4)] + public enum SRPhotoplethysmogramSampleUsage { + [Field ("SRPhotoplethysmogramSampleUsageForegroundHeartRate")] + ForegroundHeartRate, + [Field ("SRPhotoplethysmogramSampleUsageDeepBreathing")] + DeepBreathing, + [Field ("SRPhotoplethysmogramSampleUsageForegroundBloodOxygen")] + ForegroundBloodOxygen, + [Field ("SRPhotoplethysmogramSampleUsageBackgroundSystem")] + BackgroundSystem, + } + + [NoWatch, NoTV, NoMac, iOS (17, 4), MacCatalyst (17, 4)] + [BaseType (typeof(NSObject))] + [DisableDefaultCtor] + interface SRPhotoplethysmogramSample : NSCopying, NSSecureCoding { + + [Export ("startDate", ArgumentSemantic.Strong)] + NSDate StartDate { get; } + + [Export ("nanosecondsSinceStart")] + long NanosecondsSinceStart { get; } + + [Export ("usage", ArgumentSemantic.Copy)] + NSString[] Usage { get; } + + [Export ("opticalSamples", ArgumentSemantic.Copy)] + SRPhotoplethysmogramOpticalSample[] OpticalSamples { get; } + + [Export ("accelerometerSamples", ArgumentSemantic.Copy)] + SRPhotoplethysmogramAccelerometerSample[] AccelerometerSamples { get; } + + [NullAllowed, Export ("temperature", ArgumentSemantic.Strong)] + NSMeasurement Temperature { get; } + } } diff --git a/tests/cecil-tests/Documentation.KnownFailures.txt b/tests/cecil-tests/Documentation.KnownFailures.txt index b81ab303d896..6c9c9316987a 100644 --- a/tests/cecil-tests/Documentation.KnownFailures.txt +++ b/tests/cecil-tests/Documentation.KnownFailures.txt @@ -17872,11 +17872,23 @@ F:SensorKit.SRDeviceUsageCategory.Stickers F:SensorKit.SRDeviceUsageCategory.Travel F:SensorKit.SRDeviceUsageCategory.Utilities F:SensorKit.SRDeviceUsageCategory.Weather +F:SensorKit.SRElectrocardiogramDataFlags.CrownTouched +F:SensorKit.SRElectrocardiogramDataFlags.None +F:SensorKit.SRElectrocardiogramDataFlags.SignalInvalid +F:SensorKit.SRElectrocardiogramLead.LeftArmMinusRightArm +F:SensorKit.SRElectrocardiogramLead.RightArmMinusLeftArm +F:SensorKit.SRElectrocardiogramSessionGuidance.Guided +F:SensorKit.SRElectrocardiogramSessionGuidance.Unguided +F:SensorKit.SRElectrocardiogramSessionState.Active +F:SensorKit.SRElectrocardiogramSessionState.Begin +F:SensorKit.SRElectrocardiogramSessionState.End F:SensorKit.SRErrorCode.DataInaccessible F:SensorKit.SRErrorCode.FetchRequestInvalid F:SensorKit.SRErrorCode.InvalidEntitlement F:SensorKit.SRErrorCode.NoAuthorization F:SensorKit.SRErrorCode.PromptDeclined +F:SensorKit.SRFaceMetricsContext.DeviceUnlock +F:SensorKit.SRFaceMetricsContext.MessagingAppUsage F:SensorKit.SRKeyboardMetricsSentimentCategory.Absolutist F:SensorKit.SRKeyboardMetricsSentimentCategory.Anger F:SensorKit.SRKeyboardMetricsSentimentCategory.Anxiety @@ -17911,27 +17923,45 @@ F:SensorKit.SRNotificationEvent.Silence F:SensorKit.SRNotificationEvent.SupplementaryAction F:SensorKit.SRNotificationEvent.TapCoalesce F:SensorKit.SRNotificationEvent.Unknown +F:SensorKit.SRPhotoplethysmogramOpticalSampleCondition.SignalSaturation +F:SensorKit.SRPhotoplethysmogramOpticalSampleCondition.UnreliableNoise +F:SensorKit.SRPhotoplethysmogramSampleUsage.BackgroundSystem +F:SensorKit.SRPhotoplethysmogramSampleUsage.DeepBreathing +F:SensorKit.SRPhotoplethysmogramSampleUsage.ForegroundBloodOxygen +F:SensorKit.SRPhotoplethysmogramSampleUsage.ForegroundHeartRate F:SensorKit.SRSensor.Accelerometer F:SensorKit.SRSensor.AmbientLightSensor F:SensorKit.SRSensor.AmbientPressure F:SensorKit.SRSensor.DeviceUsageReport +F:SensorKit.SRSensor.Electrocardiogram +F:SensorKit.SRSensor.FaceMetrics +F:SensorKit.SRSensor.HeartRate F:SensorKit.SRSensor.Invalid F:SensorKit.SRSensor.KeyboardMetrics F:SensorKit.SRSensor.MediaEvents F:SensorKit.SRSensor.MessagesUsageReport +F:SensorKit.SRSensor.Odometer F:SensorKit.SRSensor.OnWristState F:SensorKit.SRSensor.PedometerData F:SensorKit.SRSensor.PhoneUsageReport +F:SensorKit.SRSensor.Photoplethysmogram F:SensorKit.SRSensor.RotationRate F:SensorKit.SRSensor.SiriSpeechMetrics F:SensorKit.SRSensor.TelephonySpeechMetrics F:SensorKit.SRSensor.Visits +F:SensorKit.SRSensor.WristTemperature +F:SensorKit.SRSpeechMetricsSessionFlags.BypassVoiceProcessing +F:SensorKit.SRSpeechMetricsSessionFlags.Default F:SensorKit.SRTextInputSessionType.Dictation F:SensorKit.SRTextInputSessionType.Keyboard F:SensorKit.SRTextInputSessionType.Pencil F:SensorKit.SRTextInputSessionType.ThirdPartyKeyboard F:SensorKit.SRWristLocation.Left F:SensorKit.SRWristLocation.Right +F:SensorKit.SRWristTemperatureCondition.InMotion +F:SensorKit.SRWristTemperatureCondition.None +F:SensorKit.SRWristTemperatureCondition.OffWrist +F:SensorKit.SRWristTemperatureCondition.OnCharger F:ServiceManagement.SMAppServiceStatus.Enabled F:ServiceManagement.SMAppServiceStatus.NotFound F:ServiceManagement.SMAppServiceStatus.NotRegistered @@ -45147,12 +45177,30 @@ M:SensorKit.SRAbsoluteTime.FromCFAbsoluteTime(System.Double) M:SensorKit.SRAbsoluteTime.FromContinuousTime(System.UInt64) M:SensorKit.SRAbsoluteTime.GetCurrent M:SensorKit.SRAbsoluteTime.ToCFAbsoluteTime(System.Double) +M:SensorKit.SRAudioLevel.Copy(Foundation.NSZone) +M:SensorKit.SRAudioLevel.EncodeTo(Foundation.NSCoder) M:SensorKit.SRDeletionRecord.EncodeTo(Foundation.NSCoder) M:SensorKit.SRDevice.Copy(Foundation.NSZone) M:SensorKit.SRDevice.EncodeTo(Foundation.NSCoder) +M:SensorKit.SRElectrocardiogramData.Copy(Foundation.NSZone) +M:SensorKit.SRElectrocardiogramData.EncodeTo(Foundation.NSCoder) +M:SensorKit.SRElectrocardiogramSample.Copy(Foundation.NSZone) +M:SensorKit.SRElectrocardiogramSample.EncodeTo(Foundation.NSCoder) +M:SensorKit.SRElectrocardiogramSession.Copy(Foundation.NSZone) +M:SensorKit.SRElectrocardiogramSession.EncodeTo(Foundation.NSCoder) +M:SensorKit.SRFaceMetrics.Copy(Foundation.NSZone) +M:SensorKit.SRFaceMetrics.EncodeTo(Foundation.NSCoder) +M:SensorKit.SRFaceMetricsExpression.Copy(Foundation.NSZone) +M:SensorKit.SRFaceMetricsExpression.EncodeTo(Foundation.NSCoder) M:SensorKit.SRFetchResult`1.Copy(Foundation.NSZone) M:SensorKit.SRMediaEvent.Copy(Foundation.NSZone) M:SensorKit.SRMediaEvent.EncodeTo(Foundation.NSCoder) +M:SensorKit.SRPhotoplethysmogramAccelerometerSample.Copy(Foundation.NSZone) +M:SensorKit.SRPhotoplethysmogramAccelerometerSample.EncodeTo(Foundation.NSCoder) +M:SensorKit.SRPhotoplethysmogramOpticalSample.Copy(Foundation.NSZone) +M:SensorKit.SRPhotoplethysmogramOpticalSample.EncodeTo(Foundation.NSCoder) +M:SensorKit.SRPhotoplethysmogramSample.Copy(Foundation.NSZone) +M:SensorKit.SRPhotoplethysmogramSample.EncodeTo(Foundation.NSCoder) M:SensorKit.SRSensorExtensions.GetSensorForDeletionRecords(SensorKit.SRSensor) M:SensorKit.SRSensorReader.#ctor(SensorKit.SRSensor) M:SensorKit.SRSensorReader.Dispose(System.Boolean) @@ -45177,8 +45225,16 @@ M:SensorKit.SRSensorReaderDelegate.FetchingRequestFailed(SensorKit.SRSensorReade M:SensorKit.SRSensorReaderDelegate.StartRecordingFailed(SensorKit.SRSensorReader,Foundation.NSError) M:SensorKit.SRSensorReaderDelegate.StopRecordingFailed(SensorKit.SRSensorReader,Foundation.NSError) M:SensorKit.SRSensorReaderDelegate.WillStartRecording(SensorKit.SRSensorReader) +M:SensorKit.SRSpeechExpression.Copy(Foundation.NSZone) +M:SensorKit.SRSpeechExpression.EncodeTo(Foundation.NSCoder) +M:SensorKit.SRSpeechMetrics.Copy(Foundation.NSZone) +M:SensorKit.SRSpeechMetrics.EncodeTo(Foundation.NSCoder) M:SensorKit.SRSupplementalCategory.Copy(Foundation.NSZone) M:SensorKit.SRSupplementalCategory.EncodeTo(Foundation.NSCoder) +M:SensorKit.SRWristTemperature.Copy(Foundation.NSZone) +M:SensorKit.SRWristTemperature.EncodeTo(Foundation.NSCoder) +M:SensorKit.SRWristTemperatureSession.Copy(Foundation.NSZone) +M:SensorKit.SRWristTemperatureSession.EncodeTo(Foundation.NSCoder) M:ServiceManagement.SMAppService.CreateAgentService(System.String) M:ServiceManagement.SMAppService.CreateDaemonService(System.String) M:ServiceManagement.SMAppService.CreateLoginItemService(System.String) @@ -80634,15 +80690,24 @@ T:SensorKit.SRAuthorizationStatus T:SensorKit.SRCrownOrientation T:SensorKit.SRDeletionReason T:SensorKit.SRDeviceUsageCategory +T:SensorKit.SRElectrocardiogramDataFlags +T:SensorKit.SRElectrocardiogramLead +T:SensorKit.SRElectrocardiogramSessionGuidance +T:SensorKit.SRElectrocardiogramSessionState T:SensorKit.SRErrorCode +T:SensorKit.SRFaceMetricsContext T:SensorKit.SRKeyboardMetricsSentimentCategory T:SensorKit.SRLocationCategory T:SensorKit.SRMediaEventType T:SensorKit.SRNotificationEvent +T:SensorKit.SRPhotoplethysmogramOpticalSampleCondition +T:SensorKit.SRPhotoplethysmogramSampleUsage T:SensorKit.SRSensor T:SensorKit.SRSensorReaderDelegate +T:SensorKit.SRSpeechMetricsSessionFlags T:SensorKit.SRTextInputSessionType T:SensorKit.SRWristLocation +T:SensorKit.SRWristTemperatureCondition T:ServiceManagement.SMAppService T:ServiceManagement.SMAppServiceStatus T:SharedWithYou.ISWCollaborationViewDelegate diff --git a/tests/introspection/ApiSelectorTest.cs b/tests/introspection/ApiSelectorTest.cs index 66d8e0cbabf2..c816500658ed 100644 --- a/tests/introspection/ApiSelectorTest.cs +++ b/tests/introspection/ApiSelectorTest.cs @@ -995,6 +995,15 @@ protected virtual bool Skip (Type type, string selectorName) return true; } break; + case "SRFaceMetrics": + switch (selectorName) { + case "faceAnchor": + // This selector does not exist in the simulator + if (TestRuntime.IsSimulatorOrDesktop) + return true; + break; + } + break; } // old binding mistake diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-SensorKit.todo b/tests/xtro-sharpie/api-annotations-dotnet/iOS-SensorKit.todo deleted file mode 100644 index 6d49b59bfa4a..000000000000 --- a/tests/xtro-sharpie/api-annotations-dotnet/iOS-SensorKit.todo +++ /dev/null @@ -1,100 +0,0 @@ -!missing-enum! SRFaceMetricsContext not bound -!missing-enum! SRSpeechMetricsSessionFlags not bound -!missing-enum! SRWristTemperatureCondition not bound -!missing-field! SRSensorFaceMetrics not bound -!missing-field! SRSensorHeartRate not bound -!missing-field! SRSensorOdometer not bound -!missing-field! SRSensorWristTemperature not bound -!missing-selector! SRAudioLevel::loudness not bound -!missing-selector! SRAudioLevel::timeRange not bound -!missing-selector! SRDevice::productType not bound -!missing-selector! SRFaceMetrics::context not bound -!missing-selector! SRFaceMetrics::faceAnchor not bound -!missing-selector! SRFaceMetrics::partialFaceExpressions not bound -!missing-selector! SRFaceMetrics::sessionIdentifier not bound -!missing-selector! SRFaceMetrics::version not bound -!missing-selector! SRFaceMetrics::wholeFaceExpressions not bound -!missing-selector! SRFaceMetricsExpression::identifier not bound -!missing-selector! SRFaceMetricsExpression::value not bound -!missing-selector! SRSpeechExpression::activation not bound -!missing-selector! SRSpeechExpression::confidence not bound -!missing-selector! SRSpeechExpression::dominance not bound -!missing-selector! SRSpeechExpression::mood not bound -!missing-selector! SRSpeechExpression::timeRange not bound -!missing-selector! SRSpeechExpression::valence not bound -!missing-selector! SRSpeechExpression::version not bound -!missing-selector! SRSpeechMetrics::audioLevel not bound -!missing-selector! SRSpeechMetrics::sessionFlags not bound -!missing-selector! SRSpeechMetrics::sessionIdentifier not bound -!missing-selector! SRSpeechMetrics::soundClassification not bound -!missing-selector! SRSpeechMetrics::speechExpression not bound -!missing-selector! SRSpeechMetrics::speechRecognition not bound -!missing-selector! SRSpeechMetrics::timestamp not bound -!missing-selector! SRWristTemperature::condition not bound -!missing-selector! SRWristTemperature::errorEstimate not bound -!missing-selector! SRWristTemperature::timestamp not bound -!missing-selector! SRWristTemperature::value not bound -!missing-selector! SRWristTemperatureSession::duration not bound -!missing-selector! SRWristTemperatureSession::startDate not bound -!missing-selector! SRWristTemperatureSession::temperatures not bound -!missing-selector! SRWristTemperatureSession::version not bound -!missing-type! SRAudioLevel not bound -!missing-type! SRFaceMetrics not bound -!missing-type! SRFaceMetricsExpression not bound -!missing-type! SRSpeechExpression not bound -!missing-type! SRSpeechMetrics not bound -!missing-type! SRWristTemperature not bound -!missing-type! SRWristTemperatureSession not bound -!missing-selector! SRSpeechMetrics::timeSinceAudioStart not bound -!missing-enum! SRElectrocardiogramDataFlags not bound -!missing-enum! SRElectrocardiogramLead not bound -!missing-enum! SRElectrocardiogramSessionGuidance not bound -!missing-enum! SRElectrocardiogramSessionState not bound -!missing-field! SRPhotoplethysmogramOpticalSampleConditionSignalSaturation not bound -!missing-field! SRPhotoplethysmogramOpticalSampleConditionUnreliableNoise not bound -!missing-field! SRPhotoplethysmogramSampleUsageBackgroundSystem not bound -!missing-field! SRPhotoplethysmogramSampleUsageDeepBreathing not bound -!missing-field! SRPhotoplethysmogramSampleUsageForegroundBloodOxygen not bound -!missing-field! SRPhotoplethysmogramSampleUsageForegroundHeartRate not bound -!missing-field! SRSensorElectrocardiogram not bound -!missing-field! SRSensorPhotoplethysmogram not bound -!missing-selector! SRElectrocardiogramData::flags not bound -!missing-selector! SRElectrocardiogramData::value not bound -!missing-selector! SRElectrocardiogramSample::data not bound -!missing-selector! SRElectrocardiogramSample::date not bound -!missing-selector! SRElectrocardiogramSample::frequency not bound -!missing-selector! SRElectrocardiogramSample::lead not bound -!missing-selector! SRElectrocardiogramSample::session not bound -!missing-selector! SRElectrocardiogramSession::identifier not bound -!missing-selector! SRElectrocardiogramSession::sessionGuidance not bound -!missing-selector! SRElectrocardiogramSession::state not bound -!missing-selector! SRPhotoplethysmogramAccelerometerSample::nanosecondsSinceStart not bound -!missing-selector! SRPhotoplethysmogramAccelerometerSample::samplingFrequency not bound -!missing-selector! SRPhotoplethysmogramAccelerometerSample::x not bound -!missing-selector! SRPhotoplethysmogramAccelerometerSample::y not bound -!missing-selector! SRPhotoplethysmogramAccelerometerSample::z not bound -!missing-selector! SRPhotoplethysmogramOpticalSample::activePhotodiodeIndexes not bound -!missing-selector! SRPhotoplethysmogramOpticalSample::backgroundNoise not bound -!missing-selector! SRPhotoplethysmogramOpticalSample::backgroundNoiseOffset not bound -!missing-selector! SRPhotoplethysmogramOpticalSample::conditions not bound -!missing-selector! SRPhotoplethysmogramOpticalSample::effectiveWavelength not bound -!missing-selector! SRPhotoplethysmogramOpticalSample::emitter not bound -!missing-selector! SRPhotoplethysmogramOpticalSample::nanosecondsSinceStart not bound -!missing-selector! SRPhotoplethysmogramOpticalSample::nominalWavelength not bound -!missing-selector! SRPhotoplethysmogramOpticalSample::normalizedReflectance not bound -!missing-selector! SRPhotoplethysmogramOpticalSample::pinkNoise not bound -!missing-selector! SRPhotoplethysmogramOpticalSample::samplingFrequency not bound -!missing-selector! SRPhotoplethysmogramOpticalSample::signalIdentifier not bound -!missing-selector! SRPhotoplethysmogramOpticalSample::whiteNoise not bound -!missing-selector! SRPhotoplethysmogramSample::accelerometerSamples not bound -!missing-selector! SRPhotoplethysmogramSample::nanosecondsSinceStart not bound -!missing-selector! SRPhotoplethysmogramSample::opticalSamples not bound -!missing-selector! SRPhotoplethysmogramSample::startDate not bound -!missing-selector! SRPhotoplethysmogramSample::temperature not bound -!missing-selector! SRPhotoplethysmogramSample::usage not bound -!missing-type! SRElectrocardiogramData not bound -!missing-type! SRElectrocardiogramSample not bound -!missing-type! SRElectrocardiogramSession not bound -!missing-type! SRPhotoplethysmogramAccelerometerSample not bound -!missing-type! SRPhotoplethysmogramOpticalSample not bound -!missing-type! SRPhotoplethysmogramSample not bound diff --git a/tests/xtro-sharpie/iOS-SensorKit.todo b/tests/xtro-sharpie/iOS-SensorKit.todo deleted file mode 100644 index 6d49b59bfa4a..000000000000 --- a/tests/xtro-sharpie/iOS-SensorKit.todo +++ /dev/null @@ -1,100 +0,0 @@ -!missing-enum! SRFaceMetricsContext not bound -!missing-enum! SRSpeechMetricsSessionFlags not bound -!missing-enum! SRWristTemperatureCondition not bound -!missing-field! SRSensorFaceMetrics not bound -!missing-field! SRSensorHeartRate not bound -!missing-field! SRSensorOdometer not bound -!missing-field! SRSensorWristTemperature not bound -!missing-selector! SRAudioLevel::loudness not bound -!missing-selector! SRAudioLevel::timeRange not bound -!missing-selector! SRDevice::productType not bound -!missing-selector! SRFaceMetrics::context not bound -!missing-selector! SRFaceMetrics::faceAnchor not bound -!missing-selector! SRFaceMetrics::partialFaceExpressions not bound -!missing-selector! SRFaceMetrics::sessionIdentifier not bound -!missing-selector! SRFaceMetrics::version not bound -!missing-selector! SRFaceMetrics::wholeFaceExpressions not bound -!missing-selector! SRFaceMetricsExpression::identifier not bound -!missing-selector! SRFaceMetricsExpression::value not bound -!missing-selector! SRSpeechExpression::activation not bound -!missing-selector! SRSpeechExpression::confidence not bound -!missing-selector! SRSpeechExpression::dominance not bound -!missing-selector! SRSpeechExpression::mood not bound -!missing-selector! SRSpeechExpression::timeRange not bound -!missing-selector! SRSpeechExpression::valence not bound -!missing-selector! SRSpeechExpression::version not bound -!missing-selector! SRSpeechMetrics::audioLevel not bound -!missing-selector! SRSpeechMetrics::sessionFlags not bound -!missing-selector! SRSpeechMetrics::sessionIdentifier not bound -!missing-selector! SRSpeechMetrics::soundClassification not bound -!missing-selector! SRSpeechMetrics::speechExpression not bound -!missing-selector! SRSpeechMetrics::speechRecognition not bound -!missing-selector! SRSpeechMetrics::timestamp not bound -!missing-selector! SRWristTemperature::condition not bound -!missing-selector! SRWristTemperature::errorEstimate not bound -!missing-selector! SRWristTemperature::timestamp not bound -!missing-selector! SRWristTemperature::value not bound -!missing-selector! SRWristTemperatureSession::duration not bound -!missing-selector! SRWristTemperatureSession::startDate not bound -!missing-selector! SRWristTemperatureSession::temperatures not bound -!missing-selector! SRWristTemperatureSession::version not bound -!missing-type! SRAudioLevel not bound -!missing-type! SRFaceMetrics not bound -!missing-type! SRFaceMetricsExpression not bound -!missing-type! SRSpeechExpression not bound -!missing-type! SRSpeechMetrics not bound -!missing-type! SRWristTemperature not bound -!missing-type! SRWristTemperatureSession not bound -!missing-selector! SRSpeechMetrics::timeSinceAudioStart not bound -!missing-enum! SRElectrocardiogramDataFlags not bound -!missing-enum! SRElectrocardiogramLead not bound -!missing-enum! SRElectrocardiogramSessionGuidance not bound -!missing-enum! SRElectrocardiogramSessionState not bound -!missing-field! SRPhotoplethysmogramOpticalSampleConditionSignalSaturation not bound -!missing-field! SRPhotoplethysmogramOpticalSampleConditionUnreliableNoise not bound -!missing-field! SRPhotoplethysmogramSampleUsageBackgroundSystem not bound -!missing-field! SRPhotoplethysmogramSampleUsageDeepBreathing not bound -!missing-field! SRPhotoplethysmogramSampleUsageForegroundBloodOxygen not bound -!missing-field! SRPhotoplethysmogramSampleUsageForegroundHeartRate not bound -!missing-field! SRSensorElectrocardiogram not bound -!missing-field! SRSensorPhotoplethysmogram not bound -!missing-selector! SRElectrocardiogramData::flags not bound -!missing-selector! SRElectrocardiogramData::value not bound -!missing-selector! SRElectrocardiogramSample::data not bound -!missing-selector! SRElectrocardiogramSample::date not bound -!missing-selector! SRElectrocardiogramSample::frequency not bound -!missing-selector! SRElectrocardiogramSample::lead not bound -!missing-selector! SRElectrocardiogramSample::session not bound -!missing-selector! SRElectrocardiogramSession::identifier not bound -!missing-selector! SRElectrocardiogramSession::sessionGuidance not bound -!missing-selector! SRElectrocardiogramSession::state not bound -!missing-selector! SRPhotoplethysmogramAccelerometerSample::nanosecondsSinceStart not bound -!missing-selector! SRPhotoplethysmogramAccelerometerSample::samplingFrequency not bound -!missing-selector! SRPhotoplethysmogramAccelerometerSample::x not bound -!missing-selector! SRPhotoplethysmogramAccelerometerSample::y not bound -!missing-selector! SRPhotoplethysmogramAccelerometerSample::z not bound -!missing-selector! SRPhotoplethysmogramOpticalSample::activePhotodiodeIndexes not bound -!missing-selector! SRPhotoplethysmogramOpticalSample::backgroundNoise not bound -!missing-selector! SRPhotoplethysmogramOpticalSample::backgroundNoiseOffset not bound -!missing-selector! SRPhotoplethysmogramOpticalSample::conditions not bound -!missing-selector! SRPhotoplethysmogramOpticalSample::effectiveWavelength not bound -!missing-selector! SRPhotoplethysmogramOpticalSample::emitter not bound -!missing-selector! SRPhotoplethysmogramOpticalSample::nanosecondsSinceStart not bound -!missing-selector! SRPhotoplethysmogramOpticalSample::nominalWavelength not bound -!missing-selector! SRPhotoplethysmogramOpticalSample::normalizedReflectance not bound -!missing-selector! SRPhotoplethysmogramOpticalSample::pinkNoise not bound -!missing-selector! SRPhotoplethysmogramOpticalSample::samplingFrequency not bound -!missing-selector! SRPhotoplethysmogramOpticalSample::signalIdentifier not bound -!missing-selector! SRPhotoplethysmogramOpticalSample::whiteNoise not bound -!missing-selector! SRPhotoplethysmogramSample::accelerometerSamples not bound -!missing-selector! SRPhotoplethysmogramSample::nanosecondsSinceStart not bound -!missing-selector! SRPhotoplethysmogramSample::opticalSamples not bound -!missing-selector! SRPhotoplethysmogramSample::startDate not bound -!missing-selector! SRPhotoplethysmogramSample::temperature not bound -!missing-selector! SRPhotoplethysmogramSample::usage not bound -!missing-type! SRElectrocardiogramData not bound -!missing-type! SRElectrocardiogramSample not bound -!missing-type! SRElectrocardiogramSession not bound -!missing-type! SRPhotoplethysmogramAccelerometerSample not bound -!missing-type! SRPhotoplethysmogramOpticalSample not bound -!missing-type! SRPhotoplethysmogramSample not bound From 341505e7bff501eded401ba647fdcac97e5b5146 Mon Sep 17 00:00:00 2001 From: GitHub Actions Autoformatter Date: Tue, 9 Jul 2024 03:47:40 +0000 Subject: [PATCH 57/73] Auto-format source code --- src/screencapturekit.cs | 2 +- src/sensorkit.cs | 21 ++++++++++----------- 2 files changed, 11 insertions(+), 12 deletions(-) diff --git a/src/screencapturekit.cs b/src/screencapturekit.cs index 39844ae4511c..9374fece0819 100644 --- a/src/screencapturekit.cs +++ b/src/screencapturekit.cs @@ -454,7 +454,7 @@ interface SCStreamDelegate { [Export ("stream:didStopWithError:")] void DidStop (SCStream stream, NSError error); - [Mac (14,4)] + [Mac (14, 4)] [Export ("userDidStopStream:")] void UserDidStop (SCStream stream); diff --git a/src/sensorkit.cs b/src/sensorkit.cs index 1e1d442331fb..682f95bb3672 100644 --- a/src/sensorkit.cs +++ b/src/sensorkit.cs @@ -189,8 +189,7 @@ public enum SRElectrocardiogramSessionState : long { [NoWatch, NoTV, NoMac, iOS (17, 4), MacCatalyst (17, 4)] [Native] - public enum SRElectrocardiogramSessionGuidance : long - { + public enum SRElectrocardiogramSessionGuidance : long { Guided = 1, Unguided, } @@ -211,7 +210,7 @@ public enum SRSpeechMetricsSessionFlags : ulong { [Flags, NoWatch, NoTV, NoMac, iOS (17, 0), MacCatalyst (17, 0)] [Native] - public enum SRWristTemperatureCondition : ulong{ + public enum SRWristTemperatureCondition : ulong { None = 0x0, OffWrist = 1uL << 0, OnCharger = 1uL << 1, @@ -1214,10 +1213,10 @@ interface SRFaceMetrics : NSCopying, NSSecureCoding { ARFaceAnchor FaceAnchor { get; } [Export ("wholeFaceExpressions", ArgumentSemantic.Copy)] - SRFaceMetricsExpression[] WholeFaceExpressions { get; } + SRFaceMetricsExpression [] WholeFaceExpressions { get; } [Export ("partialFaceExpressions", ArgumentSemantic.Copy)] - SRFaceMetricsExpression[] PartialFaceExpressions { get; } + SRFaceMetricsExpression [] PartialFaceExpressions { get; } } [NoWatch, NoTV, NoMac, iOS (17, 4), MacCatalyst (17, 4)] @@ -1250,7 +1249,7 @@ interface SRElectrocardiogramSample : NSCopying, NSSecureCoding { SRElectrocardiogramLead Lead { get; } [Export ("data", ArgumentSemantic.Copy)] - SRElectrocardiogramData[] Data { get; } + SRElectrocardiogramData [] Data { get; } } [NoWatch, NoTV, NoMac, iOS (17, 4), MacCatalyst (17, 4)] @@ -1323,7 +1322,7 @@ interface SRPhotoplethysmogramOpticalSample : NSCopying, NSSecureCoding { NSNumber BackgroundNoiseOffset { get; } [Export ("conditions", ArgumentSemantic.Copy)] - NSString[] Conditions { get; } + NSString [] Conditions { get; } } [NoWatch, NoTV, NoMac, iOS (17, 4), MacCatalyst (17, 4)] @@ -1360,7 +1359,7 @@ public enum SRPhotoplethysmogramSampleUsage { } [NoWatch, NoTV, NoMac, iOS (17, 4), MacCatalyst (17, 4)] - [BaseType (typeof(NSObject))] + [BaseType (typeof (NSObject))] [DisableDefaultCtor] interface SRPhotoplethysmogramSample : NSCopying, NSSecureCoding { @@ -1371,13 +1370,13 @@ interface SRPhotoplethysmogramSample : NSCopying, NSSecureCoding { long NanosecondsSinceStart { get; } [Export ("usage", ArgumentSemantic.Copy)] - NSString[] Usage { get; } + NSString [] Usage { get; } [Export ("opticalSamples", ArgumentSemantic.Copy)] - SRPhotoplethysmogramOpticalSample[] OpticalSamples { get; } + SRPhotoplethysmogramOpticalSample [] OpticalSamples { get; } [Export ("accelerometerSamples", ArgumentSemantic.Copy)] - SRPhotoplethysmogramAccelerometerSample[] AccelerometerSamples { get; } + SRPhotoplethysmogramAccelerometerSample [] AccelerometerSamples { get; } [NullAllowed, Export ("temperature", ArgumentSemantic.Strong)] NSMeasurement Temperature { get; } From 7f8c3ab900e90907b5e56a8e2319919bdaf1f732 Mon Sep 17 00:00:00 2001 From: Alex Soto Date: Tue, 9 Jul 2024 01:01:51 -0400 Subject: [PATCH 58/73] [SystemConfiguration] Update bindings to Xcode 15.3 --- .../NetworkReachability.cs | 225 ++++++++++++++++++ .../iOS-SystemConfiguration.todo | 8 - .../macOS-SystemConfiguration.todo | 8 - .../tvOS-SystemConfiguration.todo | 8 - .../xtro-sharpie/iOS-SystemConfiguration.todo | 8 - .../macOS-SystemConfiguration.todo | 8 - .../tvOS-SystemConfiguration.todo | 8 - 7 files changed, 225 insertions(+), 48 deletions(-) delete mode 100644 tests/xtro-sharpie/api-annotations-dotnet/iOS-SystemConfiguration.todo delete mode 100644 tests/xtro-sharpie/api-annotations-dotnet/macOS-SystemConfiguration.todo delete mode 100644 tests/xtro-sharpie/api-annotations-dotnet/tvOS-SystemConfiguration.todo delete mode 100644 tests/xtro-sharpie/iOS-SystemConfiguration.todo delete mode 100644 tests/xtro-sharpie/macOS-SystemConfiguration.todo delete mode 100644 tests/xtro-sharpie/tvOS-SystemConfiguration.todo diff --git a/src/SystemConfiguration/NetworkReachability.cs b/src/SystemConfiguration/NetworkReachability.cs index 0db9ebab8dd0..d231d20c37c4 100644 --- a/src/SystemConfiguration/NetworkReachability.cs +++ b/src/SystemConfiguration/NetworkReachability.cs @@ -215,27 +215,102 @@ public SCNetworkReachabilityContext (IntPtr val) } } +#if NET + [SupportedOSPlatform ("ios")] + [SupportedOSPlatform ("tvos")] + [SupportedOSPlatform ("maccatalyst")] + [SupportedOSPlatform ("macos")] + [ObsoletedOSPlatform ("ios17.4", "Use 'NSUrlSession' or 'NWConnection' instead.")] + [ObsoletedOSPlatform ("maccatalyst17.4", "Use 'NSUrlSession' or 'NWConnection' instead.")] + [ObsoletedOSPlatform ("tvos17.4", "Use 'NSUrlSession' or 'NWConnection' instead.")] + [ObsoletedOSPlatform ("macos14.4", "Use 'NSUrlSession' or 'NWConnection' instead.")] +#else + [Deprecated (PlatformName.iOS, 17, 4, message: "Use 'NSUrlSession' or 'NWConnection' instead.")] + [Deprecated (PlatformName.TvOS, 17, 4, message: "Use 'NSUrlSession' or 'NWConnection' instead.")] + [Deprecated (PlatformName.MacCatalyst, 17, 4, message: "Use 'NSUrlSession' or 'NWConnection' instead.")] + [Deprecated (PlatformName.MacOSX, 14, 4, message: "Use 'NSUrlSession' or 'NWConnection' instead.")] +#endif [DllImport (Constants.SystemConfigurationLibrary)] extern static /* SCNetworkReachabilityRef __nullable */ IntPtr SCNetworkReachabilityCreateWithName ( /* CFAllocatorRef __nullable */ IntPtr allocator, /* const char* __nonnull */ IntPtr address); +#if NET + [SupportedOSPlatform ("ios")] + [SupportedOSPlatform ("tvos")] + [SupportedOSPlatform ("maccatalyst")] + [SupportedOSPlatform ("macos")] + [ObsoletedOSPlatform ("ios17.4", "Use 'NSUrlSession' or 'NWConnection' instead.")] + [ObsoletedOSPlatform ("maccatalyst17.4", "Use 'NSUrlSession' or 'NWConnection' instead.")] + [ObsoletedOSPlatform ("tvos17.4", "Use 'NSUrlSession' or 'NWConnection' instead.")] + [ObsoletedOSPlatform ("macos14.4", "Use 'NSUrlSession' or 'NWConnection' instead.")] +#else + [Deprecated (PlatformName.iOS, 17, 4, message: "Use 'NSUrlSession' or 'NWConnection' instead.")] + [Deprecated (PlatformName.TvOS, 17, 4, message: "Use 'NSUrlSession' or 'NWConnection' instead.")] + [Deprecated (PlatformName.MacCatalyst, 17, 4, message: "Use 'NSUrlSession' or 'NWConnection' instead.")] + [Deprecated (PlatformName.MacOSX, 14, 4, message: "Use 'NSUrlSession' or 'NWConnection' instead.")] +#endif [DllImport (Constants.SystemConfigurationLibrary)] unsafe extern static /* SCNetworkReachabilityRef __nullable */ IntPtr SCNetworkReachabilityCreateWithAddress ( /* CFAllocatorRef __nullable */ IntPtr allocator, /* const struct sockaddr * __nonnull */ sockaddr_in* address); +#if NET + [SupportedOSPlatform ("ios")] + [SupportedOSPlatform ("tvos")] + [SupportedOSPlatform ("maccatalyst")] + [SupportedOSPlatform ("macos")] + [ObsoletedOSPlatform ("ios17.4", "Use 'NSUrlSession' or 'NWConnection' instead.")] + [ObsoletedOSPlatform ("maccatalyst17.4", "Use 'NSUrlSession' or 'NWConnection' instead.")] + [ObsoletedOSPlatform ("tvos17.4", "Use 'NSUrlSession' or 'NWConnection' instead.")] + [ObsoletedOSPlatform ("macos14.4", "Use 'NSUrlSession' or 'NWConnection' instead.")] +#else + [Deprecated (PlatformName.iOS, 17, 4, message: "Use 'NSUrlSession' or 'NWConnection' instead.")] + [Deprecated (PlatformName.TvOS, 17, 4, message: "Use 'NSUrlSession' or 'NWConnection' instead.")] + [Deprecated (PlatformName.MacCatalyst, 17, 4, message: "Use 'NSUrlSession' or 'NWConnection' instead.")] + [Deprecated (PlatformName.MacOSX, 14, 4, message: "Use 'NSUrlSession' or 'NWConnection' instead.")] +#endif [DllImport (Constants.SystemConfigurationLibrary)] unsafe extern static /* SCNetworkReachabilityRef __nullable */ IntPtr SCNetworkReachabilityCreateWithAddressPair ( /* CFAllocatorRef __nullable */ IntPtr allocator, /* const struct sockaddr * __nullable */ sockaddr_in* localAddress, /* const struct sockaddr * __nullable */ sockaddr_in* remoteAddress); +#if NET + [SupportedOSPlatform ("ios")] + [SupportedOSPlatform ("tvos")] + [SupportedOSPlatform ("maccatalyst")] + [SupportedOSPlatform ("macos")] + [ObsoletedOSPlatform ("ios17.4", "Use 'NSUrlSession' or 'NWConnection' instead.")] + [ObsoletedOSPlatform ("maccatalyst17.4", "Use 'NSUrlSession' or 'NWConnection' instead.")] + [ObsoletedOSPlatform ("tvos17.4", "Use 'NSUrlSession' or 'NWConnection' instead.")] + [ObsoletedOSPlatform ("macos14.4", "Use 'NSUrlSession' or 'NWConnection' instead.")] +#else + [Deprecated (PlatformName.iOS, 17, 4, message: "Use 'NSUrlSession' or 'NWConnection' instead.")] + [Deprecated (PlatformName.TvOS, 17, 4, message: "Use 'NSUrlSession' or 'NWConnection' instead.")] + [Deprecated (PlatformName.MacCatalyst, 17, 4, message: "Use 'NSUrlSession' or 'NWConnection' instead.")] + [Deprecated (PlatformName.MacOSX, 14, 4, message: "Use 'NSUrlSession' or 'NWConnection' instead.")] +#endif [DllImport (Constants.SystemConfigurationLibrary)] unsafe extern static /* SCNetworkReachabilityRef __nullable */ IntPtr SCNetworkReachabilityCreateWithAddressPair ( /* CFAllocatorRef __nullable */ IntPtr allocator, /* const struct sockaddr * __nullable */ IntPtr localAddress, /* const struct sockaddr * __nullable */ sockaddr_in* remoteAddress); +#if NET + [SupportedOSPlatform ("ios")] + [SupportedOSPlatform ("tvos")] + [SupportedOSPlatform ("maccatalyst")] + [SupportedOSPlatform ("macos")] + [ObsoletedOSPlatform ("ios17.4", "Use 'NSUrlSession' or 'NWConnection' instead.")] + [ObsoletedOSPlatform ("maccatalyst17.4", "Use 'NSUrlSession' or 'NWConnection' instead.")] + [ObsoletedOSPlatform ("tvos17.4", "Use 'NSUrlSession' or 'NWConnection' instead.")] + [ObsoletedOSPlatform ("macos14.4", "Use 'NSUrlSession' or 'NWConnection' instead.")] +#else + [Deprecated (PlatformName.iOS, 17, 4, message: "Use 'NSUrlSession' or 'NWConnection' instead.")] + [Deprecated (PlatformName.TvOS, 17, 4, message: "Use 'NSUrlSession' or 'NWConnection' instead.")] + [Deprecated (PlatformName.MacCatalyst, 17, 4, message: "Use 'NSUrlSession' or 'NWConnection' instead.")] + [Deprecated (PlatformName.MacOSX, 14, 4, message: "Use 'NSUrlSession' or 'NWConnection' instead.")] +#endif [DllImport (Constants.SystemConfigurationLibrary)] unsafe extern static /* SCNetworkReachabilityRef __nullable */ IntPtr SCNetworkReachabilityCreateWithAddressPair ( /* CFAllocatorRef __nullable */ IntPtr allocator, @@ -314,6 +389,21 @@ public NetworkReachability (IPAddress localAddress, IPAddress remoteAddress) { } +#if NET + [SupportedOSPlatform ("ios")] + [SupportedOSPlatform ("tvos")] + [SupportedOSPlatform ("maccatalyst")] + [SupportedOSPlatform ("macos")] + [ObsoletedOSPlatform ("ios17.4", "Use 'NSUrlSession' or 'NWConnection' instead.")] + [ObsoletedOSPlatform ("maccatalyst17.4", "Use 'NSUrlSession' or 'NWConnection' instead.")] + [ObsoletedOSPlatform ("tvos17.4", "Use 'NSUrlSession' or 'NWConnection' instead.")] + [ObsoletedOSPlatform ("macos14.4", "Use 'NSUrlSession' or 'NWConnection' instead.")] +#else + [Deprecated (PlatformName.iOS, 17, 4, message: "Use 'NSUrlSession' or 'NWConnection' instead.")] + [Deprecated (PlatformName.TvOS, 17, 4, message: "Use 'NSUrlSession' or 'NWConnection' instead.")] + [Deprecated (PlatformName.MacCatalyst, 17, 4, message: "Use 'NSUrlSession' or 'NWConnection' instead.")] + [Deprecated (PlatformName.MacOSX, 14, 4, message: "Use 'NSUrlSession' or 'NWConnection' instead.")] +#endif [DllImport (Constants.SystemConfigurationLibrary)] unsafe static extern int SCNetworkReachabilityGetFlags (/* SCNetworkReachabilityRef __nonnull */ IntPtr target, /* SCNetworkReachabilityFlags* __nonnull */ NetworkReachabilityFlags* flags); @@ -323,6 +413,21 @@ public bool TryGetFlags (out NetworkReachabilityFlags flags) return GetFlags (out flags) == StatusCode.OK; } +#if NET + [SupportedOSPlatform ("ios")] + [SupportedOSPlatform ("tvos")] + [SupportedOSPlatform ("maccatalyst")] + [SupportedOSPlatform ("macos")] + [ObsoletedOSPlatform ("ios17.4", "Use 'NSUrlSession' or 'NWConnection' instead.")] + [ObsoletedOSPlatform ("maccatalyst17.4", "Use 'NSUrlSession' or 'NWConnection' instead.")] + [ObsoletedOSPlatform ("tvos17.4", "Use 'NSUrlSession' or 'NWConnection' instead.")] + [ObsoletedOSPlatform ("macos14.4", "Use 'NSUrlSession' or 'NWConnection' instead.")] +#else + [Deprecated (PlatformName.iOS, 17, 4, message: "Use 'NSUrlSession' or 'NWConnection' instead.")] + [Deprecated (PlatformName.TvOS, 17, 4, message: "Use 'NSUrlSession' or 'NWConnection' instead.")] + [Deprecated (PlatformName.MacCatalyst, 17, 4, message: "Use 'NSUrlSession' or 'NWConnection' instead.")] + [Deprecated (PlatformName.MacOSX, 14, 4, message: "Use 'NSUrlSession' or 'NWConnection' instead.")] +#endif public StatusCode GetFlags (out NetworkReachabilityFlags flags) { flags = default; @@ -337,6 +442,21 @@ public StatusCode GetFlags (out NetworkReachabilityFlags flags) delegate void SCNetworkReachabilityCallBack (/* SCNetworkReachabilityRef */ IntPtr handle, /* SCNetworkReachabilityFlags */ NetworkReachabilityFlags flags, /* void* */ IntPtr info); #endif +#if NET + [SupportedOSPlatform ("ios")] + [SupportedOSPlatform ("tvos")] + [SupportedOSPlatform ("maccatalyst")] + [SupportedOSPlatform ("macos")] + [ObsoletedOSPlatform ("ios17.4", "Use 'NSUrlSession' or 'NWConnection' instead.")] + [ObsoletedOSPlatform ("maccatalyst17.4", "Use 'NSUrlSession' or 'NWConnection' instead.")] + [ObsoletedOSPlatform ("tvos17.4", "Use 'NSUrlSession' or 'NWConnection' instead.")] + [ObsoletedOSPlatform ("macos14.4", "Use 'NSUrlSession' or 'NWConnection' instead.")] +#else + [Deprecated (PlatformName.iOS, 17, 4, message: "Use 'NSUrlSession' or 'NWConnection' instead.")] + [Deprecated (PlatformName.TvOS, 17, 4, message: "Use 'NSUrlSession' or 'NWConnection' instead.")] + [Deprecated (PlatformName.MacCatalyst, 17, 4, message: "Use 'NSUrlSession' or 'NWConnection' instead.")] + [Deprecated (PlatformName.MacOSX, 14, 4, message: "Use 'NSUrlSession' or 'NWConnection' instead.")] +#endif [DllImport (Constants.SystemConfigurationLibrary)] unsafe static extern /* Boolean */ byte SCNetworkReachabilitySetCallback ( /* SCNetworkReachabilityRef __nonnull */ IntPtr handle, @@ -369,6 +489,21 @@ static void Callback (IntPtr handle, NetworkReachabilityFlags flags, IntPtr info r.notification (flags); } +#if NET + [SupportedOSPlatform ("ios")] + [SupportedOSPlatform ("tvos")] + [SupportedOSPlatform ("maccatalyst")] + [SupportedOSPlatform ("macos")] + [ObsoletedOSPlatform ("ios17.4", "Use 'NSUrlSession' or 'NWConnection' instead.")] + [ObsoletedOSPlatform ("maccatalyst17.4", "Use 'NSUrlSession' or 'NWConnection' instead.")] + [ObsoletedOSPlatform ("tvos17.4", "Use 'NSUrlSession' or 'NWConnection' instead.")] + [ObsoletedOSPlatform ("macos14.4", "Use 'NSUrlSession' or 'NWConnection' instead.")] +#else + [Deprecated (PlatformName.iOS, 17, 4, message: "Use 'NSUrlSession' or 'NWConnection' instead.")] + [Deprecated (PlatformName.TvOS, 17, 4, message: "Use 'NSUrlSession' or 'NWConnection' instead.")] + [Deprecated (PlatformName.MacCatalyst, 17, 4, message: "Use 'NSUrlSession' or 'NWConnection' instead.")] + [Deprecated (PlatformName.MacOSX, 14, 4, message: "Use 'NSUrlSession' or 'NWConnection' instead.")] +#endif public StatusCode SetNotification (Notification callback) { bool rv; @@ -417,11 +552,41 @@ public StatusCode SetNotification (Notification callback) return StatusCode.OK; } +#if NET + [SupportedOSPlatform ("ios")] + [SupportedOSPlatform ("tvos")] + [SupportedOSPlatform ("maccatalyst")] + [SupportedOSPlatform ("macos")] + [ObsoletedOSPlatform ("ios17.4", "Use 'NSUrlSession' or 'NWConnection' instead.")] + [ObsoletedOSPlatform ("maccatalyst17.4", "Use 'NSUrlSession' or 'NWConnection' instead.")] + [ObsoletedOSPlatform ("tvos17.4", "Use 'NSUrlSession' or 'NWConnection' instead.")] + [ObsoletedOSPlatform ("macos14.4", "Use 'NSUrlSession' or 'NWConnection' instead.")] +#else + [Deprecated (PlatformName.iOS, 17, 4, message: "Use 'NSUrlSession' or 'NWConnection' instead.")] + [Deprecated (PlatformName.TvOS, 17, 4, message: "Use 'NSUrlSession' or 'NWConnection' instead.")] + [Deprecated (PlatformName.MacCatalyst, 17, 4, message: "Use 'NSUrlSession' or 'NWConnection' instead.")] + [Deprecated (PlatformName.MacOSX, 14, 4, message: "Use 'NSUrlSession' or 'NWConnection' instead.")] +#endif [DllImport (Constants.SystemConfigurationLibrary)] extern static /* Boolean */ byte SCNetworkReachabilityScheduleWithRunLoop ( /* SCNetworkReachabilityRef __nonnull */ IntPtr target, /* CFRunLoopRef __nonnull */ IntPtr runloop, /* CFStringRef __nonnull */ IntPtr runLoopMode); +#if NET + [SupportedOSPlatform ("ios")] + [SupportedOSPlatform ("tvos")] + [SupportedOSPlatform ("maccatalyst")] + [SupportedOSPlatform ("macos")] + [ObsoletedOSPlatform ("ios17.4", "Use 'NSUrlSession' or 'NWConnection' instead.")] + [ObsoletedOSPlatform ("maccatalyst17.4", "Use 'NSUrlSession' or 'NWConnection' instead.")] + [ObsoletedOSPlatform ("tvos17.4", "Use 'NSUrlSession' or 'NWConnection' instead.")] + [ObsoletedOSPlatform ("macos14.4", "Use 'NSUrlSession' or 'NWConnection' instead.")] +#else + [Deprecated (PlatformName.iOS, 17, 4, message: "Use 'NSUrlSession' or 'NWConnection' instead.")] + [Deprecated (PlatformName.TvOS, 17, 4, message: "Use 'NSUrlSession' or 'NWConnection' instead.")] + [Deprecated (PlatformName.MacCatalyst, 17, 4, message: "Use 'NSUrlSession' or 'NWConnection' instead.")] + [Deprecated (PlatformName.MacOSX, 14, 4, message: "Use 'NSUrlSession' or 'NWConnection' instead.")] +#endif public bool Schedule (CFRunLoop runLoop, string mode) { if (runLoop is null) @@ -443,9 +608,39 @@ public bool Schedule () return Schedule (CFRunLoop.Current, CFRunLoop.ModeDefault); } +#if NET + [SupportedOSPlatform ("ios")] + [SupportedOSPlatform ("tvos")] + [SupportedOSPlatform ("maccatalyst")] + [SupportedOSPlatform ("macos")] + [ObsoletedOSPlatform ("ios17.4", "Use 'NSUrlSession' or 'NWConnection' instead.")] + [ObsoletedOSPlatform ("maccatalyst17.4", "Use 'NSUrlSession' or 'NWConnection' instead.")] + [ObsoletedOSPlatform ("tvos17.4", "Use 'NSUrlSession' or 'NWConnection' instead.")] + [ObsoletedOSPlatform ("macos14.4", "Use 'NSUrlSession' or 'NWConnection' instead.")] +#else + [Deprecated (PlatformName.iOS, 17, 4, message: "Use 'NSUrlSession' or 'NWConnection' instead.")] + [Deprecated (PlatformName.TvOS, 17, 4, message: "Use 'NSUrlSession' or 'NWConnection' instead.")] + [Deprecated (PlatformName.MacCatalyst, 17, 4, message: "Use 'NSUrlSession' or 'NWConnection' instead.")] + [Deprecated (PlatformName.MacOSX, 14, 4, message: "Use 'NSUrlSession' or 'NWConnection' instead.")] +#endif [DllImport (Constants.SystemConfigurationLibrary)] extern static int SCNetworkReachabilityUnscheduleFromRunLoop (/* SCNetworkReachabilityRef */ IntPtr target, /* CFRunLoopRef */ IntPtr runloop, /* CFStringRef */ IntPtr runLoopMode); +#if NET + [SupportedOSPlatform ("ios")] + [SupportedOSPlatform ("tvos")] + [SupportedOSPlatform ("maccatalyst")] + [SupportedOSPlatform ("macos")] + [ObsoletedOSPlatform ("ios17.4", "Use 'NSUrlSession' or 'NWConnection' instead.")] + [ObsoletedOSPlatform ("maccatalyst17.4", "Use 'NSUrlSession' or 'NWConnection' instead.")] + [ObsoletedOSPlatform ("tvos17.4", "Use 'NSUrlSession' or 'NWConnection' instead.")] + [ObsoletedOSPlatform ("macos14.4", "Use 'NSUrlSession' or 'NWConnection' instead.")] +#else + [Deprecated (PlatformName.iOS, 17, 4, message: "Use 'NSUrlSession' or 'NWConnection' instead.")] + [Deprecated (PlatformName.TvOS, 17, 4, message: "Use 'NSUrlSession' or 'NWConnection' instead.")] + [Deprecated (PlatformName.MacCatalyst, 17, 4, message: "Use 'NSUrlSession' or 'NWConnection' instead.")] + [Deprecated (PlatformName.MacOSX, 14, 4, message: "Use 'NSUrlSession' or 'NWConnection' instead.")] +#endif public bool Unschedule (CFRunLoop runLoop, string mode) { if (runLoop is null) @@ -467,11 +662,41 @@ public bool Unschedule () return Unschedule (CFRunLoop.Current, CFRunLoop.ModeDefault); } +#if NET + [SupportedOSPlatform ("ios")] + [SupportedOSPlatform ("tvos")] + [SupportedOSPlatform ("maccatalyst")] + [SupportedOSPlatform ("macos")] + [ObsoletedOSPlatform ("ios17.4", "Use 'NSUrlSession' or 'NWConnection' instead.")] + [ObsoletedOSPlatform ("maccatalyst17.4", "Use 'NSUrlSession' or 'NWConnection' instead.")] + [ObsoletedOSPlatform ("tvos17.4", "Use 'NSUrlSession' or 'NWConnection' instead.")] + [ObsoletedOSPlatform ("macos14.4", "Use 'NSUrlSession' or 'NWConnection' instead.")] +#else + [Deprecated (PlatformName.iOS, 17, 4, message: "Use 'NSUrlSession' or 'NWConnection' instead.")] + [Deprecated (PlatformName.TvOS, 17, 4, message: "Use 'NSUrlSession' or 'NWConnection' instead.")] + [Deprecated (PlatformName.MacCatalyst, 17, 4, message: "Use 'NSUrlSession' or 'NWConnection' instead.")] + [Deprecated (PlatformName.MacOSX, 14, 4, message: "Use 'NSUrlSession' or 'NWConnection' instead.")] +#endif [DllImport (Constants.SystemConfigurationLibrary)] extern static /* Boolean */ byte SCNetworkReachabilitySetDispatchQueue ( /* SCNetworkReachabilityRef __nonnull */ IntPtr target, /* dispatch_queue_t __nullable */ IntPtr queue); +#if NET + [SupportedOSPlatform ("ios")] + [SupportedOSPlatform ("tvos")] + [SupportedOSPlatform ("maccatalyst")] + [SupportedOSPlatform ("macos")] + [ObsoletedOSPlatform ("ios17.4", "Use 'NSUrlSession' or 'NWConnection' instead.")] + [ObsoletedOSPlatform ("maccatalyst17.4", "Use 'NSUrlSession' or 'NWConnection' instead.")] + [ObsoletedOSPlatform ("tvos17.4", "Use 'NSUrlSession' or 'NWConnection' instead.")] + [ObsoletedOSPlatform ("macos14.4", "Use 'NSUrlSession' or 'NWConnection' instead.")] +#else + [Deprecated (PlatformName.iOS, 17, 4, message: "Use 'NSUrlSession' or 'NWConnection' instead.")] + [Deprecated (PlatformName.TvOS, 17, 4, message: "Use 'NSUrlSession' or 'NWConnection' instead.")] + [Deprecated (PlatformName.MacCatalyst, 17, 4, message: "Use 'NSUrlSession' or 'NWConnection' instead.")] + [Deprecated (PlatformName.MacOSX, 14, 4, message: "Use 'NSUrlSession' or 'NWConnection' instead.")] +#endif public bool SetDispatchQueue (DispatchQueue queue) { return SCNetworkReachabilitySetDispatchQueue (Handle, queue.GetHandle ()) != 0; diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-SystemConfiguration.todo b/tests/xtro-sharpie/api-annotations-dotnet/iOS-SystemConfiguration.todo deleted file mode 100644 index 3af4b652b589..000000000000 --- a/tests/xtro-sharpie/api-annotations-dotnet/iOS-SystemConfiguration.todo +++ /dev/null @@ -1,8 +0,0 @@ -!deprecated-attribute-missing! SCNetworkReachabilityCreateWithAddress missing a [Deprecated] attribute -!deprecated-attribute-missing! SCNetworkReachabilityCreateWithAddressPair missing a [Deprecated] attribute -!deprecated-attribute-missing! SCNetworkReachabilityCreateWithName missing a [Deprecated] attribute -!deprecated-attribute-missing! SCNetworkReachabilityGetFlags missing a [Deprecated] attribute -!deprecated-attribute-missing! SCNetworkReachabilityScheduleWithRunLoop missing a [Deprecated] attribute -!deprecated-attribute-missing! SCNetworkReachabilitySetCallback missing a [Deprecated] attribute -!deprecated-attribute-missing! SCNetworkReachabilitySetDispatchQueue missing a [Deprecated] attribute -!deprecated-attribute-missing! SCNetworkReachabilityUnscheduleFromRunLoop missing a [Deprecated] attribute diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-SystemConfiguration.todo b/tests/xtro-sharpie/api-annotations-dotnet/macOS-SystemConfiguration.todo deleted file mode 100644 index 3af4b652b589..000000000000 --- a/tests/xtro-sharpie/api-annotations-dotnet/macOS-SystemConfiguration.todo +++ /dev/null @@ -1,8 +0,0 @@ -!deprecated-attribute-missing! SCNetworkReachabilityCreateWithAddress missing a [Deprecated] attribute -!deprecated-attribute-missing! SCNetworkReachabilityCreateWithAddressPair missing a [Deprecated] attribute -!deprecated-attribute-missing! SCNetworkReachabilityCreateWithName missing a [Deprecated] attribute -!deprecated-attribute-missing! SCNetworkReachabilityGetFlags missing a [Deprecated] attribute -!deprecated-attribute-missing! SCNetworkReachabilityScheduleWithRunLoop missing a [Deprecated] attribute -!deprecated-attribute-missing! SCNetworkReachabilitySetCallback missing a [Deprecated] attribute -!deprecated-attribute-missing! SCNetworkReachabilitySetDispatchQueue missing a [Deprecated] attribute -!deprecated-attribute-missing! SCNetworkReachabilityUnscheduleFromRunLoop missing a [Deprecated] attribute diff --git a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-SystemConfiguration.todo b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-SystemConfiguration.todo deleted file mode 100644 index 3af4b652b589..000000000000 --- a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-SystemConfiguration.todo +++ /dev/null @@ -1,8 +0,0 @@ -!deprecated-attribute-missing! SCNetworkReachabilityCreateWithAddress missing a [Deprecated] attribute -!deprecated-attribute-missing! SCNetworkReachabilityCreateWithAddressPair missing a [Deprecated] attribute -!deprecated-attribute-missing! SCNetworkReachabilityCreateWithName missing a [Deprecated] attribute -!deprecated-attribute-missing! SCNetworkReachabilityGetFlags missing a [Deprecated] attribute -!deprecated-attribute-missing! SCNetworkReachabilityScheduleWithRunLoop missing a [Deprecated] attribute -!deprecated-attribute-missing! SCNetworkReachabilitySetCallback missing a [Deprecated] attribute -!deprecated-attribute-missing! SCNetworkReachabilitySetDispatchQueue missing a [Deprecated] attribute -!deprecated-attribute-missing! SCNetworkReachabilityUnscheduleFromRunLoop missing a [Deprecated] attribute diff --git a/tests/xtro-sharpie/iOS-SystemConfiguration.todo b/tests/xtro-sharpie/iOS-SystemConfiguration.todo deleted file mode 100644 index 3af4b652b589..000000000000 --- a/tests/xtro-sharpie/iOS-SystemConfiguration.todo +++ /dev/null @@ -1,8 +0,0 @@ -!deprecated-attribute-missing! SCNetworkReachabilityCreateWithAddress missing a [Deprecated] attribute -!deprecated-attribute-missing! SCNetworkReachabilityCreateWithAddressPair missing a [Deprecated] attribute -!deprecated-attribute-missing! SCNetworkReachabilityCreateWithName missing a [Deprecated] attribute -!deprecated-attribute-missing! SCNetworkReachabilityGetFlags missing a [Deprecated] attribute -!deprecated-attribute-missing! SCNetworkReachabilityScheduleWithRunLoop missing a [Deprecated] attribute -!deprecated-attribute-missing! SCNetworkReachabilitySetCallback missing a [Deprecated] attribute -!deprecated-attribute-missing! SCNetworkReachabilitySetDispatchQueue missing a [Deprecated] attribute -!deprecated-attribute-missing! SCNetworkReachabilityUnscheduleFromRunLoop missing a [Deprecated] attribute diff --git a/tests/xtro-sharpie/macOS-SystemConfiguration.todo b/tests/xtro-sharpie/macOS-SystemConfiguration.todo deleted file mode 100644 index 3af4b652b589..000000000000 --- a/tests/xtro-sharpie/macOS-SystemConfiguration.todo +++ /dev/null @@ -1,8 +0,0 @@ -!deprecated-attribute-missing! SCNetworkReachabilityCreateWithAddress missing a [Deprecated] attribute -!deprecated-attribute-missing! SCNetworkReachabilityCreateWithAddressPair missing a [Deprecated] attribute -!deprecated-attribute-missing! SCNetworkReachabilityCreateWithName missing a [Deprecated] attribute -!deprecated-attribute-missing! SCNetworkReachabilityGetFlags missing a [Deprecated] attribute -!deprecated-attribute-missing! SCNetworkReachabilityScheduleWithRunLoop missing a [Deprecated] attribute -!deprecated-attribute-missing! SCNetworkReachabilitySetCallback missing a [Deprecated] attribute -!deprecated-attribute-missing! SCNetworkReachabilitySetDispatchQueue missing a [Deprecated] attribute -!deprecated-attribute-missing! SCNetworkReachabilityUnscheduleFromRunLoop missing a [Deprecated] attribute diff --git a/tests/xtro-sharpie/tvOS-SystemConfiguration.todo b/tests/xtro-sharpie/tvOS-SystemConfiguration.todo deleted file mode 100644 index 3af4b652b589..000000000000 --- a/tests/xtro-sharpie/tvOS-SystemConfiguration.todo +++ /dev/null @@ -1,8 +0,0 @@ -!deprecated-attribute-missing! SCNetworkReachabilityCreateWithAddress missing a [Deprecated] attribute -!deprecated-attribute-missing! SCNetworkReachabilityCreateWithAddressPair missing a [Deprecated] attribute -!deprecated-attribute-missing! SCNetworkReachabilityCreateWithName missing a [Deprecated] attribute -!deprecated-attribute-missing! SCNetworkReachabilityGetFlags missing a [Deprecated] attribute -!deprecated-attribute-missing! SCNetworkReachabilityScheduleWithRunLoop missing a [Deprecated] attribute -!deprecated-attribute-missing! SCNetworkReachabilitySetCallback missing a [Deprecated] attribute -!deprecated-attribute-missing! SCNetworkReachabilitySetDispatchQueue missing a [Deprecated] attribute -!deprecated-attribute-missing! SCNetworkReachabilityUnscheduleFromRunLoop missing a [Deprecated] attribute From 1300b37288a92cc285476645b873bd25d094459f Mon Sep 17 00:00:00 2001 From: Alex Soto Date: Tue, 9 Jul 2024 03:22:40 -0400 Subject: [PATCH 59/73] [UIKit] Update bindings to Xcode 15.3 --- src/UIKit/UIEnums.cs | 53 ++++++- src/uikit.cs | 132 ++++++++++++++++++ .../Documentation.KnownFailures.txt | 24 ++++ .../MacCatalyst-UIKit.ignore | 3 + .../api-annotations-dotnet/iOS-UIKit.ignore | 3 + .../api-annotations-dotnet/iOS-UIKit.todo | 37 ----- .../api-annotations-dotnet/tvOS-UIKit.ignore | 17 +++ .../api-annotations-dotnet/tvOS-UIKit.todo | 47 ------- tests/xtro-sharpie/iOS-UIKit.ignore | 3 + tests/xtro-sharpie/iOS-UIKit.todo | 37 ----- tests/xtro-sharpie/tvOS-UIKit.ignore | 17 +++ tests/xtro-sharpie/tvOS-UIKit.todo | 47 ------- tests/xtro-sharpie/watchOS-UIKit.ignore | 2 + tests/xtro-sharpie/watchOS-UIKit.todo | 1 - 14 files changed, 251 insertions(+), 172 deletions(-) delete mode 100644 tests/xtro-sharpie/api-annotations-dotnet/iOS-UIKit.todo delete mode 100644 tests/xtro-sharpie/api-annotations-dotnet/tvOS-UIKit.todo delete mode 100644 tests/xtro-sharpie/iOS-UIKit.todo delete mode 100644 tests/xtro-sharpie/tvOS-UIKit.todo diff --git a/src/UIKit/UIEnums.cs b/src/UIKit/UIEnums.cs index 229978d312cf..39662efab72e 100644 --- a/src/UIKit/UIEnums.cs +++ b/src/UIKit/UIEnums.cs @@ -387,7 +387,9 @@ public enum UIDatePickerMode : long { Time, Date, DateAndTime, - CountDownTimer + CountDownTimer, + [iOS (17 ,4), MacCatalyst (17, 4)] + YearAndMonth, } // NSInteger -> UIDevice.h @@ -3353,8 +3355,13 @@ public enum UIPageControlBackgroundStyle : long { Minimal = 2, } - [iOS (14, 0), TV (14, 0), NoWatch] - [MacCatalyst (14, 0)] +#if XAMCORE_5_0 + [iOS (14, 0), TV (14, 0), NoWatch, NoMacCatalyst] +#else + [iOS (14, 0), TV (14, 0), NoWatch] + [MacCatalyst (14, 0)] + [Obsoleted (PlatformName.MacCatalyst, 17, 4, message: Constants.ApiRemovedGeneral)] +#endif public enum UIPasteboardDetectionPattern { [Field ("UIPasteboardDetectionPatternProbableWebURL")] ProbableWebUrl, @@ -3362,28 +3369,68 @@ public enum UIPasteboardDetectionPattern { ProbableWebSearch, [Field ("UIPasteboardDetectionPatternNumber")] Number, +#if XAMCORE_5_0 + [iOS (15, 0), TV (15, 0), NoMacCatalyst] +#else [iOS (15, 0), TV (15, 0), MacCatalyst (15, 0)] + [Obsoleted (PlatformName.MacCatalyst, 17, 4, message: Constants.ApiRemovedGeneral)] +#endif [Field ("UIPasteboardDetectionPatternLink")] Link, +#if XAMCORE_5_0 + [iOS (15, 0), TV (15, 0), NoMacCatalyst] +#else [iOS (15, 0), TV (15, 0), MacCatalyst (15, 0)] + [Obsoleted (PlatformName.MacCatalyst, 17, 4, message: Constants.ApiRemovedGeneral)] +#endif [Field ("UIPasteboardDetectionPatternPhoneNumber")] PhoneNumber, +#if XAMCORE_5_0 + [iOS (15, 0), TV (15, 0), NoMacCatalyst] +#else [iOS (15, 0), TV (15, 0), MacCatalyst (15, 0)] + [Obsoleted (PlatformName.MacCatalyst, 17, 4, message: Constants.ApiRemovedGeneral)] +#endif [Field ("UIPasteboardDetectionPatternEmailAddress")] EmailAddress, +#if XAMCORE_5_0 + [iOS (15, 0), TV (15, 0), NoMacCatalyst] +#else [iOS (15, 0), TV (15, 0), MacCatalyst (15, 0)] + [Obsoleted (PlatformName.MacCatalyst, 17, 4, message: Constants.ApiRemovedGeneral)] +#endif [Field ("UIPasteboardDetectionPatternPostalAddress")] PostalAddress, +#if XAMCORE_5_0 + [iOS (15, 0), TV (15, 0), NoMacCatalyst] +#else [iOS (15, 0), TV (15, 0), MacCatalyst (15, 0)] + [Obsoleted (PlatformName.MacCatalyst, 17, 4, message: Constants.ApiRemovedGeneral)] +#endif [Field ("UIPasteboardDetectionPatternCalendarEvent")] CalendarEvent, +#if XAMCORE_5_0 + [iOS (15, 0), TV (15, 0), NoMacCatalyst] +#else [iOS (15, 0), TV (15, 0), MacCatalyst (15, 0)] + [Obsoleted (PlatformName.MacCatalyst, 17, 4, message: Constants.ApiRemovedGeneral)] +#endif [Field ("UIPasteboardDetectionPatternShipmentTrackingNumber")] ShipmentTrackingNumber, +#if XAMCORE_5_0 + [iOS (15, 0), TV (15, 0), NoMacCatalyst] +#else [iOS (15, 0), TV (15, 0), MacCatalyst (15, 0)] + [Obsoleted (PlatformName.MacCatalyst, 17, 4, message: Constants.ApiRemovedGeneral)] +#endif [Field ("UIPasteboardDetectionPatternFlightNumber")] FlightNumber, +#if XAMCORE_5_0 + [iOS (15, 0), TV (15, 0), NoMacCatalyst] +#else [iOS (15, 0), TV (15, 0), MacCatalyst (15, 0)] + [Obsoleted (PlatformName.MacCatalyst, 17, 4, message: Constants.ApiRemovedGeneral)] +#endif [Field ("UIPasteboardDetectionPatternMoneyAmount")] MoneyAmount, } diff --git a/src/uikit.cs b/src/uikit.cs index a4b357e06ee8..269f1783551f 100644 --- a/src/uikit.cs +++ b/src/uikit.cs @@ -3324,7 +3324,12 @@ public enum UIPageControlDirection : long { BottomToTop = 4, } +#if XAMCORE_5_0 + [NoWatch, TV (16, 0), iOS (16, 0), NoMacCatalyst] +#else [NoWatch, TV (16, 0), iOS (16, 0), MacCatalyst (16, 0)] + [Obsoleted (PlatformName.MacCatalyst, 17, 4, message: Constants.ApiRemovedGeneral)] +#endif [Native] public enum UIPasteControlDisplayMode : ulong { IconAndLabel, @@ -8099,6 +8104,10 @@ interface UITextInput : UIKeyInput { [Export ("endFloatingCursor")] void EndFloatingCursor (); + [TV (17, 4), iOS (17, 4), MacCatalyst (17, 4)] + [Export ("caretTransformForPosition:")] + CGAffineTransform GetCaretTransform (UITextPosition forPosition); + [iOS (13, 0)] [MacCatalyst (13, 1)] [Export ("insertText:alternatives:style:")] @@ -8226,6 +8235,10 @@ interface UITextSelectionRect { [Export ("isVertical")] bool IsVertical { get; } + + [TV (17, 4), iOS (17, 4), MacCatalyst (17, 4)] + [Export ("transform")] + CGAffineTransform Transform { get; } } /// A set of objects derived from a variety of system resources, such as first and last names from the Address Book, text shortcuts, and Apple product names. @@ -9210,6 +9223,11 @@ interface UIMenu { UIMenuElement [] _SelectedElements { get; } #endif + [iOS (17, 4), MacCatalyst (17, 4), TV (17, 4)] + [NullAllowed] + [Export ("displayPreferences", ArgumentSemantic.Copy)] + UIMenuDisplayPreferences DisplayPreferences { get; set; } + [Export ("children")] UIMenuElement [] Children { get; } @@ -9607,6 +9625,10 @@ interface UIControl : UIContextMenuInteractionDelegate { [Export ("removeActionForIdentifier:forControlEvents:")] void RemoveAction (string actionIdentifier, UIControlEvent controlEvents); + [iOS (17 ,4), TV (17, 4), MacCatalyst (17, 4)] + [Export ("performPrimaryAction")] + void PerformPrimaryAction (); + [Export ("allTargets")] NSSet AllTargets { get; } @@ -12972,6 +12994,10 @@ interface UIScrollView : UIFocusItemScrollableContainer { [Export ("contentInset")] UIEdgeInsets ContentInset { get; set; } + [iOS (17, 4), TV (17, 4), MacCatalyst (17, 4)] + [Export ("contentAlignmentPoint", ArgumentSemantic.Assign)] + CGPoint ContentAlignmentPoint { get; set; } + [MacCatalyst (13, 1)] [Export ("adjustedContentInset")] UIEdgeInsets AdjustedContentInset { get; } @@ -13008,6 +13034,14 @@ interface UIScrollView : UIFocusItemScrollableContainer { [Export ("bounces")] bool Bounces { get; set; } + [TV (17, 4), iOS (17, 4), MacCatalyst (17, 4)] + [Export ("bouncesHorizontally")] + bool BouncesHorizontally { get; set; } + + [TV (17, 4), iOS (17, 4), MacCatalyst (17, 4)] + [Export ("bouncesVertically")] + bool BouncesVertically { get; set; } + [Export ("alwaysBounceVertical")] bool AlwaysBounceVertical { get; set; } @@ -13061,6 +13095,14 @@ UIEdgeInsets ScrollIndicatorInsets { [Export ("scrollEnabled")] bool ScrollEnabled { [Bind ("isScrollEnabled")] get; set; } + [TV (17, 4), iOS (17, 4), MacCatalyst (17, 4)] + [Export ("transfersHorizontalScrollingToParent")] + bool TransfersHorizontalScrollingToParent { get; set; } + + [TV (17, 4), iOS (17, 4), MacCatalyst (17, 4)] + [Export ("transfersVerticalScrollingToParent")] + bool TransfersVerticalScrollingToParent { get; set; } + [Export ("tracking")] bool Tracking { [Bind ("isTracking")] get; } @@ -13070,6 +13112,10 @@ UIEdgeInsets ScrollIndicatorInsets { [Export ("decelerating")] bool Decelerating { [Bind ("isDecelerating")] get; } + [TV (17, 4), iOS (17, 4), MacCatalyst (17, 4)] + [Export ("scrollAnimating")] + bool ScrollAnimating { [Bind ("isScrollAnimating")] get; } + [Export ("setContentOffset:animated:")] void SetContentOffset (CGPoint contentOffset, bool animated); @@ -13079,6 +13125,10 @@ UIEdgeInsets ScrollIndicatorInsets { [Export ("flashScrollIndicators")] void FlashScrollIndicators (); + [TV (17, 4), iOS (17, 4), MacCatalyst (17, 4)] + [Export ("withScrollIndicatorsShownForContentOffsetChanges:")] + void WithScrollIndicatorsShownForContentOffsetChanges (Action changes); + [Export ("delaysContentTouches")] bool DelaysContentTouches { get; set; } @@ -13115,11 +13165,19 @@ UIEdgeInsets ScrollIndicatorInsets { [Export ("zoomBouncing")] bool ZoomBouncing { [Bind ("isZoomBouncing")] get; } + [TV (17, 4), iOS (17, 4), MacCatalyst (17, 4)] + [Export ("zoomAnimating")] + bool ZoomAnimating { [Bind ("isZoomAnimating")] get; } + [NoTV] [MacCatalyst (13, 1)] [Export ("scrollsToTop")] bool ScrollsToTop { get; set; } + [TV (17, 4), iOS (17, 4), MacCatalyst (17, 4)] + [Export ("stopScrollingAndZooming")] + void StopScrollingAndZooming (); + [Export ("panGestureRecognizer")] UIPanGestureRecognizer PanGestureRecognizer { get; } @@ -19137,6 +19195,14 @@ interface UITextContentType { [iOS (17, 0), MacCatalyst (17, 0)] [Field ("UITextContentTypeCreditCardType")] NSString CreditCardType { get; } + + [iOS (17, 4), MacCatalyst (17, 4)] + [Field ("UITextContentTypeCellularEID")] + NSString CellularEid { get; } + + [iOS (17, 4), MacCatalyst (17, 4)] + [Field ("UITextContentTypeCellularIMEI")] + NSString CellularImei { get; } } [NoWatch] @@ -21970,6 +22036,10 @@ interface UIDragItem { [NullAllowed, Export ("previewProvider", ArgumentSemantic.Copy)] Func PreviewProvider { get; set; } + + [iOS (17, 4), MacCatalyst (17, 4)] + [Export ("setNeedsDropPreviewUpdate")] + void SetNeedsDropPreviewUpdate (); } /// A visual representation of a dragging item. @@ -29111,4 +29181,66 @@ interface UITraitChangeObservable { [Export ("unregisterForTraitChanges:")] void UnregisterForTraitChanges (IUITraitChangeRegistration registration); } + + [NoWatch, TV (17, 4), iOS (17, 4), MacCatalyst (17, 4)] + [BaseType (typeof (NSObject))] + [DisableDefaultCtor] + interface UITextCursorDropPositionAnimator { + + [Export ("cursorView")] + IUITextCursorView CursorView { get; } + + [Export ("textInput")] + IUITextInput TextInput { get; } + + [Export ("initWithTextCursorView:textInput:")] + [DesignatedInitializer] + NativeHandle Constructor (IUITextCursorView cursorView, IUITextInput textInput); + + [Export ("setCursorVisible:animated:")] + void SetCursorVisible (bool visible, bool animated); + + [Export ("placeCursorAtPosition:animated:")] + void PlaceCursor (UITextPosition atPosition, bool animated); + + [Async] + [Export ("animateAlongsideChanges:completion:")] + void AnimateAlongsideChanges ([NullAllowed] Action animation, [NullAllowed] Action completion); + } + + [NoWatch, TV (17, 4), iOS (17, 4), MacCatalyst (17, 4)] + [BaseType (typeof (NSObject))] + interface UIMenuDisplayPreferences : NSCopying, NSSecureCoding { + + [Export ("maximumNumberOfTitleLines")] + nint MaximumNumberOfTitleLines { get; set; } + } + + [NoWatch, TV (17, 4), iOS (17, 4), MacCatalyst (17, 4)] + [Protocol (BackwardsCompatibleCodeGeneration = false)] + interface UIItemProviderReadingAugmentationProviding { + + [Static, Abstract] + [Export ("objectWithItemProviderData:typeIdentifier:requestedClass:error:")] + [return: NullAllowed] + NSObject GetTypeIdentifier (NSData data, string typeIdentifier, Class requestedClass, [NullAllowed] out NSError outError); + + [Static, Abstract] + [Export ("additionalLeadingReadableTypeIdentifiersForItemProvider", ArgumentSemantic.Copy)] + string[] AdditionalLeadingReadableTypeIdentifiersForItemProvider { get; } + + [Static, Abstract] + [Export ("additionalTrailingReadableTypeIdentifiersForItemProvider", ArgumentSemantic.Copy)] + string[] AdditionalTrailingReadableTypeIdentifiersForItemProvider { get; } + } + + [NoWatch, TV (17, 4), iOS (17, 4), MacCatalyst (17, 4)] + [BaseType (typeof (UIView))] + [DisableDefaultCtor] + interface UIStandardTextCursorView : UITextCursorView { + + [Export ("initWithFrame:")] + NativeHandle Constructor (CGRect frame); + } + } diff --git a/tests/cecil-tests/Documentation.KnownFailures.txt b/tests/cecil-tests/Documentation.KnownFailures.txt index 6c9c9316987a..351e4b0da255 100644 --- a/tests/cecil-tests/Documentation.KnownFailures.txt +++ b/tests/cecil-tests/Documentation.KnownFailures.txt @@ -19011,6 +19011,7 @@ F:UIKit.UIDatePickerMode.CountDownTimer F:UIKit.UIDatePickerMode.Date F:UIKit.UIDatePickerMode.DateAndTime F:UIKit.UIDatePickerMode.Time +F:UIKit.UIDatePickerMode.YearAndMonth F:UIKit.UIDatePickerStyle.Automatic F:UIKit.UIDatePickerStyle.Compact F:UIKit.UIDatePickerStyle.Inline @@ -46306,6 +46307,9 @@ M:UIKit.IUIIndirectScribbleInteractionDelegate.ShouldDelayFocus(UIKit.UIIndirect M:UIKit.IUIIndirectScribbleInteractionDelegate.WillBeginWriting(UIKit.UIIndirectScribbleInteraction,Foundation.NSObject) M:UIKit.IUIInteraction.DidMoveToView(UIKit.UIView) M:UIKit.IUIInteraction.WillMoveToView(UIKit.UIView) +M:UIKit.IUIItemProviderReadingAugmentationProviding.GetAdditionalLeadingReadableTypeIdentifiersForItemProvider``1 +M:UIKit.IUIItemProviderReadingAugmentationProviding.GetAdditionalTrailingReadableTypeIdentifiersForItemProvider``1 +M:UIKit.IUIItemProviderReadingAugmentationProviding.GetTypeIdentifier``1(Foundation.NSData,System.String,ObjCRuntime.Class,Foundation.NSError@) M:UIKit.IUIKeyInput.DeleteBackward M:UIKit.IUIKeyInput.InsertText(System.String) M:UIKit.IUILargeContentViewerInteractionDelegate.DidEnd(UIKit.UILargeContentViewerInteraction,UIKit.IUILargeContentViewerItem,CoreGraphics.CGPoint) @@ -46678,6 +46682,7 @@ M:UIKit.IUITextInput.DictationRecordingDidEnd M:UIKit.IUITextInput.EndFloatingCursor M:UIKit.IUITextInput.GetBaseWritingDirection(UIKit.UITextPosition,UIKit.UITextStorageDirection) M:UIKit.IUITextInput.GetCaretRectForPosition(UIKit.UITextPosition) +M:UIKit.IUITextInput.GetCaretTransform(UIKit.UITextPosition) M:UIKit.IUITextInput.GetCharacterOffsetOfPosition(UIKit.UITextPosition,UIKit.UITextRange) M:UIKit.IUITextInput.GetCharacterRange(UIKit.UITextPosition,UIKit.UITextLayoutDirection) M:UIKit.IUITextInput.GetCharacterRangeAtPoint(CoreGraphics.CGPoint) @@ -48408,6 +48413,8 @@ M:UIKit.UILongPressGestureRecognizer.#ctor(Foundation.NSObject,ObjCRuntime.Selec M:UIKit.UILongPressGestureRecognizer.#ctor(System.Action) M:UIKit.UILongPressGestureRecognizer.#ctor(System.Action{UIKit.UILongPressGestureRecognizer}) M:UIKit.UIManagedDocument.#ctor(Foundation.NSUrl) +M:UIKit.UIMenuDisplayPreferences.Copy(Foundation.NSZone) +M:UIKit.UIMenuDisplayPreferences.EncodeTo(Foundation.NSCoder) M:UIKit.UIMenuElement.Copy(Foundation.NSZone) M:UIKit.UIMenuElement.EncodeTo(Foundation.NSCoder) M:UIKit.UIMenuLeaf_Extensions.GetSelectedImage(UIKit.IUIMenuLeaf) @@ -49188,6 +49195,13 @@ M:UIKit.UISpringLoadedInteractionBehavior_Extensions.InteractionDidFinish(UIKit. M:UIKit.UISpringTimingParameters.Copy(Foundation.NSZone) M:UIKit.UISpringTimingParameters.EncodeTo(Foundation.NSCoder) M:UIKit.UIStackView.UIStackViewAppearance.#ctor(System.IntPtr) +M:UIKit.UIStandardTextCursorView.#ctor(CoreGraphics.CGRect) +M:UIKit.UIStandardTextCursorView.ConvertPointFromCoordinateSpace(CoreGraphics.CGPoint,UIKit.IUICoordinateSpace) +M:UIKit.UIStandardTextCursorView.ConvertPointToCoordinateSpace(CoreGraphics.CGPoint,UIKit.IUICoordinateSpace) +M:UIKit.UIStandardTextCursorView.ConvertRectFromCoordinateSpace(CoreGraphics.CGRect,UIKit.IUICoordinateSpace) +M:UIKit.UIStandardTextCursorView.ConvertRectToCoordinateSpace(CoreGraphics.CGRect,UIKit.IUICoordinateSpace) +M:UIKit.UIStandardTextCursorView.ResetBlinkAnimation +M:UIKit.UIStandardTextCursorView.UIStandardTextCursorViewAppearance.#ctor(System.IntPtr) M:UIKit.UIStateRestoring_Extensions.ApplicationFinishedRestoringState(UIKit.IUIStateRestoring) M:UIKit.UIStateRestoring_Extensions.DecodeRestorableState(UIKit.IUIStateRestoring,Foundation.NSCoder) M:UIKit.UIStateRestoring_Extensions.EncodeRestorableState(UIKit.IUIStateRestoring,Foundation.NSCoder) @@ -49650,6 +49664,7 @@ M:UIKit.UITargetedPreview.Copy(Foundation.NSZone) M:UIKit.UITextAlignmentExtensions.ToManaged(System.IntPtr) M:UIKit.UITextAlignmentExtensions.ToNative(UIKit.UITextAlignment) M:UIKit.UITextAttributes.#ctor +M:UIKit.UITextCursorDropPositionAnimator.AnimateAlongsideChangesAsync(System.Action) M:UIKit.UITextDocumentProxy.AdjustTextPositionByCharacterOffset(System.IntPtr) M:UIKit.UITextDocumentProxy.DeleteBackward M:UIKit.UITextDocumentProxy.InsertText(System.String) @@ -49697,6 +49712,7 @@ M:UIKit.UITextField.Dispose(System.Boolean) M:UIKit.UITextField.EndFloatingCursor M:UIKit.UITextField.GetBaseWritingDirection(UIKit.UITextPosition,UIKit.UITextStorageDirection) M:UIKit.UITextField.GetCaretRectForPosition(UIKit.UITextPosition) +M:UIKit.UITextField.GetCaretTransform(UIKit.UITextPosition) M:UIKit.UITextField.GetCharacterOffsetOfPosition(UIKit.UITextPosition,UIKit.UITextRange) M:UIKit.UITextField.GetCharacterRange(UIKit.UITextPosition,UIKit.UITextLayoutDirection) M:UIKit.UITextField.GetCharacterRangeAtPoint(CoreGraphics.CGPoint) @@ -49768,6 +49784,7 @@ M:UIKit.UITextInput_Extensions.BeginFloatingCursor(UIKit.IUITextInput,CoreGraphi M:UIKit.UITextInput_Extensions.DictationRecognitionFailed(UIKit.IUITextInput) M:UIKit.UITextInput_Extensions.DictationRecordingDidEnd(UIKit.IUITextInput) M:UIKit.UITextInput_Extensions.EndFloatingCursor(UIKit.IUITextInput) +M:UIKit.UITextInput_Extensions.GetCaretTransform(UIKit.IUITextInput,UIKit.UITextPosition) M:UIKit.UITextInput_Extensions.GetCharacterOffsetOfPosition(UIKit.IUITextInput,UIKit.UITextPosition,UIKit.UITextRange) M:UIKit.UITextInput_Extensions.GetEditMenu(UIKit.IUITextInput,UIKit.UITextRange,UIKit.UIMenuElement[]) M:UIKit.UITextInput_Extensions.GetFrameForDictationResultPlaceholder(UIKit.IUITextInput,Foundation.NSObject) @@ -49877,6 +49894,7 @@ M:UIKit.UITextView.EncodeTo(Foundation.NSCoder) M:UIKit.UITextView.EndFloatingCursor M:UIKit.UITextView.GetBaseWritingDirection(UIKit.UITextPosition,UIKit.UITextStorageDirection) M:UIKit.UITextView.GetCaretRectForPosition(UIKit.UITextPosition) +M:UIKit.UITextView.GetCaretTransform(UIKit.UITextPosition) M:UIKit.UITextView.GetCharacterOffsetOfPosition(UIKit.UITextPosition,UIKit.UITextRange) M:UIKit.UITextView.GetCharacterRange(UIKit.UITextPosition,UIKit.UITextLayoutDirection) M:UIKit.UITextView.GetCharacterRangeAtPoint(CoreGraphics.CGPoint) @@ -73656,11 +73674,13 @@ P:UIKit.UIScrollView.Delegate P:UIKit.UIScrollView.DirectionalLockEnabled P:UIKit.UIScrollView.Dragging P:UIKit.UIScrollView.PagingEnabled +P:UIKit.UIScrollView.ScrollAnimating P:UIKit.UIScrollView.ScrollEnabled P:UIKit.UIScrollView.ShouldScrollToTop P:UIKit.UIScrollView.Tracking P:UIKit.UIScrollView.ViewForZoomingInScrollView P:UIKit.UIScrollView.VisibleSize +P:UIKit.UIScrollView.ZoomAnimating P:UIKit.UIScrollView.ZoomBouncing P:UIKit.UIScrollView.Zooming P:UIKit.UIScrollViewZoomingEventArgs.View @@ -73744,6 +73764,7 @@ P:UIKit.UISpringTimingParameters.SpringTimingParameters P:UIKit.UISpringTimingParameters.TimingCurveType P:UIKit.UIStackView.BaselineRelativeArrangement P:UIKit.UIStackView.LayoutMarginsRelativeArrangement +P:UIKit.UIStandardTextCursorView.Blinking P:UIKit.UIStateRestoration.ViewControllerStoryboardKey P:UIKit.UIStateRestoring.ObjectRestorationClass P:UIKit.UIStateRestoring.RestorationParent @@ -73874,6 +73895,8 @@ P:UIKit.UITextContentType.Birthdate P:UIKit.UITextContentType.BirthdateDay P:UIKit.UITextContentType.BirthdateMonth P:UIKit.UITextContentType.BirthdateYear +P:UIKit.UITextContentType.CellularEid +P:UIKit.UITextContentType.CellularImei P:UIKit.UITextContentType.CountryName P:UIKit.UITextContentType.CreditCardExpiration P:UIKit.UITextContentType.CreditCardExpirationMonth @@ -80912,6 +80935,7 @@ T:UIKit.IUIIndirectScribbleInteractionDelegate T:UIKit.IUIInputViewAudioFeedback T:UIKit.IUIInteraction T:UIKit.IUIItemProviderPresentationSizeProviding +T:UIKit.IUIItemProviderReadingAugmentationProviding T:UIKit.IUIKeyInput T:UIKit.IUILargeContentViewerInteractionDelegate T:UIKit.IUILargeContentViewerItem diff --git a/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-UIKit.ignore b/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-UIKit.ignore index 48f81f346d9c..26cd868a259f 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-UIKit.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-UIKit.ignore @@ -38,3 +38,6 @@ ## manually bound !missing-field! UIListSeparatorAutomaticInsets not bound + +!missing-selector! NSItemProvider::_availableTypes not bound +!missing-protocol! UIItemProviderReadingAugmentationDesignating not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-UIKit.ignore b/tests/xtro-sharpie/api-annotations-dotnet/iOS-UIKit.ignore index 9ba913f837d9..c4f380daa81c 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/iOS-UIKit.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-UIKit.ignore @@ -474,3 +474,6 @@ !incorrect-protocol-member! UIPopoverPresentationControllerSourceItem::frameInView: is REQUIRED and should be abstract !incorrect-protocol-member! UIMenuLeaf::selectedImage is REQUIRED and should be abstract !incorrect-protocol-member! UIMenuLeaf::setSelectedImage: is REQUIRED and should be abstract + +!missing-selector! NSItemProvider::_availableTypes not bound +!missing-protocol! UIItemProviderReadingAugmentationDesignating not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-UIKit.todo b/tests/xtro-sharpie/api-annotations-dotnet/iOS-UIKit.todo deleted file mode 100644 index a738af55c2a6..000000000000 --- a/tests/xtro-sharpie/api-annotations-dotnet/iOS-UIKit.todo +++ /dev/null @@ -1,37 +0,0 @@ -!missing-enum-value! UIDatePickerMode native value UIDatePickerModeYearAndMonth = 4 not bound -!missing-field! UITextContentTypeCellularEID not bound -!missing-field! UITextContentTypeCellularIMEI not bound -!missing-protocol! UIItemProviderReadingAugmentationDesignating not bound -!missing-protocol! UIItemProviderReadingAugmentationProviding not bound -!missing-protocol-member! UITextInput::caretTransformForPosition: not found -!missing-selector! NSItemProvider::_availableTypes not bound -!missing-selector! UIControl::performPrimaryAction not bound -!missing-selector! UIDragItem::setNeedsDropPreviewUpdate not bound -!missing-selector! UIMenu::displayPreferences not bound -!missing-selector! UIMenu::setDisplayPreferences: not bound -!missing-selector! UIMenuDisplayPreferences::maximumNumberOfTitleLines not bound -!missing-selector! UIMenuDisplayPreferences::setMaximumNumberOfTitleLines: not bound -!missing-selector! UIScrollView::bouncesHorizontally not bound -!missing-selector! UIScrollView::bouncesVertically not bound -!missing-selector! UIScrollView::contentAlignmentPoint not bound -!missing-selector! UIScrollView::isScrollAnimating not bound -!missing-selector! UIScrollView::isZoomAnimating not bound -!missing-selector! UIScrollView::setBouncesHorizontally: not bound -!missing-selector! UIScrollView::setBouncesVertically: not bound -!missing-selector! UIScrollView::setContentAlignmentPoint: not bound -!missing-selector! UIScrollView::setTransfersHorizontalScrollingToParent: not bound -!missing-selector! UIScrollView::setTransfersVerticalScrollingToParent: not bound -!missing-selector! UIScrollView::stopScrollingAndZooming not bound -!missing-selector! UIScrollView::transfersHorizontalScrollingToParent not bound -!missing-selector! UIScrollView::transfersVerticalScrollingToParent not bound -!missing-selector! UIScrollView::withScrollIndicatorsShownForContentOffsetChanges: not bound -!missing-selector! UITextCursorDropPositionAnimator::animateAlongsideChanges:completion: not bound -!missing-selector! UITextCursorDropPositionAnimator::cursorView not bound -!missing-selector! UITextCursorDropPositionAnimator::initWithTextCursorView:textInput: not bound -!missing-selector! UITextCursorDropPositionAnimator::placeCursorAtPosition:animated: not bound -!missing-selector! UITextCursorDropPositionAnimator::setCursorVisible:animated: not bound -!missing-selector! UITextCursorDropPositionAnimator::textInput not bound -!missing-selector! UITextSelectionRect::transform not bound -!missing-type! UIMenuDisplayPreferences not bound -!missing-type! UIStandardTextCursorView not bound -!missing-type! UITextCursorDropPositionAnimator not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-UIKit.ignore b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-UIKit.ignore index 26d6294996e9..77189feeab20 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-UIKit.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-UIKit.ignore @@ -405,3 +405,20 @@ # xamcore 5 changes !incorrect-protocol-member! UIMenuLeaf::selectedImage is REQUIRED and should be abstract !incorrect-protocol-member! UIMenuLeaf::setSelectedImage: is REQUIRED and should be abstract + +!missing-selector! NSItemProvider::_availableTypes not bound +!missing-protocol! UIItemProviderReadingAugmentationDesignating not bound + +# Will be removed in XAMCORE_5 +!unknown-field! UIPasteboardDetectionPatternCalendarEvent bound +!unknown-field! UIPasteboardDetectionPatternEmailAddress bound +!unknown-field! UIPasteboardDetectionPatternFlightNumber bound +!unknown-field! UIPasteboardDetectionPatternLink bound +!unknown-field! UIPasteboardDetectionPatternMoneyAmount bound +!unknown-field! UIPasteboardDetectionPatternNumber bound +!unknown-field! UIPasteboardDetectionPatternPhoneNumber bound +!unknown-field! UIPasteboardDetectionPatternPostalAddress bound +!unknown-field! UIPasteboardDetectionPatternProbableWebSearch bound +!unknown-field! UIPasteboardDetectionPatternProbableWebURL bound +!unknown-field! UIPasteboardDetectionPatternShipmentTrackingNumber bound +!unknown-native-enum! UIPasteControlDisplayMode bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-UIKit.todo b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-UIKit.todo deleted file mode 100644 index 2b881e164ba2..000000000000 --- a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-UIKit.todo +++ /dev/null @@ -1,47 +0,0 @@ -!missing-field! UITextContentTypeCellularEID not bound -!missing-field! UITextContentTypeCellularIMEI not bound -!missing-protocol! UIItemProviderReadingAugmentationDesignating not bound -!missing-protocol! UIItemProviderReadingAugmentationProviding not bound -!missing-protocol-member! UITextInput::caretTransformForPosition: not found -!missing-selector! NSItemProvider::_availableTypes not bound -!missing-selector! UIControl::performPrimaryAction not bound -!missing-selector! UIMenu::displayPreferences not bound -!missing-selector! UIMenu::setDisplayPreferences: not bound -!missing-selector! UIMenuDisplayPreferences::maximumNumberOfTitleLines not bound -!missing-selector! UIMenuDisplayPreferences::setMaximumNumberOfTitleLines: not bound -!missing-selector! UIScrollView::bouncesHorizontally not bound -!missing-selector! UIScrollView::bouncesVertically not bound -!missing-selector! UIScrollView::contentAlignmentPoint not bound -!missing-selector! UIScrollView::isScrollAnimating not bound -!missing-selector! UIScrollView::isZoomAnimating not bound -!missing-selector! UIScrollView::setBouncesHorizontally: not bound -!missing-selector! UIScrollView::setBouncesVertically: not bound -!missing-selector! UIScrollView::setContentAlignmentPoint: not bound -!missing-selector! UIScrollView::setTransfersHorizontalScrollingToParent: not bound -!missing-selector! UIScrollView::setTransfersVerticalScrollingToParent: not bound -!missing-selector! UIScrollView::stopScrollingAndZooming not bound -!missing-selector! UIScrollView::transfersHorizontalScrollingToParent not bound -!missing-selector! UIScrollView::transfersVerticalScrollingToParent not bound -!missing-selector! UIScrollView::withScrollIndicatorsShownForContentOffsetChanges: not bound -!missing-selector! UITextCursorDropPositionAnimator::animateAlongsideChanges:completion: not bound -!missing-selector! UITextCursorDropPositionAnimator::cursorView not bound -!missing-selector! UITextCursorDropPositionAnimator::initWithTextCursorView:textInput: not bound -!missing-selector! UITextCursorDropPositionAnimator::placeCursorAtPosition:animated: not bound -!missing-selector! UITextCursorDropPositionAnimator::setCursorVisible:animated: not bound -!missing-selector! UITextCursorDropPositionAnimator::textInput not bound -!missing-selector! UITextSelectionRect::transform not bound -!missing-type! UIMenuDisplayPreferences not bound -!missing-type! UIStandardTextCursorView not bound -!missing-type! UITextCursorDropPositionAnimator not bound -!unknown-field! UIPasteboardDetectionPatternCalendarEvent bound -!unknown-field! UIPasteboardDetectionPatternEmailAddress bound -!unknown-field! UIPasteboardDetectionPatternFlightNumber bound -!unknown-field! UIPasteboardDetectionPatternLink bound -!unknown-field! UIPasteboardDetectionPatternMoneyAmount bound -!unknown-field! UIPasteboardDetectionPatternNumber bound -!unknown-field! UIPasteboardDetectionPatternPhoneNumber bound -!unknown-field! UIPasteboardDetectionPatternPostalAddress bound -!unknown-field! UIPasteboardDetectionPatternProbableWebSearch bound -!unknown-field! UIPasteboardDetectionPatternProbableWebURL bound -!unknown-field! UIPasteboardDetectionPatternShipmentTrackingNumber bound -!unknown-native-enum! UIPasteControlDisplayMode bound diff --git a/tests/xtro-sharpie/iOS-UIKit.ignore b/tests/xtro-sharpie/iOS-UIKit.ignore index ddf1f4075ebb..2b9ef48b161f 100644 --- a/tests/xtro-sharpie/iOS-UIKit.ignore +++ b/tests/xtro-sharpie/iOS-UIKit.ignore @@ -657,3 +657,6 @@ !incorrect-protocol-member! UITraitChangeObservable::registerForTraitChanges:withAction: is REQUIRED and should be abstract !incorrect-protocol-member! UITraitChangeObservable::registerForTraitChanges:withHandler: is REQUIRED and should be abstract !incorrect-protocol-member! UITraitChangeObservable::registerForTraitChanges:withTarget:action: is REQUIRED and should be abstract + +!missing-selector! NSItemProvider::_availableTypes not bound +!missing-protocol! UIItemProviderReadingAugmentationDesignating not bound diff --git a/tests/xtro-sharpie/iOS-UIKit.todo b/tests/xtro-sharpie/iOS-UIKit.todo deleted file mode 100644 index a738af55c2a6..000000000000 --- a/tests/xtro-sharpie/iOS-UIKit.todo +++ /dev/null @@ -1,37 +0,0 @@ -!missing-enum-value! UIDatePickerMode native value UIDatePickerModeYearAndMonth = 4 not bound -!missing-field! UITextContentTypeCellularEID not bound -!missing-field! UITextContentTypeCellularIMEI not bound -!missing-protocol! UIItemProviderReadingAugmentationDesignating not bound -!missing-protocol! UIItemProviderReadingAugmentationProviding not bound -!missing-protocol-member! UITextInput::caretTransformForPosition: not found -!missing-selector! NSItemProvider::_availableTypes not bound -!missing-selector! UIControl::performPrimaryAction not bound -!missing-selector! UIDragItem::setNeedsDropPreviewUpdate not bound -!missing-selector! UIMenu::displayPreferences not bound -!missing-selector! UIMenu::setDisplayPreferences: not bound -!missing-selector! UIMenuDisplayPreferences::maximumNumberOfTitleLines not bound -!missing-selector! UIMenuDisplayPreferences::setMaximumNumberOfTitleLines: not bound -!missing-selector! UIScrollView::bouncesHorizontally not bound -!missing-selector! UIScrollView::bouncesVertically not bound -!missing-selector! UIScrollView::contentAlignmentPoint not bound -!missing-selector! UIScrollView::isScrollAnimating not bound -!missing-selector! UIScrollView::isZoomAnimating not bound -!missing-selector! UIScrollView::setBouncesHorizontally: not bound -!missing-selector! UIScrollView::setBouncesVertically: not bound -!missing-selector! UIScrollView::setContentAlignmentPoint: not bound -!missing-selector! UIScrollView::setTransfersHorizontalScrollingToParent: not bound -!missing-selector! UIScrollView::setTransfersVerticalScrollingToParent: not bound -!missing-selector! UIScrollView::stopScrollingAndZooming not bound -!missing-selector! UIScrollView::transfersHorizontalScrollingToParent not bound -!missing-selector! UIScrollView::transfersVerticalScrollingToParent not bound -!missing-selector! UIScrollView::withScrollIndicatorsShownForContentOffsetChanges: not bound -!missing-selector! UITextCursorDropPositionAnimator::animateAlongsideChanges:completion: not bound -!missing-selector! UITextCursorDropPositionAnimator::cursorView not bound -!missing-selector! UITextCursorDropPositionAnimator::initWithTextCursorView:textInput: not bound -!missing-selector! UITextCursorDropPositionAnimator::placeCursorAtPosition:animated: not bound -!missing-selector! UITextCursorDropPositionAnimator::setCursorVisible:animated: not bound -!missing-selector! UITextCursorDropPositionAnimator::textInput not bound -!missing-selector! UITextSelectionRect::transform not bound -!missing-type! UIMenuDisplayPreferences not bound -!missing-type! UIStandardTextCursorView not bound -!missing-type! UITextCursorDropPositionAnimator not bound diff --git a/tests/xtro-sharpie/tvOS-UIKit.ignore b/tests/xtro-sharpie/tvOS-UIKit.ignore index 732e7c1c62b7..6247f0057f16 100644 --- a/tests/xtro-sharpie/tvOS-UIKit.ignore +++ b/tests/xtro-sharpie/tvOS-UIKit.ignore @@ -570,3 +570,20 @@ !incorrect-protocol-member! UITraitChangeObservable::registerForTraitChanges:withAction: is REQUIRED and should be abstract !incorrect-protocol-member! UITraitChangeObservable::registerForTraitChanges:withHandler: is REQUIRED and should be abstract !incorrect-protocol-member! UITraitChangeObservable::registerForTraitChanges:withTarget:action: is REQUIRED and should be abstract + +!missing-selector! NSItemProvider::_availableTypes not bound +!missing-protocol! UIItemProviderReadingAugmentationDesignating not bound + +# Will be removed in XAMCORE_5 +!unknown-field! UIPasteboardDetectionPatternCalendarEvent bound +!unknown-field! UIPasteboardDetectionPatternEmailAddress bound +!unknown-field! UIPasteboardDetectionPatternFlightNumber bound +!unknown-field! UIPasteboardDetectionPatternLink bound +!unknown-field! UIPasteboardDetectionPatternMoneyAmount bound +!unknown-field! UIPasteboardDetectionPatternNumber bound +!unknown-field! UIPasteboardDetectionPatternPhoneNumber bound +!unknown-field! UIPasteboardDetectionPatternPostalAddress bound +!unknown-field! UIPasteboardDetectionPatternProbableWebSearch bound +!unknown-field! UIPasteboardDetectionPatternProbableWebURL bound +!unknown-field! UIPasteboardDetectionPatternShipmentTrackingNumber bound +!unknown-native-enum! UIPasteControlDisplayMode bound diff --git a/tests/xtro-sharpie/tvOS-UIKit.todo b/tests/xtro-sharpie/tvOS-UIKit.todo deleted file mode 100644 index 2b881e164ba2..000000000000 --- a/tests/xtro-sharpie/tvOS-UIKit.todo +++ /dev/null @@ -1,47 +0,0 @@ -!missing-field! UITextContentTypeCellularEID not bound -!missing-field! UITextContentTypeCellularIMEI not bound -!missing-protocol! UIItemProviderReadingAugmentationDesignating not bound -!missing-protocol! UIItemProviderReadingAugmentationProviding not bound -!missing-protocol-member! UITextInput::caretTransformForPosition: not found -!missing-selector! NSItemProvider::_availableTypes not bound -!missing-selector! UIControl::performPrimaryAction not bound -!missing-selector! UIMenu::displayPreferences not bound -!missing-selector! UIMenu::setDisplayPreferences: not bound -!missing-selector! UIMenuDisplayPreferences::maximumNumberOfTitleLines not bound -!missing-selector! UIMenuDisplayPreferences::setMaximumNumberOfTitleLines: not bound -!missing-selector! UIScrollView::bouncesHorizontally not bound -!missing-selector! UIScrollView::bouncesVertically not bound -!missing-selector! UIScrollView::contentAlignmentPoint not bound -!missing-selector! UIScrollView::isScrollAnimating not bound -!missing-selector! UIScrollView::isZoomAnimating not bound -!missing-selector! UIScrollView::setBouncesHorizontally: not bound -!missing-selector! UIScrollView::setBouncesVertically: not bound -!missing-selector! UIScrollView::setContentAlignmentPoint: not bound -!missing-selector! UIScrollView::setTransfersHorizontalScrollingToParent: not bound -!missing-selector! UIScrollView::setTransfersVerticalScrollingToParent: not bound -!missing-selector! UIScrollView::stopScrollingAndZooming not bound -!missing-selector! UIScrollView::transfersHorizontalScrollingToParent not bound -!missing-selector! UIScrollView::transfersVerticalScrollingToParent not bound -!missing-selector! UIScrollView::withScrollIndicatorsShownForContentOffsetChanges: not bound -!missing-selector! UITextCursorDropPositionAnimator::animateAlongsideChanges:completion: not bound -!missing-selector! UITextCursorDropPositionAnimator::cursorView not bound -!missing-selector! UITextCursorDropPositionAnimator::initWithTextCursorView:textInput: not bound -!missing-selector! UITextCursorDropPositionAnimator::placeCursorAtPosition:animated: not bound -!missing-selector! UITextCursorDropPositionAnimator::setCursorVisible:animated: not bound -!missing-selector! UITextCursorDropPositionAnimator::textInput not bound -!missing-selector! UITextSelectionRect::transform not bound -!missing-type! UIMenuDisplayPreferences not bound -!missing-type! UIStandardTextCursorView not bound -!missing-type! UITextCursorDropPositionAnimator not bound -!unknown-field! UIPasteboardDetectionPatternCalendarEvent bound -!unknown-field! UIPasteboardDetectionPatternEmailAddress bound -!unknown-field! UIPasteboardDetectionPatternFlightNumber bound -!unknown-field! UIPasteboardDetectionPatternLink bound -!unknown-field! UIPasteboardDetectionPatternMoneyAmount bound -!unknown-field! UIPasteboardDetectionPatternNumber bound -!unknown-field! UIPasteboardDetectionPatternPhoneNumber bound -!unknown-field! UIPasteboardDetectionPatternPostalAddress bound -!unknown-field! UIPasteboardDetectionPatternProbableWebSearch bound -!unknown-field! UIPasteboardDetectionPatternProbableWebURL bound -!unknown-field! UIPasteboardDetectionPatternShipmentTrackingNumber bound -!unknown-native-enum! UIPasteControlDisplayMode bound diff --git a/tests/xtro-sharpie/watchOS-UIKit.ignore b/tests/xtro-sharpie/watchOS-UIKit.ignore index e40de500d40d..51c4738d8b2e 100644 --- a/tests/xtro-sharpie/watchOS-UIKit.ignore +++ b/tests/xtro-sharpie/watchOS-UIKit.ignore @@ -32,3 +32,5 @@ !missing-null-allowed! 'UIKit.UIFontDescriptor UIKit.UIFontDescriptor::CreateWithTraits(UIKit.UIFontDescriptorSymbolicTraits)' is missing an [NullAllowed] on return type !unknown-field! UIUserNotificationActionResponseTypedTextKey bound +!missing-selector! NSItemProvider::_availableTypes not bound +!missing-protocol! UIItemProviderReadingAugmentationDesignating not bound diff --git a/tests/xtro-sharpie/watchOS-UIKit.todo b/tests/xtro-sharpie/watchOS-UIKit.todo index 855c822fddc1..145bf4a2ec21 100644 --- a/tests/xtro-sharpie/watchOS-UIKit.todo +++ b/tests/xtro-sharpie/watchOS-UIKit.todo @@ -1,3 +1,2 @@ !missing-protocol! UIItemProviderReadingAugmentationDesignating not bound !missing-protocol! UIItemProviderReadingAugmentationProviding not bound -!missing-selector! NSItemProvider::_availableTypes not bound From 1923de4f682aa7481d15cab0e99df99655d84570 Mon Sep 17 00:00:00 2001 From: GitHub Actions Autoformatter Date: Tue, 9 Jul 2024 07:25:53 +0000 Subject: [PATCH 60/73] Auto-format source code --- src/UIKit/UIEnums.cs | 8 ++++---- src/uikit.cs | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/UIKit/UIEnums.cs b/src/UIKit/UIEnums.cs index 39662efab72e..aa1e4b5fa947 100644 --- a/src/UIKit/UIEnums.cs +++ b/src/UIKit/UIEnums.cs @@ -388,7 +388,7 @@ public enum UIDatePickerMode : long { Date, DateAndTime, CountDownTimer, - [iOS (17 ,4), MacCatalyst (17, 4)] + [iOS (17, 4), MacCatalyst (17, 4)] YearAndMonth, } @@ -3358,9 +3358,9 @@ public enum UIPageControlBackgroundStyle : long { #if XAMCORE_5_0 [iOS (14, 0), TV (14, 0), NoWatch, NoMacCatalyst] #else - [iOS (14, 0), TV (14, 0), NoWatch] - [MacCatalyst (14, 0)] - [Obsoleted (PlatformName.MacCatalyst, 17, 4, message: Constants.ApiRemovedGeneral)] + [iOS (14, 0), TV (14, 0), NoWatch] + [MacCatalyst (14, 0)] + [Obsoleted (PlatformName.MacCatalyst, 17, 4, message: Constants.ApiRemovedGeneral)] #endif public enum UIPasteboardDetectionPattern { [Field ("UIPasteboardDetectionPatternProbableWebURL")] diff --git a/src/uikit.cs b/src/uikit.cs index 269f1783551f..38d00ff64f42 100644 --- a/src/uikit.cs +++ b/src/uikit.cs @@ -9625,7 +9625,7 @@ interface UIControl : UIContextMenuInteractionDelegate { [Export ("removeActionForIdentifier:forControlEvents:")] void RemoveAction (string actionIdentifier, UIControlEvent controlEvents); - [iOS (17 ,4), TV (17, 4), MacCatalyst (17, 4)] + [iOS (17, 4), TV (17, 4), MacCatalyst (17, 4)] [Export ("performPrimaryAction")] void PerformPrimaryAction (); @@ -29219,7 +29219,7 @@ interface UIMenuDisplayPreferences : NSCopying, NSSecureCoding { [NoWatch, TV (17, 4), iOS (17, 4), MacCatalyst (17, 4)] [Protocol (BackwardsCompatibleCodeGeneration = false)] interface UIItemProviderReadingAugmentationProviding { - + [Static, Abstract] [Export ("objectWithItemProviderData:typeIdentifier:requestedClass:error:")] [return: NullAllowed] @@ -29227,11 +29227,11 @@ interface UIItemProviderReadingAugmentationProviding { [Static, Abstract] [Export ("additionalLeadingReadableTypeIdentifiersForItemProvider", ArgumentSemantic.Copy)] - string[] AdditionalLeadingReadableTypeIdentifiersForItemProvider { get; } + string [] AdditionalLeadingReadableTypeIdentifiersForItemProvider { get; } [Static, Abstract] [Export ("additionalTrailingReadableTypeIdentifiersForItemProvider", ArgumentSemantic.Copy)] - string[] AdditionalTrailingReadableTypeIdentifiersForItemProvider { get; } + string [] AdditionalTrailingReadableTypeIdentifiersForItemProvider { get; } } [NoWatch, TV (17, 4), iOS (17, 4), MacCatalyst (17, 4)] From d56239f2c544e4fd94f9c84a79baf15824074289 Mon Sep 17 00:00:00 2001 From: Alex Soto Date: Tue, 9 Jul 2024 04:32:16 -0400 Subject: [PATCH 61/73] [VideoSubscriberAccount] Update bindings to Xcode 15.3 --- src/videosubscriberaccount.cs | 19 +++++++++++++++++++ .../Documentation.KnownFailures.txt | 5 +++++ tests/introspection/ApiProtocolTest.cs | 2 ++ .../iOS-VideoSubscriberAccount.todo | 8 -------- .../macOS-VideoSubscriberAccount.todo | 8 -------- .../tvOS-VideoSubscriberAccount.todo | 8 -------- .../iOS-VideoSubscriberAccount.todo | 8 -------- .../macOS-VideoSubscriberAccount.todo | 8 -------- .../tvOS-VideoSubscriberAccount.todo | 8 -------- 9 files changed, 26 insertions(+), 48 deletions(-) delete mode 100644 tests/xtro-sharpie/api-annotations-dotnet/iOS-VideoSubscriberAccount.todo delete mode 100644 tests/xtro-sharpie/api-annotations-dotnet/macOS-VideoSubscriberAccount.todo delete mode 100644 tests/xtro-sharpie/api-annotations-dotnet/tvOS-VideoSubscriberAccount.todo delete mode 100644 tests/xtro-sharpie/iOS-VideoSubscriberAccount.todo delete mode 100644 tests/xtro-sharpie/macOS-VideoSubscriberAccount.todo delete mode 100644 tests/xtro-sharpie/tvOS-VideoSubscriberAccount.todo diff --git a/src/videosubscriberaccount.cs b/src/videosubscriberaccount.cs index 6c28f786f790..3547e3b70430 100644 --- a/src/videosubscriberaccount.cs +++ b/src/videosubscriberaccount.cs @@ -435,8 +435,27 @@ interface VSUserAccount { [Export ("deviceCategory")] VSOriginatingDeviceCategory DeviceCategory { get; } + [TV (17, 4), NoWatch, NoMacCatalyst, Mac (14, 4), iOS (17, 4)] + [NullAllowed, Export ("appleSubscription", ArgumentSemantic.Strong)] + VSAppleSubscription AppleSubscription { get; set; } + [Export ("initWithAccountType:updateURL:")] NativeHandle Constructor (VSUserAccountType accountType, [NullAllowed] NSUrl url); } + [TV (17, 4), NoWatch, NoMacCatalyst, Mac (14, 4), iOS (17, 4)] + [BaseType (typeof (NSObject))] + [DisableDefaultCtor] + interface VSAppleSubscription { + + [Export ("customerID", ArgumentSemantic.Strong)] + string CustomerID { get; set; } + + [Export ("productCodes", ArgumentSemantic.Strong)] + string[] ProductCodes { get; set; } + + [Export ("initWithCustomerID:productCodes:")] + NativeHandle Constructor (string customerId, string[] productCodes); + } + } diff --git a/tests/cecil-tests/Documentation.KnownFailures.txt b/tests/cecil-tests/Documentation.KnownFailures.txt index 351e4b0da255..ff7a42ce950a 100644 --- a/tests/cecil-tests/Documentation.KnownFailures.txt +++ b/tests/cecil-tests/Documentation.KnownFailures.txt @@ -50353,6 +50353,7 @@ M:VideoSubscriberAccount.VSAccountManagerDelegate.ShouldAuthenticateAccountProvi M:VideoSubscriberAccount.VSAccountManagerResult.Cancel M:VideoSubscriberAccount.VSAccountProviderAuthenticationSchemeExtensions.GetConstants(VideoSubscriberAccount.VSAccountProviderAuthenticationScheme[]) M:VideoSubscriberAccount.VSAccountProviderAuthenticationSchemeExtensions.GetValues(Foundation.NSString[]) +M:VideoSubscriberAccount.VSAppleSubscription.#ctor(System.String,System.String[]) M:VideoSubscriberAccount.VSErrorInfo.#ctor M:VideoSubscriberAccount.VSErrorInfo.#ctor(Foundation.NSDictionary) M:VideoSubscriberAccount.VSSubscriptionRegistrationCenter.SetCurrentSubscription(VideoSubscriberAccount.VSSubscription) @@ -74579,6 +74580,8 @@ P:VideoSubscriberAccount.VSAccountProviderResponse.AuthenticationScheme P:VideoSubscriberAccount.VSAccountProviderResponse.AuthenticationSchemeString P:VideoSubscriberAccount.VSAccountProviderResponse.Body P:VideoSubscriberAccount.VSAccountProviderResponse.Status +P:VideoSubscriberAccount.VSAppleSubscription.CustomerID +P:VideoSubscriberAccount.VSAppleSubscription.ProductCodes P:VideoSubscriberAccount.VSErrorInfo.AccountProviderResponse P:VideoSubscriberAccount.VSErrorInfo.SamlResponse P:VideoSubscriberAccount.VSErrorInfo.SamlResponseStatus @@ -74590,6 +74593,7 @@ P:VideoSubscriberAccount.VSSubscription.TierIdentifiers P:VideoSubscriberAccount.VSSubscriptionRegistrationCenter.Default P:VideoSubscriberAccount.VSUserAccount.AccountProviderIdentifier P:VideoSubscriberAccount.VSUserAccount.AccountType +P:VideoSubscriberAccount.VSUserAccount.AppleSubscription P:VideoSubscriberAccount.VSUserAccount.AuthenticationData P:VideoSubscriberAccount.VSUserAccount.BillingIdentifier P:VideoSubscriberAccount.VSUserAccount.Deleted @@ -81575,6 +81579,7 @@ T:VideoSubscriberAccount.VSAccountApplicationProvider T:VideoSubscriberAccount.VSAccountManagerAccessOptions T:VideoSubscriberAccount.VSAccountProviderAuthenticationScheme T:VideoSubscriberAccount.VSAccountProviderResponse +T:VideoSubscriberAccount.VSAppleSubscription T:VideoSubscriberAccount.VSErrorInfo T:VideoSubscriberAccount.VSOriginatingDeviceCategory T:VideoSubscriberAccount.VSSubscription diff --git a/tests/introspection/ApiProtocolTest.cs b/tests/introspection/ApiProtocolTest.cs index c5cd68243c40..5c3721d1fb7a 100644 --- a/tests/introspection/ApiProtocolTest.cs +++ b/tests/introspection/ApiProtocolTest.cs @@ -374,6 +374,7 @@ protected virtual bool Skip (Type type, string protocolName) return true; // Xcode 15.3, Conformance not in headers case "ASWebAuthenticationSessionCallback": + case "VSAppleSubscription": return true; } break; @@ -551,6 +552,7 @@ protected virtual bool Skip (Type type, string protocolName) return true; // Xcode 15.3, Conformance not in headers case "ASWebAuthenticationSessionCallback": + case "VSAppleSubscription": return true; } break; diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-VideoSubscriberAccount.todo b/tests/xtro-sharpie/api-annotations-dotnet/iOS-VideoSubscriberAccount.todo deleted file mode 100644 index b325adc0448d..000000000000 --- a/tests/xtro-sharpie/api-annotations-dotnet/iOS-VideoSubscriberAccount.todo +++ /dev/null @@ -1,8 +0,0 @@ -!missing-selector! VSAppleSubscription::customerID not bound -!missing-selector! VSAppleSubscription::initWithCustomerID:productCodes: not bound -!missing-selector! VSAppleSubscription::productCodes not bound -!missing-selector! VSAppleSubscription::setCustomerID: not bound -!missing-selector! VSAppleSubscription::setProductCodes: not bound -!missing-selector! VSUserAccount::appleSubscription not bound -!missing-selector! VSUserAccount::setAppleSubscription: not bound -!missing-type! VSAppleSubscription not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-VideoSubscriberAccount.todo b/tests/xtro-sharpie/api-annotations-dotnet/macOS-VideoSubscriberAccount.todo deleted file mode 100644 index b325adc0448d..000000000000 --- a/tests/xtro-sharpie/api-annotations-dotnet/macOS-VideoSubscriberAccount.todo +++ /dev/null @@ -1,8 +0,0 @@ -!missing-selector! VSAppleSubscription::customerID not bound -!missing-selector! VSAppleSubscription::initWithCustomerID:productCodes: not bound -!missing-selector! VSAppleSubscription::productCodes not bound -!missing-selector! VSAppleSubscription::setCustomerID: not bound -!missing-selector! VSAppleSubscription::setProductCodes: not bound -!missing-selector! VSUserAccount::appleSubscription not bound -!missing-selector! VSUserAccount::setAppleSubscription: not bound -!missing-type! VSAppleSubscription not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-VideoSubscriberAccount.todo b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-VideoSubscriberAccount.todo deleted file mode 100644 index b325adc0448d..000000000000 --- a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-VideoSubscriberAccount.todo +++ /dev/null @@ -1,8 +0,0 @@ -!missing-selector! VSAppleSubscription::customerID not bound -!missing-selector! VSAppleSubscription::initWithCustomerID:productCodes: not bound -!missing-selector! VSAppleSubscription::productCodes not bound -!missing-selector! VSAppleSubscription::setCustomerID: not bound -!missing-selector! VSAppleSubscription::setProductCodes: not bound -!missing-selector! VSUserAccount::appleSubscription not bound -!missing-selector! VSUserAccount::setAppleSubscription: not bound -!missing-type! VSAppleSubscription not bound diff --git a/tests/xtro-sharpie/iOS-VideoSubscriberAccount.todo b/tests/xtro-sharpie/iOS-VideoSubscriberAccount.todo deleted file mode 100644 index b325adc0448d..000000000000 --- a/tests/xtro-sharpie/iOS-VideoSubscriberAccount.todo +++ /dev/null @@ -1,8 +0,0 @@ -!missing-selector! VSAppleSubscription::customerID not bound -!missing-selector! VSAppleSubscription::initWithCustomerID:productCodes: not bound -!missing-selector! VSAppleSubscription::productCodes not bound -!missing-selector! VSAppleSubscription::setCustomerID: not bound -!missing-selector! VSAppleSubscription::setProductCodes: not bound -!missing-selector! VSUserAccount::appleSubscription not bound -!missing-selector! VSUserAccount::setAppleSubscription: not bound -!missing-type! VSAppleSubscription not bound diff --git a/tests/xtro-sharpie/macOS-VideoSubscriberAccount.todo b/tests/xtro-sharpie/macOS-VideoSubscriberAccount.todo deleted file mode 100644 index b325adc0448d..000000000000 --- a/tests/xtro-sharpie/macOS-VideoSubscriberAccount.todo +++ /dev/null @@ -1,8 +0,0 @@ -!missing-selector! VSAppleSubscription::customerID not bound -!missing-selector! VSAppleSubscription::initWithCustomerID:productCodes: not bound -!missing-selector! VSAppleSubscription::productCodes not bound -!missing-selector! VSAppleSubscription::setCustomerID: not bound -!missing-selector! VSAppleSubscription::setProductCodes: not bound -!missing-selector! VSUserAccount::appleSubscription not bound -!missing-selector! VSUserAccount::setAppleSubscription: not bound -!missing-type! VSAppleSubscription not bound diff --git a/tests/xtro-sharpie/tvOS-VideoSubscriberAccount.todo b/tests/xtro-sharpie/tvOS-VideoSubscriberAccount.todo deleted file mode 100644 index b325adc0448d..000000000000 --- a/tests/xtro-sharpie/tvOS-VideoSubscriberAccount.todo +++ /dev/null @@ -1,8 +0,0 @@ -!missing-selector! VSAppleSubscription::customerID not bound -!missing-selector! VSAppleSubscription::initWithCustomerID:productCodes: not bound -!missing-selector! VSAppleSubscription::productCodes not bound -!missing-selector! VSAppleSubscription::setCustomerID: not bound -!missing-selector! VSAppleSubscription::setProductCodes: not bound -!missing-selector! VSUserAccount::appleSubscription not bound -!missing-selector! VSUserAccount::setAppleSubscription: not bound -!missing-type! VSAppleSubscription not bound From 210186d5de51a6c372406d85ac7c896049ccb5e0 Mon Sep 17 00:00:00 2001 From: GitHub Actions Autoformatter Date: Tue, 9 Jul 2024 08:35:37 +0000 Subject: [PATCH 62/73] Auto-format source code --- src/videosubscriberaccount.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/videosubscriberaccount.cs b/src/videosubscriberaccount.cs index 3547e3b70430..4beb5a5a5ec4 100644 --- a/src/videosubscriberaccount.cs +++ b/src/videosubscriberaccount.cs @@ -452,10 +452,10 @@ interface VSAppleSubscription { string CustomerID { get; set; } [Export ("productCodes", ArgumentSemantic.Strong)] - string[] ProductCodes { get; set; } + string [] ProductCodes { get; set; } [Export ("initWithCustomerID:productCodes:")] - NativeHandle Constructor (string customerId, string[] productCodes); + NativeHandle Constructor (string customerId, string [] productCodes); } } From 0c5e266eb87aadcbfb16a2b3d3dc7f6bb51a18d5 Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Tue, 9 Jul 2024 15:30:55 +0200 Subject: [PATCH 63/73] [AuthenticationServices] Fix breaking change. --- src/authenticationservices.cs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/authenticationservices.cs b/src/authenticationservices.cs index 378f47dc4395..408be727a1ed 100644 --- a/src/authenticationservices.cs +++ b/src/authenticationservices.cs @@ -2397,7 +2397,12 @@ interface ASAuthorizationWebBrowserPlatformPublicKeyCredentialRegistrationReques [NullAllowed, Export ("excludedCredentials", ArgumentSemantic.Copy)] ASAuthorizationPlatformPublicKeyCredentialDescriptor [] ExcludedCredentials { get; set; } - [NoiOS, NoMacCatalyst] +#if XAMCORE_5_0 + [NoMacCatalyst] +#else + [MacCatalyst (17, 0)] // not true, it's not available on Mac Catalyst, but we've released it this way so we need to keep it. +#endif + [NoiOS] [Abstract] [Export ("shouldShowHybridTransport")] bool ShouldShowHybridTransport { get; set; } From 2b1354c386799a1b010938c7fe38b8b5804496e6 Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Tue, 9 Jul 2024 16:34:13 +0200 Subject: [PATCH 64/73] [xtro] Fix merge failure. --- tests/xtro-sharpie/watchOS-UIKit.todo | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/xtro-sharpie/watchOS-UIKit.todo b/tests/xtro-sharpie/watchOS-UIKit.todo index 145bf4a2ec21..3394e4c6b413 100644 --- a/tests/xtro-sharpie/watchOS-UIKit.todo +++ b/tests/xtro-sharpie/watchOS-UIKit.todo @@ -1,2 +1 @@ -!missing-protocol! UIItemProviderReadingAugmentationDesignating not bound !missing-protocol! UIItemProviderReadingAugmentationProviding not bound From 84be64dc3be1b4b7ebeec0a09f5fbdfa275eb46d Mon Sep 17 00:00:00 2001 From: Alex Soto Date: Tue, 9 Jul 2024 18:30:27 -0400 Subject: [PATCH 65/73] [xcode15.4] Update bindings to Xcode 15.4 --- Make.config | 6 +- Make.versions | 14 +- Versions-ios.plist.in | 6 + Versions-mac.plist.in | 1 + builds/Versions-MacCatalyst.plist.in | 4 + builds/Versions-iOS.plist.in | 2 + builds/Versions-macOS.plist.in | 2 + builds/Versions-tvOS.plist.in | 2 + src/UIKit/UIEnums.cs | 2 + src/authenticationservices.cs | 13 + src/automaticassessmentconfiguration.cs | 30 +- src/avfoundation.cs | 4 + src/passkit.cs | 8 + src/uikit.cs | 167 +++ .../Documentation.KnownFailures.txt | 800 ++++++++++++- .../MacCatalyst-UIKit.ignore | 1 - .../iOS-BrowserEngineKit.todo | 4 + .../{iOS-Matter.todo => iOS-Matter.ignore} | 369 ++---- .../iOS-SafariServices.todo | 1 + .../api-annotations-dotnet/iOS-UIKit.ignore | 1 - .../macOS-BrowserEngineKit.todo | 4 + .../macOS-CoreAudio.todo | 1 + ...{macOS-Matter.todo => macOS-Matter.ignore} | 369 ++---- .../tvOS-BrowserEngineKit.todo | 4 + .../api-annotations-dotnet/tvOS-Matter.ignore | 1030 ++++++++++++----- .../api-annotations-dotnet/tvOS-Matter.todo | 683 ----------- .../api-annotations-dotnet/tvOS-UIKit.ignore | 1 - tests/xtro-sharpie/iOS-BrowserEngineKit.todo | 4 + .../{macOS-Matter.todo => iOS-Matter.ignore} | 369 ++---- tests/xtro-sharpie/iOS-SafariServices.todo | 1 + tests/xtro-sharpie/iOS-UIKit.ignore | 1 - .../xtro-sharpie/macOS-BrowserEngineKit.todo | 4 + tests/xtro-sharpie/macOS-CoreAudio.todo | 1 + .../{iOS-Matter.todo => macOS-Matter.ignore} | 369 ++---- tests/xtro-sharpie/tvOS-BrowserEngineKit.todo | 4 + tests/xtro-sharpie/tvOS-Matter.ignore | 1030 ++++++++++++----- tests/xtro-sharpie/tvOS-Matter.todo | 683 ----------- tests/xtro-sharpie/tvOS-UIKit.ignore | 1 - tests/xtro-sharpie/watchOS-Matter.ignore | 1030 ++++++++++++----- tests/xtro-sharpie/watchOS-Matter.todo | 683 ----------- tests/xtro-sharpie/watchOS-UIKit.ignore | 1 - tools/common/SdkVersions.cs | 32 +- 42 files changed, 3790 insertions(+), 3952 deletions(-) rename tests/xtro-sharpie/api-annotations-dotnet/{iOS-Matter.todo => iOS-Matter.ignore} (97%) create mode 100644 tests/xtro-sharpie/api-annotations-dotnet/iOS-SafariServices.todo rename tests/xtro-sharpie/api-annotations-dotnet/{macOS-Matter.todo => macOS-Matter.ignore} (97%) delete mode 100644 tests/xtro-sharpie/api-annotations-dotnet/tvOS-Matter.todo rename tests/xtro-sharpie/{macOS-Matter.todo => iOS-Matter.ignore} (97%) create mode 100644 tests/xtro-sharpie/iOS-SafariServices.todo rename tests/xtro-sharpie/{iOS-Matter.todo => macOS-Matter.ignore} (97%) delete mode 100644 tests/xtro-sharpie/tvOS-Matter.todo delete mode 100644 tests/xtro-sharpie/watchOS-Matter.todo diff --git a/Make.config b/Make.config index 576956cdc35a..f5d4662e5214 100644 --- a/Make.config +++ b/Make.config @@ -212,9 +212,9 @@ MACCATALYST_NUGET_VERSION_NO_METADATA=$(MACCATALYST_NUGET_VERSION)$(NUGET_PREREL MACCATALYST_NUGET_VERSION_FULL=$(MACCATALYST_NUGET_VERSION_NO_METADATA)+$(NUGET_BUILD_METADATA) # Xcode version should have both a major and a minor version (even if the minor version is 0) -XCODE_VERSION=15.3 -XCODE_URL=https://dl.internalx.com/internal-files/xcodes/Xcode_15.3.xip -XCODE_DEVELOPER_ROOT=/Applications/Xcode_15.3.0.app/Contents/Developer +XCODE_VERSION=15.4 +XCODE_URL=https://dl.internalx.com/internal-files/xcodes/Xcode_15.4.xip +XCODE_DEVELOPER_ROOT=/Applications/Xcode_15.4.0.app/Contents/Developer XCODE_PRODUCT_BUILD_VERSION:=$(shell /usr/libexec/PlistBuddy -c 'Print :ProductBuildVersion' $(XCODE_DEVELOPER_ROOT)/../version.plist 2>/dev/null || echo " $(shell tput setaf 1 2>/dev/null)The required Xcode ($(XCODE_VERSION)) is not installed in $(basename $(basename $(XCODE_DEVELOPER_ROOT)))$(shell tput sgr0 2>/dev/null)" >&2) # We define stable Xcode as the Xcode app being named like "Xcode_#.#[.#].app" diff --git a/Make.versions b/Make.versions index 2f5b8c0922cd..a63e99f011be 100644 --- a/Make.versions +++ b/Make.versions @@ -48,8 +48,8 @@ # line changed in git). # -IOS_PACKAGE_VERSION=17.4.0.$(IOS_COMMIT_DISTANCE) -MAC_PACKAGE_VERSION=9.4.0.$(MAC_COMMIT_DISTANCE) +IOS_PACKAGE_VERSION=17.5.0.$(IOS_COMMIT_DISTANCE) +MAC_PACKAGE_VERSION=9.5.0.$(MAC_COMMIT_DISTANCE) # # ** NuGet package version numbers ** @@ -65,11 +65,11 @@ MAC_PACKAGE_VERSION=9.4.0.$(MAC_COMMIT_DISTANCE) # WARNING: Do **not** use versions higher than the available Xcode SDK or else we will have issues with mtouch (See https://github.com/xamarin/xamarin-macios/issues/7705) -IOS_NUGET_OS_VERSION=17.4 -TVOS_NUGET_OS_VERSION=17.4 -WATCHOS_NUGET_OS_VERSION=10.4 -MACOS_NUGET_OS_VERSION=14.4 -MACCATALYST_NUGET_OS_VERSION=17.4 +IOS_NUGET_OS_VERSION=17.5 +TVOS_NUGET_OS_VERSION=17.5 +WATCHOS_NUGET_OS_VERSION=10.5 +MACOS_NUGET_OS_VERSION=14.5 +MACCATALYST_NUGET_OS_VERSION=17.5 # In theory we should define the default platform version if it's not specified in the TFM. The default should not change for a given .NET version: diff --git a/Versions-ios.plist.in b/Versions-ios.plist.in index 8d1cbde05905..ea04c4da43fd 100644 --- a/Versions-ios.plist.in +++ b/Versions-ios.plist.in @@ -41,6 +41,7 @@ 17.0 17.2 17.4 + 17.5 tvOS @@ -72,6 +73,7 @@ 17.0 17.2 17.4 + 17.5 watchOS @@ -99,6 +101,7 @@ 10.0 10.2 10.4 + 10.5 MacCatalyst @@ -120,6 +123,7 @@ 17.0 17.2 17.4 + 17.5 MacCatalystVersionMap @@ -160,6 +164,8 @@ 14.2 17.4 14.4 + 17.5 + 14.5 RecommendedXcodeVersion @XCODE_VERSION@ diff --git a/Versions-mac.plist.in b/Versions-mac.plist.in index 81a8cf78e5d7..e7ec405f5166 100644 --- a/Versions-mac.plist.in +++ b/Versions-mac.plist.in @@ -25,6 +25,7 @@ 14.0 14.2 14.4 + 14.5 RecommendedXcodeVersion diff --git a/builds/Versions-MacCatalyst.plist.in b/builds/Versions-MacCatalyst.plist.in index 0370c254563d..8b3137a3cd9f 100644 --- a/builds/Versions-MacCatalyst.plist.in +++ b/builds/Versions-MacCatalyst.plist.in @@ -26,6 +26,7 @@ 17.0 17.2 17.4 + 17.5 SupportedTargetPlatformVersions @@ -53,6 +54,7 @@ 17.0 17.2 17.4 + 17.5 MacCatalystVersionMap @@ -93,6 +95,8 @@ 14.2 17.4 14.4 + 17.5 + 14.5 RecommendedXcodeVersion @XCODE_VERSION@ diff --git a/builds/Versions-iOS.plist.in b/builds/Versions-iOS.plist.in index a76b548eaf8f..361e8f766284 100644 --- a/builds/Versions-iOS.plist.in +++ b/builds/Versions-iOS.plist.in @@ -41,6 +41,7 @@ 17.0 17.2 17.4 + 17.5 SupportedTargetPlatformVersions @@ -87,6 +88,7 @@ 17.0 17.2 17.4 + 17.5 RecommendedXcodeVersion diff --git a/builds/Versions-macOS.plist.in b/builds/Versions-macOS.plist.in index d2e38e207146..deac10fd91b7 100644 --- a/builds/Versions-macOS.plist.in +++ b/builds/Versions-macOS.plist.in @@ -25,6 +25,7 @@ 14.0 14.2 14.4 + 14.5 SupportedTargetPlatformVersions @@ -50,6 +51,7 @@ 14.0 14.2 14.4 + 14.5 RecommendedXcodeVersion diff --git a/builds/Versions-tvOS.plist.in b/builds/Versions-tvOS.plist.in index 7dddc20f107b..1dee1690bc8a 100644 --- a/builds/Versions-tvOS.plist.in +++ b/builds/Versions-tvOS.plist.in @@ -36,6 +36,7 @@ 17.0 17.2 17.4 + 17.5 SupportedTargetPlatformVersions @@ -77,6 +78,7 @@ 17.0 17.2 17.4 + 17.5 RecommendedXcodeVersion diff --git a/src/UIKit/UIEnums.cs b/src/UIKit/UIEnums.cs index aa1e4b5fa947..a2b0779b2bb5 100644 --- a/src/UIKit/UIEnums.cs +++ b/src/UIKit/UIEnums.cs @@ -727,6 +727,8 @@ public enum UITouchProperties : long { Azimuth = (1 << 1), Altitude = (1 << 2), Location = (1 << 3), + [iOS (17, 5), MacCatalyst (17, 5), NoTV] + Roll = (1L << 4), } // diff --git a/src/authenticationservices.cs b/src/authenticationservices.cs index 408be727a1ed..982c9092eee3 100644 --- a/src/authenticationservices.cs +++ b/src/authenticationservices.cs @@ -1438,6 +1438,10 @@ interface ASAuthorizationSecurityKeyPublicKeyCredentialAssertionRequest : ASAuth [Sealed] [Export ("allowedCredentials", ArgumentSemantic.Copy)] ASAuthorizationSecurityKeyPublicKeyCredentialDescriptor [] SecurityAllowedCredentials { get; set; } + + [Mac (14, 5), iOS (17, 5), MacCatalyst (17, 5)] + [NullAllowed, Export ("appID")] + string AppId { get; set; } } interface IASAuthorizationPublicKeyCredentialAssertionRequest { } @@ -1674,12 +1678,21 @@ interface ASAuthorizationPlatformPublicKeyCredentialRegistrationRequest : ASAuth [NoWatch, NoTV, Mac (12, 0), iOS (15, 0), MacCatalyst (15, 0)] [BaseType (typeof (NSObject))] interface ASAuthorizationSecurityKeyPublicKeyCredentialAssertion : ASAuthorizationPublicKeyCredentialAssertion { + + [Mac (14, 5), iOS (17, 5), MacCatalyst (17, 5)] + [Export ("appID")] + bool AppId { get; } } [NoWatch, NoTV, Mac (12, 0), iOS (15, 0), MacCatalyst (15, 0)] [BaseType (typeof (NSObject))] [DisableDefaultCtor] interface ASAuthorizationSecurityKeyPublicKeyCredentialRegistration : ASAuthorizationPublicKeyCredentialRegistration { + + [Mac (14, 5), iOS (17, 5), MacCatalyst (17, 5)] + [Export ("transports", ArgumentSemantic.Assign)] + [BindAs (typeof (ASAuthorizationSecurityKeyPublicKeyCredentialDescriptorTransport []))] + NSString [] Transports { get; } } [NoWatch, TV (16, 0), Mac (12, 0), iOS (15, 0), MacCatalyst (15, 0)] diff --git a/src/automaticassessmentconfiguration.cs b/src/automaticassessmentconfiguration.cs index 1e784d05bc88..c77783635daa 100644 --- a/src/automaticassessmentconfiguration.cs +++ b/src/automaticassessmentconfiguration.cs @@ -25,6 +25,8 @@ namespace AutomaticAssessmentConfiguration { public enum AEAssessmentErrorCode : long { Unknown = 1, UnsupportedPlatform = 2, + MultipleParticipantsNotSupported = 3, + ConfigurationUpdatesNotSupported = 4, } [iOS (14, 0)] @@ -86,19 +88,19 @@ interface AEAssessmentConfiguration : NSCopying { [Export ("allowsContinuousPathKeyboard")] bool AllowsContinuousPathKeyboard { get; set; } - [NoiOS, Mac (12, 0), MacCatalyst (15, 0)] + [iOS (17, 5), Mac (12, 0), MacCatalyst (15, 0)] [Export ("configurationsByApplication", ArgumentSemantic.Copy)] NSDictionary ConfigurationsByApplication { get; } - [NoiOS, Mac (12, 0), MacCatalyst (15, 0)] + [iOS (17, 5), Mac (12, 0), MacCatalyst (15, 0)] [Export ("mainParticipantConfiguration", ArgumentSemantic.Strong)] AEAssessmentParticipantConfiguration MainParticipantConfiguration { get; } - [NoiOS, Mac (12, 0), MacCatalyst (15, 0)] + [iOS (17, 5), Mac (12, 0), MacCatalyst (15, 0)] [Export ("removeApplication:")] void Remove (AEAssessmentApplication application); - [NoiOS, Mac (12, 0), MacCatalyst (15, 0)] + [iOS (17, 5), Mac (12, 0), MacCatalyst (15, 0)] [Export ("setConfiguration:forApplication:")] void SetConfiguration (AEAssessmentParticipantConfiguration configuration, AEAssessmentApplication application); } @@ -109,6 +111,16 @@ interface AEAssessmentConfiguration : NSCopying { [DisableDefaultCtor] interface AEAssessmentSession { + [MacCatalyst (17, 5), Mac (14, 5), iOS (17, 5)] + [Static] + [Export ("supportsMultipleParticipants")] + bool SupportsMultipleParticipants { get; } + + [MacCatalyst (17, 5), Mac (14, 5), iOS (17, 5)] + [Static] + [Export ("supportsConfigurationUpdates")] + bool SupportsConfigurationUpdates { get; } + [Wrap ("WeakDelegate")] [NullAllowed] IAEAssessmentSessionDelegate Delegate { get; set; } @@ -126,7 +138,7 @@ interface AEAssessmentSession { [Export ("configuration", ArgumentSemantic.Copy)] AEAssessmentConfiguration Configuration { get; } - [Mac (12, 0), iOS (15, 0), MacCatalyst (15, 0)] + [Mac (12, 0), iOS (17, 5), MacCatalyst (15, 0)] [Export ("updateToConfiguration:")] void Update (AEAssessmentConfiguration configuration); @@ -161,11 +173,11 @@ interface AEAssessmentSessionDelegate { [Export ("assessmentSessionDidEnd:")] void DidEnd (AEAssessmentSession session); - [NoiOS, Mac (12, 0), MacCatalyst (15, 0)] + [iOS (17,5), Mac (12, 0), MacCatalyst (15, 0)] [Export ("assessmentSessionDidUpdate:")] void DidUpdate (AEAssessmentSession session); - [NoiOS, Mac (12, 0), MacCatalyst (15, 0)] + [iOS (17,5), Mac (12, 0), MacCatalyst (15, 0)] [Export ("assessmentSession:failedToUpdateToConfiguration:error:")] void FailedToUpdate (AEAssessmentSession session, AEAssessmentConfiguration configuration, NSError error); } @@ -176,7 +188,7 @@ interface AEAssessmentSessionDelegate { [DisableDefaultCtor] #endif interface AEAssessmentApplication : NSCopying { - [NoiOS] + [iOS (17, 5)] [MacCatalyst (15, 0)] [Export ("initWithBundleIdentifier:")] NativeHandle Constructor (string bundleIdentifier); @@ -196,7 +208,7 @@ interface AEAssessmentApplication : NSCopying { bool RequiresSignatureValidation { get; set; } } - [Mac (12, 0), iOS (15, 0), MacCatalyst (15, 0)] + [Mac (12, 0), iOS (17, 5), MacCatalyst (15, 0)] [BaseType (typeof (NSObject))] interface AEAssessmentParticipantConfiguration : NSCopying { [Export ("allowsNetworkAccess")] diff --git a/src/avfoundation.cs b/src/avfoundation.cs index b2d0b6b521c0..db56fa143107 100644 --- a/src/avfoundation.cs +++ b/src/avfoundation.cs @@ -14055,6 +14055,10 @@ interface AVPlayerItemErrorLogEvent : NSCopying { [Export ("errorComment"), NullAllowed] string ErrorComment { get; } + + [Watch (10, 5), TV (17, 5), Mac (14, 5), iOS (17, 5), MacCatalyst (17, 5)] + [NullAllowed, Export ("allHTTPResponseHeaderFields")] + NSDictionary AllHttpResponseHeaderFields { get; } } interface IAVPlayerItemMetadataCollectorPushDelegate { } diff --git a/src/passkit.cs b/src/passkit.cs index 8bec9c8e5a04..cf955e5b3c6c 100644 --- a/src/passkit.cs +++ b/src/passkit.cs @@ -1259,6 +1259,14 @@ interface PKPaymentNetwork { [Watch (10, 4), Mac (14, 4), iOS (17, 4), NoTV, MacCatalyst (17, 4)] [Field ("PKPaymentNetworkMeeza")] NSString Meeza { get; } + + [Watch (10, 5), Mac (14, 5), iOS (17, 5), NoTV, MacCatalyst (17, 5)] + [Field ("PKPaymentNetworkBankAxept")] + NSString BankAxept { get; } + + [Watch (10, 5), Mac (14, 5), iOS (17, 5), NoTV, MacCatalyst (17, 5)] + [Field ("PKPaymentNetworkNAPAS")] + NSString Napas { get; } } #if !WATCH diff --git a/src/uikit.cs b/src/uikit.cs index 38d00ff64f42..b0b2ed8df493 100644 --- a/src/uikit.cs +++ b/src/uikit.cs @@ -331,7 +331,17 @@ interface NSAttributedStringAttachmentConveniences { [DisableDefaultCtor] [Abstract] // abstract class that should not be used directly [BaseType (typeof (NSObject))] +#if IOS && IOS17_5_OR_GREATER + interface UIFeedbackGenerator : UIInteraction { +#else interface UIFeedbackGenerator { +#endif + // intancetype -> UIFeedbackGenerator, inlined as subclasses should return the same type as the instance + [iOS (17, 5), MacCatalyst (17, 5)] + [Static] + [Internal] + [Export ("feedbackGeneratorForView:")] + NativeHandle _GetFeedbackGenerator (UIView forView); [Export ("prepare")] void Prepare (); @@ -344,16 +354,37 @@ interface UIFeedbackGenerator { [BaseType (typeof (UIFeedbackGenerator))] interface UIImpactFeedbackGenerator { + [iOS (17, 5), MacCatalyst (17, 5)] + [Static] + [Export ("feedbackGeneratorWithStyle:forView:")] + UIImpactFeedbackGenerator GetFeedbackGenerator (UIImpactFeedbackStyle style, UIView view); + + [Deprecated (PlatformName.iOS, 17, 5, message: "Use 'GetFeedbackGenerator' method instead.")] + [Deprecated (PlatformName.MacCatalyst, 17, 5, message: "Use 'GetFeedbackGenerator' method instead.")] [Export ("initWithStyle:")] NativeHandle Constructor (UIImpactFeedbackStyle style); [Export ("impactOccurred")] void ImpactOccurred (); + [iOS (17, 5), MacCatalyst (17, 5)] + [Export ("impactOccurredAtLocation:")] + void ImpactOccurred (CGPoint atLocation); + [iOS (13, 0)] [MacCatalyst (13, 1)] [Export ("impactOccurredWithIntensity:")] void ImpactOccurred (nfloat intensity); + + [iOS (17, 5), MacCatalyst (17, 5)] + [Export ("impactOccurredWithIntensity:atLocation:")] + void ImpactOccurred (nfloat intensity, CGPoint location); + + // Inlined from parent class + [iOS (17, 5), MacCatalyst (17, 5)] + [Static] + [Wrap ("Runtime.GetNSObject (UIFeedbackGenerator._GetFeedbackGenerator (forView))!")] + UIImpactFeedbackGenerator GetFeedbackGenerator (UIView forView); } /// A that generates haptics relating to successes, failures, and warnings. @@ -364,6 +395,16 @@ interface UINotificationFeedbackGenerator { [Export ("notificationOccurred:")] void NotificationOccurred (UINotificationFeedbackType notificationType); + + [iOS (17, 5), MacCatalyst (17, 5)] + [Export ("notificationOccurred:atLocation:")] + void NotificationOccurred (UINotificationFeedbackType notificationType, CGPoint location); + + // Inlined from parent class + [iOS (17, 5), MacCatalyst (17, 5)] + [Static] + [Wrap ("Runtime.GetNSObject (UIFeedbackGenerator._GetFeedbackGenerator (forView))!")] + UINotificationFeedbackGenerator GetFeedbackGenerator (UIView forView); } /// A that produces haptic feedback. @@ -374,6 +415,16 @@ interface UISelectionFeedbackGenerator { [Export ("selectionChanged")] void SelectionChanged (); + + [iOS (17, 5), MacCatalyst (17, 5)] + [Export ("selectionChangedAtLocation:")] + void SelectionChanged (CGPoint location); + + // Inlined from parent class + [iOS (17, 5), MacCatalyst (17, 5)] + [Static] + [Wrap ("Runtime.GetNSObject (UIFeedbackGenerator._GetFeedbackGenerator (forView))!")] + UISelectionFeedbackGenerator GetFeedbackGenerator (UIView forView); } interface IUISheetPresentationControllerDelegate { } @@ -16569,6 +16620,10 @@ interface UITouch { [MacCatalyst (13, 1)] [Export ("estimatedPropertiesExpectingUpdates")] UITouchProperties EstimatedPropertiesExpectingUpdates { get; } + + [NoWatch, NoTV, iOS (17, 5), MacCatalyst (17 ,5)] + [Export ("rollAngle")] + nfloat RollAngle { get; } } /// A Video Editor Controller. @@ -23451,6 +23506,20 @@ public enum UIPencilPreferredAction : long { ShowColorPalette, [iOS (16, 0), MacCatalyst (16, 0)] ShowInkAttributes, + [iOS (17, 5), MacCatalyst (17, 5)] + ShowContextualPalette, + [iOS (17, 5), MacCatalyst (17, 5)] + RunSystemShortcut, + } + + [NoWatch, NoTV, iOS (17, 5), MacCatalyst (17, 5)] + [Native] + public enum UIPencilInteractionPhase : ulong + { + Began, + Changed, + Ended, + Cancelled, } [iOS (12, 1)] @@ -23463,12 +23532,26 @@ interface UIPencilInteraction : UIInteraction { [Export ("preferredTapAction")] UIPencilPreferredAction PreferredTapAction { get; } + [iOS (17, 5), MacCatalyst (17, 5)] + [Static] + [Export ("preferredSqueezeAction")] + UIPencilPreferredAction PreferredSqueezeAction { get; } + [iOS (14, 0)] [MacCatalyst (14, 0)] [Static] [Export ("prefersPencilOnlyDrawing")] bool PrefersPencilOnlyDrawing { get; } + [iOS (17, 5), MacCatalyst (17, 5)] + [Static] + [Export ("prefersHoverToolPreview")] + bool PrefersHoverToolPreview { get; } + + [iOS (17,5)] + [Export ("initWithDelegate:")] + NativeHandle Constructor (IUIPencilInteractionDelegate @delegate); + [Wrap ("WeakDelegate")] [NullAllowed] IUIPencilInteractionDelegate Delegate { get; set; } @@ -23480,6 +23563,57 @@ interface UIPencilInteraction : UIInteraction { bool Enabled { [Bind ("isEnabled")] get; set; } } + [NoWatch, NoTV, iOS (17, 5), MacCatalyst (17, 5)] + [BaseType (typeof (NSObject))] + [DisableDefaultCtor] + interface UIPencilHoverPose { + + [Export ("location", ArgumentSemantic.Assign)] + CGPoint Location { get; } + + [Export ("zOffset")] + nfloat ZOffset { get; } + + [Export ("azimuthAngle")] + nfloat AzimuthAngle { get; } + + [Export ("azimuthUnitVector", ArgumentSemantic.Assign)] + CGVector AzimuthUnitVector { get; } + + [Export ("altitudeAngle")] + nfloat AltitudeAngle { get; } + + [Export ("rollAngle")] + nfloat RollAngle { get; } + } + + [NoWatch, NoTV, iOS (17, 5), MacCatalyst (17, 5)] + [BaseType (typeof (NSObject))] + [DisableDefaultCtor] + interface UIPencilInteractionTap { + + [Export ("timestamp")] + double Timestamp { get; } + + [NullAllowed, Export ("hoverPose", ArgumentSemantic.Strong)] + UIPencilHoverPose HoverPose { get; } + } + + [NoWatch, NoTV, iOS (17, 5), MacCatalyst (17, 5)] + [BaseType (typeof (NSObject))] + [DisableDefaultCtor] + interface UIPencilInteractionSqueeze { + + [Export ("timestamp")] + double Timestamp { get; } + + [Export ("phase", ArgumentSemantic.Assign)] + UIPencilInteractionPhase Phase { get; } + + [NullAllowed, Export ("hoverPose", ArgumentSemantic.Strong)] + UIPencilHoverPose HoverPose { get; } + } + interface IUIPencilInteractionDelegate { } [iOS (12, 1)] @@ -23489,8 +23623,19 @@ interface IUIPencilInteractionDelegate { } [Protocol, Model] [BaseType (typeof (NSObject))] interface UIPencilInteractionDelegate { + + [Deprecated (PlatformName.iOS, 17, 5, message: "Use 'DidReceiveTap' instead.")] + [Deprecated (PlatformName.MacCatalyst, 17, 5, message: "Use 'DidReceiveTap' instead.")] [Export ("pencilInteractionDidTap:")] void DidTap (UIPencilInteraction interaction); + + [iOS (17, 5), MacCatalyst (17, 5)] + [Export ("pencilInteraction:didReceiveTap:")] + void DidReceiveTap (UIPencilInteraction interaction, UIPencilInteractionTap tap); + + [iOS (17, 5), MacCatalyst (17, 5)] + [Export ("pencilInteraction:didReceiveSqueeze:")] + void DidReceiveSqueeze (UIPencilInteraction interaction, UIPencilInteractionSqueeze squeeze); } [iOS (13, 0), TV (13, 0), NoWatch] @@ -24134,6 +24279,10 @@ interface UIHoverGestureRecognizer { [iOS (16, 4), MacCatalyst (16, 4)] [Export ("altitudeAngle")] nfloat AltitudeAngle { get; } + + [iOS (17, 5), MacCatalyst (17, 5)] + [Export ("rollAngle")] + nfloat RollAngle { get; } } interface IUILargeContentViewerItem { } @@ -29243,4 +29392,22 @@ interface UIStandardTextCursorView : UITextCursorView { NativeHandle Constructor (CGRect frame); } + [NoWatch, NoTV, iOS (17, 5), MacCatalyst (17, 5)] + [BaseType (typeof (UIFeedbackGenerator))] + [DisableDefaultCtor] + interface UICanvasFeedbackGenerator { + + [Export ("alignmentOccurredAtLocation:")] + void AlignmentOccurred (CGPoint atLocation); + + [Export ("pathCompletedAtLocation:")] + void PathCompleted (CGPoint atLocation); + + // Inlined from parent class + [iOS (17, 5), MacCatalyst (17, 5)] + [Static] + [Wrap ("Runtime.GetNSObject (UIFeedbackGenerator._GetFeedbackGenerator (forView))!")] + UICanvasFeedbackGenerator GetFeedbackGenerator (UIView forView); + } + } diff --git a/tests/cecil-tests/Documentation.KnownFailures.txt b/tests/cecil-tests/Documentation.KnownFailures.txt index ff7a42ce950a..00a3a96993b1 100644 --- a/tests/cecil-tests/Documentation.KnownFailures.txt +++ b/tests/cecil-tests/Documentation.KnownFailures.txt @@ -4802,6 +4802,8 @@ F:AuthenticationServices.ASUserDetectionStatus.Unsupported F:AuthenticationServices.ASWebAuthenticationSessionErrorCode.CanceledLogin F:AuthenticationServices.ASWebAuthenticationSessionErrorCode.PresentationContextInvalid F:AuthenticationServices.ASWebAuthenticationSessionErrorCode.PresentationContextNotProvided +F:AutomaticAssessmentConfiguration.AEAssessmentErrorCode.ConfigurationUpdatesNotSupported +F:AutomaticAssessmentConfiguration.AEAssessmentErrorCode.MultipleParticipantsNotSupported F:AutomaticAssessmentConfiguration.AEAssessmentErrorCode.Unknown F:AutomaticAssessmentConfiguration.AEAssessmentErrorCode.UnsupportedPlatform F:AutomaticAssessmentConfiguration.AEAutocorrectMode.None @@ -19665,8 +19667,14 @@ F:UIKit.UIPasteboardDetectionPattern.ShipmentTrackingNumber F:UIKit.UIPasteControlDisplayMode.IconAndLabel F:UIKit.UIPasteControlDisplayMode.IconOnly F:UIKit.UIPasteControlDisplayMode.LabelOnly +F:UIKit.UIPencilInteractionPhase.Began +F:UIKit.UIPencilInteractionPhase.Cancelled +F:UIKit.UIPencilInteractionPhase.Changed +F:UIKit.UIPencilInteractionPhase.Ended F:UIKit.UIPencilPreferredAction.Ignore +F:UIKit.UIPencilPreferredAction.RunSystemShortcut F:UIKit.UIPencilPreferredAction.ShowColorPalette +F:UIKit.UIPencilPreferredAction.ShowContextualPalette F:UIKit.UIPencilPreferredAction.ShowInkAttributes F:UIKit.UIPencilPreferredAction.SwitchEraser F:UIKit.UIPencilPreferredAction.SwitchPrevious @@ -20089,6 +20097,7 @@ F:UIKit.UITouchProperties.Altitude F:UIKit.UITouchProperties.Azimuth F:UIKit.UITouchProperties.Force F:UIKit.UITouchProperties.Location +F:UIKit.UITouchProperties.Roll F:UIKit.UITouchType.Direct F:UIKit.UITouchType.Indirect F:UIKit.UITouchType.IndirectPointer @@ -26153,6 +26162,7 @@ M:AuthenticationServices.ASAuthorizationSecurityKeyPublicKeyCredentialProvider.# M:AuthenticationServices.ASAuthorizationSecurityKeyPublicKeyCredentialProvider.Create(Foundation.NSData,System.String,System.String,Foundation.NSData) M:AuthenticationServices.ASAuthorizationSecurityKeyPublicKeyCredentialProvider.Create(Foundation.NSData) M:AuthenticationServices.ASAuthorizationSecurityKeyPublicKeyCredentialRegistration.Copy(Foundation.NSZone) +M:AuthenticationServices.ASAuthorizationSecurityKeyPublicKeyCredentialRegistration.Dispose(System.Boolean) M:AuthenticationServices.ASAuthorizationSecurityKeyPublicKeyCredentialRegistration.EncodeTo(Foundation.NSCoder) M:AuthenticationServices.ASAuthorizationSecurityKeyPublicKeyCredentialRegistrationRequest.Copy(Foundation.NSZone) M:AuthenticationServices.ASAuthorizationSecurityKeyPublicKeyCredentialRegistrationRequest.EncodeTo(Foundation.NSCoder) @@ -27588,26 +27598,64 @@ M:BusinessChat.BCChatAction.OpenTranscript(System.String,Foundation.NSDictionary M:BusinessChat.BCChatAction.OpenTranscript(System.String,System.Collections.Generic.Dictionary{BusinessChat.BCParameterName,System.String}) M:BusinessChat.BCChatButton.#ctor(BusinessChat.BCChatButtonStyle) M:BusinessChat.BCChatButton.BCChatButtonAppearance.#ctor(System.IntPtr) +M:CallKit.CXAction.#ctor M:CallKit.CXAction.Copy(Foundation.NSZone) M:CallKit.CXAction.EncodeTo(Foundation.NSCoder) +M:CallKit.CXAction.Fail +M:CallKit.CXAction.Fulfill M:CallKit.CXAnswerCallAction.#ctor(Foundation.NSUuid) +M:CallKit.CXAnswerCallAction.Fulfill(Foundation.NSDate) +M:CallKit.CXCall.IsEqual(CallKit.CXCall) +M:CallKit.CXCallAction.#ctor(Foundation.NSUuid) +M:CallKit.CXCallController.#ctor(CoreFoundation.DispatchQueue) +M:CallKit.CXCallController.RequestTransaction(CallKit.CXAction,System.Action{Foundation.NSError}) +M:CallKit.CXCallController.RequestTransaction(CallKit.CXAction[],System.Action{Foundation.NSError}) +M:CallKit.CXCallController.RequestTransaction(CallKit.CXTransaction,System.Action{Foundation.NSError}) M:CallKit.CXCallController.RequestTransactionAsync(CallKit.CXAction) M:CallKit.CXCallController.RequestTransactionAsync(CallKit.CXAction[]) M:CallKit.CXCallController.RequestTransactionAsync(CallKit.CXTransaction) +M:CallKit.CXCallDirectoryExtensionContext.AddBlockingEntry(System.Int64) +M:CallKit.CXCallDirectoryExtensionContext.AddIdentificationEntry(System.Int64,System.String) +M:CallKit.CXCallDirectoryExtensionContext.CompleteRequest(System.Action{System.Boolean}) M:CallKit.CXCallDirectoryExtensionContext.CompleteRequestAsync M:CallKit.CXCallDirectoryExtensionContext.Dispose(System.Boolean) +M:CallKit.CXCallDirectoryExtensionContext.RemoveAllBlockingEntries +M:CallKit.CXCallDirectoryExtensionContext.RemoveAllIdentificationEntries +M:CallKit.CXCallDirectoryExtensionContext.RemoveBlockingEntry(System.Int64) +M:CallKit.CXCallDirectoryExtensionContext.RemoveIdentificationEntry(System.Int64) M:CallKit.CXCallDirectoryExtensionContextDelegate.RequestFailed(CallKit.CXCallDirectoryExtensionContext,Foundation.NSError) +M:CallKit.CXCallDirectoryManager.GetEnabledStatusForExtension(System.String,System.Action{CallKit.CXCallDirectoryEnabledStatus,Foundation.NSError}) M:CallKit.CXCallDirectoryManager.GetEnabledStatusForExtensionAsync(System.String) +M:CallKit.CXCallDirectoryManager.OpenSettings(System.Action{Foundation.NSError}) M:CallKit.CXCallDirectoryManager.OpenSettingsAsync +M:CallKit.CXCallDirectoryManager.ReloadExtension(System.String,System.Action{Foundation.NSError}) M:CallKit.CXCallDirectoryManager.ReloadExtensionAsync(System.String) +M:CallKit.CXCallDirectoryProvider.BeginRequestWithExtensionContext(Foundation.NSExtensionContext) +M:CallKit.CXCallObserver.SetDelegate(CallKit.ICXCallObserverDelegate,CoreFoundation.DispatchQueue) M:CallKit.CXCallObserverDelegate.CallChanged(CallKit.CXCallObserver,CallKit.CXCall) M:CallKit.CXCallUpdate.Copy(Foundation.NSZone) M:CallKit.CXEndCallAction.#ctor(Foundation.NSUuid) +M:CallKit.CXEndCallAction.Fulfill(Foundation.NSDate) +M:CallKit.CXHandle.#ctor(CallKit.CXHandleType,System.String) M:CallKit.CXHandle.Copy(Foundation.NSZone) M:CallKit.CXHandle.EncodeTo(Foundation.NSCoder) +M:CallKit.CXHandle.IsEqual(CallKit.CXHandle) +M:CallKit.CXPlayDtmfCallAction.#ctor(Foundation.NSUuid,System.String,CallKit.CXPlayDtmfCallActionType) +M:CallKit.CXProvider.#ctor(CallKit.CXProviderConfiguration) +M:CallKit.CXProvider.GetPendingCallActions(ObjCRuntime.Class,Foundation.NSUuid) M:CallKit.CXProvider.GetPendingCallActions``1(Foundation.NSUuid) +M:CallKit.CXProvider.Invalidate +M:CallKit.CXProvider.ReportCall(Foundation.NSUuid,CallKit.CXCallUpdate) +M:CallKit.CXProvider.ReportCall(Foundation.NSUuid,Foundation.NSDate,CallKit.CXCallEndedReason) +M:CallKit.CXProvider.ReportConnectedOutgoingCall(Foundation.NSUuid,Foundation.NSDate) +M:CallKit.CXProvider.ReportConnectingOutgoingCall(Foundation.NSUuid,Foundation.NSDate) +M:CallKit.CXProvider.ReportNewIncomingCall(Foundation.NSUuid,CallKit.CXCallUpdate,System.Action{Foundation.NSError}) M:CallKit.CXProvider.ReportNewIncomingCallAsync(Foundation.NSUuid,CallKit.CXCallUpdate) +M:CallKit.CXProvider.ReportNewIncomingVoIPPushPayload(Foundation.NSDictionary,System.Action{Foundation.NSError}) M:CallKit.CXProvider.ReportNewIncomingVoIPPushPayloadAsync(Foundation.NSDictionary) +M:CallKit.CXProvider.SetDelegate(CallKit.ICXProviderDelegate,CoreFoundation.DispatchQueue) +M:CallKit.CXProviderConfiguration.#ctor +M:CallKit.CXProviderConfiguration.#ctor(System.String) M:CallKit.CXProviderConfiguration.Copy(Foundation.NSZone) M:CallKit.CXProviderDelegate_Extensions.DidActivateAudioSession(CallKit.ICXProviderDelegate,CallKit.CXProvider,AVFoundation.AVAudioSession) M:CallKit.CXProviderDelegate_Extensions.DidBegin(CallKit.ICXProviderDelegate,CallKit.CXProvider) @@ -27634,7 +27682,15 @@ M:CallKit.CXProviderDelegate.PerformSetHeldCallAction(CallKit.CXProvider,CallKit M:CallKit.CXProviderDelegate.PerformSetMutedCallAction(CallKit.CXProvider,CallKit.CXSetMutedCallAction) M:CallKit.CXProviderDelegate.PerformStartCallAction(CallKit.CXProvider,CallKit.CXStartCallAction) M:CallKit.CXProviderDelegate.TimedOutPerformingAction(CallKit.CXProvider,CallKit.CXAction) +M:CallKit.CXSetGroupCallAction.#ctor(Foundation.NSUuid,Foundation.NSUuid) +M:CallKit.CXSetHeldCallAction.#ctor(Foundation.NSUuid,System.Boolean) +M:CallKit.CXSetMutedCallAction.#ctor(Foundation.NSUuid,System.Boolean) M:CallKit.CXSetMutedCallAction.#ctor(Foundation.NSUuid) +M:CallKit.CXStartCallAction.#ctor(Foundation.NSUuid,CallKit.CXHandle) +M:CallKit.CXStartCallAction.Fulfill(Foundation.NSDate) +M:CallKit.CXTransaction.#ctor(CallKit.CXAction) +M:CallKit.CXTransaction.#ctor(CallKit.CXAction[]) +M:CallKit.CXTransaction.AddAction(CallKit.CXAction) M:CallKit.CXTransaction.Copy(Foundation.NSZone) M:CallKit.CXTransaction.EncodeTo(Foundation.NSCoder) M:CallKit.ICXCallDirectoryExtensionContextDelegate.RequestFailed(CallKit.CXCallDirectoryExtensionContext,Foundation.NSError) @@ -28111,14 +28167,41 @@ M:Cinematic.CNRenderingSessionFrameAttributes.Copy(Foundation.NSZone) M:Cinematic.CNRenderingSessionFrameAttributes.MutableCopy(Foundation.NSZone) M:Cinematic.CNScript.LoadAsync(AVFoundation.AVAsset,Cinematic.CNScriptChanges,Foundation.NSProgress) M:Cinematic.CNScriptFrame.Copy(Foundation.NSZone) +M:ClassKit.CLSActivity.AddAdditionalActivityItem(ClassKit.CLSActivityItem) +M:ClassKit.CLSActivity.AddProgressRange(System.Double,System.Double) +M:ClassKit.CLSActivity.RemoveAllActivityItems +M:ClassKit.CLSActivity.Start +M:ClassKit.CLSActivity.Stop +M:ClassKit.CLSBinaryItem.#ctor(System.String,System.String,ClassKit.CLSBinaryValueType) +M:ClassKit.CLSContext.#ctor(ClassKit.CLSContextType,System.String,System.String) +M:ClassKit.CLSContext.AddChild(ClassKit.CLSContext) +M:ClassKit.CLSContext.AddNavigationChild(ClassKit.CLSContext) +M:ClassKit.CLSContext.AddProgressReportingCapabilities(Foundation.NSSet{ClassKit.CLSProgressReportingCapability}) +M:ClassKit.CLSContext.BecomeActive +M:ClassKit.CLSContext.CreateNewActivity +M:ClassKit.CLSContext.FindDescendantMatching(System.String[],System.Action{ClassKit.CLSContext,Foundation.NSError}) M:ClassKit.CLSContext.FindDescendantMatchingAsync(System.String[]) +M:ClassKit.CLSContext.RemoveFromParent +M:ClassKit.CLSContext.RemoveNavigationChild(ClassKit.CLSContext) +M:ClassKit.CLSContext.ResetProgressReportingCapabilities +M:ClassKit.CLSContext.ResignActive +M:ClassKit.CLSContext.SetType(ClassKit.CLSContextType) +M:ClassKit.CLSDataStore.CompleteAllAssignedActivitiesMatching(System.String[]) M:ClassKit.CLSDataStore.Dispose(System.Boolean) +M:ClassKit.CLSDataStore.FetchActivity(Foundation.NSUrl,System.Action{ClassKit.CLSActivity,Foundation.NSError}) M:ClassKit.CLSDataStore.FetchActivityAsync(Foundation.NSUrl) +M:ClassKit.CLSDataStore.FindContextsMatching(Foundation.NSPredicate,System.Action{ClassKit.CLSContext[],Foundation.NSError}) +M:ClassKit.CLSDataStore.FindContextsMatching(System.String[],System.Action{ClassKit.CLSContext[],Foundation.NSError}) M:ClassKit.CLSDataStore.FindContextsMatchingAsync(Foundation.NSPredicate) M:ClassKit.CLSDataStore.FindContextsMatchingAsync(System.String[]) +M:ClassKit.CLSDataStore.Remove(ClassKit.CLSContext) +M:ClassKit.CLSDataStore.Save(System.Action{Foundation.NSError}) M:ClassKit.CLSDataStore.SaveAsync M:ClassKit.CLSDataStoreDelegate.CreateContext(System.String,ClassKit.CLSContext,System.String[]) M:ClassKit.CLSObject.EncodeTo(Foundation.NSCoder) +M:ClassKit.CLSProgressReportingCapability.#ctor(ClassKit.CLSProgressReportingCapabilityKind,System.String) +M:ClassKit.CLSQuantityItem.#ctor(System.String,System.String) +M:ClassKit.CLSScoreItem.#ctor(System.String,System.String,System.Double,System.Double) M:ClassKit.ICLSContextProvider.UpdateDescendants(ClassKit.CLSContext,System.Action{Foundation.NSError}) M:ClassKit.ICLSDataStoreDelegate.CreateContext(System.String,ClassKit.CLSContext,System.String[]) M:CloudKit.CKAllowedSharingOptions.Copy(Foundation.NSZone) @@ -38175,9 +38258,22 @@ M:IntentsUI.NSExtensionContext_INUIHostedViewControlling.GetHostedViewMaximumAll M:IntentsUI.NSExtensionContext_INUIHostedViewControlling.GetHostedViewMinimumAllowedSize(Foundation.NSExtensionContext) M:IntentsUI.NSExtensionContext_INUIHostedViewControlling.GetInterfaceParametersDescription(Foundation.NSExtensionContext) M:IOSurface.IOSurface.#ctor(IOSurface.IOSurfaceOptions) +M:IOSurface.IOSurface.DecrementUseCount M:IOSurface.IOSurface.EncodeTo(Foundation.NSCoder) +M:IOSurface.IOSurface.GetAttachment(Foundation.NSString) +M:IOSurface.IOSurface.GetBaseAddress(System.UIntPtr) +M:IOSurface.IOSurface.GetBytesPerElement(System.UIntPtr) +M:IOSurface.IOSurface.GetBytesPerRow(System.UIntPtr) +M:IOSurface.IOSurface.GetElementHeight(System.UIntPtr) +M:IOSurface.IOSurface.GetElementWidth(System.UIntPtr) +M:IOSurface.IOSurface.GetHeight(System.UIntPtr) +M:IOSurface.IOSurface.GetWidth(System.UIntPtr) +M:IOSurface.IOSurface.IncrementUseCount M:IOSurface.IOSurface.Lock(IOSurface.IOSurfaceLockOptions,System.Int32@) M:IOSurface.IOSurface.Lock(IOSurface.IOSurfaceLockOptions) +M:IOSurface.IOSurface.RemoveAllAttachments +M:IOSurface.IOSurface.RemoveAttachment(Foundation.NSString) +M:IOSurface.IOSurface.SetAttachment(Foundation.NSObject,Foundation.NSString) M:IOSurface.IOSurface.SetPurgeable(IOSurface.IOSurfacePurgeabilityState,IOSurface.IOSurfacePurgeabilityState@) M:IOSurface.IOSurface.SetPurgeable(IOSurface.IOSurfacePurgeabilityState) M:IOSurface.IOSurface.Unlock(IOSurface.IOSurfaceLockOptions,System.Int32@) @@ -38194,8 +38290,66 @@ M:iTunesLibrary.ITLibrary.GetLibrary(System.String,Foundation.NSError@) M:iTunesLibrary.ITLibrary.GetLibrary(System.String,iTunesLibrary.ITLibInitOptions,Foundation.NSError@) M:iTunesLibrary.ITLibrary.ReloadData M:iTunesLibrary.ITLibrary.UnloadData +M:JavaScriptCore.JSContext.#ctor +M:JavaScriptCore.JSContext.#ctor(JavaScriptCore.JSVirtualMachine) +M:JavaScriptCore.JSContext.EvaluateScript(System.String,Foundation.NSUrl) +M:JavaScriptCore.JSContext.EvaluateScript(System.String) +M:JavaScriptCore.JSContext.FromJSGlobalContextRef(System.IntPtr) +M:JavaScriptCore.JSManagedValue.#ctor(JavaScriptCore.JSValue) +M:JavaScriptCore.JSManagedValue.Get(JavaScriptCore.JSValue,Foundation.NSObject) +M:JavaScriptCore.JSManagedValue.Get(JavaScriptCore.JSValue) +M:JavaScriptCore.JSValue.Call(JavaScriptCore.JSValue[]) +M:JavaScriptCore.JSValue.Construct(JavaScriptCore.JSValue[]) +M:JavaScriptCore.JSValue.CreateArray(JavaScriptCore.JSContext) +M:JavaScriptCore.JSValue.CreateError(System.String,JavaScriptCore.JSContext) +M:JavaScriptCore.JSValue.CreateObject(JavaScriptCore.JSContext) +M:JavaScriptCore.JSValue.CreatePromise(JavaScriptCore.JSContext,JavaScriptCore.JSPromiseCreationExecutor) +M:JavaScriptCore.JSValue.CreateRegularExpression(System.String,System.String,JavaScriptCore.JSContext) +M:JavaScriptCore.JSValue.CreateRejectedPromise(Foundation.NSObject,JavaScriptCore.JSContext) +M:JavaScriptCore.JSValue.CreateResolvedPromise(Foundation.NSObject,JavaScriptCore.JSContext) +M:JavaScriptCore.JSValue.CreateSymbol(System.String,JavaScriptCore.JSContext) +M:JavaScriptCore.JSValue.DefineProperty(System.String,Foundation.NSObject) +M:JavaScriptCore.JSValue.DeleteProperty(System.String) +M:JavaScriptCore.JSValue.From(CoreGraphics.CGPoint,JavaScriptCore.JSContext) +M:JavaScriptCore.JSValue.From(CoreGraphics.CGRect,JavaScriptCore.JSContext) +M:JavaScriptCore.JSValue.From(CoreGraphics.CGSize,JavaScriptCore.JSContext) +M:JavaScriptCore.JSValue.From(Foundation.NSObject,JavaScriptCore.JSContext) +M:JavaScriptCore.JSValue.From(Foundation.NSRange,JavaScriptCore.JSContext) +M:JavaScriptCore.JSValue.From(System.Boolean,JavaScriptCore.JSContext) +M:JavaScriptCore.JSValue.From(System.Double,JavaScriptCore.JSContext) +M:JavaScriptCore.JSValue.From(System.Int32,JavaScriptCore.JSContext) M:JavaScriptCore.JSValue.From(System.String,JavaScriptCore.JSContext) +M:JavaScriptCore.JSValue.From(System.UInt32,JavaScriptCore.JSContext) +M:JavaScriptCore.JSValue.FromJSJSValueRef(System.IntPtr,JavaScriptCore.JSContext) +M:JavaScriptCore.JSValue.GetProperty(System.String) +M:JavaScriptCore.JSValue.GetValueAt(System.UIntPtr) +M:JavaScriptCore.JSValue.HasProperty(System.String) +M:JavaScriptCore.JSValue.Invoke(System.String,JavaScriptCore.JSValue[]) +M:JavaScriptCore.JSValue.IsEqualTo(Foundation.NSObject) +M:JavaScriptCore.JSValue.IsEqualWithTypeCoercionTo(Foundation.NSObject) +M:JavaScriptCore.JSValue.IsInstanceOf(Foundation.NSObject) +M:JavaScriptCore.JSValue.Null(JavaScriptCore.JSContext) +M:JavaScriptCore.JSValue.SetProperty(Foundation.NSObject,System.String) +M:JavaScriptCore.JSValue.SetValue(JavaScriptCore.JSValue,System.UIntPtr) +M:JavaScriptCore.JSValue.ToArray +M:JavaScriptCore.JSValue.ToBool +M:JavaScriptCore.JSValue.ToDate +M:JavaScriptCore.JSValue.ToDictionary +M:JavaScriptCore.JSValue.ToDouble +M:JavaScriptCore.JSValue.ToInt32 +M:JavaScriptCore.JSValue.ToNumber +M:JavaScriptCore.JSValue.ToObject +M:JavaScriptCore.JSValue.ToObject(ObjCRuntime.Class) +M:JavaScriptCore.JSValue.ToPoint +M:JavaScriptCore.JSValue.ToRange +M:JavaScriptCore.JSValue.ToRect +M:JavaScriptCore.JSValue.ToSize M:JavaScriptCore.JSValue.ToString +M:JavaScriptCore.JSValue.ToUInt32 +M:JavaScriptCore.JSValue.Undefined(JavaScriptCore.JSContext) +M:JavaScriptCore.JSVirtualMachine.#ctor +M:JavaScriptCore.JSVirtualMachine.AddManagedReference(Foundation.NSObject,Foundation.NSObject) +M:JavaScriptCore.JSVirtualMachine.RemoveManagedReference(Foundation.NSObject,Foundation.NSObject) M:LinkPresentation.LPLinkMetadata.Copy(Foundation.NSZone) M:LinkPresentation.LPLinkMetadata.EncodeTo(Foundation.NSCoder) M:LinkPresentation.LPLinkView.#ctor(CoreGraphics.CGRect) @@ -38270,29 +38424,49 @@ M:MailKit.IMEMessageEncoder.GetEncodingStatus(MailKit.MEMessage,MailKit.MECompos M:MailKit.IMEMessageSecurityHandler.GetExtensionViewController(Foundation.NSData) M:MailKit.IMEMessageSecurityHandler.GetExtensionViewController(MailKit.MEMessageSigner[]) M:MailKit.IMEMessageSecurityHandler.SetPrimaryActionClicked(Foundation.NSData,System.Action{MailKit.MEExtensionViewController}) +M:MailKit.MEAddressAnnotation.CreateErrorAnnotation(System.String) +M:MailKit.MEAddressAnnotation.CreateSuccessAnnotation(System.String) +M:MailKit.MEAddressAnnotation.CreateWarningAnnotation(System.String) M:MailKit.MEAddressAnnotation.EncodeTo(Foundation.NSCoder) M:MailKit.MEComposeSession.EncodeTo(Foundation.NSCoder) +M:MailKit.MEComposeSession.ReloadSession M:MailKit.MEComposeSessionHandler_Extensions.AllowMessageSend(MailKit.IMEComposeSessionHandler,MailKit.MEComposeSession,System.Action{Foundation.NSError}) M:MailKit.MEComposeSessionHandler_Extensions.AnnotateAddress(MailKit.IMEComposeSessionHandler,MailKit.MEComposeSession,System.Action{Foundation.NSDictionary{MailKit.MEEmailAddress,MailKit.MEAddressAnnotation}}) M:MailKit.MEComposeSessionHandler_Extensions.GetAdditionalHeaders(MailKit.IMEComposeSessionHandler,MailKit.MEComposeSession) +M:MailKit.MEDecodedMessage.#ctor(Foundation.NSData,MailKit.MEMessageSecurityInformation,Foundation.NSData,MailKit.MEDecodedMessageBanner) +M:MailKit.MEDecodedMessage.#ctor(Foundation.NSData,MailKit.MEMessageSecurityInformation,Foundation.NSData) M:MailKit.MEDecodedMessage.EncodeTo(Foundation.NSCoder) +M:MailKit.MEDecodedMessageBanner.#ctor(System.String,System.String,System.Boolean) M:MailKit.MEDecodedMessageBanner.Copy(Foundation.NSZone) M:MailKit.MEDecodedMessageBanner.EncodeTo(Foundation.NSCoder) +M:MailKit.MEEmailAddress.#ctor(System.String) M:MailKit.MEEmailAddress.Copy(Foundation.NSZone) M:MailKit.MEEmailAddress.EncodeTo(Foundation.NSCoder) +M:MailKit.MEEncodedOutgoingMessage.#ctor(Foundation.NSData,System.Boolean,System.Boolean) M:MailKit.MEEncodedOutgoingMessage.EncodeTo(Foundation.NSCoder) M:MailKit.MEExtension_Extensions.GetHandlerForComposeSession(MailKit.IMEExtension,MailKit.MEComposeSession) M:MailKit.MEExtension_Extensions.GetHandlerForContentBlocker(MailKit.IMEExtension) M:MailKit.MEExtension_Extensions.GetHandlerForMessageActions(MailKit.IMEExtension) M:MailKit.MEExtension_Extensions.GetHandlerForMessageSecurity(MailKit.IMEExtension) +M:MailKit.MEExtensionManager.ReloadContentBlocker(System.String,System.Action{Foundation.NSError}) +M:MailKit.MEExtensionManager.ReloadVisibleMessages(System.Action{Foundation.NSError}) M:MailKit.MEExtensionViewController.#ctor(System.String,Foundation.NSBundle) M:MailKit.MEMessage.EncodeTo(Foundation.NSCoder) M:MailKit.MEMessageAction.EncodeTo(Foundation.NSCoder) +M:MailKit.MEMessageAction.SetBackgroundColorAction(MailKit.MEMessageActionMessageColor) +M:MailKit.MEMessageAction.SetFlagAction(MailKit.MEMessageActionFlag) +M:MailKit.MEMessageActionDecision.Apply(MailKit.MEMessageAction) +M:MailKit.MEMessageActionDecision.Apply(MailKit.MEMessageAction[]) M:MailKit.MEMessageActionDecision.EncodeTo(Foundation.NSCoder) M:MailKit.MEMessageActionHandler_Extensions.GetRequiredHeaders(MailKit.IMEMessageActionHandler) +M:MailKit.MEMessageEncodingResult.#ctor(MailKit.MEEncodedOutgoingMessage,Foundation.NSError,Foundation.NSError) M:MailKit.MEMessageEncodingResult.EncodeTo(Foundation.NSCoder) +M:MailKit.MEMessageSecurityInformation.#ctor(MailKit.MEMessageSigner[],System.Boolean,Foundation.NSError,Foundation.NSError,System.Boolean,System.String) +M:MailKit.MEMessageSecurityInformation.#ctor(MailKit.MEMessageSigner[],System.Boolean,Foundation.NSError,Foundation.NSError) M:MailKit.MEMessageSecurityInformation.EncodeTo(Foundation.NSCoder) +M:MailKit.MEMessageSigner.#ctor(MailKit.MEEmailAddress[],System.String,Foundation.NSData) M:MailKit.MEMessageSigner.EncodeTo(Foundation.NSCoder) +M:MailKit.MEOutgoingMessageEncodingStatus.#ctor(System.Boolean,System.Boolean,Foundation.NSError,MailKit.MEEmailAddress[]) M:MailKit.MEOutgoingMessageEncodingStatus.EncodeTo(Foundation.NSCoder) M:MapKit.IMKAnnotation.SetCoordinate(CoreLocation.CLLocationCoordinate2D) M:MapKit.IMKLocalSearchCompleterDelegate.DidFail(MapKit.MKLocalSearchCompleter,Foundation.NSError) @@ -41145,7 +41319,11 @@ M:MetricKit.MXHistogram`1.EncodeTo(Foundation.NSCoder) M:MetricKit.MXHistogramBucket`1.EncodeTo(Foundation.NSCoder) M:MetricKit.MXMetaData.EncodeTo(Foundation.NSCoder) M:MetricKit.MXMetric.EncodeTo(Foundation.NSCoder) +M:MetricKit.MXMetricManager.Add(MetricKit.IMXMetricManagerSubscriber) +M:MetricKit.MXMetricManager.ExtendLaunchMeasurement(System.String,Foundation.NSError@) +M:MetricKit.MXMetricManager.FinishExtendedLaunchMeasurement(System.String,Foundation.NSError@) M:MetricKit.MXMetricManager.MakeLogHandle(Foundation.NSString) +M:MetricKit.MXMetricManager.Remove(MetricKit.IMXMetricManagerSubscriber) M:MetricKit.MXMetricManagerSubscriber_Extensions.DidReceiveDiagnosticPayloads(MetricKit.IMXMetricManagerSubscriber,MetricKit.MXDiagnosticPayload[]) M:MetricKit.MXMetricManagerSubscriber_Extensions.DidReceiveMetricPayloads(MetricKit.IMXMetricManagerSubscriber,MetricKit.MXMetricPayload[]) M:MetricKit.MXMetricPayload.EncodeTo(Foundation.NSCoder) @@ -44000,6 +44178,8 @@ M:QuickLook.QLPreviewingController_Extensions.PreparePreviewOfSearchableItem(Qui M:QuickLook.QLPreviewingController_Extensions.ProvidePreview(QuickLook.IQLPreviewingController,QuickLook.QLFilePreviewRequest,System.Action{QuickLook.QLPreviewReply,Foundation.NSError}) M:QuickLook.QLPreviewItem_Extensions.GetPreviewItemTitle(QuickLook.IQLPreviewItem) M:QuickLook.QLPreviewProvider.BeginRequestWithExtensionContext(Foundation.NSExtensionContext) +M:QuickLook.QLPreviewReply.#ctor(Foundation.NSUrl) +M:QuickLook.QLPreviewReplyAttachment.#ctor(Foundation.NSData,UniformTypeIdentifiers.UTType) M:QuickLook.QLPreviewSceneActivationConfiguration.#ctor(Foundation.NSUserActivity) M:QuickLook.QLThumbnailImage.Create(Foundation.NSUrl,CoreGraphics.CGSize,System.Single,System.Boolean) M:QuickLookThumbnailing.QLThumbnailGenerationRequest.#ctor(Foundation.NSUrl,CoreGraphics.CGSize,System.Runtime.InteropServices.NFloat,QuickLookThumbnailing.QLThumbnailGenerationRequestRepresentationTypes) @@ -44032,7 +44212,14 @@ M:QuickLookUI.QLPreviewItem_Extensions.GetPreviewItemDisplayState(QuickLookUI.IQ M:QuickLookUI.QLPreviewItem_Extensions.GetPreviewItemTitle(QuickLookUI.IQLPreviewItem) M:QuickLookUI.QLPreviewPanel.Dispose(System.Boolean) M:QuickLookUI.QLPreviewPanel.EnterFullScreenMode +M:QuickLookUI.QLPreviewPanel.EnterFullScreenMode(AppKit.NSScreen,Foundation.NSDictionary) M:QuickLookUI.QLPreviewPanel.ExitFullScreenModeWithOptions +M:QuickLookUI.QLPreviewPanel.ExitFullScreenModeWithOptions(Foundation.NSDictionary) +M:QuickLookUI.QLPreviewPanel.RefreshCurrentPreviewItem +M:QuickLookUI.QLPreviewPanel.ReloadData +M:QuickLookUI.QLPreviewPanel.SharedPreviewPanel +M:QuickLookUI.QLPreviewPanel.SharedPreviewPanelExists +M:QuickLookUI.QLPreviewPanel.UpdateController M:QuickLookUI.QLPreviewPanelController.AcceptsPreviewPanelControl(Foundation.NSObject,QuickLookUI.QLPreviewPanel) M:QuickLookUI.QLPreviewPanelController.BeginPreviewPanelControl(Foundation.NSObject,QuickLookUI.QLPreviewPanel) M:QuickLookUI.QLPreviewPanelController.EndPreviewPanelControl(Foundation.NSObject,QuickLookUI.QLPreviewPanel) @@ -44099,6 +44286,10 @@ M:QuickLookUI.QLPreviewReply.#ctor(CoreGraphics.CGSize,System.Boolean,QuickLookU M:QuickLookUI.QLPreviewReply.#ctor(Foundation.NSUrl) M:QuickLookUI.QLPreviewReply.#ctor(UniformTypeIdentifiers.UTType,CoreGraphics.CGSize,QuickLookUI.QLPreviewReplyDataCreationHandler) M:QuickLookUI.QLPreviewReplyAttachment.#ctor(Foundation.NSData,UniformTypeIdentifiers.UTType) +M:QuickLookUI.QLPreviewView.#ctor(CoreGraphics.CGRect,QuickLookUI.QLPreviewViewStyle) +M:QuickLookUI.QLPreviewView.#ctor(CoreGraphics.CGRect) +M:QuickLookUI.QLPreviewView.Close +M:QuickLookUI.QLPreviewView.RefreshPreviewItem M:ReplayKit.IRPBroadcastActivityControllerDelegate.DidFinish(ReplayKit.RPBroadcastActivityController,ReplayKit.RPBroadcastController,Foundation.NSError) M:ReplayKit.IRPBroadcastActivityViewControllerDelegate.DidFinish(ReplayKit.RPBroadcastActivityViewController,ReplayKit.RPBroadcastController,Foundation.NSError) M:ReplayKit.IRPBroadcastControllerDelegate.DidFinish(ReplayKit.RPBroadcastController,Foundation.NSError) @@ -45312,21 +45503,39 @@ M:SharedWithYouCore.SWUpdateCollaborationParticipantsAction.Copy(Foundation.NSZo M:SharedWithYouCore.SWUpdateCollaborationParticipantsAction.EncodeTo(Foundation.NSCoder) M:ShazamKit.ISHSessionDelegate.DidFindMatch(ShazamKit.SHSession,ShazamKit.SHMatch) M:ShazamKit.ISHSessionDelegate.DidNotFindMatch(ShazamKit.SHSession,ShazamKit.SHSignature,Foundation.NSError) +M:ShazamKit.SHCustomCatalog.Add(Foundation.NSUrl,Foundation.NSError@) +M:ShazamKit.SHCustomCatalog.Add(ShazamKit.SHSignature,ShazamKit.SHMediaItem[],Foundation.NSError@) +M:ShazamKit.SHCustomCatalog.Create +M:ShazamKit.SHCustomCatalog.Write(Foundation.NSUrl,Foundation.NSError@) M:ShazamKit.SHMatch.EncodeTo(Foundation.NSCoder) M:ShazamKit.SHMatchedMediaItem.EncodeTo(Foundation.NSCoder) M:ShazamKit.SHMediaItem.Copy(Foundation.NSZone) +M:ShazamKit.SHMediaItem.Create(Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject}) M:ShazamKit.SHMediaItem.EncodeTo(Foundation.NSCoder) +M:ShazamKit.SHMediaItem.FetchMediaItem(System.String,System.Action{ShazamKit.SHMediaItem,Foundation.NSError}) M:ShazamKit.SHMediaItem.FetchMediaItemAsync(System.String) +M:ShazamKit.SHMediaItem.GetObject(System.String) +M:ShazamKit.SHMediaItem.GetValue(System.String) +M:ShazamKit.SHMediaLibrary.Add(ShazamKit.SHMediaItem[],System.Action{Foundation.NSError}) M:ShazamKit.SHMediaLibrary.AddAsync(ShazamKit.SHMediaItem[]) +M:ShazamKit.SHRange.#ctor(System.Double,System.Double) M:ShazamKit.SHRange.Copy(Foundation.NSZone) +M:ShazamKit.SHRange.CreateRange(System.Double,System.Double) M:ShazamKit.SHRange.EncodeTo(Foundation.NSCoder) +M:ShazamKit.SHSession.#ctor(ShazamKit.SHCatalog) M:ShazamKit.SHSession.Dispose(System.Boolean) +M:ShazamKit.SHSession.Match(AVFoundation.AVAudioPcmBuffer,AVFoundation.AVAudioTime) +M:ShazamKit.SHSession.Match(ShazamKit.SHSignature) M:ShazamKit.SHSessionDelegate_Extensions.DidFindMatch(ShazamKit.ISHSessionDelegate,ShazamKit.SHSession,ShazamKit.SHMatch) M:ShazamKit.SHSessionDelegate_Extensions.DidNotFindMatch(ShazamKit.ISHSessionDelegate,ShazamKit.SHSession,ShazamKit.SHSignature,Foundation.NSError) M:ShazamKit.SHSessionDelegate.DidFindMatch(ShazamKit.SHSession,ShazamKit.SHMatch) M:ShazamKit.SHSessionDelegate.DidNotFindMatch(ShazamKit.SHSession,ShazamKit.SHSignature,Foundation.NSError) +M:ShazamKit.SHSignature.#ctor(Foundation.NSData,Foundation.NSError@) M:ShazamKit.SHSignature.Copy(Foundation.NSZone) M:ShazamKit.SHSignature.EncodeTo(Foundation.NSCoder) +M:ShazamKit.SHSignature.GetSignature(Foundation.NSData,Foundation.NSError@) +M:ShazamKit.SHSignatureGenerator.Append(AVFoundation.AVAudioPcmBuffer,AVFoundation.AVAudioTime,Foundation.NSError@) +M:ShazamKit.SHSignatureGenerator.GenerateSignature(AVFoundation.AVAsset,System.Action{ShazamKit.SHSignature,Foundation.NSError}) M:ShazamKit.SHSignatureGenerator.GenerateSignatureAsync(AVFoundation.AVAsset) M:Social.SLComposeServiceViewController.#ctor(System.String,Foundation.NSBundle) M:Social.SLComposeServiceViewController.Cancel @@ -45780,8 +45989,11 @@ M:TVMLKit.ITVInterfaceCreating.GetUrlForResource(System.String) M:TVMLKit.ITVInterfaceCreating.GetViewControllerForElement(TVMLKit.TVViewElement,UIKit.UIViewController) M:TVMLKit.ITVInterfaceCreating.GetViewForElement(TVMLKit.TVViewElement,UIKit.UIView) M:TVMLKit.ITVPlaybackEventMarshaling.ProcessReturn(JavaScriptCore.JSValue,JavaScriptCore.JSContext) +M:TVMLKit.TVApplicationController.#ctor(TVMLKit.TVApplicationControllerContext,UIKit.UIWindow,TVMLKit.ITVApplicationControllerDelegate) M:TVMLKit.TVApplicationController.Dispose(System.Boolean) +M:TVMLKit.TVApplicationController.Evaluate(System.Action{JavaScriptCore.JSContext},System.Action{System.Boolean}) M:TVMLKit.TVApplicationController.EvaluateAsync(System.Action{JavaScriptCore.JSContext}) +M:TVMLKit.TVApplicationController.Stop M:TVMLKit.TVApplicationControllerContext.Copy(Foundation.NSZone) M:TVMLKit.TVApplicationControllerDelegate_Extensions.DidFail(TVMLKit.ITVApplicationControllerDelegate,TVMLKit.TVApplicationController,Foundation.NSError) M:TVMLKit.TVApplicationControllerDelegate_Extensions.DidFinishLaunching(TVMLKit.ITVApplicationControllerDelegate,TVMLKit.TVApplicationController,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject}) @@ -45799,13 +46011,16 @@ M:TVMLKit.TVBrowserTransitionAnimator.GetInterruptibleAnimator(UIKit.IUIViewCont M:TVMLKit.TVBrowserTransitionAnimator.TransitionDuration(UIKit.IUIViewControllerContextTransitioning) M:TVMLKit.TVBrowserViewController.#ctor(System.String,Foundation.NSBundle) M:TVMLKit.TVBrowserViewController.Dispose(System.Boolean) +M:TVMLKit.TVBrowserViewController.GetCorrespondingViewController(TVMLKit.TVViewElement) M:TVMLKit.TVBrowserViewControllerDataSource.GetCorrespondingDocumentViewController(TVMLKit.TVBrowserViewController,TVMLKit.TVViewElement) M:TVMLKit.TVBrowserViewControllerDelegate_Extensions.DidCenterOnViewElement(TVMLKit.ITVBrowserViewControllerDelegate,TVMLKit.TVBrowserViewController,TVMLKit.TVViewElement) M:TVMLKit.TVBrowserViewControllerDelegate_Extensions.WillCenterOnViewElement(TVMLKit.ITVBrowserViewControllerDelegate,TVMLKit.TVBrowserViewController,TVMLKit.TVViewElement) M:TVMLKit.TVBrowserViewControllerDelegate.DidCenterOnViewElement(TVMLKit.TVBrowserViewController,TVMLKit.TVViewElement) M:TVMLKit.TVBrowserViewControllerDelegate.WillCenterOnViewElement(TVMLKit.TVBrowserViewController,TVMLKit.TVViewElement) M:TVMLKit.TVColor.Copy(Foundation.NSZone) +M:TVMLKit.TVDocumentViewController.CreateViewController(Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},TVMLKit.TVApplicationController) M:TVMLKit.TVDocumentViewController.Dispose(System.Boolean) +M:TVMLKit.TVDocumentViewController.Update(Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject}) M:TVMLKit.TVDocumentViewControllerDelegate_Extensions.DidFailUpdate(TVMLKit.ITVDocumentViewControllerDelegate,TVMLKit.TVDocumentViewController,Foundation.NSError) M:TVMLKit.TVDocumentViewControllerDelegate_Extensions.DidUpdate(TVMLKit.ITVDocumentViewControllerDelegate,TVMLKit.TVDocumentViewController,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject}) M:TVMLKit.TVDocumentViewControllerDelegate_Extensions.DidUpdate(TVMLKit.ITVDocumentViewControllerDelegate,TVMLKit.TVDocumentViewController) @@ -45816,6 +46031,7 @@ M:TVMLKit.TVDocumentViewControllerDelegate.DidUpdate(TVMLKit.TVDocumentViewContr M:TVMLKit.TVDocumentViewControllerDelegate.DidUpdate(TVMLKit.TVDocumentViewController) M:TVMLKit.TVDocumentViewControllerDelegate.HandleEvent(TVMLKit.TVDocumentViewController,Foundation.NSString,TVMLKit.TVViewElement) M:TVMLKit.TVDocumentViewControllerDelegate.WillUpdate(TVMLKit.TVDocumentViewController) +M:TVMLKit.TVElementFactory.RegisterViewElementClass(ObjCRuntime.Class,System.String) M:TVMLKit.TVInterfaceCreating_Extensions.GetCollectionViewCellClass(TVMLKit.ITVInterfaceCreating,TVMLKit.TVViewElement) M:TVMLKit.TVInterfaceCreating_Extensions.GetImageForResource(TVMLKit.ITVInterfaceCreating,System.String) M:TVMLKit.TVInterfaceCreating_Extensions.GetPlayerViewController(TVMLKit.ITVInterfaceCreating,TVMLKit.TVPlayer) @@ -45828,15 +46044,30 @@ M:TVMLKit.TVInterfaceFactory.GetPlayerViewController(TVMLKit.TVPlayer) M:TVMLKit.TVInterfaceFactory.GetUrlForResource(System.String) M:TVMLKit.TVInterfaceFactory.GetViewControllerForElement(TVMLKit.TVViewElement,UIKit.UIViewController) M:TVMLKit.TVInterfaceFactory.GetViewForElement(TVMLKit.TVViewElement,UIKit.UIView) +M:TVMLKit.TVPlaybackCustomEventUserInfo.#ctor(Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},System.Boolean) M:TVMLKit.TVPlaybackCustomEventUserInfo.ProcessReturn(JavaScriptCore.JSValue,JavaScriptCore.JSContext) M:TVMLKit.TVPlaybackEventMarshaling_Extensions.ProcessReturn(TVMLKit.ITVPlaybackEventMarshaling,JavaScriptCore.JSValue,JavaScriptCore.JSContext) +M:TVMLKit.TVPlayer.#ctor(AVFoundation.AVPlayer) +M:TVMLKit.TVPlayer.ChangeToMediaItem(System.IntPtr) +M:TVMLKit.TVPlayer.DispatchEvent(System.String,TVMLKit.ITVPlaybackEventMarshaling,System.Action{System.Boolean}) M:TVMLKit.TVPlayer.DispatchEventAsync(System.String,TVMLKit.ITVPlaybackEventMarshaling) +M:TVMLKit.TVPlayer.Next +M:TVMLKit.TVPlayer.Pause +M:TVMLKit.TVPlayer.Present(System.Boolean) +M:TVMLKit.TVPlayer.Previous +M:TVMLKit.TVStyleFactory.RegisterStyle(System.String,TVMLKit.TVViewElementStyleType,System.Boolean) +M:TVMLKit.TVTextElement.GetAttributedString(UIKit.UIFont,UIKit.UIColor,UIKit.UITextAlignment) +M:TVMLKit.TVTextElement.GetAttributedString(UIKit.UIFont) M:TVMLKit.TVViewElement.Copy(Foundation.NSZone) +M:TVMLKit.TVViewElement.DispatchEvent(System.String,System.Boolean,System.Boolean,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},System.Action{System.Boolean,System.Boolean}) +M:TVMLKit.TVViewElement.DispatchEvent(TVMLKit.TVElementEventType,System.Boolean,System.Boolean,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},System.Action{System.Boolean,System.Boolean}) M:TVMLKit.TVViewElement.DispatchEventAsync(System.String,System.Boolean,System.Boolean,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject}) M:TVMLKit.TVViewElement.DispatchEventAsync(TVMLKit.TVElementEventType,System.Boolean,System.Boolean,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject}) M:TVMLKit.TVViewElement.Dispose(System.Boolean) +M:TVMLKit.TVViewElement.Reset(TVMLKit.TVElementResettableProperty) M:TVMLKit.TVViewElementDispatchResult.#ctor(System.Boolean,System.Boolean) M:TVMLKit.TVViewElementStyle.Copy(Foundation.NSZone) +M:TVMLKit.TVViewElementStyle.ValueForStyleProperty(System.String) M:TVServices.TVAppProfileDescriptor.#ctor(System.String) M:TVServices.TVAppProfileDescriptor.Copy(Foundation.NSZone) M:TVServices.TVAppProfileDescriptor.EncodeTo(Foundation.NSCoder) @@ -45880,10 +46111,15 @@ M:TVUIKit.TVCollectionViewDelegateFullScreenLayout_Extensions.WillCenterCell(TVU M:TVUIKit.TVCollectionViewDelegateFullScreenLayout.DidCenterCell(UIKit.UICollectionView,UIKit.UICollectionViewLayout,Foundation.NSIndexPath) M:TVUIKit.TVCollectionViewDelegateFullScreenLayout.WillCenterCell(UIKit.UICollectionView,UIKit.UICollectionViewLayout,Foundation.NSIndexPath) M:TVUIKit.TVCollectionViewFullScreenCell.#ctor(CoreGraphics.CGRect) +M:TVUIKit.TVCollectionViewFullScreenCell.MaskAmountDidChange +M:TVUIKit.TVCollectionViewFullScreenCell.MaskAmountWillChange(System.Runtime.InteropServices.NFloat) +M:TVUIKit.TVCollectionViewFullScreenCell.NormalizedPositionDidChange +M:TVUIKit.TVCollectionViewFullScreenCell.NormalizedPositionWillChange(System.Runtime.InteropServices.NFloat) M:TVUIKit.TVCollectionViewFullScreenCell.TVCollectionViewFullScreenCellAppearance.#ctor(System.IntPtr) M:TVUIKit.TVCollectionViewFullScreenLayoutAttributes.CreateForCell(Foundation.NSIndexPath) M:TVUIKit.TVCollectionViewFullScreenLayoutAttributes.CreateForDecorationView(Foundation.NSString,Foundation.NSIndexPath) M:TVUIKit.TVCollectionViewFullScreenLayoutAttributes.CreateForSupplementaryView(Foundation.NSString,Foundation.NSIndexPath) +M:TVUIKit.TVDigitEntryViewController.ClearEntry(System.Boolean) M:TVUIKit.TVLockupHeaderFooterView.#ctor(CoreGraphics.CGRect) M:TVUIKit.TVLockupHeaderFooterView.TVLockupHeaderFooterViewAppearance.#ctor(System.IntPtr) M:TVUIKit.TVLockupHeaderFooterView.UpdateAppearanceForLockupView(UIKit.UIControlState) @@ -45891,28 +46127,35 @@ M:TVUIKit.TVLockupView.#ctor(CoreGraphics.CGRect) M:TVUIKit.TVLockupView.TVLockupViewAppearance.#ctor(System.IntPtr) M:TVUIKit.TVLockupViewComponent_Extensions.UpdateAppearanceForLockupView(TVUIKit.ITVLockupViewComponent,UIKit.UIControlState) M:TVUIKit.TVMediaItemContentBadgeProperties.Copy(Foundation.NSZone) +M:TVUIKit.TVMediaItemContentBadgeProperties.CreateDefaultBadge +M:TVUIKit.TVMediaItemContentBadgeProperties.CreateLiveContentBadge M:TVUIKit.TVMediaItemContentBadgeProperties.EncodeTo(Foundation.NSCoder) M:TVUIKit.TVMediaItemContentConfiguration.Copy(Foundation.NSZone) +M:TVUIKit.TVMediaItemContentConfiguration.CreateWideCellConfiguration M:TVUIKit.TVMediaItemContentConfiguration.EncodeTo(Foundation.NSCoder) M:TVUIKit.TVMediaItemContentConfiguration.GetUpdatedConfiguration(UIKit.IUIConfigurationState) M:TVUIKit.TVMediaItemContentConfiguration.MakeContentView M:TVUIKit.TVMediaItemContentTextProperties.Copy(Foundation.NSZone) M:TVUIKit.TVMediaItemContentTextProperties.EncodeTo(Foundation.NSCoder) +M:TVUIKit.TVMediaItemContentView.#ctor(TVUIKit.TVMediaItemContentConfiguration) M:TVUIKit.TVMediaItemContentView.GetConfiguration M:TVUIKit.TVMediaItemContentView.SupportsConfiguration(UIKit.IUIContentConfiguration) M:TVUIKit.TVMediaItemContentView.TVMediaItemContentViewAppearance.#ctor(System.IntPtr) M:TVUIKit.TVMonogramContentConfiguration.Copy(Foundation.NSZone) +M:TVUIKit.TVMonogramContentConfiguration.CreateCellConfiguration M:TVUIKit.TVMonogramContentConfiguration.EncodeTo(Foundation.NSCoder) M:TVUIKit.TVMonogramContentConfiguration.GetUpdatedConfiguration(UIKit.IUIConfigurationState) M:TVUIKit.TVMonogramContentConfiguration.MakeContentView M:TVUIKit.TVMonogramContentTextProperties.Copy(Foundation.NSZone) M:TVUIKit.TVMonogramContentTextProperties.EncodeTo(Foundation.NSCoder) +M:TVUIKit.TVMonogramContentView.#ctor(TVUIKit.TVMonogramContentConfiguration) M:TVUIKit.TVMonogramContentView.GetConfiguration M:TVUIKit.TVMonogramContentView.SupportsConfiguration(UIKit.IUIContentConfiguration) M:TVUIKit.TVMonogramContentView.TVMonogramContentViewAppearance.#ctor(System.IntPtr) M:TVUIKit.TVMonogramView.#ctor(CoreGraphics.CGRect) M:TVUIKit.TVMonogramView.TVMonogramViewAppearance.#ctor(System.IntPtr) M:TVUIKit.TVPosterView.#ctor(CoreGraphics.CGRect) +M:TVUIKit.TVPosterView.#ctor(UIKit.UIImage) M:TVUIKit.TVPosterView.TVPosterViewAppearance.#ctor(System.IntPtr) M:Twitter.TWRequest.#ctor(Foundation.NSUrl,Foundation.NSDictionary,Twitter.TWRequestMethod) M:Twitter.TWRequest.AddMultiPartData(Foundation.NSData,System.String,System.String) @@ -46364,6 +46607,8 @@ M:UIKit.IUIPageViewControllerDelegate.SupportedInterfaceOrientations(UIKit.UIPag M:UIKit.IUIPageViewControllerDelegate.WillTransition(UIKit.UIPageViewController,UIKit.UIViewController[]) M:UIKit.IUIPasteConfigurationSupporting.CanPaste(Foundation.NSItemProvider[]) M:UIKit.IUIPasteConfigurationSupporting.Paste(Foundation.NSItemProvider[]) +M:UIKit.IUIPencilInteractionDelegate.DidReceiveSqueeze(UIKit.UIPencilInteraction,UIKit.UIPencilInteractionSqueeze) +M:UIKit.IUIPencilInteractionDelegate.DidReceiveTap(UIKit.UIPencilInteraction,UIKit.UIPencilInteractionTap) M:UIKit.IUIPencilInteractionDelegate.DidTap(UIKit.UIPencilInteraction) M:UIKit.IUIPickerViewAccessibilityDelegate.GetAccessibilityAttributedHint(UIKit.UIPickerView,System.IntPtr) M:UIKit.IUIPickerViewAccessibilityDelegate.GetAccessibilityAttributedLabel(UIKit.UIPickerView,System.IntPtr) @@ -47408,6 +47653,7 @@ M:UIKit.UICalendarView.UICalendarViewAppearance.#ctor(System.IntPtr) M:UIKit.UICalendarViewDelegate_Extensions.DidChangeVisibleDateComponents(UIKit.IUICalendarViewDelegate,UIKit.UICalendarView,Foundation.NSDateComponents) M:UIKit.UICalendarViewDelegate.DidChangeVisibleDateComponents(UIKit.UICalendarView,Foundation.NSDateComponents) M:UIKit.UICalendarViewDelegate.GetDecoration(UIKit.UICalendarView,Foundation.NSDateComponents) +M:UIKit.UICanvasFeedbackGenerator.GetFeedbackGenerator(UIKit.UIView) M:UIKit.UICellAccessory.Copy(Foundation.NSZone) M:UIKit.UICellAccessory.EncodeTo(Foundation.NSCoder) M:UIKit.UICellAccessory.GetPositionAfterAccessory(ObjCRuntime.Class) @@ -48343,6 +48589,8 @@ M:UIKit.UIImageView.AddSymbolEffectAsync(Symbols.NSSymbolEffect,Symbols.NSSymbol M:UIKit.UIImageView.RemoveSymbolEffectAsync(Symbols.NSSymbolEffect,Symbols.NSSymbolEffectOptions,System.Boolean) M:UIKit.UIImageView.SetSymbolImageAsync(UIKit.UIImage,Symbols.NSSymbolContentTransition,Symbols.NSSymbolEffectOptions) M:UIKit.UIImageView.UIImageViewAppearance.#ctor(System.IntPtr) +M:UIKit.UIImpactFeedbackGenerator.GetFeedbackGenerator(UIKit.UIView) +M:UIKit.UIImpactFeedbackGenerator.ImpactOccurred(CoreGraphics.CGPoint) M:UIKit.UIIndirectScribbleInteraction.DidMoveToView(UIKit.UIView) M:UIKit.UIIndirectScribbleInteraction.Dispose(System.Boolean) M:UIKit.UIIndirectScribbleInteraction.WillMoveToView(UIKit.UIView) @@ -48476,6 +48724,7 @@ M:UIKit.UINavigationItemRenameDelegate.DidEndRenaming(UIKit.UINavigationItem,Sys M:UIKit.UINavigationItemRenameDelegate.ShouldBeginRenaming(UIKit.UINavigationItem) M:UIKit.UINavigationItemRenameDelegate.ShouldEndRenaming(UIKit.UINavigationItem,System.String) M:UIKit.UINavigationItemRenameDelegate.WillBeginRenaming(UIKit.UINavigationItem,System.String,Foundation.NSRange) +M:UIKit.UINotificationFeedbackGenerator.GetFeedbackGenerator(UIKit.UIView) M:UIKit.UIOffset.#ctor(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat) M:UIKit.UIOffset.Equals(System.Object) M:UIKit.UIOffset.GetHashCode @@ -48548,7 +48797,11 @@ M:UIKit.UIPathEventArgs.#ctor(System.String) M:UIKit.UIPencilInteraction.DidMoveToView(UIKit.UIView) M:UIKit.UIPencilInteraction.Dispose(System.Boolean) M:UIKit.UIPencilInteraction.WillMoveToView(UIKit.UIView) +M:UIKit.UIPencilInteractionDelegate_Extensions.DidReceiveSqueeze(UIKit.IUIPencilInteractionDelegate,UIKit.UIPencilInteraction,UIKit.UIPencilInteractionSqueeze) +M:UIKit.UIPencilInteractionDelegate_Extensions.DidReceiveTap(UIKit.IUIPencilInteractionDelegate,UIKit.UIPencilInteraction,UIKit.UIPencilInteractionTap) M:UIKit.UIPencilInteractionDelegate_Extensions.DidTap(UIKit.IUIPencilInteractionDelegate,UIKit.UIPencilInteraction) +M:UIKit.UIPencilInteractionDelegate.DidReceiveSqueeze(UIKit.UIPencilInteraction,UIKit.UIPencilInteractionSqueeze) +M:UIKit.UIPencilInteractionDelegate.DidReceiveTap(UIKit.UIPencilInteraction,UIKit.UIPencilInteractionTap) M:UIKit.UIPencilInteractionDelegate.DidTap(UIKit.UIPencilInteraction) M:UIKit.UIPercentDrivenInteractiveTransition.StartInteractiveTransition(UIKit.IUIViewControllerContextTransitioning) M:UIKit.UIPickerView.#ctor(CoreGraphics.CGRect) @@ -49093,6 +49346,7 @@ M:UIKit.UISegmentedControl.UISegmentedControlAppearance.SetBackgroundImage(UIKit M:UIKit.UISegmentedControl.UISegmentedControlAppearance.SetContentPositionAdjustment(UIKit.UIOffset,UIKit.UISegmentedControlSegment,UIKit.UIBarMetrics) M:UIKit.UISegmentedControl.UISegmentedControlAppearance.SetDividerImage(UIKit.UIImage,UIKit.UIControlState,UIKit.UIControlState,UIKit.UIBarMetrics) M:UIKit.UISegmentedControl.UISegmentedControlAppearance.SetTitleTextAttributes(UIKit.UIStringAttributes,UIKit.UIControlState) +M:UIKit.UISelectionFeedbackGenerator.GetFeedbackGenerator(UIKit.UIView) M:UIKit.UIShape.Copy(Foundation.NSZone) M:UIKit.UISheetPresentationController.#ctor(UIKit.UIViewController,UIKit.UIViewController) M:UIKit.UISheetPresentationController.Dispose(System.Boolean) @@ -55666,12 +55920,14 @@ P:AuthenticationServices.ASAuthorizationPublicKeyCredentialParameters.Algorithm P:AuthenticationServices.ASAuthorizationPublicKeyCredentialUserVerificationPreference.Discouraged P:AuthenticationServices.ASAuthorizationPublicKeyCredentialUserVerificationPreference.Preferred P:AuthenticationServices.ASAuthorizationPublicKeyCredentialUserVerificationPreference.Required +P:AuthenticationServices.ASAuthorizationSecurityKeyPublicKeyCredentialAssertion.AppId P:AuthenticationServices.ASAuthorizationSecurityKeyPublicKeyCredentialAssertion.CredentialId P:AuthenticationServices.ASAuthorizationSecurityKeyPublicKeyCredentialAssertion.RawAuthenticatorData P:AuthenticationServices.ASAuthorizationSecurityKeyPublicKeyCredentialAssertion.RawClientDataJson P:AuthenticationServices.ASAuthorizationSecurityKeyPublicKeyCredentialAssertion.Signature P:AuthenticationServices.ASAuthorizationSecurityKeyPublicKeyCredentialAssertion.UserId P:AuthenticationServices.ASAuthorizationSecurityKeyPublicKeyCredentialAssertionRequest.AllowedCredentials +P:AuthenticationServices.ASAuthorizationSecurityKeyPublicKeyCredentialAssertionRequest.AppId P:AuthenticationServices.ASAuthorizationSecurityKeyPublicKeyCredentialAssertionRequest.Challenge P:AuthenticationServices.ASAuthorizationSecurityKeyPublicKeyCredentialAssertionRequest.RelyingPartyIdentifier P:AuthenticationServices.ASAuthorizationSecurityKeyPublicKeyCredentialAssertionRequest.SecurityAllowedCredentials @@ -55682,6 +55938,7 @@ P:AuthenticationServices.ASAuthorizationSecurityKeyPublicKeyCredentialProvider.R P:AuthenticationServices.ASAuthorizationSecurityKeyPublicKeyCredentialRegistration.CredentialId P:AuthenticationServices.ASAuthorizationSecurityKeyPublicKeyCredentialRegistration.RawAttestationObject P:AuthenticationServices.ASAuthorizationSecurityKeyPublicKeyCredentialRegistration.RawClientDataJson +P:AuthenticationServices.ASAuthorizationSecurityKeyPublicKeyCredentialRegistration.Transports P:AuthenticationServices.ASAuthorizationSecurityKeyPublicKeyCredentialRegistrationRequest.AttestationPreference P:AuthenticationServices.ASAuthorizationSecurityKeyPublicKeyCredentialRegistrationRequest.Challenge P:AuthenticationServices.ASAuthorizationSecurityKeyPublicKeyCredentialRegistrationRequest.CredentialParameters @@ -55822,6 +56079,8 @@ P:AutomaticAssessmentConfiguration.AEAssessmentParticipantConfiguration.AllowsNe P:AutomaticAssessmentConfiguration.AEAssessmentSession.Active P:AutomaticAssessmentConfiguration.AEAssessmentSession.Configuration P:AutomaticAssessmentConfiguration.AEAssessmentSession.Delegate +P:AutomaticAssessmentConfiguration.AEAssessmentSession.SupportsConfigurationUpdates +P:AutomaticAssessmentConfiguration.AEAssessmentSession.SupportsMultipleParticipants P:AutomaticAssessmentConfiguration.AEAssessmentSession.WeakDelegate P:AVFoundation.AudioRendererWasFlushedAutomaticallyEventArgs.AudioRendererFlushTime P:AVFoundation.AudioSettings.AudioQuality @@ -57202,6 +57461,7 @@ P:AVFoundation.AVPlayerItem.TranslatesPlayerInterstitialEvents P:AVFoundation.AVPlayerItem.VideoApertureMode P:AVFoundation.AVPlayerItem.WeakNowPlayingInfo P:AVFoundation.AVPlayerItemErrorEventArgs.Error +P:AVFoundation.AVPlayerItemErrorLogEvent.AllHttpResponseHeaderFields P:AVFoundation.AVPlayerItemLegibleOutput.TextStylingResolutionDefault P:AVFoundation.AVPlayerItemLegibleOutput.TextStylingResolutionSourceAndRulesOnly P:AVFoundation.AVPlayerItemMetadataCollector.Delegate @@ -57449,13 +57709,49 @@ P:BackgroundTasks.BGTaskRequest.EarliestBeginDate P:BackgroundTasks.BGTaskRequest.Identifier P:BackgroundTasks.BGTaskScheduler.Shared P:CallKit.CXAction.Complete +P:CallKit.CXAction.TimeoutDate +P:CallKit.CXAction.Uuid +P:CallKit.CXCall.HasConnected +P:CallKit.CXCall.HasEnded P:CallKit.CXCall.OnHold P:CallKit.CXCall.Outgoing +P:CallKit.CXCall.Uuid +P:CallKit.CXCallAction.CallUuid +P:CallKit.CXCallController.CallObserver +P:CallKit.CXCallDirectoryExtensionContext.Delegate P:CallKit.CXCallDirectoryExtensionContext.Incremental +P:CallKit.CXCallDirectoryManager.SharedInstance +P:CallKit.CXCallObserver.Calls +P:CallKit.CXCallUpdate.HasVideo +P:CallKit.CXCallUpdate.LocalizedCallerName +P:CallKit.CXCallUpdate.RemoteHandle +P:CallKit.CXCallUpdate.SupportsDtmf +P:CallKit.CXCallUpdate.SupportsGrouping +P:CallKit.CXCallUpdate.SupportsHolding +P:CallKit.CXCallUpdate.SupportsUngrouping +P:CallKit.CXHandle.Type +P:CallKit.CXHandle.Value +P:CallKit.CXPlayDtmfCallAction.Digits +P:CallKit.CXPlayDtmfCallAction.Type +P:CallKit.CXProvider.Configuration +P:CallKit.CXProvider.PendingTransactions +P:CallKit.CXProviderConfiguration.IconTemplateImageData +P:CallKit.CXProviderConfiguration.IncludesCallsInRecents +P:CallKit.CXProviderConfiguration.LocalizedName +P:CallKit.CXProviderConfiguration.MaximumCallGroups +P:CallKit.CXProviderConfiguration.MaximumCallsPerCallGroup +P:CallKit.CXProviderConfiguration.RingtoneSound +P:CallKit.CXProviderConfiguration.SupportedHandleTypes +P:CallKit.CXProviderConfiguration.SupportsVideo +P:CallKit.CXSetGroupCallAction.CallUuidToGroupWith P:CallKit.CXSetHeldCallAction.OnHold P:CallKit.CXSetMutedCallAction.Muted +P:CallKit.CXStartCallAction.CallHandle +P:CallKit.CXStartCallAction.ContactIdentifier P:CallKit.CXStartCallAction.Video +P:CallKit.CXTransaction.Actions P:CallKit.CXTransaction.Complete +P:CallKit.CXTransaction.Uuid P:CarPlay.CPActionSheetTemplate.Actions P:CarPlay.CPActionSheetTemplate.Message P:CarPlay.CPActionSheetTemplate.Title @@ -57765,20 +58061,56 @@ P:Cinematic.CNDecision.StrongDecision P:Cinematic.CNDecision.UserDecision P:Cinematic.CNDetectionTrack.Discrete P:Cinematic.CNDetectionTrack.UserCreated +P:ClassKit.CLSActivity.AdditionalActivityItems +P:ClassKit.CLSActivity.Duration +P:ClassKit.CLSActivity.PrimaryActivityItem +P:ClassKit.CLSActivity.Progress P:ClassKit.CLSActivity.Started +P:ClassKit.CLSActivityItem.Identifier +P:ClassKit.CLSActivityItem.Title +P:ClassKit.CLSBinaryItem.Value +P:ClassKit.CLSBinaryItem.ValueType P:ClassKit.CLSContext.Active P:ClassKit.CLSContext.Assignable +P:ClassKit.CLSContext.CurrentActivity +P:ClassKit.CLSContext.CustomTypeName +P:ClassKit.CLSContext.DisplayOrder +P:ClassKit.CLSContext.Identifier +P:ClassKit.CLSContext.IdentifierPath +P:ClassKit.CLSContext.NavigationChildContexts +P:ClassKit.CLSContext.Parent +P:ClassKit.CLSContext.ProgressReportingCapabilities +P:ClassKit.CLSContext.SuggestedAge +P:ClassKit.CLSContext.SuggestedCompletionTime +P:ClassKit.CLSContext.Summary +P:ClassKit.CLSContext.Thumbnail +P:ClassKit.CLSContext.Title P:ClassKit.CLSContext.Topic +P:ClassKit.CLSContext.Type +P:ClassKit.CLSContext.UniversalLinkUrl +P:ClassKit.CLSContext.WeakTopic +P:ClassKit.CLSDataStore.ActiveContext P:ClassKit.CLSDataStore.Delegate +P:ClassKit.CLSDataStore.MainAppContext +P:ClassKit.CLSDataStore.RunningActivity +P:ClassKit.CLSDataStore.Shared +P:ClassKit.CLSDataStore.WeakDelegate P:ClassKit.CLSErrorUserInfoKeys.ObjectKey P:ClassKit.CLSErrorUserInfoKeys.SuccessfulObjectsKey P:ClassKit.CLSErrorUserInfoKeys.UnderlyingErrorsKey +P:ClassKit.CLSObject.DateCreated +P:ClassKit.CLSObject.DateLastModified P:ClassKit.CLSPredicateKeyPath.DateCreated P:ClassKit.CLSPredicateKeyPath.Identifier P:ClassKit.CLSPredicateKeyPath.Parent P:ClassKit.CLSPredicateKeyPath.Title P:ClassKit.CLSPredicateKeyPath.Topic P:ClassKit.CLSPredicateKeyPath.UniversalLinkUrl +P:ClassKit.CLSProgressReportingCapability.Details +P:ClassKit.CLSProgressReportingCapability.Kind +P:ClassKit.CLSQuantityItem.Quantity +P:ClassKit.CLSScoreItem.MaxScore +P:ClassKit.CLSScoreItem.Score P:CloudKit.CKContainer.AccountChangedNotification P:CloudKit.CKContainer.CurrentUserDefaultName P:CloudKit.CKContainer.OwnerDefaultName @@ -66980,7 +67312,21 @@ P:IntentsUI.IINUIHostedViewSiriProviding.DisplaysPaymentTransaction P:IntentsUI.INUIAddVoiceShortcutButton.Delegate P:IntentsUI.INUIAddVoiceShortcutViewController.Delegate P:IntentsUI.INUIEditVoiceShortcutViewController.Delegate +P:IOSurface.IOSurface.AllAttachments +P:IOSurface.IOSurface.AllocationSize +P:IOSurface.IOSurface.AllowsPixelSizeCasting +P:IOSurface.IOSurface.BaseAddress +P:IOSurface.IOSurface.BytesPerElement +P:IOSurface.IOSurface.BytesPerRow +P:IOSurface.IOSurface.ElementHeight +P:IOSurface.IOSurface.ElementWidth +P:IOSurface.IOSurface.Height P:IOSurface.IOSurface.InUse +P:IOSurface.IOSurface.LocalUseCount +P:IOSurface.IOSurface.PixelFormat +P:IOSurface.IOSurface.PlaneCount +P:IOSurface.IOSurface.Seed +P:IOSurface.IOSurface.Width P:IOSurface.IOSurfaceOptions.AllocSize P:IOSurface.IOSurfaceOptions.BytesPerElement P:IOSurface.IOSurfaceOptions.BytesPerRow @@ -67099,16 +67445,38 @@ P:iTunesLibrary.ITLibrary.MediaFolderLocation P:iTunesLibrary.ITLibrary.MusicFolderLocation P:iTunesLibrary.ITLibrary.ShowContentRating P:iTunesLibrary.ITLibraryNotifications.DidChangeNotification +P:JavaScriptCore.JSContext.CurrentArguments +P:JavaScriptCore.JSContext.CurrentCallee +P:JavaScriptCore.JSContext.CurrentContext +P:JavaScriptCore.JSContext.CurrentThis +P:JavaScriptCore.JSContext.Exception +P:JavaScriptCore.JSContext.ExceptionHandler +P:JavaScriptCore.JSContext.GlobalObject P:JavaScriptCore.JSContext.Inspectable P:JavaScriptCore.JSContext.Item(Foundation.NSObject) +P:JavaScriptCore.JSContext.JSGlobalContextRefPtr +P:JavaScriptCore.JSContext.Name +P:JavaScriptCore.JSContext.VirtualMachine +P:JavaScriptCore.JSManagedValue.Value P:JavaScriptCore.JSPropertyDescriptorKeys.Configurable P:JavaScriptCore.JSPropertyDescriptorKeys.Enumerable P:JavaScriptCore.JSPropertyDescriptorKeys.Get P:JavaScriptCore.JSPropertyDescriptorKeys.Set P:JavaScriptCore.JSPropertyDescriptorKeys.Value P:JavaScriptCore.JSPropertyDescriptorKeys.Writable +P:JavaScriptCore.JSValue.Context +P:JavaScriptCore.JSValue.IsArray +P:JavaScriptCore.JSValue.IsBoolean +P:JavaScriptCore.JSValue.IsDate +P:JavaScriptCore.JSValue.IsNull +P:JavaScriptCore.JSValue.IsNumber +P:JavaScriptCore.JSValue.IsObject +P:JavaScriptCore.JSValue.IsString +P:JavaScriptCore.JSValue.IsSymbol +P:JavaScriptCore.JSValue.IsUndefined P:JavaScriptCore.JSValue.Item(Foundation.NSObject) P:JavaScriptCore.JSValue.Item(System.UIntPtr) +P:JavaScriptCore.JSValue.JSValueRefPtr P:LinkPresentation.LPLinkMetadata.IconProvider P:LinkPresentation.LPLinkMetadata.ImageProvider P:LinkPresentation.LPLinkMetadata.OriginalUrl @@ -67146,7 +67514,63 @@ P:MailKit.IMEExtension.HandlerForContentBlocker P:MailKit.IMEExtension.HandlerForMessageActions P:MailKit.IMEExtension.HandlerForMessageSecurity P:MailKit.IMEMessageActionHandler.RequiredHeaders +P:MailKit.MEComposeContext.Action +P:MailKit.MEComposeContext.ContextId +P:MailKit.MEComposeContext.IsEncrypted +P:MailKit.MEComposeContext.IsSigned +P:MailKit.MEComposeContext.OriginalMessage +P:MailKit.MEComposeContext.ShouldEncrypt +P:MailKit.MEComposeContext.ShouldSign +P:MailKit.MEComposeSession.ComposeContext +P:MailKit.MEComposeSession.MailMessage +P:MailKit.MEComposeSession.SessionId +P:MailKit.MEDecodedMessage.Banner +P:MailKit.MEDecodedMessage.Context +P:MailKit.MEDecodedMessage.RawData +P:MailKit.MEDecodedMessage.SecurityInformation P:MailKit.MEDecodedMessageBanner.Dismissable +P:MailKit.MEDecodedMessageBanner.PrimaryActionTitle +P:MailKit.MEDecodedMessageBanner.Title +P:MailKit.MEEmailAddress.AddressString +P:MailKit.MEEmailAddress.RawString +P:MailKit.MEEncodedOutgoingMessage.IsEncrypted +P:MailKit.MEEncodedOutgoingMessage.IsSigned +P:MailKit.MEEncodedOutgoingMessage.RawData +P:MailKit.MEMessage.AllRecipientAddresses +P:MailKit.MEMessage.BccAddresses +P:MailKit.MEMessage.CcAddresses +P:MailKit.MEMessage.DateReceived +P:MailKit.MEMessage.DateSent +P:MailKit.MEMessage.EncryptionState +P:MailKit.MEMessage.FromAddress +P:MailKit.MEMessage.Headers +P:MailKit.MEMessage.RawData +P:MailKit.MEMessage.ReplyToAddresses +P:MailKit.MEMessage.State +P:MailKit.MEMessage.Subject +P:MailKit.MEMessage.ToAddresses +P:MailKit.MEMessageAction.MarkAsRead +P:MailKit.MEMessageAction.MarkAsUnread +P:MailKit.MEMessageAction.MoveToArchive +P:MailKit.MEMessageAction.MoveToJunk +P:MailKit.MEMessageAction.MoveToTrash +P:MailKit.MEMessageActionDecision.InvokeAgainWithBody +P:MailKit.MEMessageEncodingResult.EncodedMessage +P:MailKit.MEMessageEncodingResult.EncryptionError +P:MailKit.MEMessageEncodingResult.SigningError +P:MailKit.MEMessageSecurityInformation.EncryptionError +P:MailKit.MEMessageSecurityInformation.IsEncrypted +P:MailKit.MEMessageSecurityInformation.LocalizedRemoteContentBlockingReason +P:MailKit.MEMessageSecurityInformation.ShouldBlockRemoteContent +P:MailKit.MEMessageSecurityInformation.Signers +P:MailKit.MEMessageSecurityInformation.SigningError +P:MailKit.MEMessageSigner.Context +P:MailKit.MEMessageSigner.EmailAddresses +P:MailKit.MEMessageSigner.Label +P:MailKit.MEOutgoingMessageEncodingStatus.AddressesFailingEncryption +P:MailKit.MEOutgoingMessageEncodingStatus.CanEncrypt +P:MailKit.MEOutgoingMessageEncodingStatus.CanSign +P:MailKit.MEOutgoingMessageEncodingStatus.SecurityError P:MapKit.IMKAnnotation.Coordinate P:MapKit.IMKAnnotation.Subtitle P:MapKit.IMKAnnotation.Title @@ -69228,9 +69652,156 @@ P:MetalPerformanceShadersGraph.MPSGraphTensorData.MPSNDArray P:MetalPerformanceShadersGraph.MPSGraphTensorData.Shape P:MetalPerformanceShadersGraph.MPSGraphVariableOp.DataType P:MetalPerformanceShadersGraph.MPSGraphVariableOp.Shape +P:MetricKit.MXAnimationMetric.ScrollHitchTimeRatio +P:MetricKit.MXAppExitMetric.BackgroundExitData +P:MetricKit.MXAppExitMetric.ForegroundExitData +P:MetricKit.MXAppLaunchDiagnostic.CallStackTree +P:MetricKit.MXAppLaunchDiagnostic.LaunchDuration +P:MetricKit.MXAppLaunchMetric.HistogrammedApplicationResumeTime +P:MetricKit.MXAppLaunchMetric.HistogrammedExtendedLaunch +P:MetricKit.MXAppLaunchMetric.HistogrammedOptimizedTimeToFirstDraw +P:MetricKit.MXAppLaunchMetric.HistogrammedTimeToFirstDraw +P:MetricKit.MXAppResponsivenessMetric.HistogrammedApplicationHangTime +P:MetricKit.MXAppRunTimeMetric.CumulativeBackgroundAudioTime +P:MetricKit.MXAppRunTimeMetric.CumulativeBackgroundLocationTime +P:MetricKit.MXAppRunTimeMetric.CumulativeBackgroundTime +P:MetricKit.MXAppRunTimeMetric.CumulativeForegroundTime +P:MetricKit.MXAverage`1.AverageMeasurement +P:MetricKit.MXAverage`1.SampleCount +P:MetricKit.MXAverage`1.StandardDeviation +P:MetricKit.MXBackgroundExitData.CumulativeAbnormalExitCount +P:MetricKit.MXBackgroundExitData.CumulativeAppWatchdogExitCount +P:MetricKit.MXBackgroundExitData.CumulativeBackgroundTaskAssertionTimeoutExitCount +P:MetricKit.MXBackgroundExitData.CumulativeBadAccessExitCount +P:MetricKit.MXBackgroundExitData.CumulativeCpuResourceLimitExitCount +P:MetricKit.MXBackgroundExitData.CumulativeIllegalInstructionExitCount +P:MetricKit.MXBackgroundExitData.CumulativeMemoryPressureExitCount +P:MetricKit.MXBackgroundExitData.CumulativeMemoryResourceLimitExitCount +P:MetricKit.MXBackgroundExitData.CumulativeNormalAppExitCount +P:MetricKit.MXBackgroundExitData.CumulativeSuspendedWithLockedFileExitCount +P:MetricKit.MXCallStackTree.JsonRepresentation +P:MetricKit.MXCellularConditionMetric.HistogrammedCellularConditionTime +P:MetricKit.MXCpuExceptionDiagnostic.CallStackTree +P:MetricKit.MXCpuExceptionDiagnostic.TotalCpuTime +P:MetricKit.MXCpuExceptionDiagnostic.TotalSampledTime +P:MetricKit.MXCpuMetric.CumulativeCpuInstructions +P:MetricKit.MXCpuMetric.CumulativeCpuTime +P:MetricKit.MXCrashDiagnostic.CallStackTree +P:MetricKit.MXCrashDiagnostic.ExceptionCode +P:MetricKit.MXCrashDiagnostic.ExceptionReason +P:MetricKit.MXCrashDiagnostic.ExceptionType +P:MetricKit.MXCrashDiagnostic.Signal +P:MetricKit.MXCrashDiagnostic.TerminationReason +P:MetricKit.MXCrashDiagnostic.VirtualMemoryRegionInfo +P:MetricKit.MXCrashDiagnosticObjectiveCExceptionReason.Arguments +P:MetricKit.MXCrashDiagnosticObjectiveCExceptionReason.ClassName +P:MetricKit.MXCrashDiagnosticObjectiveCExceptionReason.ComposedMessage +P:MetricKit.MXCrashDiagnosticObjectiveCExceptionReason.DictionaryRepresentation +P:MetricKit.MXCrashDiagnosticObjectiveCExceptionReason.ExceptionName +P:MetricKit.MXCrashDiagnosticObjectiveCExceptionReason.ExceptionType +P:MetricKit.MXCrashDiagnosticObjectiveCExceptionReason.FormatString +P:MetricKit.MXCrashDiagnosticObjectiveCExceptionReason.JsonRepresentation +P:MetricKit.MXDiagnostic.ApplicationVersion +P:MetricKit.MXDiagnostic.DictionaryRepresentation +P:MetricKit.MXDiagnostic.JsonRepresentation +P:MetricKit.MXDiagnostic.MetaData +P:MetricKit.MXDiagnostic.SignpostData +P:MetricKit.MXDiagnosticPayload.AppLaunchDiagnostics +P:MetricKit.MXDiagnosticPayload.CpuExceptionDiagnostics +P:MetricKit.MXDiagnosticPayload.CrashDiagnostics +P:MetricKit.MXDiagnosticPayload.DictionaryRepresentation +P:MetricKit.MXDiagnosticPayload.DiskWriteExceptionDiagnostics +P:MetricKit.MXDiagnosticPayload.HangDiagnostics +P:MetricKit.MXDiagnosticPayload.JsonRepresentation +P:MetricKit.MXDiagnosticPayload.TimeStampBegin +P:MetricKit.MXDiagnosticPayload.TimeStampEnd +P:MetricKit.MXDiskIOMetric.CumulativeLogicalWrites +P:MetricKit.MXDiskWriteExceptionDiagnostic.CallStackTree +P:MetricKit.MXDiskWriteExceptionDiagnostic.TotalWritesCaused +P:MetricKit.MXDisplayMetric.AveragePixelLuminance +P:MetricKit.MXForegroundExitData.CumulativeAbnormalExitCount +P:MetricKit.MXForegroundExitData.CumulativeAppWatchdogExitCount +P:MetricKit.MXForegroundExitData.CumulativeBadAccessExitCount +P:MetricKit.MXForegroundExitData.CumulativeIllegalInstructionExitCount +P:MetricKit.MXForegroundExitData.CumulativeMemoryResourceLimitExitCount +P:MetricKit.MXForegroundExitData.CumulativeNormalAppExitCount +P:MetricKit.MXGpuMetric.CumulativeGpuTime +P:MetricKit.MXHangDiagnostic.CallStackTree +P:MetricKit.MXHangDiagnostic.HangDuration +P:MetricKit.MXHistogram`1.BucketEnumerator +P:MetricKit.MXHistogram`1.TotalBucketCount +P:MetricKit.MXHistogramBucket`1.BucketCount +P:MetricKit.MXHistogramBucket`1.BucketEnd +P:MetricKit.MXHistogramBucket`1.BucketStart +P:MetricKit.MXLocationActivityMetric.CumulativeBestAccuracyForNavigationTime +P:MetricKit.MXLocationActivityMetric.CumulativeBestAccuracyTime +P:MetricKit.MXLocationActivityMetric.CumulativeHundredMetersAccuracyTime +P:MetricKit.MXLocationActivityMetric.CumulativeKilometerAccuracyTime +P:MetricKit.MXLocationActivityMetric.CumulativeNearestTenMetersAccuracyTime +P:MetricKit.MXLocationActivityMetric.CumulativeThreeKilometersAccuracyTime +P:MetricKit.MXMemoryMetric.AverageSuspendedMemory +P:MetricKit.MXMemoryMetric.PeakMemoryUsage +P:MetricKit.MXMetaData.ApplicationBuildVersion +P:MetricKit.MXMetaData.DeviceType +P:MetricKit.MXMetaData.DictionaryRepresentation +P:MetricKit.MXMetaData.IsTestFlightApp +P:MetricKit.MXMetaData.JsonRepresentation +P:MetricKit.MXMetaData.LowPowerModeEnabled +P:MetricKit.MXMetaData.OSVersion +P:MetricKit.MXMetaData.Pid +P:MetricKit.MXMetaData.PlatformArchitecture +P:MetricKit.MXMetaData.RegionFormat P:MetricKit.MXMetric.DictionaryRepresentation +P:MetricKit.MXMetric.JsonRepresentation +P:MetricKit.MXMetricManager.PastDiagnosticPayloads +P:MetricKit.MXMetricManager.PastPayloads +P:MetricKit.MXMetricManager.SharedManager +P:MetricKit.MXMetricPayload.AnimationMetrics +P:MetricKit.MXMetricPayload.ApplicationExitMetrics +P:MetricKit.MXMetricPayload.ApplicationLaunchMetrics +P:MetricKit.MXMetricPayload.ApplicationResponsivenessMetrics +P:MetricKit.MXMetricPayload.ApplicationTimeMetrics +P:MetricKit.MXMetricPayload.CellularConditionMetrics +P:MetricKit.MXMetricPayload.CpuMetrics P:MetricKit.MXMetricPayload.DictionaryRepresentation +P:MetricKit.MXMetricPayload.DiskIOMetrics +P:MetricKit.MXMetricPayload.DisplayMetrics +P:MetricKit.MXMetricPayload.GpuMetrics +P:MetricKit.MXMetricPayload.IncludesMultipleApplicationVersions +P:MetricKit.MXMetricPayload.JsonRepresentation +P:MetricKit.MXMetricPayload.LatestApplicationVersion +P:MetricKit.MXMetricPayload.LocationActivityMetrics +P:MetricKit.MXMetricPayload.MemoryMetrics +P:MetricKit.MXMetricPayload.MetaData +P:MetricKit.MXMetricPayload.NetworkTransferMetrics +P:MetricKit.MXMetricPayload.SignpostMetrics +P:MetricKit.MXMetricPayload.TimeStampBegin +P:MetricKit.MXMetricPayload.TimeStampEnd +P:MetricKit.MXNetworkTransferMetric.CumulativeCellularDownload +P:MetricKit.MXNetworkTransferMetric.CumulativeCellularUpload +P:MetricKit.MXNetworkTransferMetric.CumulativeWifiDownload +P:MetricKit.MXNetworkTransferMetric.CumulativeWifiUpload +P:MetricKit.MXSignpostIntervalData.AverageMemory +P:MetricKit.MXSignpostIntervalData.CumulativeCpuTime +P:MetricKit.MXSignpostIntervalData.CumulativeHitchTimeRatio +P:MetricKit.MXSignpostIntervalData.CumulativeLogicalWrites +P:MetricKit.MXSignpostIntervalData.HistogrammedSignpostDuration +P:MetricKit.MXSignpostMetric.SignpostCategory +P:MetricKit.MXSignpostMetric.SignpostIntervalData +P:MetricKit.MXSignpostMetric.SignpostName +P:MetricKit.MXSignpostMetric.TotalCount +P:MetricKit.MXSignpostRecord.BeginTimeStamp +P:MetricKit.MXSignpostRecord.Category +P:MetricKit.MXSignpostRecord.DictionaryRepresentation +P:MetricKit.MXSignpostRecord.Duration +P:MetricKit.MXSignpostRecord.EndTimeStamp +P:MetricKit.MXSignpostRecord.IsInterval +P:MetricKit.MXSignpostRecord.JsonRepresentation +P:MetricKit.MXSignpostRecord.Name +P:MetricKit.MXSignpostRecord.Subsystem +P:MetricKit.MXUnitAveragePixelLuminance.Apl P:MetricKit.MXUnitAveragePixelLuminance.Symbol +P:MetricKit.MXUnitSignalBars.Bars P:MetricKit.MXUnitSignalBars.Symbol P:MLCompute.MLCActivationDescriptor.A P:MLCompute.MLCActivationDescriptor.ActivationType @@ -70920,6 +71491,7 @@ P:PassKit.PKPaymentMethodSelectedEventArgs.PaymentMethod P:PassKit.PKPaymentNetwork.Amex P:PassKit.PKPaymentNetwork.Bancomat P:PassKit.PKPaymentNetwork.Bancontact +P:PassKit.PKPaymentNetwork.BankAxept P:PassKit.PKPaymentNetwork.Barcode P:PassKit.PKPaymentNetwork.CarteBancaire P:PassKit.PKPaymentNetwork.CarteBancaires @@ -70940,6 +71512,7 @@ P:PassKit.PKPaymentNetwork.MasterCard P:PassKit.PKPaymentNetwork.Meeza P:PassKit.PKPaymentNetwork.Mir P:PassKit.PKPaymentNetwork.Nanaco +P:PassKit.PKPaymentNetwork.Napas P:PassKit.PKPaymentNetwork.PagoBancomat P:PassKit.PKPaymentNetwork.PKPaymentNetworkPostFinance P:PassKit.PKPaymentNetwork.PrivateLabel @@ -71651,6 +72224,7 @@ P:QuartzComposer.QCCompositionRepository.AllCompositions P:QuartzComposer.QCCompositionRepository.SharedCompositionRepository P:QuickLook.IQLPreviewItem.PreviewItemTitle P:QuickLook.IQLPreviewItem.PreviewItemUrl +P:QuickLook.QLFilePreviewRequest.FileUrl P:QuickLook.QLPreviewController.DataSource P:QuickLook.QLPreviewController.Delegate P:QuickLook.QLPreviewController.FrameForPreviewItem @@ -71663,6 +72237,10 @@ P:QuickLook.QLPreviewControllerDelegateDidSaveEventArgs.PreviewItem P:QuickLook.QLPreviewControllerDelegateDidUpdateEventArgs.PreviewItem P:QuickLook.QLPreviewItem.PreviewItemTitle P:QuickLook.QLPreviewItem.PreviewItemUrl +P:QuickLook.QLPreviewReply.Attachments +P:QuickLook.QLPreviewReply.Title +P:QuickLook.QLPreviewReplyAttachment.ContentType +P:QuickLook.QLPreviewReplyAttachment.Data P:QuickLookThumbnailing.QLFileThumbnailRequest.FileUrl P:QuickLookThumbnailing.QLFileThumbnailRequest.MaximumSize P:QuickLookThumbnailing.QLFileThumbnailRequest.MinimumSize @@ -71689,14 +72267,24 @@ P:QuickLookUI.QLFilePreviewRequest.FileUrl P:QuickLookUI.QLPreviewItem.PreviewItemDisplayState P:QuickLookUI.QLPreviewItem.PreviewItemTitle P:QuickLookUI.QLPreviewItem.PreviewItemUrl +P:QuickLookUI.QLPreviewPanel.CurrentController +P:QuickLookUI.QLPreviewPanel.CurrentPreviewItem +P:QuickLookUI.QLPreviewPanel.CurrentPreviewItemIndex P:QuickLookUI.QLPreviewPanel.DataSource P:QuickLookUI.QLPreviewPanel.Delegate +P:QuickLookUI.QLPreviewPanel.DisplayState P:QuickLookUI.QLPreviewPanel.InFullScreenMode +P:QuickLookUI.QLPreviewPanel.WeakDataSource +P:QuickLookUI.QLPreviewPanel.WeakDelegate P:QuickLookUI.QLPreviewReply.Attachments P:QuickLookUI.QLPreviewReply.StringEncoding P:QuickLookUI.QLPreviewReply.Title P:QuickLookUI.QLPreviewReplyAttachment.ContentType P:QuickLookUI.QLPreviewReplyAttachment.Data +P:QuickLookUI.QLPreviewView.Autostarts +P:QuickLookUI.QLPreviewView.DisplayState +P:QuickLookUI.QLPreviewView.PreviewItem +P:QuickLookUI.QLPreviewView.ShouldCloseWithWindow P:ReplayKit.RPBroadcastActivityController.Delegate P:ReplayKit.RPBroadcastActivityController.WeakDelegate P:ReplayKit.RPBroadcastActivityViewController.Delegate @@ -72410,7 +72998,37 @@ P:SharedWithYouCore.SWCollaborationMetadata.WritableTypeIdentifiers P:SharedWithYouCore.SWCollaborationMetadata.WritableTypeIdentifiersForItemProvider P:SharedWithYouCore.SWCollaborationOption.Selected P:SharedWithYouCore.SWCollaborationOptionsGroup.TypeIdentifier +P:ShazamKit.SHCatalog.MaximumQuerySignatureDuration +P:ShazamKit.SHCatalog.MinimumQuerySignatureDuration +P:ShazamKit.SHMatch.MediaItems +P:ShazamKit.SHMatch.QuerySignature +P:ShazamKit.SHMatchedMediaItem.FrequencySkew +P:ShazamKit.SHMatchedMediaItem.MatchOffset +P:ShazamKit.SHMatchedMediaItem.PredictedCurrentMatchOffset +P:ShazamKit.SHMediaItem.AppleMusicId +P:ShazamKit.SHMediaItem.AppleMusicUrl +P:ShazamKit.SHMediaItem.Artist +P:ShazamKit.SHMediaItem.ArtworkUrl +P:ShazamKit.SHMediaItem.CreationDate +P:ShazamKit.SHMediaItem.ExplicitContent +P:ShazamKit.SHMediaItem.FrequencySkewRanges +P:ShazamKit.SHMediaItem.Genres +P:ShazamKit.SHMediaItem.Isrc +P:ShazamKit.SHMediaItem.ShazamId +P:ShazamKit.SHMediaItem.Subtitle +P:ShazamKit.SHMediaItem.TimeRanges +P:ShazamKit.SHMediaItem.Title +P:ShazamKit.SHMediaItem.VideoUrl +P:ShazamKit.SHMediaItem.WebUrl +P:ShazamKit.SHMediaLibrary.DefaultLibrary +P:ShazamKit.SHRange.LowerBound +P:ShazamKit.SHRange.UpperBound +P:ShazamKit.SHSession.Catalog P:ShazamKit.SHSession.Delegate +P:ShazamKit.SHSession.WeakDelegate +P:ShazamKit.SHSignature.DataRepresentation +P:ShazamKit.SHSignature.Duration +P:ShazamKit.SHSignatureGenerator.Signature P:Social.SLComposeServiceViewController.AutoCompletionViewController P:Social.SLComposeServiceViewController.CharactersRemaining P:Social.SLComposeServiceViewController.ContentText @@ -72565,16 +73183,114 @@ P:ThreadNetwork.THCredentials.NetworkName P:ThreadNetwork.THCredentials.PanId P:ThreadNetwork.THCredentials.Pskc P:TVMLKit.ITVPlaybackEventMarshaling.Properties +P:TVMLKit.TVApplicationController.Context P:TVMLKit.TVApplicationController.Delegate +P:TVMLKit.TVApplicationController.NavigationController +P:TVMLKit.TVApplicationController.WeakDelegate +P:TVMLKit.TVApplicationController.Window +P:TVMLKit.TVApplicationControllerContext.JavaScriptApplicationUrl +P:TVMLKit.TVApplicationControllerContext.LaunchOptions +P:TVMLKit.TVApplicationControllerContext.StorageIdentifier +P:TVMLKit.TVApplicationControllerContext.SupportsPictureInPicturePlayback +P:TVMLKit.TVBrowserViewController.CenteredViewElement +P:TVMLKit.TVBrowserViewController.CornerRadius P:TVMLKit.TVBrowserViewController.DataSource P:TVMLKit.TVBrowserViewController.Delegate +P:TVMLKit.TVBrowserViewController.InteritemSpacing +P:TVMLKit.TVBrowserViewController.MaskInset +P:TVMLKit.TVBrowserViewController.ViewElement +P:TVMLKit.TVBrowserViewController.WeakDataSource +P:TVMLKit.TVBrowserViewController.WeakDelegate +P:TVMLKit.TVColor.Color +P:TVMLKit.TVColor.ColorType +P:TVMLKit.TVColor.GradientColors +P:TVMLKit.TVColor.GradientPoints +P:TVMLKit.TVDocumentViewController.AppController P:TVMLKit.TVDocumentViewController.Delegate +P:TVMLKit.TVDocumentViewController.DocumentContext +P:TVMLKit.TVDocumentViewController.WeakDelegate +P:TVMLKit.TVHighlight.HighlightDescription +P:TVMLKit.TVHighlight.ImageUrl +P:TVMLKit.TVHighlight.LocalizedName +P:TVMLKit.TVHighlight.TimeRange +P:TVMLKit.TVHighlightGroup.Highlights +P:TVMLKit.TVHighlightGroup.LocalizedName +P:TVMLKit.TVImageElement.ImageType +P:TVMLKit.TVImageElement.SourceSet +P:TVMLKit.TVImageElement.Url +P:TVMLKit.TVInterfaceFactory.ExtendedInterfaceCreator +P:TVMLKit.TVInterfaceFactory.SharedInterfaceFactory +P:TVMLKit.TVMediaItem.ArtworkImageUrl P:TVMLKit.TVMediaItem.ContentRatingDomain +P:TVMLKit.TVMediaItem.ContentRatingRanking +P:TVMLKit.TVMediaItem.ExplicitContent +P:TVMLKit.TVMediaItem.HighlightGroups +P:TVMLKit.TVMediaItem.Interstitials +P:TVMLKit.TVMediaItem.ItemDescription +P:TVMLKit.TVMediaItem.ResumeTime +P:TVMLKit.TVMediaItem.Subtitle +P:TVMLKit.TVMediaItem.Title P:TVMLKit.TVMediaItem.Type +P:TVMLKit.TVMediaItem.Url +P:TVMLKit.TVMediaItem.UserInfo +P:TVMLKit.TVMediaItem.WeakContentRatingDomain +P:TVMLKit.TVMediaItem.WeakType +P:TVMLKit.TVPlaybackCustomEventUserInfo.ExpectsReturnValue P:TVMLKit.TVPlaybackCustomEventUserInfo.Properties +P:TVMLKit.TVPlaybackCustomEventUserInfo.ReturnValue +P:TVMLKit.TVPlayer.CurrentMediaItem +P:TVMLKit.TVPlayer.NextMediaItem +P:TVMLKit.TVPlayer.Player +P:TVMLKit.TVPlayer.Playlist +P:TVMLKit.TVPlayer.PreviousMediaItem +P:TVMLKit.TVPlayer.State +P:TVMLKit.TVPlaylist.EndAction +P:TVMLKit.TVPlaylist.MediaItems +P:TVMLKit.TVPlaylist.RepeatMode +P:TVMLKit.TVPlaylist.UserInfo +P:TVMLKit.TVTextElement.AttributedText +P:TVMLKit.TVTextElement.TextStyle +P:TVMLKit.TVTimeRange.Duration +P:TVMLKit.TVTimeRange.EndTime +P:TVMLKit.TVTimeRange.StartTime +P:TVMLKit.TVViewElement.Attributes +P:TVMLKit.TVViewElement.AutoHighlightIdentifier +P:TVMLKit.TVViewElement.ChildViewElements P:TVMLKit.TVViewElement.Disabled +P:TVMLKit.TVViewElement.ElementData +P:TVMLKit.TVViewElement.ElementIdentifier +P:TVMLKit.TVViewElement.ElementName +P:TVMLKit.TVViewElement.ParentViewElement +P:TVMLKit.TVViewElement.Style +P:TVMLKit.TVViewElement.UpdateType P:TVMLKit.TVViewElementDispatchResult.IsCancelled P:TVMLKit.TVViewElementDispatchResult.IsDispatched +P:TVMLKit.TVViewElementStyle.Alignment +P:TVMLKit.TVViewElementStyle.BackgroundColor +P:TVMLKit.TVViewElementStyle.Color +P:TVMLKit.TVViewElementStyle.ContentAlignment +P:TVMLKit.TVViewElementStyle.FocusMargin +P:TVMLKit.TVViewElementStyle.FontSize +P:TVMLKit.TVViewElementStyle.FontWeight +P:TVMLKit.TVViewElementStyle.Height +P:TVMLKit.TVViewElementStyle.HighlightColor +P:TVMLKit.TVViewElementStyle.ImageTreatmentName +P:TVMLKit.TVViewElementStyle.InteritemSpacing +P:TVMLKit.TVViewElementStyle.Margin +P:TVMLKit.TVViewElementStyle.MaxHeight +P:TVMLKit.TVViewElementStyle.MaxTextLines +P:TVMLKit.TVViewElementStyle.MaxWidth +P:TVMLKit.TVViewElementStyle.MinHeight +P:TVMLKit.TVViewElementStyle.MinWidth +P:TVMLKit.TVViewElementStyle.Padding +P:TVMLKit.TVViewElementStyle.Position +P:TVMLKit.TVViewElementStyle.RatingStyle +P:TVMLKit.TVViewElementStyle.TextAlignment +P:TVMLKit.TVViewElementStyle.TextHighlightStyle +P:TVMLKit.TVViewElementStyle.TextMinimumScaleFactor +P:TVMLKit.TVViewElementStyle.TextStyle +P:TVMLKit.TVViewElementStyle.TintColor +P:TVMLKit.TVViewElementStyle.Width P:TVServices.ITVTopShelfProvider.TopShelfItems P:TVServices.ITVTopShelfProvider.TopShelfStyle P:TVServices.TVAppProfileDescriptor.Name @@ -72625,8 +73341,81 @@ P:TVServices.TVUserManager.CurrentUserIdentifier P:TVServices.TVUserManager.CurrentUserIdentifierDidChangeNotification P:TVServices.TVUserManager.ShouldStorePreferencesForCurrentUser P:TVServices.TVUserManager.UserIdentifiersForCurrentProfile +P:TVUIKit.TVCaptionButtonView.ContentImage +P:TVUIKit.TVCaptionButtonView.ContentText +P:TVUIKit.TVCaptionButtonView.MotionDirection +P:TVUIKit.TVCaptionButtonView.Subtitle +P:TVUIKit.TVCaptionButtonView.Title +P:TVUIKit.TVCardView.CardBackgroundColor +P:TVUIKit.TVCollectionViewFullScreenCell.ContentBleed +P:TVUIKit.TVCollectionViewFullScreenCell.CornerRadius +P:TVUIKit.TVCollectionViewFullScreenCell.MaskAmount +P:TVUIKit.TVCollectionViewFullScreenCell.MaskedBackgroundView +P:TVUIKit.TVCollectionViewFullScreenCell.MaskedContentView +P:TVUIKit.TVCollectionViewFullScreenCell.NormalizedPosition +P:TVUIKit.TVCollectionViewFullScreenCell.ParallaxOffset +P:TVUIKit.TVCollectionViewFullScreenLayout.CenterIndexPath +P:TVUIKit.TVCollectionViewFullScreenLayout.CornerRadius +P:TVUIKit.TVCollectionViewFullScreenLayout.InteritemSpacing +P:TVUIKit.TVCollectionViewFullScreenLayout.MaskAmount +P:TVUIKit.TVCollectionViewFullScreenLayout.MaskInset +P:TVUIKit.TVCollectionViewFullScreenLayout.ParallaxFactor P:TVUIKit.TVCollectionViewFullScreenLayout.TransitioningToCenterIndexPath +P:TVUIKit.TVCollectionViewFullScreenLayoutAttributes.ContentBleed +P:TVUIKit.TVCollectionViewFullScreenLayoutAttributes.CornerRadius +P:TVUIKit.TVCollectionViewFullScreenLayoutAttributes.MaskAmount +P:TVUIKit.TVCollectionViewFullScreenLayoutAttributes.NormalizedPosition +P:TVUIKit.TVCollectionViewFullScreenLayoutAttributes.ParallaxOffset +P:TVUIKit.TVDigitEntryViewController.EntryCompletionHandler +P:TVUIKit.TVDigitEntryViewController.NumberOfDigits +P:TVUIKit.TVDigitEntryViewController.PromptText P:TVUIKit.TVDigitEntryViewController.SecureDigitEntry +P:TVUIKit.TVDigitEntryViewController.TitleText +P:TVUIKit.TVLockupHeaderFooterView.ShowsOnlyWhenAncestorFocused +P:TVUIKit.TVLockupHeaderFooterView.SubtitleLabel +P:TVUIKit.TVLockupHeaderFooterView.TitleLabel +P:TVUIKit.TVLockupView.ContentSize +P:TVUIKit.TVLockupView.ContentView +P:TVUIKit.TVLockupView.ContentViewInsets +P:TVUIKit.TVLockupView.FocusSizeIncrease +P:TVUIKit.TVLockupView.FooterView +P:TVUIKit.TVLockupView.HeaderView +P:TVUIKit.TVMediaItemContentBadgeProperties.BackgroundColor +P:TVUIKit.TVMediaItemContentBadgeProperties.Color +P:TVUIKit.TVMediaItemContentBadgeProperties.Font +P:TVUIKit.TVMediaItemContentBadgeProperties.Transform +P:TVUIKit.TVMediaItemContentConfiguration.BadgeProperties +P:TVUIKit.TVMediaItemContentConfiguration.BadgeText +P:TVUIKit.TVMediaItemContentConfiguration.Image +P:TVUIKit.TVMediaItemContentConfiguration.OverlayView +P:TVUIKit.TVMediaItemContentConfiguration.PlaybackProgress +P:TVUIKit.TVMediaItemContentConfiguration.SecondaryText +P:TVUIKit.TVMediaItemContentConfiguration.SecondaryTextProperties +P:TVUIKit.TVMediaItemContentConfiguration.Text +P:TVUIKit.TVMediaItemContentConfiguration.TextProperties +P:TVUIKit.TVMediaItemContentTextProperties.Color +P:TVUIKit.TVMediaItemContentTextProperties.Font +P:TVUIKit.TVMediaItemContentTextProperties.Transform +P:TVUIKit.TVMediaItemContentView.Configuration +P:TVUIKit.TVMediaItemContentView.FocusedFrameGuide +P:TVUIKit.TVMonogramContentConfiguration.Image +P:TVUIKit.TVMonogramContentConfiguration.PersonNameComponents +P:TVUIKit.TVMonogramContentConfiguration.SecondaryText +P:TVUIKit.TVMonogramContentConfiguration.SecondaryTextProperties +P:TVUIKit.TVMonogramContentConfiguration.Text +P:TVUIKit.TVMonogramContentConfiguration.TextProperties +P:TVUIKit.TVMonogramContentTextProperties.Color +P:TVUIKit.TVMonogramContentTextProperties.Font +P:TVUIKit.TVMonogramContentView.Configuration +P:TVUIKit.TVMonogramContentView.FocusedFrameGuide +P:TVUIKit.TVMonogramView.Image +P:TVUIKit.TVMonogramView.PersonNameComponents +P:TVUIKit.TVMonogramView.Subtitle +P:TVUIKit.TVMonogramView.Title +P:TVUIKit.TVPosterView.Image +P:TVUIKit.TVPosterView.ImageView +P:TVUIKit.TVPosterView.Subtitle +P:TVUIKit.TVPosterView.Title P:Twitter.TWRequest.Account P:Twitter.TWRequest.Parameters P:Twitter.TWRequest.RequestMethod @@ -78128,6 +78917,7 @@ T:DeviceDiscoveryExtension.DDDeviceProtocolStrings T:DeviceDiscoveryExtension.DDDeviceState T:DeviceDiscoveryExtension.DDErrorCode T:DeviceDiscoveryExtension.DDEventType +T:DeviceDiscoveryUI.DDDevicePickerViewController T:EventKit.EKAlarmType T:EventKit.EKEventStoreRequestAccessCompletionHandler T:EventKit.EKParticipantScheduleStatus @@ -79110,7 +79900,6 @@ T:IntentsUI.INUIEditVoiceShortcutViewControllerDelegate T:IntentsUI.INUIHostedViewContext T:IntentsUI.INUIHostedViewControllingConfigureViewHandler T:IntentsUI.INUIInteractiveBehavior -T:IOSurface.IOSurface T:IOSurface.IOSurfaceLockOptions T:IOSurface.IOSurfaceMemoryMap T:IOSurface.IOSurfaceOptions @@ -80513,9 +81302,13 @@ T:QuartzComposer.QCComposition T:QuartzComposer.QCCompositionLayer T:QuartzComposer.QCCompositionRepository T:QuickLook.IQLPreviewingController +T:QuickLook.QLFilePreviewRequest T:QuickLook.QLPreviewControllerDelegateDidSaveEventArgs T:QuickLook.QLPreviewControllerDelegateDidUpdateEventArgs T:QuickLook.QLPreviewItemEditingMode +T:QuickLook.QLPreviewProvider +T:QuickLook.QLPreviewReply +T:QuickLook.QLPreviewReplyAttachment T:QuickLook.QLPreviewReplyDataCreationHandler T:QuickLook.QLPreviewReplyDrawingHandler T:QuickLook.QLPreviewReplyUIDocumentCreationHandler @@ -80534,14 +81327,10 @@ T:QuickLookUI.IQLPreviewingController T:QuickLookUI.IQLPreviewItem T:QuickLookUI.IQLPreviewPanelDataSource T:QuickLookUI.IQLPreviewPanelDelegate -T:QuickLookUI.QLFilePreviewRequest T:QuickLookUI.QLPreviewItem T:QuickLookUI.QLPreviewPanelController T:QuickLookUI.QLPreviewPanelDataSource T:QuickLookUI.QLPreviewPanelDelegate -T:QuickLookUI.QLPreviewProvider -T:QuickLookUI.QLPreviewReply -T:QuickLookUI.QLPreviewReplyAttachment T:QuickLookUI.QLPreviewReplyDataCreationHandler T:QuickLookUI.QLPreviewReplyDrawingHandler T:QuickLookUI.QLPreviewReplyUIDocumentCreationHandler @@ -81338,6 +82127,7 @@ T:UIKit.UIPasteboardOptions T:UIKit.UIPasteControlDisplayMode T:UIKit.UIPathEventArgs T:UIKit.UIPencilInteractionDelegate +T:UIKit.UIPencilInteractionPhase T:UIKit.UIPencilPreferredAction T:UIKit.UIPointerAccessoryPosition T:UIKit.UIPointerEffectTintMode diff --git a/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-UIKit.ignore b/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-UIKit.ignore index 26cd868a259f..0b485245182b 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-UIKit.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-UIKit.ignore @@ -39,5 +39,4 @@ ## manually bound !missing-field! UIListSeparatorAutomaticInsets not bound -!missing-selector! NSItemProvider::_availableTypes not bound !missing-protocol! UIItemProviderReadingAugmentationDesignating not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-BrowserEngineKit.todo b/tests/xtro-sharpie/api-annotations-dotnet/iOS-BrowserEngineKit.todo index 2347460bde1d..b58e1411c656 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/iOS-BrowserEngineKit.todo +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-BrowserEngineKit.todo @@ -132,3 +132,7 @@ !missing-type! BETextInteraction not bound !missing-type! BETextSuggestion not bound !missing-type! BEWebContentProcess not bound +!missing-selector! BEWebAppManifest::initWithJSONData:manifestURL: not bound +!missing-selector! BEWebAppManifest::jsonData not bound +!missing-selector! BEWebAppManifest::manifestURL not bound +!missing-type! BEWebAppManifest not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-Matter.todo b/tests/xtro-sharpie/api-annotations-dotnet/iOS-Matter.ignore similarity index 97% rename from tests/xtro-sharpie/api-annotations-dotnet/iOS-Matter.todo rename to tests/xtro-sharpie/api-annotations-dotnet/iOS-Matter.ignore index 1d707cc1e85c..9cd6ba2774ad 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/iOS-Matter.todo +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-Matter.ignore @@ -144,7 +144,6 @@ !missing-enum! MTRPumpConfigurationAndControlFeature not bound !missing-enum! MTRPumpConfigurationAndControlOperationMode not bound !missing-enum! MTRPumpConfigurationAndControlPumpStatusBitmap not bound -!missing-enum! MTRScenesFeature not bound !missing-enum! MTRSoftwareDiagnosticsFeature not bound !missing-enum! MTRSwitchFeature not bound !missing-enum! MTRTargetNavigatorStatus not bound @@ -980,17 +979,6 @@ !missing-selector! +MTRBaseClusterRelativeHumidityMeasurement::readAttributeMeasuredValueWithClusterStateCache:endpoint:queue:completion: not bound !missing-selector! +MTRBaseClusterRelativeHumidityMeasurement::readAttributeMinMeasuredValueWithClusterStateCache:endpoint:queue:completion: not bound !missing-selector! +MTRBaseClusterRelativeHumidityMeasurement::readAttributeToleranceWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeAcceptedCommandListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeAttributeListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeClusterRevisionWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeCurrentGroupWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeCurrentSceneWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeFeatureMapWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeGeneratedCommandListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeLastConfiguredByWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeNameSupportWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeSceneCountWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeSceneValidWithClusterStateCache:endpoint:queue:completion: not bound !missing-selector! +MTRBaseClusterSoftwareDiagnostics::readAttributeAcceptedCommandListWithClusterStateCache:endpoint:queue:completion: not bound !missing-selector! +MTRBaseClusterSoftwareDiagnostics::readAttributeAttributeListWithClusterStateCache:endpoint:queue:completion: not bound !missing-selector! +MTRBaseClusterSoftwareDiagnostics::readAttributeClusterRevisionWithClusterStateCache:endpoint:queue:completion: not bound @@ -3585,39 +3573,6 @@ !missing-selector! MTRBaseClusterRelativeHumidityMeasurement::subscribeAttributeMeasuredValueWithParams:subscriptionEstablished:reportHandler: not bound !missing-selector! MTRBaseClusterRelativeHumidityMeasurement::subscribeAttributeMinMeasuredValueWithParams:subscriptionEstablished:reportHandler: not bound !missing-selector! MTRBaseClusterRelativeHumidityMeasurement::subscribeAttributeToleranceWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::addSceneWithParams:completion: not bound -!missing-selector! MTRBaseClusterScenes::copySceneWithParams:completion: not bound -!missing-selector! MTRBaseClusterScenes::enhancedAddSceneWithParams:completion: not bound -!missing-selector! MTRBaseClusterScenes::enhancedViewSceneWithParams:completion: not bound -!missing-selector! MTRBaseClusterScenes::getSceneMembershipWithParams:completion: not bound -!missing-selector! MTRBaseClusterScenes::initWithDevice:endpointID:queue: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeAcceptedCommandListWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeAttributeListWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeClusterRevisionWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeCurrentGroupWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeCurrentSceneWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeFeatureMapWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeGeneratedCommandListWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeLastConfiguredByWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeNameSupportWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeSceneCountWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeSceneValidWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::recallSceneWithParams:completion: not bound -!missing-selector! MTRBaseClusterScenes::removeAllScenesWithParams:completion: not bound -!missing-selector! MTRBaseClusterScenes::removeSceneWithParams:completion: not bound -!missing-selector! MTRBaseClusterScenes::storeSceneWithParams:completion: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeAcceptedCommandListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeAttributeListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeClusterRevisionWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeCurrentGroupWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeCurrentSceneWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeFeatureMapWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeGeneratedCommandListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeLastConfiguredByWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeNameSupportWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeSceneCountWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeSceneValidWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::viewSceneWithParams:completion: not bound !missing-selector! MTRBaseClusterSoftwareDiagnostics::initWithDevice:endpointID:queue: not bound !missing-selector! MTRBaseClusterSoftwareDiagnostics::readAttributeAcceptedCommandListWithCompletion: not bound !missing-selector! MTRBaseClusterSoftwareDiagnostics::readAttributeAttributeListWithCompletion: not bound @@ -5838,28 +5793,6 @@ !missing-selector! MTRClusterRelativeHumidityMeasurement::readAttributeMeasuredValueWithParams: not bound !missing-selector! MTRClusterRelativeHumidityMeasurement::readAttributeMinMeasuredValueWithParams: not bound !missing-selector! MTRClusterRelativeHumidityMeasurement::readAttributeToleranceWithParams: not bound -!missing-selector! MTRClusterScenes::addSceneWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterScenes::copySceneWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterScenes::enhancedAddSceneWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterScenes::enhancedViewSceneWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterScenes::getSceneMembershipWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterScenes::initWithDevice:endpointID:queue: not bound -!missing-selector! MTRClusterScenes::readAttributeAcceptedCommandListWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeAttributeListWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeClusterRevisionWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeCurrentGroupWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeCurrentSceneWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeFeatureMapWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeGeneratedCommandListWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeLastConfiguredByWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeNameSupportWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeSceneCountWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeSceneValidWithParams: not bound -!missing-selector! MTRClusterScenes::recallSceneWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterScenes::removeAllScenesWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterScenes::removeSceneWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterScenes::storeSceneWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterScenes::viewSceneWithParams:expectedValues:expectedValueInterval:completion: not bound !missing-selector! MTRClusterSoftwareDiagnostics::initWithDevice:endpointID:queue: not bound !missing-selector! MTRClusterSoftwareDiagnostics::readAttributeAcceptedCommandListWithParams: not bound !missing-selector! MTRClusterSoftwareDiagnostics::readAttributeAttributeListWithParams: not bound @@ -8115,185 +8048,6 @@ !missing-selector! MTRReadParams::setFilterByFabric: not bound !missing-selector! MTRReadParams::setMinEventNumber: not bound !missing-selector! MTRReadParams::shouldFilterByFabric not bound -!missing-selector! MTRScenesClusterAddSceneParams::extensionFieldSets not bound -!missing-selector! MTRScenesClusterAddSceneParams::groupID not bound -!missing-selector! MTRScenesClusterAddSceneParams::sceneID not bound -!missing-selector! MTRScenesClusterAddSceneParams::sceneName not bound -!missing-selector! MTRScenesClusterAddSceneParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterAddSceneParams::setExtensionFieldSets: not bound -!missing-selector! MTRScenesClusterAddSceneParams::setGroupID: not bound -!missing-selector! MTRScenesClusterAddSceneParams::setSceneID: not bound -!missing-selector! MTRScenesClusterAddSceneParams::setSceneName: not bound -!missing-selector! MTRScenesClusterAddSceneParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterAddSceneParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterAddSceneParams::setTransitionTime: not bound -!missing-selector! MTRScenesClusterAddSceneParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterAddSceneParams::transitionTime not bound -!missing-selector! MTRScenesClusterAddSceneResponseParams::groupID not bound -!missing-selector! MTRScenesClusterAddSceneResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRScenesClusterAddSceneResponseParams::sceneID not bound -!missing-selector! MTRScenesClusterAddSceneResponseParams::setGroupID: not bound -!missing-selector! MTRScenesClusterAddSceneResponseParams::setSceneID: not bound -!missing-selector! MTRScenesClusterAddSceneResponseParams::setStatus: not bound -!missing-selector! MTRScenesClusterAddSceneResponseParams::status not bound -!missing-selector! MTRScenesClusterAttributeValuePair::attributeID not bound -!missing-selector! MTRScenesClusterAttributeValuePair::attributeValue not bound -!missing-selector! MTRScenesClusterAttributeValuePair::setAttributeID: not bound -!missing-selector! MTRScenesClusterAttributeValuePair::setAttributeValue: not bound -!missing-selector! MTRScenesClusterCopySceneParams::groupIdentifierFrom not bound -!missing-selector! MTRScenesClusterCopySceneParams::groupIdentifierTo not bound -!missing-selector! MTRScenesClusterCopySceneParams::mode not bound -!missing-selector! MTRScenesClusterCopySceneParams::sceneIdentifierFrom not bound -!missing-selector! MTRScenesClusterCopySceneParams::sceneIdentifierTo not bound -!missing-selector! MTRScenesClusterCopySceneParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterCopySceneParams::setGroupIdentifierFrom: not bound -!missing-selector! MTRScenesClusterCopySceneParams::setGroupIdentifierTo: not bound -!missing-selector! MTRScenesClusterCopySceneParams::setMode: not bound -!missing-selector! MTRScenesClusterCopySceneParams::setSceneIdentifierFrom: not bound -!missing-selector! MTRScenesClusterCopySceneParams::setSceneIdentifierTo: not bound -!missing-selector! MTRScenesClusterCopySceneParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterCopySceneParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterCopySceneParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterCopySceneResponseParams::groupIdentifierFrom not bound -!missing-selector! MTRScenesClusterCopySceneResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRScenesClusterCopySceneResponseParams::sceneIdentifierFrom not bound -!missing-selector! MTRScenesClusterCopySceneResponseParams::setGroupIdentifierFrom: not bound -!missing-selector! MTRScenesClusterCopySceneResponseParams::setSceneIdentifierFrom: not bound -!missing-selector! MTRScenesClusterCopySceneResponseParams::setStatus: not bound -!missing-selector! MTRScenesClusterCopySceneResponseParams::status not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::extensionFieldSets not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::groupID not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::sceneID not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::sceneName not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::setExtensionFieldSets: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::setGroupID: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::setSceneID: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::setSceneName: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::setTransitionTime: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::transitionTime not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneResponseParams::groupID not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneResponseParams::sceneID not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneResponseParams::setGroupID: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneResponseParams::setSceneID: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneResponseParams::setStatus: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneResponseParams::status not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneParams::groupID not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneParams::sceneID not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneParams::setGroupID: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneParams::setSceneID: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::extensionFieldSets not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::groupID not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::sceneID not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::sceneName not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::setExtensionFieldSets: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::setGroupID: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::setSceneID: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::setSceneName: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::setStatus: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::setTransitionTime: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::status not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::transitionTime not bound -!missing-selector! MTRScenesClusterExtensionFieldSet::attributeValueList not bound -!missing-selector! MTRScenesClusterExtensionFieldSet::clusterID not bound -!missing-selector! MTRScenesClusterExtensionFieldSet::setAttributeValueList: not bound -!missing-selector! MTRScenesClusterExtensionFieldSet::setClusterID: not bound -!missing-selector! MTRScenesClusterGetSceneMembershipParams::groupID not bound -!missing-selector! MTRScenesClusterGetSceneMembershipParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterGetSceneMembershipParams::setGroupID: not bound -!missing-selector! MTRScenesClusterGetSceneMembershipParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterGetSceneMembershipParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterGetSceneMembershipParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterGetSceneMembershipResponseParams::capacity not bound -!missing-selector! MTRScenesClusterGetSceneMembershipResponseParams::groupID not bound -!missing-selector! MTRScenesClusterGetSceneMembershipResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRScenesClusterGetSceneMembershipResponseParams::sceneList not bound -!missing-selector! MTRScenesClusterGetSceneMembershipResponseParams::setCapacity: not bound -!missing-selector! MTRScenesClusterGetSceneMembershipResponseParams::setGroupID: not bound -!missing-selector! MTRScenesClusterGetSceneMembershipResponseParams::setSceneList: not bound -!missing-selector! MTRScenesClusterGetSceneMembershipResponseParams::setStatus: not bound -!missing-selector! MTRScenesClusterGetSceneMembershipResponseParams::status not bound -!missing-selector! MTRScenesClusterRecallSceneParams::groupID not bound -!missing-selector! MTRScenesClusterRecallSceneParams::sceneID not bound -!missing-selector! MTRScenesClusterRecallSceneParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterRecallSceneParams::setGroupID: not bound -!missing-selector! MTRScenesClusterRecallSceneParams::setSceneID: not bound -!missing-selector! MTRScenesClusterRecallSceneParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterRecallSceneParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterRecallSceneParams::setTransitionTime: not bound -!missing-selector! MTRScenesClusterRecallSceneParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterRecallSceneParams::transitionTime not bound -!missing-selector! MTRScenesClusterRemoveAllScenesParams::groupID not bound -!missing-selector! MTRScenesClusterRemoveAllScenesParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterRemoveAllScenesParams::setGroupID: not bound -!missing-selector! MTRScenesClusterRemoveAllScenesParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterRemoveAllScenesParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterRemoveAllScenesParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterRemoveAllScenesResponseParams::groupID not bound -!missing-selector! MTRScenesClusterRemoveAllScenesResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRScenesClusterRemoveAllScenesResponseParams::setGroupID: not bound -!missing-selector! MTRScenesClusterRemoveAllScenesResponseParams::setStatus: not bound -!missing-selector! MTRScenesClusterRemoveAllScenesResponseParams::status not bound -!missing-selector! MTRScenesClusterRemoveSceneParams::groupID not bound -!missing-selector! MTRScenesClusterRemoveSceneParams::sceneID not bound -!missing-selector! MTRScenesClusterRemoveSceneParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterRemoveSceneParams::setGroupID: not bound -!missing-selector! MTRScenesClusterRemoveSceneParams::setSceneID: not bound -!missing-selector! MTRScenesClusterRemoveSceneParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterRemoveSceneParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterRemoveSceneParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterRemoveSceneResponseParams::groupID not bound -!missing-selector! MTRScenesClusterRemoveSceneResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRScenesClusterRemoveSceneResponseParams::sceneID not bound -!missing-selector! MTRScenesClusterRemoveSceneResponseParams::setGroupID: not bound -!missing-selector! MTRScenesClusterRemoveSceneResponseParams::setSceneID: not bound -!missing-selector! MTRScenesClusterRemoveSceneResponseParams::setStatus: not bound -!missing-selector! MTRScenesClusterRemoveSceneResponseParams::status not bound -!missing-selector! MTRScenesClusterStoreSceneParams::groupID not bound -!missing-selector! MTRScenesClusterStoreSceneParams::sceneID not bound -!missing-selector! MTRScenesClusterStoreSceneParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterStoreSceneParams::setGroupID: not bound -!missing-selector! MTRScenesClusterStoreSceneParams::setSceneID: not bound -!missing-selector! MTRScenesClusterStoreSceneParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterStoreSceneParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterStoreSceneParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterStoreSceneResponseParams::groupID not bound -!missing-selector! MTRScenesClusterStoreSceneResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRScenesClusterStoreSceneResponseParams::sceneID not bound -!missing-selector! MTRScenesClusterStoreSceneResponseParams::setGroupID: not bound -!missing-selector! MTRScenesClusterStoreSceneResponseParams::setSceneID: not bound -!missing-selector! MTRScenesClusterStoreSceneResponseParams::setStatus: not bound -!missing-selector! MTRScenesClusterStoreSceneResponseParams::status not bound -!missing-selector! MTRScenesClusterViewSceneParams::groupID not bound -!missing-selector! MTRScenesClusterViewSceneParams::sceneID not bound -!missing-selector! MTRScenesClusterViewSceneParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterViewSceneParams::setGroupID: not bound -!missing-selector! MTRScenesClusterViewSceneParams::setSceneID: not bound -!missing-selector! MTRScenesClusterViewSceneParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterViewSceneParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterViewSceneParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::extensionFieldSets not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::groupID not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::sceneID not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::sceneName not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::setExtensionFieldSets: not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::setGroupID: not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::setSceneID: not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::setSceneName: not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::setStatus: not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::setTransitionTime: not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::status not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::transitionTime not bound !missing-selector! MTRSetupPayload::commissioningFlow not bound !missing-selector! MTRSetupPayload::discoveryCapabilities not bound !missing-selector! MTRSetupPayload::discriminator not bound @@ -9053,7 +8807,6 @@ !missing-type! MTRBaseClusterPressureMeasurement not bound !missing-type! MTRBaseClusterPumpConfigurationAndControl not bound !missing-type! MTRBaseClusterRelativeHumidityMeasurement not bound -!missing-type! MTRBaseClusterScenes not bound !missing-type! MTRBaseClusterSoftwareDiagnostics not bound !missing-type! MTRBaseClusterSwitch not bound !missing-type! MTRBaseClusterTargetNavigator not bound @@ -9142,7 +8895,6 @@ !missing-type! MTRClusterPressureMeasurement not bound !missing-type! MTRClusterPumpConfigurationAndControl not bound !missing-type! MTRClusterRelativeHumidityMeasurement not bound -!missing-type! MTRClusterScenes not bound !missing-type! MTRClusterSoftwareDiagnostics not bound !missing-type! MTRClusterStateCacheContainer not bound !missing-type! MTRClusterSwitch not bound @@ -9375,27 +9127,6 @@ !missing-type! MTRPumpConfigurationAndControlClusterSystemPressureLowEvent not bound !missing-type! MTRPumpConfigurationAndControlClusterTurbineOperationEvent not bound !missing-type! MTRReadParams not bound -!missing-type! MTRScenesClusterAddSceneParams not bound -!missing-type! MTRScenesClusterAddSceneResponseParams not bound -!missing-type! MTRScenesClusterAttributeValuePair not bound -!missing-type! MTRScenesClusterCopySceneParams not bound -!missing-type! MTRScenesClusterCopySceneResponseParams not bound -!missing-type! MTRScenesClusterEnhancedAddSceneParams not bound -!missing-type! MTRScenesClusterEnhancedAddSceneResponseParams not bound -!missing-type! MTRScenesClusterEnhancedViewSceneParams not bound -!missing-type! MTRScenesClusterEnhancedViewSceneResponseParams not bound -!missing-type! MTRScenesClusterExtensionFieldSet not bound -!missing-type! MTRScenesClusterGetSceneMembershipParams not bound -!missing-type! MTRScenesClusterGetSceneMembershipResponseParams not bound -!missing-type! MTRScenesClusterRecallSceneParams not bound -!missing-type! MTRScenesClusterRemoveAllScenesParams not bound -!missing-type! MTRScenesClusterRemoveAllScenesResponseParams not bound -!missing-type! MTRScenesClusterRemoveSceneParams not bound -!missing-type! MTRScenesClusterRemoveSceneResponseParams not bound -!missing-type! MTRScenesClusterStoreSceneParams not bound -!missing-type! MTRScenesClusterStoreSceneResponseParams not bound -!missing-type! MTRScenesClusterViewSceneParams not bound -!missing-type! MTRScenesClusterViewSceneResponseParams not bound !missing-type! MTRSetupPayload not bound !missing-type! MTRSoftwareDiagnosticsClusterResetWatermarksParams not bound !missing-type! MTRSoftwareDiagnosticsClusterSoftwareFaultEvent not bound @@ -9517,7 +9248,6 @@ !missing-enum! MTRRVCRunModeFeature not bound !missing-enum! MTRRVCRunModeModeTag not bound !missing-enum! MTRRVCRunModeStatusCode not bound -!missing-enum! MTRScenesCopyModeBitmap not bound !missing-enum! MTRThermostatControlSequenceOfOperation not bound !missing-enum! MTRThermostatScheduleDayOfWeekBitmap not bound !missing-enum! MTRThermostatScheduleModeBitmap not bound @@ -9882,3 +9612,102 @@ !missing-type! MTRRVCRunModeClusterModeOptionStruct not bound !missing-type! MTRRVCRunModeClusterModeTagStruct not bound !missing-type! MTRThermostatClusterWeeklyScheduleTransitionStruct not bound +!missing-enum! MTRDiagnosticLogType not bound +!missing-enum! MTRFanControlAirflowDirection not bound +!missing-enum! MTRFanControlStepDirection not bound +!missing-enum! MTRStorageSecurityLevel not bound +!missing-enum! MTRStorageSharingType not bound +!missing-field! MTRDataVersionKey not bound +!missing-field! MTRPreviousDataKey not bound +!missing-pinvoke! MTRAttributeNameForID is not bound +!missing-pinvoke! MTRClusterNameForID is not bound +!missing-pinvoke! MTRDeviceControllerStorageClasses is not bound +!missing-pinvoke! MTRSetMessageReliabilityParameters is not bound +!missing-protocol! MTRDeviceControllerStorageDelegate not bound +!missing-selector! +MTRAccessGrant::accessGrantForAllNodesWithPrivilege: not bound +!missing-selector! +MTRAccessGrant::accessGrantForCASEAuthenticatedTag:privilege: not bound +!missing-selector! +MTRAccessGrant::accessGrantForGroupID:privilege: not bound +!missing-selector! +MTRAccessGrant::accessGrantForNodeID:privilege: not bound +!missing-selector! +MTRBaseClusterFanControl::readAttributeAirflowDirectionWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRServerCluster::newDescriptorCluster not bound +!missing-selector! MTRAccessGrant::authenticationMode not bound +!missing-selector! MTRAccessGrant::grantedPrivilege not bound +!missing-selector! MTRAccessGrant::subjectID not bound +!missing-selector! MTRBaseClusterFanControl::readAttributeAirflowDirectionWithCompletion: not bound +!missing-selector! MTRBaseClusterFanControl::stepWithParams:completion: not bound +!missing-selector! MTRBaseClusterFanControl::subscribeAttributeAirflowDirectionWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterFanControl::writeAttributeAirflowDirectionWithValue:completion: not bound +!missing-selector! MTRBaseClusterFanControl::writeAttributeAirflowDirectionWithValue:params:completion: not bound +!missing-selector! MTRBaseDevice::downloadLogOfType:timeout:queue:completion: not bound +!missing-selector! MTRClusterFanControl::readAttributeAirflowDirectionWithParams: not bound +!missing-selector! MTRClusterFanControl::stepWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterFanControl::writeAttributeAirflowDirectionWithValue:expectedValueInterval: not bound +!missing-selector! MTRClusterFanControl::writeAttributeAirflowDirectionWithValue:expectedValueInterval:params: not bound +!missing-selector! MTRDevice::deviceCachePrimed not bound +!missing-selector! MTRDevice::downloadLogOfType:timeout:queue:completion: not bound +!missing-selector! MTRDeviceController::addServerEndpoint: not bound +!missing-selector! MTRDeviceController::initWithParameters:error: not bound +!missing-selector! MTRDeviceController::removeServerEndpoint: not bound +!missing-selector! MTRDeviceController::removeServerEndpoint:queue:completion: not bound +!missing-selector! MTRDeviceController::uniqueIdentifier not bound +!missing-selector! MTRDeviceControllerExternalCertificateParameters::initWithStorageDelegate:storageDelegateQueue:uniqueIdentifier:ipk:vendorID:operationalKeypair:operationalCertificate:intermediateCertificate:rootCertificate: not bound +!missing-selector! MTRDeviceControllerParameters::certificationDeclarationCertificates not bound +!missing-selector! MTRDeviceControllerParameters::productAttestationAuthorityCertificates not bound +!missing-selector! MTRDeviceControllerParameters::setCertificationDeclarationCertificates: not bound +!missing-selector! MTRDeviceControllerParameters::setOperationalCertificateIssuer:queue: not bound +!missing-selector! MTRDeviceControllerParameters::setOTAProviderDelegate:queue: not bound +!missing-selector! MTRDeviceControllerParameters::setProductAttestationAuthorityCertificates: not bound +!missing-selector! MTRDeviceControllerParameters::setShouldAdvertiseOperational: not bound +!missing-selector! MTRDeviceControllerParameters::shouldAdvertiseOperational not bound +!missing-selector! MTRDeviceTypeRevision::deviceTypeID not bound +!missing-selector! MTRDeviceTypeRevision::deviceTypeRevision not bound +!missing-selector! MTRDeviceTypeRevision::initWithDeviceTypeID:revision: not bound +!missing-selector! MTRFanControlClusterStepParams::direction not bound +!missing-selector! MTRFanControlClusterStepParams::lowestOff not bound +!missing-selector! MTRFanControlClusterStepParams::serverSideProcessingTimeout not bound +!missing-selector! MTRFanControlClusterStepParams::setDirection: not bound +!missing-selector! MTRFanControlClusterStepParams::setLowestOff: not bound +!missing-selector! MTRFanControlClusterStepParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTRFanControlClusterStepParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTRFanControlClusterStepParams::setWrap: not bound +!missing-selector! MTRFanControlClusterStepParams::timedInvokeTimeoutMs not bound +!missing-selector! MTRFanControlClusterStepParams::wrap not bound +!missing-selector! MTRMetricData::duration not bound +!missing-selector! MTRMetricData::errorCode not bound +!missing-selector! MTRMetricData::value not bound +!missing-selector! MTRMetrics::allKeys not bound +!missing-selector! MTRMetrics::metricDataForKey: not bound +!missing-selector! MTRMetrics::uniqueIdentifier not bound +!missing-selector! MTRServerAttribute::attributeID not bound +!missing-selector! MTRServerAttribute::initReadonlyAttributeWithID:initialValue:requiredPrivilege: not bound +!missing-selector! MTRServerAttribute::isWritable not bound +!missing-selector! MTRServerAttribute::requiredReadPrivilege not bound +!missing-selector! MTRServerAttribute::setValue: not bound +!missing-selector! MTRServerAttribute::value not bound +!missing-selector! MTRServerCluster::accessGrants not bound +!missing-selector! MTRServerCluster::addAccessGrant: not bound +!missing-selector! MTRServerCluster::addAttribute: not bound +!missing-selector! MTRServerCluster::attributes not bound +!missing-selector! MTRServerCluster::clusterID not bound +!missing-selector! MTRServerCluster::clusterRevision not bound +!missing-selector! MTRServerCluster::initWithClusterID:revision: not bound +!missing-selector! MTRServerCluster::removeAccessGrant: not bound +!missing-selector! MTRServerEndpoint::accessGrants not bound +!missing-selector! MTRServerEndpoint::addAccessGrant: not bound +!missing-selector! MTRServerEndpoint::addServerCluster: not bound +!missing-selector! MTRServerEndpoint::deviceTypes not bound +!missing-selector! MTRServerEndpoint::endpointID not bound +!missing-selector! MTRServerEndpoint::initWithEndpointID:deviceTypes: not bound +!missing-selector! MTRServerEndpoint::removeAccessGrant: not bound +!missing-selector! MTRServerEndpoint::serverClusters not bound +!missing-type! MTRAccessGrant not bound +!missing-type! MTRDeviceControllerAbstractParameters not bound +!missing-type! MTRDeviceControllerExternalCertificateParameters not bound +!missing-type! MTRDeviceControllerParameters not bound +!missing-type! MTRDeviceTypeRevision not bound +!missing-type! MTRFanControlClusterStepParams not bound +!missing-type! MTRMetricData not bound +!missing-type! MTRMetrics not bound +!missing-type! MTRServerAttribute not bound +!missing-type! MTRServerCluster not bound +!missing-type! MTRServerEndpoint not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-SafariServices.todo b/tests/xtro-sharpie/api-annotations-dotnet/iOS-SafariServices.todo new file mode 100644 index 000000000000..8e3450e8b9b4 --- /dev/null +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-SafariServices.todo @@ -0,0 +1 @@ +!missing-protocol-member! SFAddToHomeScreenActivityItem::getWebAppManifestWithCompletionHandler: not found diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-UIKit.ignore b/tests/xtro-sharpie/api-annotations-dotnet/iOS-UIKit.ignore index c4f380daa81c..f7c4fa122011 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/iOS-UIKit.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-UIKit.ignore @@ -475,5 +475,4 @@ !incorrect-protocol-member! UIMenuLeaf::selectedImage is REQUIRED and should be abstract !incorrect-protocol-member! UIMenuLeaf::setSelectedImage: is REQUIRED and should be abstract -!missing-selector! NSItemProvider::_availableTypes not bound !missing-protocol! UIItemProviderReadingAugmentationDesignating not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-BrowserEngineKit.todo b/tests/xtro-sharpie/api-annotations-dotnet/macOS-BrowserEngineKit.todo index d7b2ad085ff1..e69f56c5699a 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/macOS-BrowserEngineKit.todo +++ b/tests/xtro-sharpie/api-annotations-dotnet/macOS-BrowserEngineKit.todo @@ -30,3 +30,7 @@ !missing-type! BETextAlternatives not bound !missing-type! BETextSuggestion not bound !missing-type! BEWebContentProcess not bound +!missing-selector! BEWebAppManifest::initWithJSONData:manifestURL: not bound +!missing-selector! BEWebAppManifest::jsonData not bound +!missing-selector! BEWebAppManifest::manifestURL not bound +!missing-type! BEWebAppManifest not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-CoreAudio.todo b/tests/xtro-sharpie/api-annotations-dotnet/macOS-CoreAudio.todo index 182e1513968d..e24ed232ca58 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/macOS-CoreAudio.todo +++ b/tests/xtro-sharpie/api-annotations-dotnet/macOS-CoreAudio.todo @@ -28,3 +28,4 @@ !missing-selector! CATapDescription::stream not bound !missing-selector! CATapDescription::UUID not bound !missing-type! CATapDescription not bound +!missing-selector! CATapDescription::initExcludingProcesses:andDeviceUID:withStream: not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-Matter.todo b/tests/xtro-sharpie/api-annotations-dotnet/macOS-Matter.ignore similarity index 97% rename from tests/xtro-sharpie/api-annotations-dotnet/macOS-Matter.todo rename to tests/xtro-sharpie/api-annotations-dotnet/macOS-Matter.ignore index 1d707cc1e85c..9cd6ba2774ad 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/macOS-Matter.todo +++ b/tests/xtro-sharpie/api-annotations-dotnet/macOS-Matter.ignore @@ -144,7 +144,6 @@ !missing-enum! MTRPumpConfigurationAndControlFeature not bound !missing-enum! MTRPumpConfigurationAndControlOperationMode not bound !missing-enum! MTRPumpConfigurationAndControlPumpStatusBitmap not bound -!missing-enum! MTRScenesFeature not bound !missing-enum! MTRSoftwareDiagnosticsFeature not bound !missing-enum! MTRSwitchFeature not bound !missing-enum! MTRTargetNavigatorStatus not bound @@ -980,17 +979,6 @@ !missing-selector! +MTRBaseClusterRelativeHumidityMeasurement::readAttributeMeasuredValueWithClusterStateCache:endpoint:queue:completion: not bound !missing-selector! +MTRBaseClusterRelativeHumidityMeasurement::readAttributeMinMeasuredValueWithClusterStateCache:endpoint:queue:completion: not bound !missing-selector! +MTRBaseClusterRelativeHumidityMeasurement::readAttributeToleranceWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeAcceptedCommandListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeAttributeListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeClusterRevisionWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeCurrentGroupWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeCurrentSceneWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeFeatureMapWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeGeneratedCommandListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeLastConfiguredByWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeNameSupportWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeSceneCountWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeSceneValidWithClusterStateCache:endpoint:queue:completion: not bound !missing-selector! +MTRBaseClusterSoftwareDiagnostics::readAttributeAcceptedCommandListWithClusterStateCache:endpoint:queue:completion: not bound !missing-selector! +MTRBaseClusterSoftwareDiagnostics::readAttributeAttributeListWithClusterStateCache:endpoint:queue:completion: not bound !missing-selector! +MTRBaseClusterSoftwareDiagnostics::readAttributeClusterRevisionWithClusterStateCache:endpoint:queue:completion: not bound @@ -3585,39 +3573,6 @@ !missing-selector! MTRBaseClusterRelativeHumidityMeasurement::subscribeAttributeMeasuredValueWithParams:subscriptionEstablished:reportHandler: not bound !missing-selector! MTRBaseClusterRelativeHumidityMeasurement::subscribeAttributeMinMeasuredValueWithParams:subscriptionEstablished:reportHandler: not bound !missing-selector! MTRBaseClusterRelativeHumidityMeasurement::subscribeAttributeToleranceWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::addSceneWithParams:completion: not bound -!missing-selector! MTRBaseClusterScenes::copySceneWithParams:completion: not bound -!missing-selector! MTRBaseClusterScenes::enhancedAddSceneWithParams:completion: not bound -!missing-selector! MTRBaseClusterScenes::enhancedViewSceneWithParams:completion: not bound -!missing-selector! MTRBaseClusterScenes::getSceneMembershipWithParams:completion: not bound -!missing-selector! MTRBaseClusterScenes::initWithDevice:endpointID:queue: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeAcceptedCommandListWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeAttributeListWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeClusterRevisionWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeCurrentGroupWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeCurrentSceneWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeFeatureMapWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeGeneratedCommandListWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeLastConfiguredByWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeNameSupportWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeSceneCountWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeSceneValidWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::recallSceneWithParams:completion: not bound -!missing-selector! MTRBaseClusterScenes::removeAllScenesWithParams:completion: not bound -!missing-selector! MTRBaseClusterScenes::removeSceneWithParams:completion: not bound -!missing-selector! MTRBaseClusterScenes::storeSceneWithParams:completion: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeAcceptedCommandListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeAttributeListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeClusterRevisionWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeCurrentGroupWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeCurrentSceneWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeFeatureMapWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeGeneratedCommandListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeLastConfiguredByWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeNameSupportWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeSceneCountWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeSceneValidWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::viewSceneWithParams:completion: not bound !missing-selector! MTRBaseClusterSoftwareDiagnostics::initWithDevice:endpointID:queue: not bound !missing-selector! MTRBaseClusterSoftwareDiagnostics::readAttributeAcceptedCommandListWithCompletion: not bound !missing-selector! MTRBaseClusterSoftwareDiagnostics::readAttributeAttributeListWithCompletion: not bound @@ -5838,28 +5793,6 @@ !missing-selector! MTRClusterRelativeHumidityMeasurement::readAttributeMeasuredValueWithParams: not bound !missing-selector! MTRClusterRelativeHumidityMeasurement::readAttributeMinMeasuredValueWithParams: not bound !missing-selector! MTRClusterRelativeHumidityMeasurement::readAttributeToleranceWithParams: not bound -!missing-selector! MTRClusterScenes::addSceneWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterScenes::copySceneWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterScenes::enhancedAddSceneWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterScenes::enhancedViewSceneWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterScenes::getSceneMembershipWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterScenes::initWithDevice:endpointID:queue: not bound -!missing-selector! MTRClusterScenes::readAttributeAcceptedCommandListWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeAttributeListWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeClusterRevisionWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeCurrentGroupWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeCurrentSceneWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeFeatureMapWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeGeneratedCommandListWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeLastConfiguredByWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeNameSupportWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeSceneCountWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeSceneValidWithParams: not bound -!missing-selector! MTRClusterScenes::recallSceneWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterScenes::removeAllScenesWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterScenes::removeSceneWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterScenes::storeSceneWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterScenes::viewSceneWithParams:expectedValues:expectedValueInterval:completion: not bound !missing-selector! MTRClusterSoftwareDiagnostics::initWithDevice:endpointID:queue: not bound !missing-selector! MTRClusterSoftwareDiagnostics::readAttributeAcceptedCommandListWithParams: not bound !missing-selector! MTRClusterSoftwareDiagnostics::readAttributeAttributeListWithParams: not bound @@ -8115,185 +8048,6 @@ !missing-selector! MTRReadParams::setFilterByFabric: not bound !missing-selector! MTRReadParams::setMinEventNumber: not bound !missing-selector! MTRReadParams::shouldFilterByFabric not bound -!missing-selector! MTRScenesClusterAddSceneParams::extensionFieldSets not bound -!missing-selector! MTRScenesClusterAddSceneParams::groupID not bound -!missing-selector! MTRScenesClusterAddSceneParams::sceneID not bound -!missing-selector! MTRScenesClusterAddSceneParams::sceneName not bound -!missing-selector! MTRScenesClusterAddSceneParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterAddSceneParams::setExtensionFieldSets: not bound -!missing-selector! MTRScenesClusterAddSceneParams::setGroupID: not bound -!missing-selector! MTRScenesClusterAddSceneParams::setSceneID: not bound -!missing-selector! MTRScenesClusterAddSceneParams::setSceneName: not bound -!missing-selector! MTRScenesClusterAddSceneParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterAddSceneParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterAddSceneParams::setTransitionTime: not bound -!missing-selector! MTRScenesClusterAddSceneParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterAddSceneParams::transitionTime not bound -!missing-selector! MTRScenesClusterAddSceneResponseParams::groupID not bound -!missing-selector! MTRScenesClusterAddSceneResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRScenesClusterAddSceneResponseParams::sceneID not bound -!missing-selector! MTRScenesClusterAddSceneResponseParams::setGroupID: not bound -!missing-selector! MTRScenesClusterAddSceneResponseParams::setSceneID: not bound -!missing-selector! MTRScenesClusterAddSceneResponseParams::setStatus: not bound -!missing-selector! MTRScenesClusterAddSceneResponseParams::status not bound -!missing-selector! MTRScenesClusterAttributeValuePair::attributeID not bound -!missing-selector! MTRScenesClusterAttributeValuePair::attributeValue not bound -!missing-selector! MTRScenesClusterAttributeValuePair::setAttributeID: not bound -!missing-selector! MTRScenesClusterAttributeValuePair::setAttributeValue: not bound -!missing-selector! MTRScenesClusterCopySceneParams::groupIdentifierFrom not bound -!missing-selector! MTRScenesClusterCopySceneParams::groupIdentifierTo not bound -!missing-selector! MTRScenesClusterCopySceneParams::mode not bound -!missing-selector! MTRScenesClusterCopySceneParams::sceneIdentifierFrom not bound -!missing-selector! MTRScenesClusterCopySceneParams::sceneIdentifierTo not bound -!missing-selector! MTRScenesClusterCopySceneParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterCopySceneParams::setGroupIdentifierFrom: not bound -!missing-selector! MTRScenesClusterCopySceneParams::setGroupIdentifierTo: not bound -!missing-selector! MTRScenesClusterCopySceneParams::setMode: not bound -!missing-selector! MTRScenesClusterCopySceneParams::setSceneIdentifierFrom: not bound -!missing-selector! MTRScenesClusterCopySceneParams::setSceneIdentifierTo: not bound -!missing-selector! MTRScenesClusterCopySceneParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterCopySceneParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterCopySceneParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterCopySceneResponseParams::groupIdentifierFrom not bound -!missing-selector! MTRScenesClusterCopySceneResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRScenesClusterCopySceneResponseParams::sceneIdentifierFrom not bound -!missing-selector! MTRScenesClusterCopySceneResponseParams::setGroupIdentifierFrom: not bound -!missing-selector! MTRScenesClusterCopySceneResponseParams::setSceneIdentifierFrom: not bound -!missing-selector! MTRScenesClusterCopySceneResponseParams::setStatus: not bound -!missing-selector! MTRScenesClusterCopySceneResponseParams::status not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::extensionFieldSets not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::groupID not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::sceneID not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::sceneName not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::setExtensionFieldSets: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::setGroupID: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::setSceneID: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::setSceneName: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::setTransitionTime: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::transitionTime not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneResponseParams::groupID not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneResponseParams::sceneID not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneResponseParams::setGroupID: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneResponseParams::setSceneID: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneResponseParams::setStatus: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneResponseParams::status not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneParams::groupID not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneParams::sceneID not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneParams::setGroupID: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneParams::setSceneID: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::extensionFieldSets not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::groupID not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::sceneID not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::sceneName not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::setExtensionFieldSets: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::setGroupID: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::setSceneID: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::setSceneName: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::setStatus: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::setTransitionTime: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::status not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::transitionTime not bound -!missing-selector! MTRScenesClusterExtensionFieldSet::attributeValueList not bound -!missing-selector! MTRScenesClusterExtensionFieldSet::clusterID not bound -!missing-selector! MTRScenesClusterExtensionFieldSet::setAttributeValueList: not bound -!missing-selector! MTRScenesClusterExtensionFieldSet::setClusterID: not bound -!missing-selector! MTRScenesClusterGetSceneMembershipParams::groupID not bound -!missing-selector! MTRScenesClusterGetSceneMembershipParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterGetSceneMembershipParams::setGroupID: not bound -!missing-selector! MTRScenesClusterGetSceneMembershipParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterGetSceneMembershipParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterGetSceneMembershipParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterGetSceneMembershipResponseParams::capacity not bound -!missing-selector! MTRScenesClusterGetSceneMembershipResponseParams::groupID not bound -!missing-selector! MTRScenesClusterGetSceneMembershipResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRScenesClusterGetSceneMembershipResponseParams::sceneList not bound -!missing-selector! MTRScenesClusterGetSceneMembershipResponseParams::setCapacity: not bound -!missing-selector! MTRScenesClusterGetSceneMembershipResponseParams::setGroupID: not bound -!missing-selector! MTRScenesClusterGetSceneMembershipResponseParams::setSceneList: not bound -!missing-selector! MTRScenesClusterGetSceneMembershipResponseParams::setStatus: not bound -!missing-selector! MTRScenesClusterGetSceneMembershipResponseParams::status not bound -!missing-selector! MTRScenesClusterRecallSceneParams::groupID not bound -!missing-selector! MTRScenesClusterRecallSceneParams::sceneID not bound -!missing-selector! MTRScenesClusterRecallSceneParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterRecallSceneParams::setGroupID: not bound -!missing-selector! MTRScenesClusterRecallSceneParams::setSceneID: not bound -!missing-selector! MTRScenesClusterRecallSceneParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterRecallSceneParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterRecallSceneParams::setTransitionTime: not bound -!missing-selector! MTRScenesClusterRecallSceneParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterRecallSceneParams::transitionTime not bound -!missing-selector! MTRScenesClusterRemoveAllScenesParams::groupID not bound -!missing-selector! MTRScenesClusterRemoveAllScenesParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterRemoveAllScenesParams::setGroupID: not bound -!missing-selector! MTRScenesClusterRemoveAllScenesParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterRemoveAllScenesParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterRemoveAllScenesParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterRemoveAllScenesResponseParams::groupID not bound -!missing-selector! MTRScenesClusterRemoveAllScenesResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRScenesClusterRemoveAllScenesResponseParams::setGroupID: not bound -!missing-selector! MTRScenesClusterRemoveAllScenesResponseParams::setStatus: not bound -!missing-selector! MTRScenesClusterRemoveAllScenesResponseParams::status not bound -!missing-selector! MTRScenesClusterRemoveSceneParams::groupID not bound -!missing-selector! MTRScenesClusterRemoveSceneParams::sceneID not bound -!missing-selector! MTRScenesClusterRemoveSceneParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterRemoveSceneParams::setGroupID: not bound -!missing-selector! MTRScenesClusterRemoveSceneParams::setSceneID: not bound -!missing-selector! MTRScenesClusterRemoveSceneParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterRemoveSceneParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterRemoveSceneParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterRemoveSceneResponseParams::groupID not bound -!missing-selector! MTRScenesClusterRemoveSceneResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRScenesClusterRemoveSceneResponseParams::sceneID not bound -!missing-selector! MTRScenesClusterRemoveSceneResponseParams::setGroupID: not bound -!missing-selector! MTRScenesClusterRemoveSceneResponseParams::setSceneID: not bound -!missing-selector! MTRScenesClusterRemoveSceneResponseParams::setStatus: not bound -!missing-selector! MTRScenesClusterRemoveSceneResponseParams::status not bound -!missing-selector! MTRScenesClusterStoreSceneParams::groupID not bound -!missing-selector! MTRScenesClusterStoreSceneParams::sceneID not bound -!missing-selector! MTRScenesClusterStoreSceneParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterStoreSceneParams::setGroupID: not bound -!missing-selector! MTRScenesClusterStoreSceneParams::setSceneID: not bound -!missing-selector! MTRScenesClusterStoreSceneParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterStoreSceneParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterStoreSceneParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterStoreSceneResponseParams::groupID not bound -!missing-selector! MTRScenesClusterStoreSceneResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRScenesClusterStoreSceneResponseParams::sceneID not bound -!missing-selector! MTRScenesClusterStoreSceneResponseParams::setGroupID: not bound -!missing-selector! MTRScenesClusterStoreSceneResponseParams::setSceneID: not bound -!missing-selector! MTRScenesClusterStoreSceneResponseParams::setStatus: not bound -!missing-selector! MTRScenesClusterStoreSceneResponseParams::status not bound -!missing-selector! MTRScenesClusterViewSceneParams::groupID not bound -!missing-selector! MTRScenesClusterViewSceneParams::sceneID not bound -!missing-selector! MTRScenesClusterViewSceneParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterViewSceneParams::setGroupID: not bound -!missing-selector! MTRScenesClusterViewSceneParams::setSceneID: not bound -!missing-selector! MTRScenesClusterViewSceneParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterViewSceneParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterViewSceneParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::extensionFieldSets not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::groupID not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::sceneID not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::sceneName not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::setExtensionFieldSets: not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::setGroupID: not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::setSceneID: not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::setSceneName: not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::setStatus: not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::setTransitionTime: not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::status not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::transitionTime not bound !missing-selector! MTRSetupPayload::commissioningFlow not bound !missing-selector! MTRSetupPayload::discoveryCapabilities not bound !missing-selector! MTRSetupPayload::discriminator not bound @@ -9053,7 +8807,6 @@ !missing-type! MTRBaseClusterPressureMeasurement not bound !missing-type! MTRBaseClusterPumpConfigurationAndControl not bound !missing-type! MTRBaseClusterRelativeHumidityMeasurement not bound -!missing-type! MTRBaseClusterScenes not bound !missing-type! MTRBaseClusterSoftwareDiagnostics not bound !missing-type! MTRBaseClusterSwitch not bound !missing-type! MTRBaseClusterTargetNavigator not bound @@ -9142,7 +8895,6 @@ !missing-type! MTRClusterPressureMeasurement not bound !missing-type! MTRClusterPumpConfigurationAndControl not bound !missing-type! MTRClusterRelativeHumidityMeasurement not bound -!missing-type! MTRClusterScenes not bound !missing-type! MTRClusterSoftwareDiagnostics not bound !missing-type! MTRClusterStateCacheContainer not bound !missing-type! MTRClusterSwitch not bound @@ -9375,27 +9127,6 @@ !missing-type! MTRPumpConfigurationAndControlClusterSystemPressureLowEvent not bound !missing-type! MTRPumpConfigurationAndControlClusterTurbineOperationEvent not bound !missing-type! MTRReadParams not bound -!missing-type! MTRScenesClusterAddSceneParams not bound -!missing-type! MTRScenesClusterAddSceneResponseParams not bound -!missing-type! MTRScenesClusterAttributeValuePair not bound -!missing-type! MTRScenesClusterCopySceneParams not bound -!missing-type! MTRScenesClusterCopySceneResponseParams not bound -!missing-type! MTRScenesClusterEnhancedAddSceneParams not bound -!missing-type! MTRScenesClusterEnhancedAddSceneResponseParams not bound -!missing-type! MTRScenesClusterEnhancedViewSceneParams not bound -!missing-type! MTRScenesClusterEnhancedViewSceneResponseParams not bound -!missing-type! MTRScenesClusterExtensionFieldSet not bound -!missing-type! MTRScenesClusterGetSceneMembershipParams not bound -!missing-type! MTRScenesClusterGetSceneMembershipResponseParams not bound -!missing-type! MTRScenesClusterRecallSceneParams not bound -!missing-type! MTRScenesClusterRemoveAllScenesParams not bound -!missing-type! MTRScenesClusterRemoveAllScenesResponseParams not bound -!missing-type! MTRScenesClusterRemoveSceneParams not bound -!missing-type! MTRScenesClusterRemoveSceneResponseParams not bound -!missing-type! MTRScenesClusterStoreSceneParams not bound -!missing-type! MTRScenesClusterStoreSceneResponseParams not bound -!missing-type! MTRScenesClusterViewSceneParams not bound -!missing-type! MTRScenesClusterViewSceneResponseParams not bound !missing-type! MTRSetupPayload not bound !missing-type! MTRSoftwareDiagnosticsClusterResetWatermarksParams not bound !missing-type! MTRSoftwareDiagnosticsClusterSoftwareFaultEvent not bound @@ -9517,7 +9248,6 @@ !missing-enum! MTRRVCRunModeFeature not bound !missing-enum! MTRRVCRunModeModeTag not bound !missing-enum! MTRRVCRunModeStatusCode not bound -!missing-enum! MTRScenesCopyModeBitmap not bound !missing-enum! MTRThermostatControlSequenceOfOperation not bound !missing-enum! MTRThermostatScheduleDayOfWeekBitmap not bound !missing-enum! MTRThermostatScheduleModeBitmap not bound @@ -9882,3 +9612,102 @@ !missing-type! MTRRVCRunModeClusterModeOptionStruct not bound !missing-type! MTRRVCRunModeClusterModeTagStruct not bound !missing-type! MTRThermostatClusterWeeklyScheduleTransitionStruct not bound +!missing-enum! MTRDiagnosticLogType not bound +!missing-enum! MTRFanControlAirflowDirection not bound +!missing-enum! MTRFanControlStepDirection not bound +!missing-enum! MTRStorageSecurityLevel not bound +!missing-enum! MTRStorageSharingType not bound +!missing-field! MTRDataVersionKey not bound +!missing-field! MTRPreviousDataKey not bound +!missing-pinvoke! MTRAttributeNameForID is not bound +!missing-pinvoke! MTRClusterNameForID is not bound +!missing-pinvoke! MTRDeviceControllerStorageClasses is not bound +!missing-pinvoke! MTRSetMessageReliabilityParameters is not bound +!missing-protocol! MTRDeviceControllerStorageDelegate not bound +!missing-selector! +MTRAccessGrant::accessGrantForAllNodesWithPrivilege: not bound +!missing-selector! +MTRAccessGrant::accessGrantForCASEAuthenticatedTag:privilege: not bound +!missing-selector! +MTRAccessGrant::accessGrantForGroupID:privilege: not bound +!missing-selector! +MTRAccessGrant::accessGrantForNodeID:privilege: not bound +!missing-selector! +MTRBaseClusterFanControl::readAttributeAirflowDirectionWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRServerCluster::newDescriptorCluster not bound +!missing-selector! MTRAccessGrant::authenticationMode not bound +!missing-selector! MTRAccessGrant::grantedPrivilege not bound +!missing-selector! MTRAccessGrant::subjectID not bound +!missing-selector! MTRBaseClusterFanControl::readAttributeAirflowDirectionWithCompletion: not bound +!missing-selector! MTRBaseClusterFanControl::stepWithParams:completion: not bound +!missing-selector! MTRBaseClusterFanControl::subscribeAttributeAirflowDirectionWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterFanControl::writeAttributeAirflowDirectionWithValue:completion: not bound +!missing-selector! MTRBaseClusterFanControl::writeAttributeAirflowDirectionWithValue:params:completion: not bound +!missing-selector! MTRBaseDevice::downloadLogOfType:timeout:queue:completion: not bound +!missing-selector! MTRClusterFanControl::readAttributeAirflowDirectionWithParams: not bound +!missing-selector! MTRClusterFanControl::stepWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterFanControl::writeAttributeAirflowDirectionWithValue:expectedValueInterval: not bound +!missing-selector! MTRClusterFanControl::writeAttributeAirflowDirectionWithValue:expectedValueInterval:params: not bound +!missing-selector! MTRDevice::deviceCachePrimed not bound +!missing-selector! MTRDevice::downloadLogOfType:timeout:queue:completion: not bound +!missing-selector! MTRDeviceController::addServerEndpoint: not bound +!missing-selector! MTRDeviceController::initWithParameters:error: not bound +!missing-selector! MTRDeviceController::removeServerEndpoint: not bound +!missing-selector! MTRDeviceController::removeServerEndpoint:queue:completion: not bound +!missing-selector! MTRDeviceController::uniqueIdentifier not bound +!missing-selector! MTRDeviceControllerExternalCertificateParameters::initWithStorageDelegate:storageDelegateQueue:uniqueIdentifier:ipk:vendorID:operationalKeypair:operationalCertificate:intermediateCertificate:rootCertificate: not bound +!missing-selector! MTRDeviceControllerParameters::certificationDeclarationCertificates not bound +!missing-selector! MTRDeviceControllerParameters::productAttestationAuthorityCertificates not bound +!missing-selector! MTRDeviceControllerParameters::setCertificationDeclarationCertificates: not bound +!missing-selector! MTRDeviceControllerParameters::setOperationalCertificateIssuer:queue: not bound +!missing-selector! MTRDeviceControllerParameters::setOTAProviderDelegate:queue: not bound +!missing-selector! MTRDeviceControllerParameters::setProductAttestationAuthorityCertificates: not bound +!missing-selector! MTRDeviceControllerParameters::setShouldAdvertiseOperational: not bound +!missing-selector! MTRDeviceControllerParameters::shouldAdvertiseOperational not bound +!missing-selector! MTRDeviceTypeRevision::deviceTypeID not bound +!missing-selector! MTRDeviceTypeRevision::deviceTypeRevision not bound +!missing-selector! MTRDeviceTypeRevision::initWithDeviceTypeID:revision: not bound +!missing-selector! MTRFanControlClusterStepParams::direction not bound +!missing-selector! MTRFanControlClusterStepParams::lowestOff not bound +!missing-selector! MTRFanControlClusterStepParams::serverSideProcessingTimeout not bound +!missing-selector! MTRFanControlClusterStepParams::setDirection: not bound +!missing-selector! MTRFanControlClusterStepParams::setLowestOff: not bound +!missing-selector! MTRFanControlClusterStepParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTRFanControlClusterStepParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTRFanControlClusterStepParams::setWrap: not bound +!missing-selector! MTRFanControlClusterStepParams::timedInvokeTimeoutMs not bound +!missing-selector! MTRFanControlClusterStepParams::wrap not bound +!missing-selector! MTRMetricData::duration not bound +!missing-selector! MTRMetricData::errorCode not bound +!missing-selector! MTRMetricData::value not bound +!missing-selector! MTRMetrics::allKeys not bound +!missing-selector! MTRMetrics::metricDataForKey: not bound +!missing-selector! MTRMetrics::uniqueIdentifier not bound +!missing-selector! MTRServerAttribute::attributeID not bound +!missing-selector! MTRServerAttribute::initReadonlyAttributeWithID:initialValue:requiredPrivilege: not bound +!missing-selector! MTRServerAttribute::isWritable not bound +!missing-selector! MTRServerAttribute::requiredReadPrivilege not bound +!missing-selector! MTRServerAttribute::setValue: not bound +!missing-selector! MTRServerAttribute::value not bound +!missing-selector! MTRServerCluster::accessGrants not bound +!missing-selector! MTRServerCluster::addAccessGrant: not bound +!missing-selector! MTRServerCluster::addAttribute: not bound +!missing-selector! MTRServerCluster::attributes not bound +!missing-selector! MTRServerCluster::clusterID not bound +!missing-selector! MTRServerCluster::clusterRevision not bound +!missing-selector! MTRServerCluster::initWithClusterID:revision: not bound +!missing-selector! MTRServerCluster::removeAccessGrant: not bound +!missing-selector! MTRServerEndpoint::accessGrants not bound +!missing-selector! MTRServerEndpoint::addAccessGrant: not bound +!missing-selector! MTRServerEndpoint::addServerCluster: not bound +!missing-selector! MTRServerEndpoint::deviceTypes not bound +!missing-selector! MTRServerEndpoint::endpointID not bound +!missing-selector! MTRServerEndpoint::initWithEndpointID:deviceTypes: not bound +!missing-selector! MTRServerEndpoint::removeAccessGrant: not bound +!missing-selector! MTRServerEndpoint::serverClusters not bound +!missing-type! MTRAccessGrant not bound +!missing-type! MTRDeviceControllerAbstractParameters not bound +!missing-type! MTRDeviceControllerExternalCertificateParameters not bound +!missing-type! MTRDeviceControllerParameters not bound +!missing-type! MTRDeviceTypeRevision not bound +!missing-type! MTRFanControlClusterStepParams not bound +!missing-type! MTRMetricData not bound +!missing-type! MTRMetrics not bound +!missing-type! MTRServerAttribute not bound +!missing-type! MTRServerCluster not bound +!missing-type! MTRServerEndpoint not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-BrowserEngineKit.todo b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-BrowserEngineKit.todo index 79ad97e0f803..fb8925e5c742 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-BrowserEngineKit.todo +++ b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-BrowserEngineKit.todo @@ -72,3 +72,7 @@ !missing-type! BETextDocumentRequest not bound !missing-type! BETextInteraction not bound !missing-type! BETextSuggestion not bound +!missing-selector! BEWebAppManifest::initWithJSONData:manifestURL: not bound +!missing-selector! BEWebAppManifest::jsonData not bound +!missing-selector! BEWebAppManifest::manifestURL not bound +!missing-type! BEWebAppManifest not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-Matter.ignore b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-Matter.ignore index 21498983956b..74993acf7914 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-Matter.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-Matter.ignore @@ -1202,80 +1202,6 @@ !missing-selector! MTROptionalQRCodeInfo::setTag: not bound !missing-selector! MTROptionalQRCodeInfo::stringValue not bound !missing-selector! MTROptionalQRCodeInfo::tag not bound -!missing-selector! MTRScenesClusterAddSceneParams::extensionFieldSets not bound -!missing-selector! MTRScenesClusterAddSceneParams::sceneName not bound -!missing-selector! MTRScenesClusterAddSceneParams::setExtensionFieldSets: not bound -!missing-selector! MTRScenesClusterAddSceneParams::setSceneName: not bound -!missing-selector! MTRScenesClusterAddSceneParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterAddSceneParams::setTransitionTime: not bound -!missing-selector! MTRScenesClusterAddSceneParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterAddSceneParams::transitionTime not bound -!missing-selector! MTRScenesClusterAddSceneResponseParams::setStatus: not bound -!missing-selector! MTRScenesClusterAddSceneResponseParams::status not bound -!missing-selector! MTRScenesClusterAttributeValuePair::attributeValue not bound -!missing-selector! MTRScenesClusterAttributeValuePair::setAttributeValue: not bound -!missing-selector! MTRScenesClusterCopySceneParams::mode not bound -!missing-selector! MTRScenesClusterCopySceneParams::setMode: not bound -!missing-selector! MTRScenesClusterCopySceneParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterCopySceneParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterCopySceneResponseParams::setStatus: not bound -!missing-selector! MTRScenesClusterCopySceneResponseParams::status not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::extensionFieldSets not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::sceneName not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::setExtensionFieldSets: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::setSceneName: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::setTransitionTime: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::transitionTime not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneResponseParams::setStatus: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneResponseParams::status not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::extensionFieldSets not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::sceneName not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::setExtensionFieldSets: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::setSceneName: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::setStatus: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::setTransitionTime: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::status not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::transitionTime not bound -!missing-selector! MTRScenesClusterExtensionFieldSet::attributeValueList not bound -!missing-selector! MTRScenesClusterExtensionFieldSet::setAttributeValueList: not bound -!missing-selector! MTRScenesClusterGetSceneMembershipParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterGetSceneMembershipParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterGetSceneMembershipResponseParams::capacity not bound -!missing-selector! MTRScenesClusterGetSceneMembershipResponseParams::sceneList not bound -!missing-selector! MTRScenesClusterGetSceneMembershipResponseParams::setCapacity: not bound -!missing-selector! MTRScenesClusterGetSceneMembershipResponseParams::setSceneList: not bound -!missing-selector! MTRScenesClusterGetSceneMembershipResponseParams::setStatus: not bound -!missing-selector! MTRScenesClusterGetSceneMembershipResponseParams::status not bound -!missing-selector! MTRScenesClusterRecallSceneParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterRecallSceneParams::setTransitionTime: not bound -!missing-selector! MTRScenesClusterRecallSceneParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterRecallSceneParams::transitionTime not bound -!missing-selector! MTRScenesClusterRemoveAllScenesParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterRemoveAllScenesParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterRemoveAllScenesResponseParams::setStatus: not bound -!missing-selector! MTRScenesClusterRemoveAllScenesResponseParams::status not bound -!missing-selector! MTRScenesClusterRemoveSceneParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterRemoveSceneParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterRemoveSceneResponseParams::setStatus: not bound -!missing-selector! MTRScenesClusterRemoveSceneResponseParams::status not bound -!missing-selector! MTRScenesClusterStoreSceneParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterStoreSceneParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterStoreSceneResponseParams::setStatus: not bound -!missing-selector! MTRScenesClusterStoreSceneResponseParams::status not bound -!missing-selector! MTRScenesClusterViewSceneParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterViewSceneParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::extensionFieldSets not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::sceneName not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::setExtensionFieldSets: not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::setSceneName: not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::setStatus: not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::setTransitionTime: not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::status not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::transitionTime not bound !missing-selector! MTRSetupPayload::commissioningFlow not bound !missing-selector! MTRSetupPayload::discriminator not bound !missing-selector! MTRSetupPayload::getAllOptionalVendorData: not bound @@ -1495,7 +1421,6 @@ !missing-type! MTRBaseClusterPressureMeasurement not bound !missing-type! MTRBaseClusterPumpConfigurationAndControl not bound !missing-type! MTRBaseClusterRelativeHumidityMeasurement not bound -!missing-type! MTRBaseClusterScenes not bound !missing-type! MTRBaseClusterSoftwareDiagnostics not bound !missing-type! MTRBaseClusterSwitch not bound !missing-type! MTRBaseClusterTargetNavigator not bound @@ -1690,27 +1615,6 @@ !missing-type! MTRPumpConfigurationAndControlClusterSystemPressureLowEvent not bound !missing-type! MTRPumpConfigurationAndControlClusterTurbineOperationEvent not bound !missing-type! MTRReadParams not bound -!missing-type! MTRScenesClusterAddSceneParams not bound -!missing-type! MTRScenesClusterAddSceneResponseParams not bound -!missing-type! MTRScenesClusterAttributeValuePair not bound -!missing-type! MTRScenesClusterCopySceneParams not bound -!missing-type! MTRScenesClusterCopySceneResponseParams not bound -!missing-type! MTRScenesClusterEnhancedAddSceneParams not bound -!missing-type! MTRScenesClusterEnhancedAddSceneResponseParams not bound -!missing-type! MTRScenesClusterEnhancedViewSceneParams not bound -!missing-type! MTRScenesClusterEnhancedViewSceneResponseParams not bound -!missing-type! MTRScenesClusterExtensionFieldSet not bound -!missing-type! MTRScenesClusterGetSceneMembershipParams not bound -!missing-type! MTRScenesClusterGetSceneMembershipResponseParams not bound -!missing-type! MTRScenesClusterRecallSceneParams not bound -!missing-type! MTRScenesClusterRemoveAllScenesParams not bound -!missing-type! MTRScenesClusterRemoveAllScenesResponseParams not bound -!missing-type! MTRScenesClusterRemoveSceneParams not bound -!missing-type! MTRScenesClusterRemoveSceneResponseParams not bound -!missing-type! MTRScenesClusterStoreSceneParams not bound -!missing-type! MTRScenesClusterStoreSceneResponseParams not bound -!missing-type! MTRScenesClusterViewSceneParams not bound -!missing-type! MTRScenesClusterViewSceneResponseParams not bound !missing-type! MTRSetupPayload not bound !missing-type! MTRSoftwareDiagnosticsClusterResetWatermarksParams not bound !missing-type! MTRSoftwareDiagnosticsClusterSoftwareFaultEvent not bound @@ -2766,17 +2670,6 @@ !missing-selector! MTRClusterRelativeHumidityMeasurement::readAttributeMeasuredValueWithParams: not bound !missing-selector! MTRClusterRelativeHumidityMeasurement::readAttributeMinMeasuredValueWithParams: not bound !missing-selector! MTRClusterRelativeHumidityMeasurement::readAttributeToleranceWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeAcceptedCommandListWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeAttributeListWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeClusterRevisionWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeCurrentGroupWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeCurrentSceneWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeFeatureMapWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeGeneratedCommandListWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeLastConfiguredByWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeNameSupportWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeSceneCountWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeSceneValidWithParams: not bound !missing-selector! MTRClusterSoftwareDiagnostics::readAttributeAcceptedCommandListWithParams: not bound !missing-selector! MTRClusterSoftwareDiagnostics::readAttributeAttributeListWithParams: not bound !missing-selector! MTRClusterSoftwareDiagnostics::readAttributeClusterRevisionWithParams: not bound @@ -3209,7 +3102,6 @@ !missing-type! MTRClusterPressureMeasurement not bound !missing-type! MTRClusterPumpConfigurationAndControl not bound !missing-type! MTRClusterRelativeHumidityMeasurement not bound -!missing-type! MTRClusterScenes not bound !missing-type! MTRClusterSoftwareDiagnostics not bound !missing-type! MTRClusterSwitch not bound !missing-type! MTRClusterTargetNavigator not bound @@ -4026,17 +3918,6 @@ !missing-selector! +MTRBaseClusterRelativeHumidityMeasurement::readAttributeMeasuredValueWithClusterStateCache:endpoint:queue:completion: not bound !missing-selector! +MTRBaseClusterRelativeHumidityMeasurement::readAttributeMinMeasuredValueWithClusterStateCache:endpoint:queue:completion: not bound !missing-selector! +MTRBaseClusterRelativeHumidityMeasurement::readAttributeToleranceWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeAcceptedCommandListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeAttributeListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeClusterRevisionWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeCurrentGroupWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeCurrentSceneWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeFeatureMapWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeGeneratedCommandListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeLastConfiguredByWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeNameSupportWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeSceneCountWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeSceneValidWithClusterStateCache:endpoint:queue:completion: not bound !missing-selector! +MTRBaseClusterSoftwareDiagnostics::readAttributeAcceptedCommandListWithClusterStateCache:endpoint:queue:completion: not bound !missing-selector! +MTRBaseClusterSoftwareDiagnostics::readAttributeAttributeListWithClusterStateCache:endpoint:queue:completion: not bound !missing-selector! +MTRBaseClusterSoftwareDiagnostics::readAttributeClusterRevisionWithClusterStateCache:endpoint:queue:completion: not bound @@ -6394,39 +6275,6 @@ !missing-selector! MTRBaseClusterRelativeHumidityMeasurement::subscribeAttributeMeasuredValueWithParams:subscriptionEstablished:reportHandler: not bound !missing-selector! MTRBaseClusterRelativeHumidityMeasurement::subscribeAttributeMinMeasuredValueWithParams:subscriptionEstablished:reportHandler: not bound !missing-selector! MTRBaseClusterRelativeHumidityMeasurement::subscribeAttributeToleranceWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::addSceneWithParams:completion: not bound -!missing-selector! MTRBaseClusterScenes::copySceneWithParams:completion: not bound -!missing-selector! MTRBaseClusterScenes::enhancedAddSceneWithParams:completion: not bound -!missing-selector! MTRBaseClusterScenes::enhancedViewSceneWithParams:completion: not bound -!missing-selector! MTRBaseClusterScenes::getSceneMembershipWithParams:completion: not bound -!missing-selector! MTRBaseClusterScenes::initWithDevice:endpointID:queue: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeAcceptedCommandListWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeAttributeListWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeClusterRevisionWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeCurrentGroupWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeCurrentSceneWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeFeatureMapWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeGeneratedCommandListWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeLastConfiguredByWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeNameSupportWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeSceneCountWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeSceneValidWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::recallSceneWithParams:completion: not bound -!missing-selector! MTRBaseClusterScenes::removeAllScenesWithParams:completion: not bound -!missing-selector! MTRBaseClusterScenes::removeSceneWithParams:completion: not bound -!missing-selector! MTRBaseClusterScenes::storeSceneWithParams:completion: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeAcceptedCommandListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeAttributeListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeClusterRevisionWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeCurrentGroupWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeCurrentSceneWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeFeatureMapWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeGeneratedCommandListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeLastConfiguredByWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeNameSupportWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeSceneCountWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeSceneValidWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::viewSceneWithParams:completion: not bound !missing-selector! MTRBaseClusterSoftwareDiagnostics::initWithDevice:endpointID:queue: not bound !missing-selector! MTRBaseClusterSoftwareDiagnostics::readAttributeAcceptedCommandListWithCompletion: not bound !missing-selector! MTRBaseClusterSoftwareDiagnostics::readAttributeAttributeListWithCompletion: not bound @@ -7717,17 +7565,6 @@ !missing-selector! MTRClusterPressureMeasurement::initWithDevice:endpointID:queue: not bound !missing-selector! MTRClusterPumpConfigurationAndControl::initWithDevice:endpointID:queue: not bound !missing-selector! MTRClusterRelativeHumidityMeasurement::initWithDevice:endpointID:queue: not bound -!missing-selector! MTRClusterScenes::addSceneWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterScenes::copySceneWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterScenes::enhancedAddSceneWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterScenes::enhancedViewSceneWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterScenes::getSceneMembershipWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterScenes::initWithDevice:endpointID:queue: not bound -!missing-selector! MTRClusterScenes::recallSceneWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterScenes::removeAllScenesWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterScenes::removeSceneWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterScenes::storeSceneWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterScenes::viewSceneWithParams:expectedValues:expectedValueInterval:completion: not bound !missing-selector! MTRClusterSoftwareDiagnostics::initWithDevice:endpointID:queue: not bound !missing-selector! MTRClusterSoftwareDiagnostics::resetWatermarksWithExpectedValues:expectedValueInterval:completion: not bound !missing-selector! MTRClusterSoftwareDiagnostics::resetWatermarksWithParams:expectedValues:expectedValueInterval:completion: not bound @@ -8571,102 +8408,6 @@ !missing-selector! MTRReadParams::setFilterByFabric: not bound !missing-selector! MTRReadParams::setMinEventNumber: not bound !missing-selector! MTRReadParams::shouldFilterByFabric not bound -!missing-selector! MTRScenesClusterAddSceneParams::groupID not bound -!missing-selector! MTRScenesClusterAddSceneParams::sceneID not bound -!missing-selector! MTRScenesClusterAddSceneParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterAddSceneParams::setGroupID: not bound -!missing-selector! MTRScenesClusterAddSceneParams::setSceneID: not bound -!missing-selector! MTRScenesClusterAddSceneParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterAddSceneResponseParams::groupID not bound -!missing-selector! MTRScenesClusterAddSceneResponseParams::sceneID not bound -!missing-selector! MTRScenesClusterAddSceneResponseParams::setGroupID: not bound -!missing-selector! MTRScenesClusterAddSceneResponseParams::setSceneID: not bound -!missing-selector! MTRScenesClusterAttributeValuePair::attributeID not bound -!missing-selector! MTRScenesClusterAttributeValuePair::setAttributeID: not bound -!missing-selector! MTRScenesClusterCopySceneParams::groupIdentifierFrom not bound -!missing-selector! MTRScenesClusterCopySceneParams::groupIdentifierTo not bound -!missing-selector! MTRScenesClusterCopySceneParams::sceneIdentifierFrom not bound -!missing-selector! MTRScenesClusterCopySceneParams::sceneIdentifierTo not bound -!missing-selector! MTRScenesClusterCopySceneParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterCopySceneParams::setGroupIdentifierFrom: not bound -!missing-selector! MTRScenesClusterCopySceneParams::setGroupIdentifierTo: not bound -!missing-selector! MTRScenesClusterCopySceneParams::setSceneIdentifierFrom: not bound -!missing-selector! MTRScenesClusterCopySceneParams::setSceneIdentifierTo: not bound -!missing-selector! MTRScenesClusterCopySceneParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterCopySceneResponseParams::groupIdentifierFrom not bound -!missing-selector! MTRScenesClusterCopySceneResponseParams::sceneIdentifierFrom not bound -!missing-selector! MTRScenesClusterCopySceneResponseParams::setGroupIdentifierFrom: not bound -!missing-selector! MTRScenesClusterCopySceneResponseParams::setSceneIdentifierFrom: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::groupID not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::sceneID not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::setGroupID: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::setSceneID: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneResponseParams::groupID not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneResponseParams::sceneID not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneResponseParams::setGroupID: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneResponseParams::setSceneID: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneParams::groupID not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneParams::sceneID not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneParams::setGroupID: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneParams::setSceneID: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::groupID not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::sceneID not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::setGroupID: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::setSceneID: not bound -!missing-selector! MTRScenesClusterExtensionFieldSet::clusterID not bound -!missing-selector! MTRScenesClusterExtensionFieldSet::setClusterID: not bound -!missing-selector! MTRScenesClusterGetSceneMembershipParams::groupID not bound -!missing-selector! MTRScenesClusterGetSceneMembershipParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterGetSceneMembershipParams::setGroupID: not bound -!missing-selector! MTRScenesClusterGetSceneMembershipParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterGetSceneMembershipResponseParams::groupID not bound -!missing-selector! MTRScenesClusterGetSceneMembershipResponseParams::setGroupID: not bound -!missing-selector! MTRScenesClusterRecallSceneParams::groupID not bound -!missing-selector! MTRScenesClusterRecallSceneParams::sceneID not bound -!missing-selector! MTRScenesClusterRecallSceneParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterRecallSceneParams::setGroupID: not bound -!missing-selector! MTRScenesClusterRecallSceneParams::setSceneID: not bound -!missing-selector! MTRScenesClusterRecallSceneParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterRemoveAllScenesParams::groupID not bound -!missing-selector! MTRScenesClusterRemoveAllScenesParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterRemoveAllScenesParams::setGroupID: not bound -!missing-selector! MTRScenesClusterRemoveAllScenesParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterRemoveAllScenesResponseParams::groupID not bound -!missing-selector! MTRScenesClusterRemoveAllScenesResponseParams::setGroupID: not bound -!missing-selector! MTRScenesClusterRemoveSceneParams::groupID not bound -!missing-selector! MTRScenesClusterRemoveSceneParams::sceneID not bound -!missing-selector! MTRScenesClusterRemoveSceneParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterRemoveSceneParams::setGroupID: not bound -!missing-selector! MTRScenesClusterRemoveSceneParams::setSceneID: not bound -!missing-selector! MTRScenesClusterRemoveSceneParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterRemoveSceneResponseParams::groupID not bound -!missing-selector! MTRScenesClusterRemoveSceneResponseParams::sceneID not bound -!missing-selector! MTRScenesClusterRemoveSceneResponseParams::setGroupID: not bound -!missing-selector! MTRScenesClusterRemoveSceneResponseParams::setSceneID: not bound -!missing-selector! MTRScenesClusterStoreSceneParams::groupID not bound -!missing-selector! MTRScenesClusterStoreSceneParams::sceneID not bound -!missing-selector! MTRScenesClusterStoreSceneParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterStoreSceneParams::setGroupID: not bound -!missing-selector! MTRScenesClusterStoreSceneParams::setSceneID: not bound -!missing-selector! MTRScenesClusterStoreSceneParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterStoreSceneResponseParams::groupID not bound -!missing-selector! MTRScenesClusterStoreSceneResponseParams::sceneID not bound -!missing-selector! MTRScenesClusterStoreSceneResponseParams::setGroupID: not bound -!missing-selector! MTRScenesClusterStoreSceneResponseParams::setSceneID: not bound -!missing-selector! MTRScenesClusterViewSceneParams::groupID not bound -!missing-selector! MTRScenesClusterViewSceneParams::sceneID not bound -!missing-selector! MTRScenesClusterViewSceneParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterViewSceneParams::setGroupID: not bound -!missing-selector! MTRScenesClusterViewSceneParams::setSceneID: not bound -!missing-selector! MTRScenesClusterViewSceneParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::groupID not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::sceneID not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::setGroupID: not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::setSceneID: not bound !missing-selector! MTRSetupPayload::discoveryCapabilities not bound !missing-selector! MTRSetupPayload::initWithSetupPasscode:discriminator: not bound !missing-selector! MTRSetupPayload::qrCodeString: not bound @@ -9199,3 +8940,774 @@ !missing-type! MTRUnitTestingClusterTestStructArrayArgumentResponseParams not bound !missing-type! MTRUnitTestingClusterTestUnknownCommandParams not bound !missing-type! MTRUnitTestingClusterTimedInvokeRequestParams not bound +!missing-enum! MTRBasicInformationColor not bound +!missing-enum! MTRBasicInformationProductFinish not bound +!missing-enum! MTRBridgedDeviceBasicInformationColor not bound +!missing-enum! MTRBridgedDeviceBasicInformationProductFinish not bound +!missing-enum! MTRDiagnosticLogsIntent not bound +!missing-enum! MTRDiagnosticLogsStatus not bound +!missing-enum! MTRDiagnosticLogsTransferProtocol not bound +!missing-enum! MTREventPriority not bound +!missing-enum! MTREventTimeType not bound +!missing-enum! MTRGroupsFeature not bound +!missing-enum! MTRGroupsNameSupportBitmap not bound +!missing-enum! MTRNetworkCommissioningWiFiSecurityBitmap not bound +!missing-enum! MTROccupancySensingOccupancyBitmap not bound +!missing-enum! MTROccupancySensingOccupancySensorType not bound +!missing-enum! MTROccupancySensingOccupancySensorTypeBitmap not bound +!missing-enum! MTRPowerSourceBatApprovedChemistry not bound +!missing-enum! MTRPowerSourceBatCommonDesignation not bound +!missing-enum! MTRPressureMeasurementFeature not bound +!missing-enum! MTRPumpConfigurationAndControlControlMode not bound +!missing-enum! MTRPumpConfigurationAndControlFeature not bound +!missing-enum! MTRPumpConfigurationAndControlOperationMode not bound +!missing-enum! MTRPumpConfigurationAndControlPumpStatusBitmap not bound +!missing-enum! MTRWiFiNetworkDiagnosticsConnectionStatus not bound +!missing-enum! MTRWiFiNetworkDiagnosticsWiFiVersion not bound +!missing-field! MTREventNumberKey not bound +!missing-field! MTREventPriorityKey not bound +!missing-field! MTREventSystemUpTimeKey not bound +!missing-field! MTREventTimestampDateKey not bound +!missing-field! MTREventTimeTypeKey not bound +!missing-selector! +MTRAttributeRequestPath::requestPathWithEndpointID:clusterID:attributeID: not bound +!missing-selector! +MTRBaseClusterBasicInformation::readAttributeProductAppearanceWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterBridgedDeviceBasicInformation::readAttributeProductAppearanceWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRCertificates::createIntermediateCertificate:rootCertificate:intermediatePublicKey:issuerID:fabricID:validityPeriod:error: not bound +!missing-selector! +MTRCertificates::createOperationalCertificate:signingCertificate:operationalPublicKey:fabricID:nodeID:caseAuthenticatedTags:validityPeriod:error: not bound +!missing-selector! +MTRCertificates::createRootCertificate:issuerID:fabricID:validityPeriod:error: not bound +!missing-selector! +MTRDeviceController::xpcInterfaceForClientProtocol not bound +!missing-selector! +MTRDeviceController::xpcInterfaceForServerProtocol not bound +!missing-selector! +MTREventRequestPath::requestPathWithEndpointID:clusterID:eventID: not bound +!missing-selector! MTRAccessControlClusterAccessControlTargetStruct::cluster not bound +!missing-selector! MTRAccessControlClusterAccessControlTargetStruct::deviceType not bound +!missing-selector! MTRAccessControlClusterAccessControlTargetStruct::endpoint not bound +!missing-selector! MTRAccessControlClusterAccessControlTargetStruct::setCluster: not bound +!missing-selector! MTRAccessControlClusterAccessControlTargetStruct::setDeviceType: not bound +!missing-selector! MTRAccessControlClusterAccessControlTargetStruct::setEndpoint: not bound +!missing-selector! MTRAccountLoginClusterGetSetupPINResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRApplicationLauncherClusterLauncherResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRAttributeReport::initWithResponseValue:error: not bound +!missing-selector! MTRAttributeRequestPath::attribute not bound +!missing-selector! MTRAttributeRequestPath::cluster not bound +!missing-selector! MTRAttributeRequestPath::endpoint not bound +!missing-selector! MTRBaseClusterBasicInformation::readAttributeProductAppearanceWithCompletion: not bound +!missing-selector! MTRBaseClusterBasicInformation::subscribeAttributeProductAppearanceWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterBridgedDeviceBasicInformation::readAttributeProductAppearanceWithCompletion: not bound +!missing-selector! MTRBaseClusterBridgedDeviceBasicInformation::subscribeAttributeProductAppearanceWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterGroupKeyManagement::keySetReadAllIndicesWithCompletion: not bound +!missing-selector! MTRBaseDevice::openCommissioningWindowWithDiscriminator:duration:queue:completion: not bound +!missing-selector! MTRBaseDevice::readAttributePaths:eventPaths:params:queue:completion: not bound +!missing-selector! MTRBaseDevice::subscribeToAttributePaths:eventPaths:params:queue:reportHandler:subscriptionEstablished:resubscriptionScheduled: not bound +!missing-selector! MTRBasicInformationClusterProductAppearanceStruct::finish not bound +!missing-selector! MTRBasicInformationClusterProductAppearanceStruct::primaryColor not bound +!missing-selector! MTRBasicInformationClusterProductAppearanceStruct::setFinish: not bound +!missing-selector! MTRBasicInformationClusterProductAppearanceStruct::setPrimaryColor: not bound +!missing-selector! MTRBridgedDeviceBasicInformationClusterProductAppearanceStruct::finish not bound +!missing-selector! MTRBridgedDeviceBasicInformationClusterProductAppearanceStruct::primaryColor not bound +!missing-selector! MTRBridgedDeviceBasicInformationClusterProductAppearanceStruct::setFinish: not bound +!missing-selector! MTRBridgedDeviceBasicInformationClusterProductAppearanceStruct::setPrimaryColor: not bound +!missing-selector! MTRChannelClusterChangeChannelResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRClusterBasicInformation::readAttributeProductAppearanceWithParams: not bound +!missing-selector! MTRClusterBridgedDeviceBasicInformation::readAttributeProductAppearanceWithParams: not bound +!missing-selector! MTRClusterGroupKeyManagement::keySetReadAllIndicesWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRCommissioningParameters::countryCode not bound +!missing-selector! MTRCommissioningParameters::setCountryCode: not bound +!missing-selector! MTRCommissioningParameters::setSkipCommissioningComplete: not bound +!missing-selector! MTRCommissioningParameters::skipCommissioningComplete not bound +!missing-selector! MTRContentLauncherClusterLauncherResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRDevice::estimatedStartTime not bound +!missing-selector! MTRDevice::openCommissioningWindowWithDiscriminator:duration:queue:completion: not bound +!missing-selector! MTRDeviceAttestationDeviceInfo::basicInformationProductID not bound +!missing-selector! MTRDeviceAttestationDeviceInfo::basicInformationVendorID not bound +!missing-selector! MTRDeviceControllerFactory::knownFabrics not bound +!missing-selector! MTRDeviceControllerStartupParams::caseAuthenticatedTags not bound +!missing-selector! MTRDeviceControllerStartupParams::setCaseAuthenticatedTags: not bound +!missing-selector! MTRDiagnosticLogsClusterRetrieveLogsResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRDoorLockClusterGetCredentialStatusResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRDoorLockClusterGetHolidayScheduleResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRDoorLockClusterGetUserResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRDoorLockClusterGetWeekDayScheduleResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRDoorLockClusterGetYearDayScheduleResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRDoorLockClusterSetCredentialResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRElectricalMeasurementClusterGetMeasurementProfileResponseCommandParams::initWithResponseValue:error: not bound +!missing-selector! MTRElectricalMeasurementClusterGetProfileInfoResponseCommandParams::initWithResponseValue:error: not bound +!missing-selector! MTREventReport::eventTimeType not bound +!missing-selector! MTREventReport::initWithResponseValue:error: not bound +!missing-selector! MTREventReport::systemUpTime not bound +!missing-selector! MTREventReport::timestampDate not bound +!missing-selector! MTREventRequestPath::cluster not bound +!missing-selector! MTREventRequestPath::endpoint not bound +!missing-selector! MTREventRequestPath::event not bound +!missing-selector! MTRFabricInfo::fabricID not bound +!missing-selector! MTRFabricInfo::fabricIndex not bound +!missing-selector! MTRFabricInfo::intermediateCertificate not bound +!missing-selector! MTRFabricInfo::intermediateCertificateTLV not bound +!missing-selector! MTRFabricInfo::label not bound +!missing-selector! MTRFabricInfo::nodeID not bound +!missing-selector! MTRFabricInfo::operationalCertificate not bound +!missing-selector! MTRFabricInfo::operationalCertificateTLV not bound +!missing-selector! MTRFabricInfo::rootCertificate not bound +!missing-selector! MTRFabricInfo::rootCertificateTLV not bound +!missing-selector! MTRFabricInfo::rootPublicKey not bound +!missing-selector! MTRFabricInfo::vendorID not bound +!missing-selector! MTRGeneralCommissioningClusterArmFailSafeResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRGeneralCommissioningClusterCommissioningCompleteResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRGeneralCommissioningClusterSetRegulatoryConfigResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRGroupKeyManagementClusterKeySetReadAllIndicesResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRGroupKeyManagementClusterKeySetReadResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRGroupsClusterAddGroupResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRGroupsClusterGetGroupMembershipResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRGroupsClusterRemoveGroupResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRGroupsClusterViewGroupResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRKeypadInputClusterSendKeyResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRMediaPlaybackClusterPlaybackResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRNetworkCommissioningClusterConnectNetworkResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRNetworkCommissioningClusterNetworkConfigResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRNetworkCommissioningClusterNetworkInfoStruct::connected not bound +!missing-selector! MTRNetworkCommissioningClusterNetworkInfoStruct::networkID not bound +!missing-selector! MTRNetworkCommissioningClusterNetworkInfoStruct::setConnected: not bound +!missing-selector! MTRNetworkCommissioningClusterNetworkInfoStruct::setNetworkID: not bound +!missing-selector! MTRNetworkCommissioningClusterScanNetworksResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::channel not bound +!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::extendedAddress not bound +!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::extendedPanId not bound +!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::lqi not bound +!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::networkName not bound +!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::panId not bound +!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::rssi not bound +!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::setChannel: not bound +!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::setExtendedAddress: not bound +!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::setExtendedPanId: not bound +!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::setLqi: not bound +!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::setNetworkName: not bound +!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::setPanId: not bound +!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::setRssi: not bound +!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::setVersion: not bound +!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::version not bound +!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::bssid not bound +!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::channel not bound +!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::rssi not bound +!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::security not bound +!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::setBssid: not bound +!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::setChannel: not bound +!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::setRssi: not bound +!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::setSecurity: not bound +!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::setSsid: not bound +!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::setWiFiBand: not bound +!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::ssid not bound +!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::wiFiBand not bound +!missing-selector! MTROperationalCredentialsClusterAttestationResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTROperationalCredentialsClusterCertificateChainResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTROperationalCredentialsClusterCSRResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTROperationalCredentialsClusterNOCResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTROperationalCSRInfo::initWithCSRElementsTLV:attestationSignature: not bound +!missing-selector! MTROperationalCSRInfo::initWithCSRNonce:csrElementsTLV:attestationSignature: not bound +!missing-selector! MTROperationalCSRInfo::initWithCSRResponseParams: not bound +!missing-selector! MTROTASoftwareUpdateProviderClusterApplyUpdateResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTROTASoftwareUpdateProviderClusterQueryImageResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRProductIdentity::initWithVendorID:productID: not bound +!missing-selector! MTRProductIdentity::productID not bound +!missing-selector! MTRProductIdentity::vendorID not bound +!missing-selector! MTRTargetNavigatorClusterNavigateTargetResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRThermostatClusterGetWeeklyScheduleResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::age not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::averageRssi not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::extAddress not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::frameErrorRate not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::fullNetworkData not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::fullThreadDevice not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::isChild not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::lastRssi not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::linkFrameCounter not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::lqi not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::messageErrorRate not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::mleFrameCounter not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::rloc16 not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::rxOnWhenIdle not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setAge: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setAverageRssi: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setExtAddress: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setFrameErrorRate: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setFullNetworkData: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setFullThreadDevice: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setIsChild: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setLastRssi: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setLinkFrameCounter: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setLqi: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setMessageErrorRate: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setMleFrameCounter: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setRloc16: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setRxOnWhenIdle: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::age not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::allocated not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::extAddress not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::linkEstablished not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::lqiIn not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::lqiOut not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::nextHop not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::pathCost not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::rloc16 not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::routerId not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::setAge: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::setAllocated: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::setExtAddress: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::setLinkEstablished: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::setLqiIn: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::setLqiOut: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::setNextHop: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::setPathCost: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::setRloc16: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::setRouterId: not bound +!missing-selector! MTRTimeSynchronizationClusterDSTOffsetStruct::offset not bound +!missing-selector! MTRTimeSynchronizationClusterDSTOffsetStruct::setOffset: not bound +!missing-selector! MTRTimeSynchronizationClusterDSTOffsetStruct::setValidStarting: not bound +!missing-selector! MTRTimeSynchronizationClusterDSTOffsetStruct::setValidUntil: not bound +!missing-selector! MTRTimeSynchronizationClusterDSTOffsetStruct::validStarting not bound +!missing-selector! MTRTimeSynchronizationClusterDSTOffsetStruct::validUntil not bound +!missing-selector! MTRTimeSynchronizationClusterTimeZoneStruct::name not bound +!missing-selector! MTRTimeSynchronizationClusterTimeZoneStruct::offset not bound +!missing-selector! MTRTimeSynchronizationClusterTimeZoneStruct::setName: not bound +!missing-selector! MTRTimeSynchronizationClusterTimeZoneStruct::setOffset: not bound +!missing-selector! MTRTimeSynchronizationClusterTimeZoneStruct::setValidAt: not bound +!missing-selector! MTRTimeSynchronizationClusterTimeZoneStruct::validAt not bound +!missing-selector! MTRUnitTestingClusterBooleanResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRUnitTestingClusterSimpleStructResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRUnitTestingClusterTestAddArgumentsResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRUnitTestingClusterTestComplexNullableOptionalResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRUnitTestingClusterTestEmitTestEventResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRUnitTestingClusterTestEmitTestFabricScopedEventResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRUnitTestingClusterTestEnumsResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRUnitTestingClusterTestListInt8UReverseResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRUnitTestingClusterTestNullableOptionalResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRUnitTestingClusterTestSimpleArgumentResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRUnitTestingClusterTestSpecificResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRUnitTestingClusterTestStructArrayArgumentResponseParams::initWithResponseValue:error: not bound +!missing-type! MTRAccessControlClusterAccessControlTargetStruct not bound +!missing-type! MTRAttributeRequestPath not bound +!missing-type! MTRBasicInformationClusterProductAppearanceStruct not bound +!missing-type! MTRBridgedDeviceBasicInformationClusterProductAppearanceStruct not bound +!missing-type! MTREventRequestPath not bound +!missing-type! MTRFabricInfo not bound +!missing-type! MTRNetworkCommissioningClusterNetworkInfoStruct not bound +!missing-type! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct not bound +!missing-type! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct not bound +!missing-type! MTRProductIdentity not bound +!missing-type! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct not bound +!missing-type! MTRThreadNetworkDiagnosticsClusterRouteTableStruct not bound +!missing-type! MTRTimeSynchronizationClusterDSTOffsetStruct not bound +!missing-type! MTRTimeSynchronizationClusterTimeZoneStruct not bound +!missing-enum! MTRFanControlFanMode not bound +!missing-enum! MTRFanControlFanModeSequence not bound +!missing-enum! MTRFanControlRockBitmap not bound +!missing-enum! MTRFanControlWindBitmap not bound +!missing-protocol! MTRCommissionableBrowserDelegate not bound +!missing-selector! MTRCommissionableBrowserResult::commissioningMode not bound +!missing-selector! MTRCommissionableBrowserResult::discriminator not bound +!missing-selector! MTRCommissionableBrowserResult::instanceName not bound +!missing-selector! MTRCommissionableBrowserResult::productID not bound +!missing-selector! MTRCommissionableBrowserResult::vendorID not bound +!missing-selector! MTRDeviceController::setupCommissioningSessionWithDiscoveredDevice:payload:newNodeID:error: not bound +!missing-selector! MTRDeviceController::startBrowseForCommissionables:queue: not bound +!missing-selector! MTRDeviceController::stopBrowseForCommissionables not bound +!missing-selector! MTRModeSelectClusterSemanticTagStruct::mfgCode not bound +!missing-selector! MTRModeSelectClusterSemanticTagStruct::setMfgCode: not bound +!missing-selector! MTRModeSelectClusterSemanticTagStruct::setValue: not bound +!missing-selector! MTRModeSelectClusterSemanticTagStruct::value not bound +!missing-type! MTRCommissionableBrowserResult not bound +!missing-enum! MTROnOffControlBitmap not bound +!missing-enum! MTROTASoftwareUpdateProviderApplyUpdateAction not bound +!missing-enum! MTROTASoftwareUpdateProviderDownloadProtocol not bound +!missing-enum! MTROTASoftwareUpdateProviderStatus not bound +!missing-enum! MTROTASoftwareUpdateRequestorAnnouncementReason not bound +!missing-enum! MTROTASoftwareUpdateRequestorChangeReason not bound +!missing-enum! MTROTASoftwareUpdateRequestorUpdateState not bound +!missing-enum! MTRTimeFormatLocalizationFeature not bound +!missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::granularity not bound +!missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::serverSideProcessingTimeout not bound +!missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::setGranularity: not bound +!missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::setTimeSource: not bound +!missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::setUtcTime: not bound +!missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::timedInvokeTimeoutMs not bound +!missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::timeSource not bound +!missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::utcTime not bound +!missing-type! MTRTimeSynchronizationClusterSetUTCTimeParams not bound +!missing-enum! MTRAdministratorCommissioningFeature not bound +!missing-enum! MTRContentLauncherStatus not bound +!missing-enum! MTRContentLauncherSupportedProtocolsBitmap not bound +!missing-enum! MTRKeypadInputCECKeyCode not bound +!missing-enum! MTRLevelControlOptionsBitmap not bound +!missing-enum! MTROperationalState not bound +!missing-enum! MTROperationalStateErrorState not bound +!missing-enum! MTRRVCCleanModeFeature not bound +!missing-enum! MTRRVCCleanModeModeTag not bound +!missing-enum! MTRRVCCleanModeStatusCode not bound +!missing-enum! MTRRVCOperationalStateErrorState not bound +!missing-enum! MTRRVCOperationalStateOperationalState not bound +!missing-enum! MTRRVCRunModeFeature not bound +!missing-enum! MTRRVCRunModeModeTag not bound +!missing-enum! MTRRVCRunModeStatusCode not bound +!missing-enum! MTRThermostatControlSequenceOfOperation not bound +!missing-enum! MTRThermostatScheduleDayOfWeekBitmap not bound +!missing-enum! MTRThermostatScheduleModeBitmap not bound +!missing-enum! MTRThermostatSetpointRaiseLowerMode not bound +!missing-enum! MTRThermostatUserInterfaceConfigurationKeypadLockout not bound +!missing-enum! MTRThermostatUserInterfaceConfigurationScheduleProgrammingVisibility not bound +!missing-enum! MTRThermostatUserInterfaceConfigurationTemperatureDisplayMode not bound +!missing-field! MTREventIsHistoricalKey not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeAcceptedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeAttributeListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeClusterRevisionWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeCountdownTimeWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeCurrentPhaseWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeFeatureMapWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeGeneratedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeOperationalErrorWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeOperationalStateListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeOperationalStateWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributePhaseListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterPowerSource::readAttributeEndpointListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeAcceptedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeAttributeListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeClusterRevisionWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeCurrentModeWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeFeatureMapWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeGeneratedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeSupportedModesWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeAcceptedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeAttributeListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeClusterRevisionWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeCountdownTimeWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeCurrentPhaseWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeFeatureMapWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeGeneratedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeOperationalErrorWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeOperationalStateListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeOperationalStateWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributePhaseListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeAcceptedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeAttributeListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeClusterRevisionWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeCurrentModeWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeFeatureMapWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeGeneratedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeSupportedModesWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! MTRBaseClusterApplicationLauncher::hideAppWithCompletion: not bound +!missing-selector! MTRBaseClusterApplicationLauncher::launchAppWithCompletion: not bound +!missing-selector! MTRBaseClusterApplicationLauncher::stopAppWithCompletion: not bound +!missing-selector! MTRBaseClusterDoorLock::lockDoorWithCompletion: not bound +!missing-selector! MTRBaseClusterDoorLock::unlockDoorWithCompletion: not bound +!missing-selector! MTRBaseClusterNetworkCommissioning::scanNetworksWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRBaseClusterOperationalState::pauseWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::pauseWithParams:completion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeAcceptedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeAttributeListWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeClusterRevisionWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeCountdownTimeWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeCurrentPhaseWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeFeatureMapWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeGeneratedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeOperationalErrorWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeOperationalStateListWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeOperationalStateWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributePhaseListWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::resumeWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::resumeWithParams:completion: not bound +!missing-selector! MTRBaseClusterOperationalState::startWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::startWithParams:completion: not bound +!missing-selector! MTRBaseClusterOperationalState::stopWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::stopWithParams:completion: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeAcceptedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeAttributeListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeClusterRevisionWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeCountdownTimeWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeCurrentPhaseWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeFeatureMapWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeGeneratedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeOperationalErrorWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeOperationalStateListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeOperationalStateWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributePhaseListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterPowerSource::readAttributeEndpointListWithCompletion: not bound +!missing-selector! MTRBaseClusterPowerSource::subscribeAttributeEndpointListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::changeToModeWithParams:completion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeAcceptedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeAttributeListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeClusterRevisionWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeCurrentModeWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeFeatureMapWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeGeneratedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeSupportedModesWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeAcceptedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeAttributeListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeClusterRevisionWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeCurrentModeWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeFeatureMapWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeGeneratedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeSupportedModesWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::pauseWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::pauseWithParams:completion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeAcceptedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeAttributeListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeClusterRevisionWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeCountdownTimeWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeCurrentPhaseWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeFeatureMapWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeGeneratedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeOperationalErrorWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeOperationalStateListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeOperationalStateWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributePhaseListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::resumeWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::resumeWithParams:completion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeAcceptedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeAttributeListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeClusterRevisionWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeCountdownTimeWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeCurrentPhaseWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeFeatureMapWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeGeneratedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeOperationalErrorWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeOperationalStateListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeOperationalStateWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributePhaseListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::changeToModeWithParams:completion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeAcceptedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeAttributeListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeClusterRevisionWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeCurrentModeWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeFeatureMapWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeGeneratedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeSupportedModesWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeAcceptedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeAttributeListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeClusterRevisionWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeCurrentModeWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeFeatureMapWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeGeneratedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeSupportedModesWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterUnitTesting::testNullableOptionalRequestWithCompletion: not bound +!missing-selector! MTRBaseClusterUnitTesting::testSimpleOptionalArgumentRequestWithCompletion: not bound +!missing-selector! MTRCluster::endpointID not bound +!missing-selector! MTRClusterApplicationLauncher::hideAppWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterApplicationLauncher::launchAppWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterApplicationLauncher::stopAppWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterDoorLock::lockDoorWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterDoorLock::unlockDoorWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterNetworkCommissioning::scanNetworksWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRClusterOperationalState::pauseWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::pauseWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::readAttributeAcceptedCommandListWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeAttributeListWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeClusterRevisionWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeCountdownTimeWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeCurrentPhaseWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeFeatureMapWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeGeneratedCommandListWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeOperationalErrorWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeOperationalStateListWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeOperationalStateWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributePhaseListWithParams: not bound +!missing-selector! MTRClusterOperationalState::resumeWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::resumeWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::startWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::startWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::stopWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::stopWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterPowerSource::readAttributeEndpointListWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::changeToModeWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterRVCCleanMode::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeAcceptedCommandListWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeAttributeListWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeClusterRevisionWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeCurrentModeWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeFeatureMapWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeGeneratedCommandListWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeSupportedModesWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRClusterRVCOperationalState::pauseWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterRVCOperationalState::pauseWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeAcceptedCommandListWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeAttributeListWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeClusterRevisionWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeCountdownTimeWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeCurrentPhaseWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeFeatureMapWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeGeneratedCommandListWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeOperationalErrorWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeOperationalStateListWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeOperationalStateWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributePhaseListWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::resumeWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterRVCOperationalState::resumeWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterRVCRunMode::changeToModeWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterRVCRunMode::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeAcceptedCommandListWithParams: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeAttributeListWithParams: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeClusterRevisionWithParams: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeCurrentModeWithParams: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeFeatureMapWithParams: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeGeneratedCommandListWithParams: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeSupportedModesWithParams: not bound +!missing-selector! MTRClusterUnitTesting::testNullableOptionalRequestWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterUnitTesting::testSimpleOptionalArgumentRequestWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRDevice::deviceController not bound +!missing-selector! MTRDevice::invokeCommandWithEndpointID:clusterID:commandID:commandFields:expectedValues:expectedValueInterval:queue:completion: not bound +!missing-selector! MTRDevice::nodeID not bound +!missing-selector! MTRGenericCluster::device not bound +!missing-selector! MTROperationalStateClusterErrorStateStruct::errorStateDetails not bound +!missing-selector! MTROperationalStateClusterErrorStateStruct::errorStateID not bound +!missing-selector! MTROperationalStateClusterErrorStateStruct::errorStateLabel not bound +!missing-selector! MTROperationalStateClusterErrorStateStruct::setErrorStateDetails: not bound +!missing-selector! MTROperationalStateClusterErrorStateStruct::setErrorStateID: not bound +!missing-selector! MTROperationalStateClusterErrorStateStruct::setErrorStateLabel: not bound +!missing-selector! MTROperationalStateClusterOperationalCommandResponseParams::commandResponseState not bound +!missing-selector! MTROperationalStateClusterOperationalCommandResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTROperationalStateClusterOperationalCommandResponseParams::setCommandResponseState: not bound +!missing-selector! MTROperationalStateClusterOperationalErrorEvent::errorState not bound +!missing-selector! MTROperationalStateClusterOperationalErrorEvent::setErrorState: not bound +!missing-selector! MTROperationalStateClusterOperationalStateStruct::operationalStateID not bound +!missing-selector! MTROperationalStateClusterOperationalStateStruct::operationalStateLabel not bound +!missing-selector! MTROperationalStateClusterOperationalStateStruct::setOperationalStateID: not bound +!missing-selector! MTROperationalStateClusterOperationalStateStruct::setOperationalStateLabel: not bound +!missing-selector! MTROperationalStateClusterOperationCompletionEvent::completionErrorCode not bound +!missing-selector! MTROperationalStateClusterOperationCompletionEvent::pausedTime not bound +!missing-selector! MTROperationalStateClusterOperationCompletionEvent::setCompletionErrorCode: not bound +!missing-selector! MTROperationalStateClusterOperationCompletionEvent::setPausedTime: not bound +!missing-selector! MTROperationalStateClusterOperationCompletionEvent::setTotalOperationalTime: not bound +!missing-selector! MTROperationalStateClusterOperationCompletionEvent::totalOperationalTime not bound +!missing-selector! MTROperationalStateClusterPauseParams::serverSideProcessingTimeout not bound +!missing-selector! MTROperationalStateClusterPauseParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTROperationalStateClusterPauseParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTROperationalStateClusterPauseParams::timedInvokeTimeoutMs not bound +!missing-selector! MTROperationalStateClusterResumeParams::serverSideProcessingTimeout not bound +!missing-selector! MTROperationalStateClusterResumeParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTROperationalStateClusterResumeParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTROperationalStateClusterResumeParams::timedInvokeTimeoutMs not bound +!missing-selector! MTROperationalStateClusterStartParams::serverSideProcessingTimeout not bound +!missing-selector! MTROperationalStateClusterStartParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTROperationalStateClusterStartParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTROperationalStateClusterStartParams::timedInvokeTimeoutMs not bound +!missing-selector! MTROperationalStateClusterStopParams::serverSideProcessingTimeout not bound +!missing-selector! MTROperationalStateClusterStopParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTROperationalStateClusterStopParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTROperationalStateClusterStopParams::timedInvokeTimeoutMs not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::getNewMode not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::serverSideProcessingTimeout not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::setNewMode: not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::timedInvokeTimeoutMs not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeResponseParams::setStatus: not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeResponseParams::setStatusText: not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeResponseParams::status not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeResponseParams::statusText not bound +!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::label not bound +!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::mode not bound +!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::modeTags not bound +!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::setLabel: not bound +!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::setMode: not bound +!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::setModeTags: not bound +!missing-selector! MTRRVCCleanModeClusterModeTagStruct::mfgCode not bound +!missing-selector! MTRRVCCleanModeClusterModeTagStruct::setMfgCode: not bound +!missing-selector! MTRRVCCleanModeClusterModeTagStruct::setValue: not bound +!missing-selector! MTRRVCCleanModeClusterModeTagStruct::value not bound +!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::errorStateDetails not bound +!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::errorStateID not bound +!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::errorStateLabel not bound +!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::setErrorStateDetails: not bound +!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::setErrorStateID: not bound +!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::setErrorStateLabel: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalCommandResponseParams::commandResponseState not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalCommandResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalCommandResponseParams::setCommandResponseState: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalErrorEvent::errorState not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalErrorEvent::setErrorState: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalStateStruct::operationalStateID not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalStateStruct::operationalStateLabel not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalStateStruct::setOperationalStateID: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalStateStruct::setOperationalStateLabel: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::completionErrorCode not bound +!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::pausedTime not bound +!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::setCompletionErrorCode: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::setPausedTime: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::setTotalOperationalTime: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::totalOperationalTime not bound +!missing-selector! MTRRVCOperationalStateClusterPauseParams::serverSideProcessingTimeout not bound +!missing-selector! MTRRVCOperationalStateClusterPauseParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTRRVCOperationalStateClusterPauseParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTRRVCOperationalStateClusterPauseParams::timedInvokeTimeoutMs not bound +!missing-selector! MTRRVCOperationalStateClusterResumeParams::serverSideProcessingTimeout not bound +!missing-selector! MTRRVCOperationalStateClusterResumeParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTRRVCOperationalStateClusterResumeParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTRRVCOperationalStateClusterResumeParams::timedInvokeTimeoutMs not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeParams::getNewMode not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeParams::serverSideProcessingTimeout not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeParams::setNewMode: not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeParams::timedInvokeTimeoutMs not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeResponseParams::setStatus: not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeResponseParams::setStatusText: not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeResponseParams::status not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeResponseParams::statusText not bound +!missing-selector! MTRRVCRunModeClusterModeOptionStruct::label not bound +!missing-selector! MTRRVCRunModeClusterModeOptionStruct::mode not bound +!missing-selector! MTRRVCRunModeClusterModeOptionStruct::modeTags not bound +!missing-selector! MTRRVCRunModeClusterModeOptionStruct::setLabel: not bound +!missing-selector! MTRRVCRunModeClusterModeOptionStruct::setMode: not bound +!missing-selector! MTRRVCRunModeClusterModeOptionStruct::setModeTags: not bound +!missing-selector! MTRRVCRunModeClusterModeTagStruct::mfgCode not bound +!missing-selector! MTRRVCRunModeClusterModeTagStruct::setMfgCode: not bound +!missing-selector! MTRRVCRunModeClusterModeTagStruct::setValue: not bound +!missing-selector! MTRRVCRunModeClusterModeTagStruct::value not bound +!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::coolSetpoint not bound +!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::heatSetpoint not bound +!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::setCoolSetpoint: not bound +!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::setHeatSetpoint: not bound +!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::setTransitionTime: not bound +!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::transitionTime not bound +!missing-selector! MTRWiFiNetworkDiagnosticsClusterAssociationFailureEvent::associationFailureCause not bound +!missing-selector! MTRWiFiNetworkDiagnosticsClusterAssociationFailureEvent::setAssociationFailureCause: not bound +!missing-type! MTRBaseClusterOperationalState not bound +!missing-type! MTRBaseClusterRVCCleanMode not bound +!missing-type! MTRBaseClusterRVCOperationalState not bound +!missing-type! MTRBaseClusterRVCRunMode not bound +!missing-type! MTRClusterOperationalState not bound +!missing-type! MTRClusterRVCCleanMode not bound +!missing-type! MTRClusterRVCOperationalState not bound +!missing-type! MTRClusterRVCRunMode not bound +!missing-type! MTRGenericBaseCluster not bound +!missing-type! MTRGenericCluster not bound +!missing-type! MTROperationalStateClusterErrorStateStruct not bound +!missing-type! MTROperationalStateClusterOperationalCommandResponseParams not bound +!missing-type! MTROperationalStateClusterOperationalErrorEvent not bound +!missing-type! MTROperationalStateClusterOperationalStateStruct not bound +!missing-type! MTROperationalStateClusterOperationCompletionEvent not bound +!missing-type! MTROperationalStateClusterPauseParams not bound +!missing-type! MTROperationalStateClusterResumeParams not bound +!missing-type! MTROperationalStateClusterStartParams not bound +!missing-type! MTROperationalStateClusterStopParams not bound +!missing-type! MTRRVCCleanModeClusterChangeToModeParams not bound +!missing-type! MTRRVCCleanModeClusterChangeToModeResponseParams not bound +!missing-type! MTRRVCCleanModeClusterModeOptionStruct not bound +!missing-type! MTRRVCCleanModeClusterModeTagStruct not bound +!missing-type! MTRRVCOperationalStateClusterErrorStateStruct not bound +!missing-type! MTRRVCOperationalStateClusterOperationalCommandResponseParams not bound +!missing-type! MTRRVCOperationalStateClusterOperationalErrorEvent not bound +!missing-type! MTRRVCOperationalStateClusterOperationalStateStruct not bound +!missing-type! MTRRVCOperationalStateClusterOperationCompletionEvent not bound +!missing-type! MTRRVCOperationalStateClusterPauseParams not bound +!missing-type! MTRRVCOperationalStateClusterResumeParams not bound +!missing-type! MTRRVCRunModeClusterChangeToModeParams not bound +!missing-type! MTRRVCRunModeClusterChangeToModeResponseParams not bound +!missing-type! MTRRVCRunModeClusterModeOptionStruct not bound +!missing-type! MTRRVCRunModeClusterModeTagStruct not bound +!missing-type! MTRThermostatClusterWeeklyScheduleTransitionStruct not bound +!missing-enum! MTRDiagnosticLogType not bound +!missing-enum! MTRFanControlAirflowDirection not bound +!missing-enum! MTRFanControlStepDirection not bound +!missing-enum! MTRStorageSecurityLevel not bound +!missing-enum! MTRStorageSharingType not bound +!missing-field! MTRDataVersionKey not bound +!missing-field! MTRPreviousDataKey not bound +!missing-pinvoke! MTRAttributeNameForID is not bound +!missing-pinvoke! MTRClusterNameForID is not bound +!missing-pinvoke! MTRDeviceControllerStorageClasses is not bound +!missing-pinvoke! MTRSetMessageReliabilityParameters is not bound +!missing-protocol! MTRDeviceControllerStorageDelegate not bound +!missing-selector! +MTRAccessGrant::accessGrantForAllNodesWithPrivilege: not bound +!missing-selector! +MTRAccessGrant::accessGrantForCASEAuthenticatedTag:privilege: not bound +!missing-selector! +MTRAccessGrant::accessGrantForGroupID:privilege: not bound +!missing-selector! +MTRAccessGrant::accessGrantForNodeID:privilege: not bound +!missing-selector! +MTRBaseClusterFanControl::readAttributeAirflowDirectionWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRServerCluster::newDescriptorCluster not bound +!missing-selector! MTRAccessGrant::authenticationMode not bound +!missing-selector! MTRAccessGrant::grantedPrivilege not bound +!missing-selector! MTRAccessGrant::subjectID not bound +!missing-selector! MTRBaseClusterFanControl::readAttributeAirflowDirectionWithCompletion: not bound +!missing-selector! MTRBaseClusterFanControl::stepWithParams:completion: not bound +!missing-selector! MTRBaseClusterFanControl::subscribeAttributeAirflowDirectionWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterFanControl::writeAttributeAirflowDirectionWithValue:completion: not bound +!missing-selector! MTRBaseClusterFanControl::writeAttributeAirflowDirectionWithValue:params:completion: not bound +!missing-selector! MTRBaseDevice::downloadLogOfType:timeout:queue:completion: not bound +!missing-selector! MTRClusterFanControl::readAttributeAirflowDirectionWithParams: not bound +!missing-selector! MTRClusterFanControl::stepWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterFanControl::writeAttributeAirflowDirectionWithValue:expectedValueInterval: not bound +!missing-selector! MTRClusterFanControl::writeAttributeAirflowDirectionWithValue:expectedValueInterval:params: not bound +!missing-selector! MTRDevice::deviceCachePrimed not bound +!missing-selector! MTRDevice::downloadLogOfType:timeout:queue:completion: not bound +!missing-selector! MTRDeviceController::addServerEndpoint: not bound +!missing-selector! MTRDeviceController::initWithParameters:error: not bound +!missing-selector! MTRDeviceController::removeServerEndpoint: not bound +!missing-selector! MTRDeviceController::removeServerEndpoint:queue:completion: not bound +!missing-selector! MTRDeviceController::uniqueIdentifier not bound +!missing-selector! MTRDeviceControllerExternalCertificateParameters::initWithStorageDelegate:storageDelegateQueue:uniqueIdentifier:ipk:vendorID:operationalKeypair:operationalCertificate:intermediateCertificate:rootCertificate: not bound +!missing-selector! MTRDeviceControllerParameters::certificationDeclarationCertificates not bound +!missing-selector! MTRDeviceControllerParameters::productAttestationAuthorityCertificates not bound +!missing-selector! MTRDeviceControllerParameters::setCertificationDeclarationCertificates: not bound +!missing-selector! MTRDeviceControllerParameters::setOperationalCertificateIssuer:queue: not bound +!missing-selector! MTRDeviceControllerParameters::setOTAProviderDelegate:queue: not bound +!missing-selector! MTRDeviceControllerParameters::setProductAttestationAuthorityCertificates: not bound +!missing-selector! MTRDeviceControllerParameters::setShouldAdvertiseOperational: not bound +!missing-selector! MTRDeviceControllerParameters::shouldAdvertiseOperational not bound +!missing-selector! MTRDeviceTypeRevision::deviceTypeID not bound +!missing-selector! MTRDeviceTypeRevision::deviceTypeRevision not bound +!missing-selector! MTRDeviceTypeRevision::initWithDeviceTypeID:revision: not bound +!missing-selector! MTRFanControlClusterStepParams::direction not bound +!missing-selector! MTRFanControlClusterStepParams::lowestOff not bound +!missing-selector! MTRFanControlClusterStepParams::serverSideProcessingTimeout not bound +!missing-selector! MTRFanControlClusterStepParams::setDirection: not bound +!missing-selector! MTRFanControlClusterStepParams::setLowestOff: not bound +!missing-selector! MTRFanControlClusterStepParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTRFanControlClusterStepParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTRFanControlClusterStepParams::setWrap: not bound +!missing-selector! MTRFanControlClusterStepParams::timedInvokeTimeoutMs not bound +!missing-selector! MTRFanControlClusterStepParams::wrap not bound +!missing-selector! MTRMetricData::duration not bound +!missing-selector! MTRMetricData::errorCode not bound +!missing-selector! MTRMetricData::value not bound +!missing-selector! MTRMetrics::allKeys not bound +!missing-selector! MTRMetrics::metricDataForKey: not bound +!missing-selector! MTRMetrics::uniqueIdentifier not bound +!missing-selector! MTRServerAttribute::attributeID not bound +!missing-selector! MTRServerAttribute::initReadonlyAttributeWithID:initialValue:requiredPrivilege: not bound +!missing-selector! MTRServerAttribute::isWritable not bound +!missing-selector! MTRServerAttribute::requiredReadPrivilege not bound +!missing-selector! MTRServerAttribute::setValue: not bound +!missing-selector! MTRServerAttribute::value not bound +!missing-selector! MTRServerCluster::accessGrants not bound +!missing-selector! MTRServerCluster::addAccessGrant: not bound +!missing-selector! MTRServerCluster::addAttribute: not bound +!missing-selector! MTRServerCluster::attributes not bound +!missing-selector! MTRServerCluster::clusterID not bound +!missing-selector! MTRServerCluster::clusterRevision not bound +!missing-selector! MTRServerCluster::initWithClusterID:revision: not bound +!missing-selector! MTRServerCluster::removeAccessGrant: not bound +!missing-selector! MTRServerEndpoint::accessGrants not bound +!missing-selector! MTRServerEndpoint::addAccessGrant: not bound +!missing-selector! MTRServerEndpoint::addServerCluster: not bound +!missing-selector! MTRServerEndpoint::deviceTypes not bound +!missing-selector! MTRServerEndpoint::endpointID not bound +!missing-selector! MTRServerEndpoint::initWithEndpointID:deviceTypes: not bound +!missing-selector! MTRServerEndpoint::removeAccessGrant: not bound +!missing-selector! MTRServerEndpoint::serverClusters not bound +!missing-type! MTRAccessGrant not bound +!missing-type! MTRDeviceControllerAbstractParameters not bound +!missing-type! MTRDeviceControllerExternalCertificateParameters not bound +!missing-type! MTRDeviceControllerParameters not bound +!missing-type! MTRDeviceTypeRevision not bound +!missing-type! MTRFanControlClusterStepParams not bound +!missing-type! MTRMetricData not bound +!missing-type! MTRMetrics not bound +!missing-type! MTRServerAttribute not bound +!missing-type! MTRServerCluster not bound +!missing-type! MTRServerEndpoint not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-Matter.todo b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-Matter.todo deleted file mode 100644 index 60406a5077b9..000000000000 --- a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-Matter.todo +++ /dev/null @@ -1,683 +0,0 @@ -!missing-enum! MTRBasicInformationColor not bound -!missing-enum! MTRBasicInformationProductFinish not bound -!missing-enum! MTRBridgedDeviceBasicInformationColor not bound -!missing-enum! MTRBridgedDeviceBasicInformationProductFinish not bound -!missing-enum! MTRDiagnosticLogsIntent not bound -!missing-enum! MTRDiagnosticLogsStatus not bound -!missing-enum! MTRDiagnosticLogsTransferProtocol not bound -!missing-enum! MTREventPriority not bound -!missing-enum! MTREventTimeType not bound -!missing-enum! MTRGroupsFeature not bound -!missing-enum! MTRGroupsNameSupportBitmap not bound -!missing-enum! MTRNetworkCommissioningWiFiSecurityBitmap not bound -!missing-enum! MTROccupancySensingOccupancyBitmap not bound -!missing-enum! MTROccupancySensingOccupancySensorType not bound -!missing-enum! MTROccupancySensingOccupancySensorTypeBitmap not bound -!missing-enum! MTRPowerSourceBatApprovedChemistry not bound -!missing-enum! MTRPowerSourceBatCommonDesignation not bound -!missing-enum! MTRPressureMeasurementFeature not bound -!missing-enum! MTRPumpConfigurationAndControlControlMode not bound -!missing-enum! MTRPumpConfigurationAndControlFeature not bound -!missing-enum! MTRPumpConfigurationAndControlOperationMode not bound -!missing-enum! MTRPumpConfigurationAndControlPumpStatusBitmap not bound -!missing-enum! MTRScenesFeature not bound -!missing-enum! MTRWiFiNetworkDiagnosticsConnectionStatus not bound -!missing-enum! MTRWiFiNetworkDiagnosticsWiFiVersion not bound -!missing-field! MTREventNumberKey not bound -!missing-field! MTREventPriorityKey not bound -!missing-field! MTREventSystemUpTimeKey not bound -!missing-field! MTREventTimestampDateKey not bound -!missing-field! MTREventTimeTypeKey not bound -!missing-selector! +MTRAttributeRequestPath::requestPathWithEndpointID:clusterID:attributeID: not bound -!missing-selector! +MTRBaseClusterBasicInformation::readAttributeProductAppearanceWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterBridgedDeviceBasicInformation::readAttributeProductAppearanceWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRCertificates::createIntermediateCertificate:rootCertificate:intermediatePublicKey:issuerID:fabricID:validityPeriod:error: not bound -!missing-selector! +MTRCertificates::createOperationalCertificate:signingCertificate:operationalPublicKey:fabricID:nodeID:caseAuthenticatedTags:validityPeriod:error: not bound -!missing-selector! +MTRCertificates::createRootCertificate:issuerID:fabricID:validityPeriod:error: not bound -!missing-selector! +MTRDeviceController::xpcInterfaceForClientProtocol not bound -!missing-selector! +MTRDeviceController::xpcInterfaceForServerProtocol not bound -!missing-selector! +MTREventRequestPath::requestPathWithEndpointID:clusterID:eventID: not bound -!missing-selector! MTRAccessControlClusterAccessControlTargetStruct::cluster not bound -!missing-selector! MTRAccessControlClusterAccessControlTargetStruct::deviceType not bound -!missing-selector! MTRAccessControlClusterAccessControlTargetStruct::endpoint not bound -!missing-selector! MTRAccessControlClusterAccessControlTargetStruct::setCluster: not bound -!missing-selector! MTRAccessControlClusterAccessControlTargetStruct::setDeviceType: not bound -!missing-selector! MTRAccessControlClusterAccessControlTargetStruct::setEndpoint: not bound -!missing-selector! MTRAccountLoginClusterGetSetupPINResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRApplicationLauncherClusterLauncherResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRAttributeReport::initWithResponseValue:error: not bound -!missing-selector! MTRAttributeRequestPath::attribute not bound -!missing-selector! MTRAttributeRequestPath::cluster not bound -!missing-selector! MTRAttributeRequestPath::endpoint not bound -!missing-selector! MTRBaseClusterBasicInformation::readAttributeProductAppearanceWithCompletion: not bound -!missing-selector! MTRBaseClusterBasicInformation::subscribeAttributeProductAppearanceWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterBridgedDeviceBasicInformation::readAttributeProductAppearanceWithCompletion: not bound -!missing-selector! MTRBaseClusterBridgedDeviceBasicInformation::subscribeAttributeProductAppearanceWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterGroupKeyManagement::keySetReadAllIndicesWithCompletion: not bound -!missing-selector! MTRBaseDevice::openCommissioningWindowWithDiscriminator:duration:queue:completion: not bound -!missing-selector! MTRBaseDevice::readAttributePaths:eventPaths:params:queue:completion: not bound -!missing-selector! MTRBaseDevice::subscribeToAttributePaths:eventPaths:params:queue:reportHandler:subscriptionEstablished:resubscriptionScheduled: not bound -!missing-selector! MTRBasicInformationClusterProductAppearanceStruct::finish not bound -!missing-selector! MTRBasicInformationClusterProductAppearanceStruct::primaryColor not bound -!missing-selector! MTRBasicInformationClusterProductAppearanceStruct::setFinish: not bound -!missing-selector! MTRBasicInformationClusterProductAppearanceStruct::setPrimaryColor: not bound -!missing-selector! MTRBridgedDeviceBasicInformationClusterProductAppearanceStruct::finish not bound -!missing-selector! MTRBridgedDeviceBasicInformationClusterProductAppearanceStruct::primaryColor not bound -!missing-selector! MTRBridgedDeviceBasicInformationClusterProductAppearanceStruct::setFinish: not bound -!missing-selector! MTRBridgedDeviceBasicInformationClusterProductAppearanceStruct::setPrimaryColor: not bound -!missing-selector! MTRChannelClusterChangeChannelResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRClusterBasicInformation::readAttributeProductAppearanceWithParams: not bound -!missing-selector! MTRClusterBridgedDeviceBasicInformation::readAttributeProductAppearanceWithParams: not bound -!missing-selector! MTRClusterGroupKeyManagement::keySetReadAllIndicesWithExpectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRCommissioningParameters::countryCode not bound -!missing-selector! MTRCommissioningParameters::setCountryCode: not bound -!missing-selector! MTRCommissioningParameters::setSkipCommissioningComplete: not bound -!missing-selector! MTRCommissioningParameters::skipCommissioningComplete not bound -!missing-selector! MTRContentLauncherClusterLauncherResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRDevice::estimatedStartTime not bound -!missing-selector! MTRDevice::openCommissioningWindowWithDiscriminator:duration:queue:completion: not bound -!missing-selector! MTRDeviceAttestationDeviceInfo::basicInformationProductID not bound -!missing-selector! MTRDeviceAttestationDeviceInfo::basicInformationVendorID not bound -!missing-selector! MTRDeviceControllerFactory::knownFabrics not bound -!missing-selector! MTRDeviceControllerStartupParams::caseAuthenticatedTags not bound -!missing-selector! MTRDeviceControllerStartupParams::setCaseAuthenticatedTags: not bound -!missing-selector! MTRDiagnosticLogsClusterRetrieveLogsResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRDoorLockClusterGetCredentialStatusResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRDoorLockClusterGetHolidayScheduleResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRDoorLockClusterGetUserResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRDoorLockClusterGetWeekDayScheduleResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRDoorLockClusterGetYearDayScheduleResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRDoorLockClusterSetCredentialResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRElectricalMeasurementClusterGetMeasurementProfileResponseCommandParams::initWithResponseValue:error: not bound -!missing-selector! MTRElectricalMeasurementClusterGetProfileInfoResponseCommandParams::initWithResponseValue:error: not bound -!missing-selector! MTREventReport::eventTimeType not bound -!missing-selector! MTREventReport::initWithResponseValue:error: not bound -!missing-selector! MTREventReport::systemUpTime not bound -!missing-selector! MTREventReport::timestampDate not bound -!missing-selector! MTREventRequestPath::cluster not bound -!missing-selector! MTREventRequestPath::endpoint not bound -!missing-selector! MTREventRequestPath::event not bound -!missing-selector! MTRFabricInfo::fabricID not bound -!missing-selector! MTRFabricInfo::fabricIndex not bound -!missing-selector! MTRFabricInfo::intermediateCertificate not bound -!missing-selector! MTRFabricInfo::intermediateCertificateTLV not bound -!missing-selector! MTRFabricInfo::label not bound -!missing-selector! MTRFabricInfo::nodeID not bound -!missing-selector! MTRFabricInfo::operationalCertificate not bound -!missing-selector! MTRFabricInfo::operationalCertificateTLV not bound -!missing-selector! MTRFabricInfo::rootCertificate not bound -!missing-selector! MTRFabricInfo::rootCertificateTLV not bound -!missing-selector! MTRFabricInfo::rootPublicKey not bound -!missing-selector! MTRFabricInfo::vendorID not bound -!missing-selector! MTRGeneralCommissioningClusterArmFailSafeResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRGeneralCommissioningClusterCommissioningCompleteResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRGeneralCommissioningClusterSetRegulatoryConfigResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRGroupKeyManagementClusterKeySetReadAllIndicesResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRGroupKeyManagementClusterKeySetReadResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRGroupsClusterAddGroupResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRGroupsClusterGetGroupMembershipResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRGroupsClusterRemoveGroupResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRGroupsClusterViewGroupResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRKeypadInputClusterSendKeyResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRMediaPlaybackClusterPlaybackResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRNetworkCommissioningClusterConnectNetworkResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRNetworkCommissioningClusterNetworkConfigResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRNetworkCommissioningClusterNetworkInfoStruct::connected not bound -!missing-selector! MTRNetworkCommissioningClusterNetworkInfoStruct::networkID not bound -!missing-selector! MTRNetworkCommissioningClusterNetworkInfoStruct::setConnected: not bound -!missing-selector! MTRNetworkCommissioningClusterNetworkInfoStruct::setNetworkID: not bound -!missing-selector! MTRNetworkCommissioningClusterScanNetworksResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::channel not bound -!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::extendedAddress not bound -!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::extendedPanId not bound -!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::lqi not bound -!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::networkName not bound -!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::panId not bound -!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::rssi not bound -!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::setChannel: not bound -!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::setExtendedAddress: not bound -!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::setExtendedPanId: not bound -!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::setLqi: not bound -!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::setNetworkName: not bound -!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::setPanId: not bound -!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::setRssi: not bound -!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::setVersion: not bound -!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::version not bound -!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::bssid not bound -!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::channel not bound -!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::rssi not bound -!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::security not bound -!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::setBssid: not bound -!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::setChannel: not bound -!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::setRssi: not bound -!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::setSecurity: not bound -!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::setSsid: not bound -!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::setWiFiBand: not bound -!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::ssid not bound -!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::wiFiBand not bound -!missing-selector! MTROperationalCredentialsClusterAttestationResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTROperationalCredentialsClusterCertificateChainResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTROperationalCredentialsClusterCSRResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTROperationalCredentialsClusterNOCResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTROperationalCSRInfo::initWithCSRElementsTLV:attestationSignature: not bound -!missing-selector! MTROperationalCSRInfo::initWithCSRNonce:csrElementsTLV:attestationSignature: not bound -!missing-selector! MTROperationalCSRInfo::initWithCSRResponseParams: not bound -!missing-selector! MTROTASoftwareUpdateProviderClusterApplyUpdateResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTROTASoftwareUpdateProviderClusterQueryImageResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRProductIdentity::initWithVendorID:productID: not bound -!missing-selector! MTRProductIdentity::productID not bound -!missing-selector! MTRProductIdentity::vendorID not bound -!missing-selector! MTRScenesClusterAddSceneResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRScenesClusterCopySceneResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRScenesClusterGetSceneMembershipResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRScenesClusterRemoveAllScenesResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRScenesClusterRemoveSceneResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRScenesClusterStoreSceneResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRTargetNavigatorClusterNavigateTargetResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRThermostatClusterGetWeeklyScheduleResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::age not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::averageRssi not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::extAddress not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::frameErrorRate not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::fullNetworkData not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::fullThreadDevice not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::isChild not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::lastRssi not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::linkFrameCounter not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::lqi not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::messageErrorRate not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::mleFrameCounter not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::rloc16 not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::rxOnWhenIdle not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setAge: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setAverageRssi: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setExtAddress: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setFrameErrorRate: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setFullNetworkData: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setFullThreadDevice: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setIsChild: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setLastRssi: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setLinkFrameCounter: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setLqi: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setMessageErrorRate: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setMleFrameCounter: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setRloc16: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setRxOnWhenIdle: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::age not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::allocated not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::extAddress not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::linkEstablished not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::lqiIn not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::lqiOut not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::nextHop not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::pathCost not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::rloc16 not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::routerId not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::setAge: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::setAllocated: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::setExtAddress: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::setLinkEstablished: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::setLqiIn: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::setLqiOut: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::setNextHop: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::setPathCost: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::setRloc16: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::setRouterId: not bound -!missing-selector! MTRTimeSynchronizationClusterDSTOffsetStruct::offset not bound -!missing-selector! MTRTimeSynchronizationClusterDSTOffsetStruct::setOffset: not bound -!missing-selector! MTRTimeSynchronizationClusterDSTOffsetStruct::setValidStarting: not bound -!missing-selector! MTRTimeSynchronizationClusterDSTOffsetStruct::setValidUntil: not bound -!missing-selector! MTRTimeSynchronizationClusterDSTOffsetStruct::validStarting not bound -!missing-selector! MTRTimeSynchronizationClusterDSTOffsetStruct::validUntil not bound -!missing-selector! MTRTimeSynchronizationClusterTimeZoneStruct::name not bound -!missing-selector! MTRTimeSynchronizationClusterTimeZoneStruct::offset not bound -!missing-selector! MTRTimeSynchronizationClusterTimeZoneStruct::setName: not bound -!missing-selector! MTRTimeSynchronizationClusterTimeZoneStruct::setOffset: not bound -!missing-selector! MTRTimeSynchronizationClusterTimeZoneStruct::setValidAt: not bound -!missing-selector! MTRTimeSynchronizationClusterTimeZoneStruct::validAt not bound -!missing-selector! MTRUnitTestingClusterBooleanResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRUnitTestingClusterSimpleStructResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRUnitTestingClusterTestAddArgumentsResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRUnitTestingClusterTestComplexNullableOptionalResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRUnitTestingClusterTestEmitTestEventResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRUnitTestingClusterTestEmitTestFabricScopedEventResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRUnitTestingClusterTestEnumsResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRUnitTestingClusterTestListInt8UReverseResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRUnitTestingClusterTestNullableOptionalResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRUnitTestingClusterTestSimpleArgumentResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRUnitTestingClusterTestSpecificResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRUnitTestingClusterTestStructArrayArgumentResponseParams::initWithResponseValue:error: not bound -!missing-type! MTRAccessControlClusterAccessControlTargetStruct not bound -!missing-type! MTRAttributeRequestPath not bound -!missing-type! MTRBasicInformationClusterProductAppearanceStruct not bound -!missing-type! MTRBridgedDeviceBasicInformationClusterProductAppearanceStruct not bound -!missing-type! MTREventRequestPath not bound -!missing-type! MTRFabricInfo not bound -!missing-type! MTRNetworkCommissioningClusterNetworkInfoStruct not bound -!missing-type! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct not bound -!missing-type! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct not bound -!missing-type! MTRProductIdentity not bound -!missing-type! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct not bound -!missing-type! MTRThreadNetworkDiagnosticsClusterRouteTableStruct not bound -!missing-type! MTRTimeSynchronizationClusterDSTOffsetStruct not bound -!missing-type! MTRTimeSynchronizationClusterTimeZoneStruct not bound -!missing-enum! MTRFanControlFanMode not bound -!missing-enum! MTRFanControlFanModeSequence not bound -!missing-enum! MTRFanControlRockBitmap not bound -!missing-enum! MTRFanControlWindBitmap not bound -!missing-protocol! MTRCommissionableBrowserDelegate not bound -!missing-selector! MTRCommissionableBrowserResult::commissioningMode not bound -!missing-selector! MTRCommissionableBrowserResult::discriminator not bound -!missing-selector! MTRCommissionableBrowserResult::instanceName not bound -!missing-selector! MTRCommissionableBrowserResult::productID not bound -!missing-selector! MTRCommissionableBrowserResult::vendorID not bound -!missing-selector! MTRDeviceController::setupCommissioningSessionWithDiscoveredDevice:payload:newNodeID:error: not bound -!missing-selector! MTRDeviceController::startBrowseForCommissionables:queue: not bound -!missing-selector! MTRDeviceController::stopBrowseForCommissionables not bound -!missing-selector! MTRModeSelectClusterSemanticTagStruct::mfgCode not bound -!missing-selector! MTRModeSelectClusterSemanticTagStruct::setMfgCode: not bound -!missing-selector! MTRModeSelectClusterSemanticTagStruct::setValue: not bound -!missing-selector! MTRModeSelectClusterSemanticTagStruct::value not bound -!missing-type! MTRCommissionableBrowserResult not bound -!missing-enum! MTROnOffControlBitmap not bound -!missing-enum! MTROTASoftwareUpdateProviderApplyUpdateAction not bound -!missing-enum! MTROTASoftwareUpdateProviderDownloadProtocol not bound -!missing-enum! MTROTASoftwareUpdateProviderStatus not bound -!missing-enum! MTROTASoftwareUpdateRequestorAnnouncementReason not bound -!missing-enum! MTROTASoftwareUpdateRequestorChangeReason not bound -!missing-enum! MTROTASoftwareUpdateRequestorUpdateState not bound -!missing-enum! MTRTimeFormatLocalizationFeature not bound -!missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::granularity not bound -!missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::serverSideProcessingTimeout not bound -!missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::setGranularity: not bound -!missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::setTimeSource: not bound -!missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::setUtcTime: not bound -!missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::timeSource not bound -!missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::utcTime not bound -!missing-type! MTRTimeSynchronizationClusterSetUTCTimeParams not bound -!missing-enum! MTRAdministratorCommissioningFeature not bound -!missing-enum! MTRContentLauncherStatus not bound -!missing-enum! MTRContentLauncherSupportedProtocolsBitmap not bound -!missing-enum! MTRKeypadInputCECKeyCode not bound -!missing-enum! MTRLevelControlOptionsBitmap not bound -!missing-enum! MTROperationalState not bound -!missing-enum! MTROperationalStateErrorState not bound -!missing-enum! MTRRVCCleanModeFeature not bound -!missing-enum! MTRRVCCleanModeModeTag not bound -!missing-enum! MTRRVCCleanModeStatusCode not bound -!missing-enum! MTRRVCOperationalStateErrorState not bound -!missing-enum! MTRRVCOperationalStateOperationalState not bound -!missing-enum! MTRRVCRunModeFeature not bound -!missing-enum! MTRRVCRunModeModeTag not bound -!missing-enum! MTRRVCRunModeStatusCode not bound -!missing-enum! MTRScenesCopyModeBitmap not bound -!missing-enum! MTRThermostatControlSequenceOfOperation not bound -!missing-enum! MTRThermostatScheduleDayOfWeekBitmap not bound -!missing-enum! MTRThermostatScheduleModeBitmap not bound -!missing-enum! MTRThermostatSetpointRaiseLowerMode not bound -!missing-enum! MTRThermostatUserInterfaceConfigurationKeypadLockout not bound -!missing-enum! MTRThermostatUserInterfaceConfigurationScheduleProgrammingVisibility not bound -!missing-enum! MTRThermostatUserInterfaceConfigurationTemperatureDisplayMode not bound -!missing-field! MTREventIsHistoricalKey not bound -!missing-selector! +MTRBaseClusterOperationalState::readAttributeAcceptedCommandListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterOperationalState::readAttributeAttributeListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterOperationalState::readAttributeClusterRevisionWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterOperationalState::readAttributeCountdownTimeWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterOperationalState::readAttributeCurrentPhaseWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterOperationalState::readAttributeFeatureMapWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterOperationalState::readAttributeGeneratedCommandListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterOperationalState::readAttributeOperationalErrorWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterOperationalState::readAttributeOperationalStateListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterOperationalState::readAttributeOperationalStateWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterOperationalState::readAttributePhaseListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterPowerSource::readAttributeEndpointListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeAcceptedCommandListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeAttributeListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeClusterRevisionWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeCurrentModeWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeFeatureMapWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeGeneratedCommandListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeSupportedModesWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeAcceptedCommandListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeAttributeListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeClusterRevisionWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeCountdownTimeWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeCurrentPhaseWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeFeatureMapWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeGeneratedCommandListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeOperationalErrorWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeOperationalStateListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeOperationalStateWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributePhaseListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeAcceptedCommandListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeAttributeListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeClusterRevisionWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeCurrentModeWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeFeatureMapWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeGeneratedCommandListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeSupportedModesWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! MTRBaseClusterApplicationLauncher::hideAppWithCompletion: not bound -!missing-selector! MTRBaseClusterApplicationLauncher::launchAppWithCompletion: not bound -!missing-selector! MTRBaseClusterApplicationLauncher::stopAppWithCompletion: not bound -!missing-selector! MTRBaseClusterDoorLock::lockDoorWithCompletion: not bound -!missing-selector! MTRBaseClusterDoorLock::unlockDoorWithCompletion: not bound -!missing-selector! MTRBaseClusterNetworkCommissioning::scanNetworksWithCompletion: not bound -!missing-selector! MTRBaseClusterOperationalState::initWithDevice:endpointID:queue: not bound -!missing-selector! MTRBaseClusterOperationalState::pauseWithCompletion: not bound -!missing-selector! MTRBaseClusterOperationalState::pauseWithParams:completion: not bound -!missing-selector! MTRBaseClusterOperationalState::readAttributeAcceptedCommandListWithCompletion: not bound -!missing-selector! MTRBaseClusterOperationalState::readAttributeAttributeListWithCompletion: not bound -!missing-selector! MTRBaseClusterOperationalState::readAttributeClusterRevisionWithCompletion: not bound -!missing-selector! MTRBaseClusterOperationalState::readAttributeCountdownTimeWithCompletion: not bound -!missing-selector! MTRBaseClusterOperationalState::readAttributeCurrentPhaseWithCompletion: not bound -!missing-selector! MTRBaseClusterOperationalState::readAttributeFeatureMapWithCompletion: not bound -!missing-selector! MTRBaseClusterOperationalState::readAttributeGeneratedCommandListWithCompletion: not bound -!missing-selector! MTRBaseClusterOperationalState::readAttributeOperationalErrorWithCompletion: not bound -!missing-selector! MTRBaseClusterOperationalState::readAttributeOperationalStateListWithCompletion: not bound -!missing-selector! MTRBaseClusterOperationalState::readAttributeOperationalStateWithCompletion: not bound -!missing-selector! MTRBaseClusterOperationalState::readAttributePhaseListWithCompletion: not bound -!missing-selector! MTRBaseClusterOperationalState::resumeWithCompletion: not bound -!missing-selector! MTRBaseClusterOperationalState::resumeWithParams:completion: not bound -!missing-selector! MTRBaseClusterOperationalState::startWithCompletion: not bound -!missing-selector! MTRBaseClusterOperationalState::startWithParams:completion: not bound -!missing-selector! MTRBaseClusterOperationalState::stopWithCompletion: not bound -!missing-selector! MTRBaseClusterOperationalState::stopWithParams:completion: not bound -!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeAcceptedCommandListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeAttributeListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeClusterRevisionWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeCountdownTimeWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeCurrentPhaseWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeFeatureMapWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeGeneratedCommandListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeOperationalErrorWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeOperationalStateListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeOperationalStateWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterOperationalState::subscribeAttributePhaseListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterPowerSource::readAttributeEndpointListWithCompletion: not bound -!missing-selector! MTRBaseClusterPowerSource::subscribeAttributeEndpointListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCCleanMode::changeToModeWithParams:completion: not bound -!missing-selector! MTRBaseClusterRVCCleanMode::initWithDevice:endpointID:queue: not bound -!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeAcceptedCommandListWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeAttributeListWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeClusterRevisionWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeCurrentModeWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeFeatureMapWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeGeneratedCommandListWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeSupportedModesWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeAcceptedCommandListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeAttributeListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeClusterRevisionWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeCurrentModeWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeFeatureMapWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeGeneratedCommandListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeSupportedModesWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::initWithDevice:endpointID:queue: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::pauseWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::pauseWithParams:completion: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeAcceptedCommandListWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeAttributeListWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeClusterRevisionWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeCountdownTimeWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeCurrentPhaseWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeFeatureMapWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeGeneratedCommandListWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeOperationalErrorWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeOperationalStateListWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeOperationalStateWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::readAttributePhaseListWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::resumeWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::resumeWithParams:completion: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeAcceptedCommandListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeAttributeListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeClusterRevisionWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeCountdownTimeWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeCurrentPhaseWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeFeatureMapWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeGeneratedCommandListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeOperationalErrorWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeOperationalStateListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeOperationalStateWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributePhaseListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCRunMode::changeToModeWithParams:completion: not bound -!missing-selector! MTRBaseClusterRVCRunMode::initWithDevice:endpointID:queue: not bound -!missing-selector! MTRBaseClusterRVCRunMode::readAttributeAcceptedCommandListWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCRunMode::readAttributeAttributeListWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCRunMode::readAttributeClusterRevisionWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCRunMode::readAttributeCurrentModeWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCRunMode::readAttributeFeatureMapWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCRunMode::readAttributeGeneratedCommandListWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCRunMode::readAttributeSupportedModesWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeAcceptedCommandListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeAttributeListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeClusterRevisionWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeCurrentModeWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeFeatureMapWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeGeneratedCommandListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeSupportedModesWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterUnitTesting::testNullableOptionalRequestWithCompletion: not bound -!missing-selector! MTRBaseClusterUnitTesting::testSimpleOptionalArgumentRequestWithCompletion: not bound -!missing-selector! MTRCluster::endpointID not bound -!missing-selector! MTRClusterApplicationLauncher::hideAppWithExpectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterApplicationLauncher::launchAppWithExpectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterApplicationLauncher::stopAppWithExpectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterDoorLock::lockDoorWithExpectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterDoorLock::unlockDoorWithExpectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterNetworkCommissioning::scanNetworksWithExpectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterOperationalState::initWithDevice:endpointID:queue: not bound -!missing-selector! MTRClusterOperationalState::pauseWithExpectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterOperationalState::pauseWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterOperationalState::readAttributeAcceptedCommandListWithParams: not bound -!missing-selector! MTRClusterOperationalState::readAttributeAttributeListWithParams: not bound -!missing-selector! MTRClusterOperationalState::readAttributeClusterRevisionWithParams: not bound -!missing-selector! MTRClusterOperationalState::readAttributeCountdownTimeWithParams: not bound -!missing-selector! MTRClusterOperationalState::readAttributeCurrentPhaseWithParams: not bound -!missing-selector! MTRClusterOperationalState::readAttributeFeatureMapWithParams: not bound -!missing-selector! MTRClusterOperationalState::readAttributeGeneratedCommandListWithParams: not bound -!missing-selector! MTRClusterOperationalState::readAttributeOperationalErrorWithParams: not bound -!missing-selector! MTRClusterOperationalState::readAttributeOperationalStateListWithParams: not bound -!missing-selector! MTRClusterOperationalState::readAttributeOperationalStateWithParams: not bound -!missing-selector! MTRClusterOperationalState::readAttributePhaseListWithParams: not bound -!missing-selector! MTRClusterOperationalState::resumeWithExpectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterOperationalState::resumeWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterOperationalState::startWithExpectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterOperationalState::startWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterOperationalState::stopWithExpectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterOperationalState::stopWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterPowerSource::readAttributeEndpointListWithParams: not bound -!missing-selector! MTRClusterRVCCleanMode::changeToModeWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterRVCCleanMode::initWithDevice:endpointID:queue: not bound -!missing-selector! MTRClusterRVCCleanMode::readAttributeAcceptedCommandListWithParams: not bound -!missing-selector! MTRClusterRVCCleanMode::readAttributeAttributeListWithParams: not bound -!missing-selector! MTRClusterRVCCleanMode::readAttributeClusterRevisionWithParams: not bound -!missing-selector! MTRClusterRVCCleanMode::readAttributeCurrentModeWithParams: not bound -!missing-selector! MTRClusterRVCCleanMode::readAttributeFeatureMapWithParams: not bound -!missing-selector! MTRClusterRVCCleanMode::readAttributeGeneratedCommandListWithParams: not bound -!missing-selector! MTRClusterRVCCleanMode::readAttributeSupportedModesWithParams: not bound -!missing-selector! MTRClusterRVCOperationalState::initWithDevice:endpointID:queue: not bound -!missing-selector! MTRClusterRVCOperationalState::pauseWithExpectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterRVCOperationalState::pauseWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterRVCOperationalState::readAttributeAcceptedCommandListWithParams: not bound -!missing-selector! MTRClusterRVCOperationalState::readAttributeAttributeListWithParams: not bound -!missing-selector! MTRClusterRVCOperationalState::readAttributeClusterRevisionWithParams: not bound -!missing-selector! MTRClusterRVCOperationalState::readAttributeCountdownTimeWithParams: not bound -!missing-selector! MTRClusterRVCOperationalState::readAttributeCurrentPhaseWithParams: not bound -!missing-selector! MTRClusterRVCOperationalState::readAttributeFeatureMapWithParams: not bound -!missing-selector! MTRClusterRVCOperationalState::readAttributeGeneratedCommandListWithParams: not bound -!missing-selector! MTRClusterRVCOperationalState::readAttributeOperationalErrorWithParams: not bound -!missing-selector! MTRClusterRVCOperationalState::readAttributeOperationalStateListWithParams: not bound -!missing-selector! MTRClusterRVCOperationalState::readAttributeOperationalStateWithParams: not bound -!missing-selector! MTRClusterRVCOperationalState::readAttributePhaseListWithParams: not bound -!missing-selector! MTRClusterRVCOperationalState::resumeWithExpectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterRVCOperationalState::resumeWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterRVCRunMode::changeToModeWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterRVCRunMode::initWithDevice:endpointID:queue: not bound -!missing-selector! MTRClusterRVCRunMode::readAttributeAcceptedCommandListWithParams: not bound -!missing-selector! MTRClusterRVCRunMode::readAttributeAttributeListWithParams: not bound -!missing-selector! MTRClusterRVCRunMode::readAttributeClusterRevisionWithParams: not bound -!missing-selector! MTRClusterRVCRunMode::readAttributeCurrentModeWithParams: not bound -!missing-selector! MTRClusterRVCRunMode::readAttributeFeatureMapWithParams: not bound -!missing-selector! MTRClusterRVCRunMode::readAttributeGeneratedCommandListWithParams: not bound -!missing-selector! MTRClusterRVCRunMode::readAttributeSupportedModesWithParams: not bound -!missing-selector! MTRClusterUnitTesting::testNullableOptionalRequestWithExpectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterUnitTesting::testSimpleOptionalArgumentRequestWithExpectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRDevice::deviceController not bound -!missing-selector! MTRDevice::invokeCommandWithEndpointID:clusterID:commandID:commandFields:expectedValues:expectedValueInterval:queue:completion: not bound -!missing-selector! MTRDevice::nodeID not bound -!missing-selector! MTRGenericCluster::device not bound -!missing-selector! MTROperationalStateClusterErrorStateStruct::errorStateDetails not bound -!missing-selector! MTROperationalStateClusterErrorStateStruct::errorStateID not bound -!missing-selector! MTROperationalStateClusterErrorStateStruct::errorStateLabel not bound -!missing-selector! MTROperationalStateClusterErrorStateStruct::setErrorStateDetails: not bound -!missing-selector! MTROperationalStateClusterErrorStateStruct::setErrorStateID: not bound -!missing-selector! MTROperationalStateClusterErrorStateStruct::setErrorStateLabel: not bound -!missing-selector! MTROperationalStateClusterOperationalCommandResponseParams::commandResponseState not bound -!missing-selector! MTROperationalStateClusterOperationalCommandResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTROperationalStateClusterOperationalCommandResponseParams::setCommandResponseState: not bound -!missing-selector! MTROperationalStateClusterOperationalErrorEvent::errorState not bound -!missing-selector! MTROperationalStateClusterOperationalErrorEvent::setErrorState: not bound -!missing-selector! MTROperationalStateClusterOperationalStateStruct::operationalStateID not bound -!missing-selector! MTROperationalStateClusterOperationalStateStruct::operationalStateLabel not bound -!missing-selector! MTROperationalStateClusterOperationalStateStruct::setOperationalStateID: not bound -!missing-selector! MTROperationalStateClusterOperationalStateStruct::setOperationalStateLabel: not bound -!missing-selector! MTROperationalStateClusterOperationCompletionEvent::completionErrorCode not bound -!missing-selector! MTROperationalStateClusterOperationCompletionEvent::pausedTime not bound -!missing-selector! MTROperationalStateClusterOperationCompletionEvent::setCompletionErrorCode: not bound -!missing-selector! MTROperationalStateClusterOperationCompletionEvent::setPausedTime: not bound -!missing-selector! MTROperationalStateClusterOperationCompletionEvent::setTotalOperationalTime: not bound -!missing-selector! MTROperationalStateClusterOperationCompletionEvent::totalOperationalTime not bound -!missing-selector! MTROperationalStateClusterPauseParams::serverSideProcessingTimeout not bound -!missing-selector! MTROperationalStateClusterPauseParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTROperationalStateClusterPauseParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTROperationalStateClusterPauseParams::timedInvokeTimeoutMs not bound -!missing-selector! MTROperationalStateClusterResumeParams::serverSideProcessingTimeout not bound -!missing-selector! MTROperationalStateClusterResumeParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTROperationalStateClusterResumeParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTROperationalStateClusterResumeParams::timedInvokeTimeoutMs not bound -!missing-selector! MTROperationalStateClusterStartParams::serverSideProcessingTimeout not bound -!missing-selector! MTROperationalStateClusterStartParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTROperationalStateClusterStartParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTROperationalStateClusterStartParams::timedInvokeTimeoutMs not bound -!missing-selector! MTROperationalStateClusterStopParams::serverSideProcessingTimeout not bound -!missing-selector! MTROperationalStateClusterStopParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTROperationalStateClusterStopParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTROperationalStateClusterStopParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::getNewMode not bound -!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::serverSideProcessingTimeout not bound -!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::setNewMode: not bound -!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRRVCCleanModeClusterChangeToModeResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRRVCCleanModeClusterChangeToModeResponseParams::setStatus: not bound -!missing-selector! MTRRVCCleanModeClusterChangeToModeResponseParams::setStatusText: not bound -!missing-selector! MTRRVCCleanModeClusterChangeToModeResponseParams::status not bound -!missing-selector! MTRRVCCleanModeClusterChangeToModeResponseParams::statusText not bound -!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::label not bound -!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::mode not bound -!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::modeTags not bound -!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::setLabel: not bound -!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::setMode: not bound -!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::setModeTags: not bound -!missing-selector! MTRRVCCleanModeClusterModeTagStruct::mfgCode not bound -!missing-selector! MTRRVCCleanModeClusterModeTagStruct::setMfgCode: not bound -!missing-selector! MTRRVCCleanModeClusterModeTagStruct::setValue: not bound -!missing-selector! MTRRVCCleanModeClusterModeTagStruct::value not bound -!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::errorStateDetails not bound -!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::errorStateID not bound -!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::errorStateLabel not bound -!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::setErrorStateDetails: not bound -!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::setErrorStateID: not bound -!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::setErrorStateLabel: not bound -!missing-selector! MTRRVCOperationalStateClusterOperationalCommandResponseParams::commandResponseState not bound -!missing-selector! MTRRVCOperationalStateClusterOperationalCommandResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRRVCOperationalStateClusterOperationalCommandResponseParams::setCommandResponseState: not bound -!missing-selector! MTRRVCOperationalStateClusterOperationalErrorEvent::errorState not bound -!missing-selector! MTRRVCOperationalStateClusterOperationalErrorEvent::setErrorState: not bound -!missing-selector! MTRRVCOperationalStateClusterOperationalStateStruct::operationalStateID not bound -!missing-selector! MTRRVCOperationalStateClusterOperationalStateStruct::operationalStateLabel not bound -!missing-selector! MTRRVCOperationalStateClusterOperationalStateStruct::setOperationalStateID: not bound -!missing-selector! MTRRVCOperationalStateClusterOperationalStateStruct::setOperationalStateLabel: not bound -!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::completionErrorCode not bound -!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::pausedTime not bound -!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::setCompletionErrorCode: not bound -!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::setPausedTime: not bound -!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::setTotalOperationalTime: not bound -!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::totalOperationalTime not bound -!missing-selector! MTRRVCOperationalStateClusterPauseParams::serverSideProcessingTimeout not bound -!missing-selector! MTRRVCOperationalStateClusterPauseParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRRVCOperationalStateClusterPauseParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRRVCOperationalStateClusterPauseParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRRVCOperationalStateClusterResumeParams::serverSideProcessingTimeout not bound -!missing-selector! MTRRVCOperationalStateClusterResumeParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRRVCOperationalStateClusterResumeParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRRVCOperationalStateClusterResumeParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRRVCRunModeClusterChangeToModeParams::getNewMode not bound -!missing-selector! MTRRVCRunModeClusterChangeToModeParams::serverSideProcessingTimeout not bound -!missing-selector! MTRRVCRunModeClusterChangeToModeParams::setNewMode: not bound -!missing-selector! MTRRVCRunModeClusterChangeToModeParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRRVCRunModeClusterChangeToModeParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRRVCRunModeClusterChangeToModeParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRRVCRunModeClusterChangeToModeResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRRVCRunModeClusterChangeToModeResponseParams::setStatus: not bound -!missing-selector! MTRRVCRunModeClusterChangeToModeResponseParams::setStatusText: not bound -!missing-selector! MTRRVCRunModeClusterChangeToModeResponseParams::status not bound -!missing-selector! MTRRVCRunModeClusterChangeToModeResponseParams::statusText not bound -!missing-selector! MTRRVCRunModeClusterModeOptionStruct::label not bound -!missing-selector! MTRRVCRunModeClusterModeOptionStruct::mode not bound -!missing-selector! MTRRVCRunModeClusterModeOptionStruct::modeTags not bound -!missing-selector! MTRRVCRunModeClusterModeOptionStruct::setLabel: not bound -!missing-selector! MTRRVCRunModeClusterModeOptionStruct::setMode: not bound -!missing-selector! MTRRVCRunModeClusterModeOptionStruct::setModeTags: not bound -!missing-selector! MTRRVCRunModeClusterModeTagStruct::mfgCode not bound -!missing-selector! MTRRVCRunModeClusterModeTagStruct::setMfgCode: not bound -!missing-selector! MTRRVCRunModeClusterModeTagStruct::setValue: not bound -!missing-selector! MTRRVCRunModeClusterModeTagStruct::value not bound -!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::coolSetpoint not bound -!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::heatSetpoint not bound -!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::setCoolSetpoint: not bound -!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::setHeatSetpoint: not bound -!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::setTransitionTime: not bound -!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::transitionTime not bound -!missing-selector! MTRWiFiNetworkDiagnosticsClusterAssociationFailureEvent::associationFailureCause not bound -!missing-selector! MTRWiFiNetworkDiagnosticsClusterAssociationFailureEvent::setAssociationFailureCause: not bound -!missing-type! MTRBaseClusterOperationalState not bound -!missing-type! MTRBaseClusterRVCCleanMode not bound -!missing-type! MTRBaseClusterRVCOperationalState not bound -!missing-type! MTRBaseClusterRVCRunMode not bound -!missing-type! MTRClusterOperationalState not bound -!missing-type! MTRClusterRVCCleanMode not bound -!missing-type! MTRClusterRVCOperationalState not bound -!missing-type! MTRClusterRVCRunMode not bound -!missing-type! MTRGenericBaseCluster not bound -!missing-type! MTRGenericCluster not bound -!missing-type! MTROperationalStateClusterErrorStateStruct not bound -!missing-type! MTROperationalStateClusterOperationalCommandResponseParams not bound -!missing-type! MTROperationalStateClusterOperationalErrorEvent not bound -!missing-type! MTROperationalStateClusterOperationalStateStruct not bound -!missing-type! MTROperationalStateClusterOperationCompletionEvent not bound -!missing-type! MTROperationalStateClusterPauseParams not bound -!missing-type! MTROperationalStateClusterResumeParams not bound -!missing-type! MTROperationalStateClusterStartParams not bound -!missing-type! MTROperationalStateClusterStopParams not bound -!missing-type! MTRRVCCleanModeClusterChangeToModeParams not bound -!missing-type! MTRRVCCleanModeClusterChangeToModeResponseParams not bound -!missing-type! MTRRVCCleanModeClusterModeOptionStruct not bound -!missing-type! MTRRVCCleanModeClusterModeTagStruct not bound -!missing-type! MTRRVCOperationalStateClusterErrorStateStruct not bound -!missing-type! MTRRVCOperationalStateClusterOperationalCommandResponseParams not bound -!missing-type! MTRRVCOperationalStateClusterOperationalErrorEvent not bound -!missing-type! MTRRVCOperationalStateClusterOperationalStateStruct not bound -!missing-type! MTRRVCOperationalStateClusterOperationCompletionEvent not bound -!missing-type! MTRRVCOperationalStateClusterPauseParams not bound -!missing-type! MTRRVCOperationalStateClusterResumeParams not bound -!missing-type! MTRRVCRunModeClusterChangeToModeParams not bound -!missing-type! MTRRVCRunModeClusterChangeToModeResponseParams not bound -!missing-type! MTRRVCRunModeClusterModeOptionStruct not bound -!missing-type! MTRRVCRunModeClusterModeTagStruct not bound -!missing-type! MTRThermostatClusterWeeklyScheduleTransitionStruct not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-UIKit.ignore b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-UIKit.ignore index 77189feeab20..ddb894e0504e 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-UIKit.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-UIKit.ignore @@ -406,7 +406,6 @@ !incorrect-protocol-member! UIMenuLeaf::selectedImage is REQUIRED and should be abstract !incorrect-protocol-member! UIMenuLeaf::setSelectedImage: is REQUIRED and should be abstract -!missing-selector! NSItemProvider::_availableTypes not bound !missing-protocol! UIItemProviderReadingAugmentationDesignating not bound # Will be removed in XAMCORE_5 diff --git a/tests/xtro-sharpie/iOS-BrowserEngineKit.todo b/tests/xtro-sharpie/iOS-BrowserEngineKit.todo index 2347460bde1d..b58e1411c656 100644 --- a/tests/xtro-sharpie/iOS-BrowserEngineKit.todo +++ b/tests/xtro-sharpie/iOS-BrowserEngineKit.todo @@ -132,3 +132,7 @@ !missing-type! BETextInteraction not bound !missing-type! BETextSuggestion not bound !missing-type! BEWebContentProcess not bound +!missing-selector! BEWebAppManifest::initWithJSONData:manifestURL: not bound +!missing-selector! BEWebAppManifest::jsonData not bound +!missing-selector! BEWebAppManifest::manifestURL not bound +!missing-type! BEWebAppManifest not bound diff --git a/tests/xtro-sharpie/macOS-Matter.todo b/tests/xtro-sharpie/iOS-Matter.ignore similarity index 97% rename from tests/xtro-sharpie/macOS-Matter.todo rename to tests/xtro-sharpie/iOS-Matter.ignore index 1d707cc1e85c..9cd6ba2774ad 100644 --- a/tests/xtro-sharpie/macOS-Matter.todo +++ b/tests/xtro-sharpie/iOS-Matter.ignore @@ -144,7 +144,6 @@ !missing-enum! MTRPumpConfigurationAndControlFeature not bound !missing-enum! MTRPumpConfigurationAndControlOperationMode not bound !missing-enum! MTRPumpConfigurationAndControlPumpStatusBitmap not bound -!missing-enum! MTRScenesFeature not bound !missing-enum! MTRSoftwareDiagnosticsFeature not bound !missing-enum! MTRSwitchFeature not bound !missing-enum! MTRTargetNavigatorStatus not bound @@ -980,17 +979,6 @@ !missing-selector! +MTRBaseClusterRelativeHumidityMeasurement::readAttributeMeasuredValueWithClusterStateCache:endpoint:queue:completion: not bound !missing-selector! +MTRBaseClusterRelativeHumidityMeasurement::readAttributeMinMeasuredValueWithClusterStateCache:endpoint:queue:completion: not bound !missing-selector! +MTRBaseClusterRelativeHumidityMeasurement::readAttributeToleranceWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeAcceptedCommandListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeAttributeListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeClusterRevisionWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeCurrentGroupWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeCurrentSceneWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeFeatureMapWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeGeneratedCommandListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeLastConfiguredByWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeNameSupportWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeSceneCountWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeSceneValidWithClusterStateCache:endpoint:queue:completion: not bound !missing-selector! +MTRBaseClusterSoftwareDiagnostics::readAttributeAcceptedCommandListWithClusterStateCache:endpoint:queue:completion: not bound !missing-selector! +MTRBaseClusterSoftwareDiagnostics::readAttributeAttributeListWithClusterStateCache:endpoint:queue:completion: not bound !missing-selector! +MTRBaseClusterSoftwareDiagnostics::readAttributeClusterRevisionWithClusterStateCache:endpoint:queue:completion: not bound @@ -3585,39 +3573,6 @@ !missing-selector! MTRBaseClusterRelativeHumidityMeasurement::subscribeAttributeMeasuredValueWithParams:subscriptionEstablished:reportHandler: not bound !missing-selector! MTRBaseClusterRelativeHumidityMeasurement::subscribeAttributeMinMeasuredValueWithParams:subscriptionEstablished:reportHandler: not bound !missing-selector! MTRBaseClusterRelativeHumidityMeasurement::subscribeAttributeToleranceWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::addSceneWithParams:completion: not bound -!missing-selector! MTRBaseClusterScenes::copySceneWithParams:completion: not bound -!missing-selector! MTRBaseClusterScenes::enhancedAddSceneWithParams:completion: not bound -!missing-selector! MTRBaseClusterScenes::enhancedViewSceneWithParams:completion: not bound -!missing-selector! MTRBaseClusterScenes::getSceneMembershipWithParams:completion: not bound -!missing-selector! MTRBaseClusterScenes::initWithDevice:endpointID:queue: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeAcceptedCommandListWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeAttributeListWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeClusterRevisionWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeCurrentGroupWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeCurrentSceneWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeFeatureMapWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeGeneratedCommandListWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeLastConfiguredByWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeNameSupportWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeSceneCountWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeSceneValidWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::recallSceneWithParams:completion: not bound -!missing-selector! MTRBaseClusterScenes::removeAllScenesWithParams:completion: not bound -!missing-selector! MTRBaseClusterScenes::removeSceneWithParams:completion: not bound -!missing-selector! MTRBaseClusterScenes::storeSceneWithParams:completion: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeAcceptedCommandListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeAttributeListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeClusterRevisionWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeCurrentGroupWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeCurrentSceneWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeFeatureMapWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeGeneratedCommandListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeLastConfiguredByWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeNameSupportWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeSceneCountWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeSceneValidWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::viewSceneWithParams:completion: not bound !missing-selector! MTRBaseClusterSoftwareDiagnostics::initWithDevice:endpointID:queue: not bound !missing-selector! MTRBaseClusterSoftwareDiagnostics::readAttributeAcceptedCommandListWithCompletion: not bound !missing-selector! MTRBaseClusterSoftwareDiagnostics::readAttributeAttributeListWithCompletion: not bound @@ -5838,28 +5793,6 @@ !missing-selector! MTRClusterRelativeHumidityMeasurement::readAttributeMeasuredValueWithParams: not bound !missing-selector! MTRClusterRelativeHumidityMeasurement::readAttributeMinMeasuredValueWithParams: not bound !missing-selector! MTRClusterRelativeHumidityMeasurement::readAttributeToleranceWithParams: not bound -!missing-selector! MTRClusterScenes::addSceneWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterScenes::copySceneWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterScenes::enhancedAddSceneWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterScenes::enhancedViewSceneWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterScenes::getSceneMembershipWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterScenes::initWithDevice:endpointID:queue: not bound -!missing-selector! MTRClusterScenes::readAttributeAcceptedCommandListWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeAttributeListWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeClusterRevisionWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeCurrentGroupWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeCurrentSceneWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeFeatureMapWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeGeneratedCommandListWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeLastConfiguredByWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeNameSupportWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeSceneCountWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeSceneValidWithParams: not bound -!missing-selector! MTRClusterScenes::recallSceneWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterScenes::removeAllScenesWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterScenes::removeSceneWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterScenes::storeSceneWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterScenes::viewSceneWithParams:expectedValues:expectedValueInterval:completion: not bound !missing-selector! MTRClusterSoftwareDiagnostics::initWithDevice:endpointID:queue: not bound !missing-selector! MTRClusterSoftwareDiagnostics::readAttributeAcceptedCommandListWithParams: not bound !missing-selector! MTRClusterSoftwareDiagnostics::readAttributeAttributeListWithParams: not bound @@ -8115,185 +8048,6 @@ !missing-selector! MTRReadParams::setFilterByFabric: not bound !missing-selector! MTRReadParams::setMinEventNumber: not bound !missing-selector! MTRReadParams::shouldFilterByFabric not bound -!missing-selector! MTRScenesClusterAddSceneParams::extensionFieldSets not bound -!missing-selector! MTRScenesClusterAddSceneParams::groupID not bound -!missing-selector! MTRScenesClusterAddSceneParams::sceneID not bound -!missing-selector! MTRScenesClusterAddSceneParams::sceneName not bound -!missing-selector! MTRScenesClusterAddSceneParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterAddSceneParams::setExtensionFieldSets: not bound -!missing-selector! MTRScenesClusterAddSceneParams::setGroupID: not bound -!missing-selector! MTRScenesClusterAddSceneParams::setSceneID: not bound -!missing-selector! MTRScenesClusterAddSceneParams::setSceneName: not bound -!missing-selector! MTRScenesClusterAddSceneParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterAddSceneParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterAddSceneParams::setTransitionTime: not bound -!missing-selector! MTRScenesClusterAddSceneParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterAddSceneParams::transitionTime not bound -!missing-selector! MTRScenesClusterAddSceneResponseParams::groupID not bound -!missing-selector! MTRScenesClusterAddSceneResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRScenesClusterAddSceneResponseParams::sceneID not bound -!missing-selector! MTRScenesClusterAddSceneResponseParams::setGroupID: not bound -!missing-selector! MTRScenesClusterAddSceneResponseParams::setSceneID: not bound -!missing-selector! MTRScenesClusterAddSceneResponseParams::setStatus: not bound -!missing-selector! MTRScenesClusterAddSceneResponseParams::status not bound -!missing-selector! MTRScenesClusterAttributeValuePair::attributeID not bound -!missing-selector! MTRScenesClusterAttributeValuePair::attributeValue not bound -!missing-selector! MTRScenesClusterAttributeValuePair::setAttributeID: not bound -!missing-selector! MTRScenesClusterAttributeValuePair::setAttributeValue: not bound -!missing-selector! MTRScenesClusterCopySceneParams::groupIdentifierFrom not bound -!missing-selector! MTRScenesClusterCopySceneParams::groupIdentifierTo not bound -!missing-selector! MTRScenesClusterCopySceneParams::mode not bound -!missing-selector! MTRScenesClusterCopySceneParams::sceneIdentifierFrom not bound -!missing-selector! MTRScenesClusterCopySceneParams::sceneIdentifierTo not bound -!missing-selector! MTRScenesClusterCopySceneParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterCopySceneParams::setGroupIdentifierFrom: not bound -!missing-selector! MTRScenesClusterCopySceneParams::setGroupIdentifierTo: not bound -!missing-selector! MTRScenesClusterCopySceneParams::setMode: not bound -!missing-selector! MTRScenesClusterCopySceneParams::setSceneIdentifierFrom: not bound -!missing-selector! MTRScenesClusterCopySceneParams::setSceneIdentifierTo: not bound -!missing-selector! MTRScenesClusterCopySceneParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterCopySceneParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterCopySceneParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterCopySceneResponseParams::groupIdentifierFrom not bound -!missing-selector! MTRScenesClusterCopySceneResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRScenesClusterCopySceneResponseParams::sceneIdentifierFrom not bound -!missing-selector! MTRScenesClusterCopySceneResponseParams::setGroupIdentifierFrom: not bound -!missing-selector! MTRScenesClusterCopySceneResponseParams::setSceneIdentifierFrom: not bound -!missing-selector! MTRScenesClusterCopySceneResponseParams::setStatus: not bound -!missing-selector! MTRScenesClusterCopySceneResponseParams::status not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::extensionFieldSets not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::groupID not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::sceneID not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::sceneName not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::setExtensionFieldSets: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::setGroupID: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::setSceneID: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::setSceneName: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::setTransitionTime: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::transitionTime not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneResponseParams::groupID not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneResponseParams::sceneID not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneResponseParams::setGroupID: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneResponseParams::setSceneID: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneResponseParams::setStatus: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneResponseParams::status not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneParams::groupID not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneParams::sceneID not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneParams::setGroupID: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneParams::setSceneID: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::extensionFieldSets not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::groupID not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::sceneID not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::sceneName not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::setExtensionFieldSets: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::setGroupID: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::setSceneID: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::setSceneName: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::setStatus: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::setTransitionTime: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::status not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::transitionTime not bound -!missing-selector! MTRScenesClusterExtensionFieldSet::attributeValueList not bound -!missing-selector! MTRScenesClusterExtensionFieldSet::clusterID not bound -!missing-selector! MTRScenesClusterExtensionFieldSet::setAttributeValueList: not bound -!missing-selector! MTRScenesClusterExtensionFieldSet::setClusterID: not bound -!missing-selector! MTRScenesClusterGetSceneMembershipParams::groupID not bound -!missing-selector! MTRScenesClusterGetSceneMembershipParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterGetSceneMembershipParams::setGroupID: not bound -!missing-selector! MTRScenesClusterGetSceneMembershipParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterGetSceneMembershipParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterGetSceneMembershipParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterGetSceneMembershipResponseParams::capacity not bound -!missing-selector! MTRScenesClusterGetSceneMembershipResponseParams::groupID not bound -!missing-selector! MTRScenesClusterGetSceneMembershipResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRScenesClusterGetSceneMembershipResponseParams::sceneList not bound -!missing-selector! MTRScenesClusterGetSceneMembershipResponseParams::setCapacity: not bound -!missing-selector! MTRScenesClusterGetSceneMembershipResponseParams::setGroupID: not bound -!missing-selector! MTRScenesClusterGetSceneMembershipResponseParams::setSceneList: not bound -!missing-selector! MTRScenesClusterGetSceneMembershipResponseParams::setStatus: not bound -!missing-selector! MTRScenesClusterGetSceneMembershipResponseParams::status not bound -!missing-selector! MTRScenesClusterRecallSceneParams::groupID not bound -!missing-selector! MTRScenesClusterRecallSceneParams::sceneID not bound -!missing-selector! MTRScenesClusterRecallSceneParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterRecallSceneParams::setGroupID: not bound -!missing-selector! MTRScenesClusterRecallSceneParams::setSceneID: not bound -!missing-selector! MTRScenesClusterRecallSceneParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterRecallSceneParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterRecallSceneParams::setTransitionTime: not bound -!missing-selector! MTRScenesClusterRecallSceneParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterRecallSceneParams::transitionTime not bound -!missing-selector! MTRScenesClusterRemoveAllScenesParams::groupID not bound -!missing-selector! MTRScenesClusterRemoveAllScenesParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterRemoveAllScenesParams::setGroupID: not bound -!missing-selector! MTRScenesClusterRemoveAllScenesParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterRemoveAllScenesParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterRemoveAllScenesParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterRemoveAllScenesResponseParams::groupID not bound -!missing-selector! MTRScenesClusterRemoveAllScenesResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRScenesClusterRemoveAllScenesResponseParams::setGroupID: not bound -!missing-selector! MTRScenesClusterRemoveAllScenesResponseParams::setStatus: not bound -!missing-selector! MTRScenesClusterRemoveAllScenesResponseParams::status not bound -!missing-selector! MTRScenesClusterRemoveSceneParams::groupID not bound -!missing-selector! MTRScenesClusterRemoveSceneParams::sceneID not bound -!missing-selector! MTRScenesClusterRemoveSceneParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterRemoveSceneParams::setGroupID: not bound -!missing-selector! MTRScenesClusterRemoveSceneParams::setSceneID: not bound -!missing-selector! MTRScenesClusterRemoveSceneParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterRemoveSceneParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterRemoveSceneParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterRemoveSceneResponseParams::groupID not bound -!missing-selector! MTRScenesClusterRemoveSceneResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRScenesClusterRemoveSceneResponseParams::sceneID not bound -!missing-selector! MTRScenesClusterRemoveSceneResponseParams::setGroupID: not bound -!missing-selector! MTRScenesClusterRemoveSceneResponseParams::setSceneID: not bound -!missing-selector! MTRScenesClusterRemoveSceneResponseParams::setStatus: not bound -!missing-selector! MTRScenesClusterRemoveSceneResponseParams::status not bound -!missing-selector! MTRScenesClusterStoreSceneParams::groupID not bound -!missing-selector! MTRScenesClusterStoreSceneParams::sceneID not bound -!missing-selector! MTRScenesClusterStoreSceneParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterStoreSceneParams::setGroupID: not bound -!missing-selector! MTRScenesClusterStoreSceneParams::setSceneID: not bound -!missing-selector! MTRScenesClusterStoreSceneParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterStoreSceneParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterStoreSceneParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterStoreSceneResponseParams::groupID not bound -!missing-selector! MTRScenesClusterStoreSceneResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRScenesClusterStoreSceneResponseParams::sceneID not bound -!missing-selector! MTRScenesClusterStoreSceneResponseParams::setGroupID: not bound -!missing-selector! MTRScenesClusterStoreSceneResponseParams::setSceneID: not bound -!missing-selector! MTRScenesClusterStoreSceneResponseParams::setStatus: not bound -!missing-selector! MTRScenesClusterStoreSceneResponseParams::status not bound -!missing-selector! MTRScenesClusterViewSceneParams::groupID not bound -!missing-selector! MTRScenesClusterViewSceneParams::sceneID not bound -!missing-selector! MTRScenesClusterViewSceneParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterViewSceneParams::setGroupID: not bound -!missing-selector! MTRScenesClusterViewSceneParams::setSceneID: not bound -!missing-selector! MTRScenesClusterViewSceneParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterViewSceneParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterViewSceneParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::extensionFieldSets not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::groupID not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::sceneID not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::sceneName not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::setExtensionFieldSets: not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::setGroupID: not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::setSceneID: not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::setSceneName: not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::setStatus: not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::setTransitionTime: not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::status not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::transitionTime not bound !missing-selector! MTRSetupPayload::commissioningFlow not bound !missing-selector! MTRSetupPayload::discoveryCapabilities not bound !missing-selector! MTRSetupPayload::discriminator not bound @@ -9053,7 +8807,6 @@ !missing-type! MTRBaseClusterPressureMeasurement not bound !missing-type! MTRBaseClusterPumpConfigurationAndControl not bound !missing-type! MTRBaseClusterRelativeHumidityMeasurement not bound -!missing-type! MTRBaseClusterScenes not bound !missing-type! MTRBaseClusterSoftwareDiagnostics not bound !missing-type! MTRBaseClusterSwitch not bound !missing-type! MTRBaseClusterTargetNavigator not bound @@ -9142,7 +8895,6 @@ !missing-type! MTRClusterPressureMeasurement not bound !missing-type! MTRClusterPumpConfigurationAndControl not bound !missing-type! MTRClusterRelativeHumidityMeasurement not bound -!missing-type! MTRClusterScenes not bound !missing-type! MTRClusterSoftwareDiagnostics not bound !missing-type! MTRClusterStateCacheContainer not bound !missing-type! MTRClusterSwitch not bound @@ -9375,27 +9127,6 @@ !missing-type! MTRPumpConfigurationAndControlClusterSystemPressureLowEvent not bound !missing-type! MTRPumpConfigurationAndControlClusterTurbineOperationEvent not bound !missing-type! MTRReadParams not bound -!missing-type! MTRScenesClusterAddSceneParams not bound -!missing-type! MTRScenesClusterAddSceneResponseParams not bound -!missing-type! MTRScenesClusterAttributeValuePair not bound -!missing-type! MTRScenesClusterCopySceneParams not bound -!missing-type! MTRScenesClusterCopySceneResponseParams not bound -!missing-type! MTRScenesClusterEnhancedAddSceneParams not bound -!missing-type! MTRScenesClusterEnhancedAddSceneResponseParams not bound -!missing-type! MTRScenesClusterEnhancedViewSceneParams not bound -!missing-type! MTRScenesClusterEnhancedViewSceneResponseParams not bound -!missing-type! MTRScenesClusterExtensionFieldSet not bound -!missing-type! MTRScenesClusterGetSceneMembershipParams not bound -!missing-type! MTRScenesClusterGetSceneMembershipResponseParams not bound -!missing-type! MTRScenesClusterRecallSceneParams not bound -!missing-type! MTRScenesClusterRemoveAllScenesParams not bound -!missing-type! MTRScenesClusterRemoveAllScenesResponseParams not bound -!missing-type! MTRScenesClusterRemoveSceneParams not bound -!missing-type! MTRScenesClusterRemoveSceneResponseParams not bound -!missing-type! MTRScenesClusterStoreSceneParams not bound -!missing-type! MTRScenesClusterStoreSceneResponseParams not bound -!missing-type! MTRScenesClusterViewSceneParams not bound -!missing-type! MTRScenesClusterViewSceneResponseParams not bound !missing-type! MTRSetupPayload not bound !missing-type! MTRSoftwareDiagnosticsClusterResetWatermarksParams not bound !missing-type! MTRSoftwareDiagnosticsClusterSoftwareFaultEvent not bound @@ -9517,7 +9248,6 @@ !missing-enum! MTRRVCRunModeFeature not bound !missing-enum! MTRRVCRunModeModeTag not bound !missing-enum! MTRRVCRunModeStatusCode not bound -!missing-enum! MTRScenesCopyModeBitmap not bound !missing-enum! MTRThermostatControlSequenceOfOperation not bound !missing-enum! MTRThermostatScheduleDayOfWeekBitmap not bound !missing-enum! MTRThermostatScheduleModeBitmap not bound @@ -9882,3 +9612,102 @@ !missing-type! MTRRVCRunModeClusterModeOptionStruct not bound !missing-type! MTRRVCRunModeClusterModeTagStruct not bound !missing-type! MTRThermostatClusterWeeklyScheduleTransitionStruct not bound +!missing-enum! MTRDiagnosticLogType not bound +!missing-enum! MTRFanControlAirflowDirection not bound +!missing-enum! MTRFanControlStepDirection not bound +!missing-enum! MTRStorageSecurityLevel not bound +!missing-enum! MTRStorageSharingType not bound +!missing-field! MTRDataVersionKey not bound +!missing-field! MTRPreviousDataKey not bound +!missing-pinvoke! MTRAttributeNameForID is not bound +!missing-pinvoke! MTRClusterNameForID is not bound +!missing-pinvoke! MTRDeviceControllerStorageClasses is not bound +!missing-pinvoke! MTRSetMessageReliabilityParameters is not bound +!missing-protocol! MTRDeviceControllerStorageDelegate not bound +!missing-selector! +MTRAccessGrant::accessGrantForAllNodesWithPrivilege: not bound +!missing-selector! +MTRAccessGrant::accessGrantForCASEAuthenticatedTag:privilege: not bound +!missing-selector! +MTRAccessGrant::accessGrantForGroupID:privilege: not bound +!missing-selector! +MTRAccessGrant::accessGrantForNodeID:privilege: not bound +!missing-selector! +MTRBaseClusterFanControl::readAttributeAirflowDirectionWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRServerCluster::newDescriptorCluster not bound +!missing-selector! MTRAccessGrant::authenticationMode not bound +!missing-selector! MTRAccessGrant::grantedPrivilege not bound +!missing-selector! MTRAccessGrant::subjectID not bound +!missing-selector! MTRBaseClusterFanControl::readAttributeAirflowDirectionWithCompletion: not bound +!missing-selector! MTRBaseClusterFanControl::stepWithParams:completion: not bound +!missing-selector! MTRBaseClusterFanControl::subscribeAttributeAirflowDirectionWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterFanControl::writeAttributeAirflowDirectionWithValue:completion: not bound +!missing-selector! MTRBaseClusterFanControl::writeAttributeAirflowDirectionWithValue:params:completion: not bound +!missing-selector! MTRBaseDevice::downloadLogOfType:timeout:queue:completion: not bound +!missing-selector! MTRClusterFanControl::readAttributeAirflowDirectionWithParams: not bound +!missing-selector! MTRClusterFanControl::stepWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterFanControl::writeAttributeAirflowDirectionWithValue:expectedValueInterval: not bound +!missing-selector! MTRClusterFanControl::writeAttributeAirflowDirectionWithValue:expectedValueInterval:params: not bound +!missing-selector! MTRDevice::deviceCachePrimed not bound +!missing-selector! MTRDevice::downloadLogOfType:timeout:queue:completion: not bound +!missing-selector! MTRDeviceController::addServerEndpoint: not bound +!missing-selector! MTRDeviceController::initWithParameters:error: not bound +!missing-selector! MTRDeviceController::removeServerEndpoint: not bound +!missing-selector! MTRDeviceController::removeServerEndpoint:queue:completion: not bound +!missing-selector! MTRDeviceController::uniqueIdentifier not bound +!missing-selector! MTRDeviceControllerExternalCertificateParameters::initWithStorageDelegate:storageDelegateQueue:uniqueIdentifier:ipk:vendorID:operationalKeypair:operationalCertificate:intermediateCertificate:rootCertificate: not bound +!missing-selector! MTRDeviceControllerParameters::certificationDeclarationCertificates not bound +!missing-selector! MTRDeviceControllerParameters::productAttestationAuthorityCertificates not bound +!missing-selector! MTRDeviceControllerParameters::setCertificationDeclarationCertificates: not bound +!missing-selector! MTRDeviceControllerParameters::setOperationalCertificateIssuer:queue: not bound +!missing-selector! MTRDeviceControllerParameters::setOTAProviderDelegate:queue: not bound +!missing-selector! MTRDeviceControllerParameters::setProductAttestationAuthorityCertificates: not bound +!missing-selector! MTRDeviceControllerParameters::setShouldAdvertiseOperational: not bound +!missing-selector! MTRDeviceControllerParameters::shouldAdvertiseOperational not bound +!missing-selector! MTRDeviceTypeRevision::deviceTypeID not bound +!missing-selector! MTRDeviceTypeRevision::deviceTypeRevision not bound +!missing-selector! MTRDeviceTypeRevision::initWithDeviceTypeID:revision: not bound +!missing-selector! MTRFanControlClusterStepParams::direction not bound +!missing-selector! MTRFanControlClusterStepParams::lowestOff not bound +!missing-selector! MTRFanControlClusterStepParams::serverSideProcessingTimeout not bound +!missing-selector! MTRFanControlClusterStepParams::setDirection: not bound +!missing-selector! MTRFanControlClusterStepParams::setLowestOff: not bound +!missing-selector! MTRFanControlClusterStepParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTRFanControlClusterStepParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTRFanControlClusterStepParams::setWrap: not bound +!missing-selector! MTRFanControlClusterStepParams::timedInvokeTimeoutMs not bound +!missing-selector! MTRFanControlClusterStepParams::wrap not bound +!missing-selector! MTRMetricData::duration not bound +!missing-selector! MTRMetricData::errorCode not bound +!missing-selector! MTRMetricData::value not bound +!missing-selector! MTRMetrics::allKeys not bound +!missing-selector! MTRMetrics::metricDataForKey: not bound +!missing-selector! MTRMetrics::uniqueIdentifier not bound +!missing-selector! MTRServerAttribute::attributeID not bound +!missing-selector! MTRServerAttribute::initReadonlyAttributeWithID:initialValue:requiredPrivilege: not bound +!missing-selector! MTRServerAttribute::isWritable not bound +!missing-selector! MTRServerAttribute::requiredReadPrivilege not bound +!missing-selector! MTRServerAttribute::setValue: not bound +!missing-selector! MTRServerAttribute::value not bound +!missing-selector! MTRServerCluster::accessGrants not bound +!missing-selector! MTRServerCluster::addAccessGrant: not bound +!missing-selector! MTRServerCluster::addAttribute: not bound +!missing-selector! MTRServerCluster::attributes not bound +!missing-selector! MTRServerCluster::clusterID not bound +!missing-selector! MTRServerCluster::clusterRevision not bound +!missing-selector! MTRServerCluster::initWithClusterID:revision: not bound +!missing-selector! MTRServerCluster::removeAccessGrant: not bound +!missing-selector! MTRServerEndpoint::accessGrants not bound +!missing-selector! MTRServerEndpoint::addAccessGrant: not bound +!missing-selector! MTRServerEndpoint::addServerCluster: not bound +!missing-selector! MTRServerEndpoint::deviceTypes not bound +!missing-selector! MTRServerEndpoint::endpointID not bound +!missing-selector! MTRServerEndpoint::initWithEndpointID:deviceTypes: not bound +!missing-selector! MTRServerEndpoint::removeAccessGrant: not bound +!missing-selector! MTRServerEndpoint::serverClusters not bound +!missing-type! MTRAccessGrant not bound +!missing-type! MTRDeviceControllerAbstractParameters not bound +!missing-type! MTRDeviceControllerExternalCertificateParameters not bound +!missing-type! MTRDeviceControllerParameters not bound +!missing-type! MTRDeviceTypeRevision not bound +!missing-type! MTRFanControlClusterStepParams not bound +!missing-type! MTRMetricData not bound +!missing-type! MTRMetrics not bound +!missing-type! MTRServerAttribute not bound +!missing-type! MTRServerCluster not bound +!missing-type! MTRServerEndpoint not bound diff --git a/tests/xtro-sharpie/iOS-SafariServices.todo b/tests/xtro-sharpie/iOS-SafariServices.todo new file mode 100644 index 000000000000..8e3450e8b9b4 --- /dev/null +++ b/tests/xtro-sharpie/iOS-SafariServices.todo @@ -0,0 +1 @@ +!missing-protocol-member! SFAddToHomeScreenActivityItem::getWebAppManifestWithCompletionHandler: not found diff --git a/tests/xtro-sharpie/iOS-UIKit.ignore b/tests/xtro-sharpie/iOS-UIKit.ignore index 2b9ef48b161f..07e91a128713 100644 --- a/tests/xtro-sharpie/iOS-UIKit.ignore +++ b/tests/xtro-sharpie/iOS-UIKit.ignore @@ -658,5 +658,4 @@ !incorrect-protocol-member! UITraitChangeObservable::registerForTraitChanges:withHandler: is REQUIRED and should be abstract !incorrect-protocol-member! UITraitChangeObservable::registerForTraitChanges:withTarget:action: is REQUIRED and should be abstract -!missing-selector! NSItemProvider::_availableTypes not bound !missing-protocol! UIItemProviderReadingAugmentationDesignating not bound diff --git a/tests/xtro-sharpie/macOS-BrowserEngineKit.todo b/tests/xtro-sharpie/macOS-BrowserEngineKit.todo index d7b2ad085ff1..e69f56c5699a 100644 --- a/tests/xtro-sharpie/macOS-BrowserEngineKit.todo +++ b/tests/xtro-sharpie/macOS-BrowserEngineKit.todo @@ -30,3 +30,7 @@ !missing-type! BETextAlternatives not bound !missing-type! BETextSuggestion not bound !missing-type! BEWebContentProcess not bound +!missing-selector! BEWebAppManifest::initWithJSONData:manifestURL: not bound +!missing-selector! BEWebAppManifest::jsonData not bound +!missing-selector! BEWebAppManifest::manifestURL not bound +!missing-type! BEWebAppManifest not bound diff --git a/tests/xtro-sharpie/macOS-CoreAudio.todo b/tests/xtro-sharpie/macOS-CoreAudio.todo index 182e1513968d..e24ed232ca58 100644 --- a/tests/xtro-sharpie/macOS-CoreAudio.todo +++ b/tests/xtro-sharpie/macOS-CoreAudio.todo @@ -28,3 +28,4 @@ !missing-selector! CATapDescription::stream not bound !missing-selector! CATapDescription::UUID not bound !missing-type! CATapDescription not bound +!missing-selector! CATapDescription::initExcludingProcesses:andDeviceUID:withStream: not bound diff --git a/tests/xtro-sharpie/iOS-Matter.todo b/tests/xtro-sharpie/macOS-Matter.ignore similarity index 97% rename from tests/xtro-sharpie/iOS-Matter.todo rename to tests/xtro-sharpie/macOS-Matter.ignore index 1d707cc1e85c..9cd6ba2774ad 100644 --- a/tests/xtro-sharpie/iOS-Matter.todo +++ b/tests/xtro-sharpie/macOS-Matter.ignore @@ -144,7 +144,6 @@ !missing-enum! MTRPumpConfigurationAndControlFeature not bound !missing-enum! MTRPumpConfigurationAndControlOperationMode not bound !missing-enum! MTRPumpConfigurationAndControlPumpStatusBitmap not bound -!missing-enum! MTRScenesFeature not bound !missing-enum! MTRSoftwareDiagnosticsFeature not bound !missing-enum! MTRSwitchFeature not bound !missing-enum! MTRTargetNavigatorStatus not bound @@ -980,17 +979,6 @@ !missing-selector! +MTRBaseClusterRelativeHumidityMeasurement::readAttributeMeasuredValueWithClusterStateCache:endpoint:queue:completion: not bound !missing-selector! +MTRBaseClusterRelativeHumidityMeasurement::readAttributeMinMeasuredValueWithClusterStateCache:endpoint:queue:completion: not bound !missing-selector! +MTRBaseClusterRelativeHumidityMeasurement::readAttributeToleranceWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeAcceptedCommandListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeAttributeListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeClusterRevisionWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeCurrentGroupWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeCurrentSceneWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeFeatureMapWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeGeneratedCommandListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeLastConfiguredByWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeNameSupportWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeSceneCountWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeSceneValidWithClusterStateCache:endpoint:queue:completion: not bound !missing-selector! +MTRBaseClusterSoftwareDiagnostics::readAttributeAcceptedCommandListWithClusterStateCache:endpoint:queue:completion: not bound !missing-selector! +MTRBaseClusterSoftwareDiagnostics::readAttributeAttributeListWithClusterStateCache:endpoint:queue:completion: not bound !missing-selector! +MTRBaseClusterSoftwareDiagnostics::readAttributeClusterRevisionWithClusterStateCache:endpoint:queue:completion: not bound @@ -3585,39 +3573,6 @@ !missing-selector! MTRBaseClusterRelativeHumidityMeasurement::subscribeAttributeMeasuredValueWithParams:subscriptionEstablished:reportHandler: not bound !missing-selector! MTRBaseClusterRelativeHumidityMeasurement::subscribeAttributeMinMeasuredValueWithParams:subscriptionEstablished:reportHandler: not bound !missing-selector! MTRBaseClusterRelativeHumidityMeasurement::subscribeAttributeToleranceWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::addSceneWithParams:completion: not bound -!missing-selector! MTRBaseClusterScenes::copySceneWithParams:completion: not bound -!missing-selector! MTRBaseClusterScenes::enhancedAddSceneWithParams:completion: not bound -!missing-selector! MTRBaseClusterScenes::enhancedViewSceneWithParams:completion: not bound -!missing-selector! MTRBaseClusterScenes::getSceneMembershipWithParams:completion: not bound -!missing-selector! MTRBaseClusterScenes::initWithDevice:endpointID:queue: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeAcceptedCommandListWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeAttributeListWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeClusterRevisionWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeCurrentGroupWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeCurrentSceneWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeFeatureMapWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeGeneratedCommandListWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeLastConfiguredByWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeNameSupportWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeSceneCountWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeSceneValidWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::recallSceneWithParams:completion: not bound -!missing-selector! MTRBaseClusterScenes::removeAllScenesWithParams:completion: not bound -!missing-selector! MTRBaseClusterScenes::removeSceneWithParams:completion: not bound -!missing-selector! MTRBaseClusterScenes::storeSceneWithParams:completion: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeAcceptedCommandListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeAttributeListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeClusterRevisionWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeCurrentGroupWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeCurrentSceneWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeFeatureMapWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeGeneratedCommandListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeLastConfiguredByWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeNameSupportWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeSceneCountWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeSceneValidWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::viewSceneWithParams:completion: not bound !missing-selector! MTRBaseClusterSoftwareDiagnostics::initWithDevice:endpointID:queue: not bound !missing-selector! MTRBaseClusterSoftwareDiagnostics::readAttributeAcceptedCommandListWithCompletion: not bound !missing-selector! MTRBaseClusterSoftwareDiagnostics::readAttributeAttributeListWithCompletion: not bound @@ -5838,28 +5793,6 @@ !missing-selector! MTRClusterRelativeHumidityMeasurement::readAttributeMeasuredValueWithParams: not bound !missing-selector! MTRClusterRelativeHumidityMeasurement::readAttributeMinMeasuredValueWithParams: not bound !missing-selector! MTRClusterRelativeHumidityMeasurement::readAttributeToleranceWithParams: not bound -!missing-selector! MTRClusterScenes::addSceneWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterScenes::copySceneWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterScenes::enhancedAddSceneWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterScenes::enhancedViewSceneWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterScenes::getSceneMembershipWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterScenes::initWithDevice:endpointID:queue: not bound -!missing-selector! MTRClusterScenes::readAttributeAcceptedCommandListWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeAttributeListWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeClusterRevisionWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeCurrentGroupWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeCurrentSceneWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeFeatureMapWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeGeneratedCommandListWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeLastConfiguredByWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeNameSupportWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeSceneCountWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeSceneValidWithParams: not bound -!missing-selector! MTRClusterScenes::recallSceneWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterScenes::removeAllScenesWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterScenes::removeSceneWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterScenes::storeSceneWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterScenes::viewSceneWithParams:expectedValues:expectedValueInterval:completion: not bound !missing-selector! MTRClusterSoftwareDiagnostics::initWithDevice:endpointID:queue: not bound !missing-selector! MTRClusterSoftwareDiagnostics::readAttributeAcceptedCommandListWithParams: not bound !missing-selector! MTRClusterSoftwareDiagnostics::readAttributeAttributeListWithParams: not bound @@ -8115,185 +8048,6 @@ !missing-selector! MTRReadParams::setFilterByFabric: not bound !missing-selector! MTRReadParams::setMinEventNumber: not bound !missing-selector! MTRReadParams::shouldFilterByFabric not bound -!missing-selector! MTRScenesClusterAddSceneParams::extensionFieldSets not bound -!missing-selector! MTRScenesClusterAddSceneParams::groupID not bound -!missing-selector! MTRScenesClusterAddSceneParams::sceneID not bound -!missing-selector! MTRScenesClusterAddSceneParams::sceneName not bound -!missing-selector! MTRScenesClusterAddSceneParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterAddSceneParams::setExtensionFieldSets: not bound -!missing-selector! MTRScenesClusterAddSceneParams::setGroupID: not bound -!missing-selector! MTRScenesClusterAddSceneParams::setSceneID: not bound -!missing-selector! MTRScenesClusterAddSceneParams::setSceneName: not bound -!missing-selector! MTRScenesClusterAddSceneParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterAddSceneParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterAddSceneParams::setTransitionTime: not bound -!missing-selector! MTRScenesClusterAddSceneParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterAddSceneParams::transitionTime not bound -!missing-selector! MTRScenesClusterAddSceneResponseParams::groupID not bound -!missing-selector! MTRScenesClusterAddSceneResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRScenesClusterAddSceneResponseParams::sceneID not bound -!missing-selector! MTRScenesClusterAddSceneResponseParams::setGroupID: not bound -!missing-selector! MTRScenesClusterAddSceneResponseParams::setSceneID: not bound -!missing-selector! MTRScenesClusterAddSceneResponseParams::setStatus: not bound -!missing-selector! MTRScenesClusterAddSceneResponseParams::status not bound -!missing-selector! MTRScenesClusterAttributeValuePair::attributeID not bound -!missing-selector! MTRScenesClusterAttributeValuePair::attributeValue not bound -!missing-selector! MTRScenesClusterAttributeValuePair::setAttributeID: not bound -!missing-selector! MTRScenesClusterAttributeValuePair::setAttributeValue: not bound -!missing-selector! MTRScenesClusterCopySceneParams::groupIdentifierFrom not bound -!missing-selector! MTRScenesClusterCopySceneParams::groupIdentifierTo not bound -!missing-selector! MTRScenesClusterCopySceneParams::mode not bound -!missing-selector! MTRScenesClusterCopySceneParams::sceneIdentifierFrom not bound -!missing-selector! MTRScenesClusterCopySceneParams::sceneIdentifierTo not bound -!missing-selector! MTRScenesClusterCopySceneParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterCopySceneParams::setGroupIdentifierFrom: not bound -!missing-selector! MTRScenesClusterCopySceneParams::setGroupIdentifierTo: not bound -!missing-selector! MTRScenesClusterCopySceneParams::setMode: not bound -!missing-selector! MTRScenesClusterCopySceneParams::setSceneIdentifierFrom: not bound -!missing-selector! MTRScenesClusterCopySceneParams::setSceneIdentifierTo: not bound -!missing-selector! MTRScenesClusterCopySceneParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterCopySceneParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterCopySceneParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterCopySceneResponseParams::groupIdentifierFrom not bound -!missing-selector! MTRScenesClusterCopySceneResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRScenesClusterCopySceneResponseParams::sceneIdentifierFrom not bound -!missing-selector! MTRScenesClusterCopySceneResponseParams::setGroupIdentifierFrom: not bound -!missing-selector! MTRScenesClusterCopySceneResponseParams::setSceneIdentifierFrom: not bound -!missing-selector! MTRScenesClusterCopySceneResponseParams::setStatus: not bound -!missing-selector! MTRScenesClusterCopySceneResponseParams::status not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::extensionFieldSets not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::groupID not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::sceneID not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::sceneName not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::setExtensionFieldSets: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::setGroupID: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::setSceneID: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::setSceneName: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::setTransitionTime: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::transitionTime not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneResponseParams::groupID not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneResponseParams::sceneID not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneResponseParams::setGroupID: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneResponseParams::setSceneID: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneResponseParams::setStatus: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneResponseParams::status not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneParams::groupID not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneParams::sceneID not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneParams::setGroupID: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneParams::setSceneID: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::extensionFieldSets not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::groupID not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::sceneID not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::sceneName not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::setExtensionFieldSets: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::setGroupID: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::setSceneID: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::setSceneName: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::setStatus: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::setTransitionTime: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::status not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::transitionTime not bound -!missing-selector! MTRScenesClusterExtensionFieldSet::attributeValueList not bound -!missing-selector! MTRScenesClusterExtensionFieldSet::clusterID not bound -!missing-selector! MTRScenesClusterExtensionFieldSet::setAttributeValueList: not bound -!missing-selector! MTRScenesClusterExtensionFieldSet::setClusterID: not bound -!missing-selector! MTRScenesClusterGetSceneMembershipParams::groupID not bound -!missing-selector! MTRScenesClusterGetSceneMembershipParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterGetSceneMembershipParams::setGroupID: not bound -!missing-selector! MTRScenesClusterGetSceneMembershipParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterGetSceneMembershipParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterGetSceneMembershipParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterGetSceneMembershipResponseParams::capacity not bound -!missing-selector! MTRScenesClusterGetSceneMembershipResponseParams::groupID not bound -!missing-selector! MTRScenesClusterGetSceneMembershipResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRScenesClusterGetSceneMembershipResponseParams::sceneList not bound -!missing-selector! MTRScenesClusterGetSceneMembershipResponseParams::setCapacity: not bound -!missing-selector! MTRScenesClusterGetSceneMembershipResponseParams::setGroupID: not bound -!missing-selector! MTRScenesClusterGetSceneMembershipResponseParams::setSceneList: not bound -!missing-selector! MTRScenesClusterGetSceneMembershipResponseParams::setStatus: not bound -!missing-selector! MTRScenesClusterGetSceneMembershipResponseParams::status not bound -!missing-selector! MTRScenesClusterRecallSceneParams::groupID not bound -!missing-selector! MTRScenesClusterRecallSceneParams::sceneID not bound -!missing-selector! MTRScenesClusterRecallSceneParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterRecallSceneParams::setGroupID: not bound -!missing-selector! MTRScenesClusterRecallSceneParams::setSceneID: not bound -!missing-selector! MTRScenesClusterRecallSceneParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterRecallSceneParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterRecallSceneParams::setTransitionTime: not bound -!missing-selector! MTRScenesClusterRecallSceneParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterRecallSceneParams::transitionTime not bound -!missing-selector! MTRScenesClusterRemoveAllScenesParams::groupID not bound -!missing-selector! MTRScenesClusterRemoveAllScenesParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterRemoveAllScenesParams::setGroupID: not bound -!missing-selector! MTRScenesClusterRemoveAllScenesParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterRemoveAllScenesParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterRemoveAllScenesParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterRemoveAllScenesResponseParams::groupID not bound -!missing-selector! MTRScenesClusterRemoveAllScenesResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRScenesClusterRemoveAllScenesResponseParams::setGroupID: not bound -!missing-selector! MTRScenesClusterRemoveAllScenesResponseParams::setStatus: not bound -!missing-selector! MTRScenesClusterRemoveAllScenesResponseParams::status not bound -!missing-selector! MTRScenesClusterRemoveSceneParams::groupID not bound -!missing-selector! MTRScenesClusterRemoveSceneParams::sceneID not bound -!missing-selector! MTRScenesClusterRemoveSceneParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterRemoveSceneParams::setGroupID: not bound -!missing-selector! MTRScenesClusterRemoveSceneParams::setSceneID: not bound -!missing-selector! MTRScenesClusterRemoveSceneParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterRemoveSceneParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterRemoveSceneParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterRemoveSceneResponseParams::groupID not bound -!missing-selector! MTRScenesClusterRemoveSceneResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRScenesClusterRemoveSceneResponseParams::sceneID not bound -!missing-selector! MTRScenesClusterRemoveSceneResponseParams::setGroupID: not bound -!missing-selector! MTRScenesClusterRemoveSceneResponseParams::setSceneID: not bound -!missing-selector! MTRScenesClusterRemoveSceneResponseParams::setStatus: not bound -!missing-selector! MTRScenesClusterRemoveSceneResponseParams::status not bound -!missing-selector! MTRScenesClusterStoreSceneParams::groupID not bound -!missing-selector! MTRScenesClusterStoreSceneParams::sceneID not bound -!missing-selector! MTRScenesClusterStoreSceneParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterStoreSceneParams::setGroupID: not bound -!missing-selector! MTRScenesClusterStoreSceneParams::setSceneID: not bound -!missing-selector! MTRScenesClusterStoreSceneParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterStoreSceneParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterStoreSceneParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterStoreSceneResponseParams::groupID not bound -!missing-selector! MTRScenesClusterStoreSceneResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRScenesClusterStoreSceneResponseParams::sceneID not bound -!missing-selector! MTRScenesClusterStoreSceneResponseParams::setGroupID: not bound -!missing-selector! MTRScenesClusterStoreSceneResponseParams::setSceneID: not bound -!missing-selector! MTRScenesClusterStoreSceneResponseParams::setStatus: not bound -!missing-selector! MTRScenesClusterStoreSceneResponseParams::status not bound -!missing-selector! MTRScenesClusterViewSceneParams::groupID not bound -!missing-selector! MTRScenesClusterViewSceneParams::sceneID not bound -!missing-selector! MTRScenesClusterViewSceneParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterViewSceneParams::setGroupID: not bound -!missing-selector! MTRScenesClusterViewSceneParams::setSceneID: not bound -!missing-selector! MTRScenesClusterViewSceneParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterViewSceneParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterViewSceneParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::extensionFieldSets not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::groupID not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::sceneID not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::sceneName not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::setExtensionFieldSets: not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::setGroupID: not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::setSceneID: not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::setSceneName: not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::setStatus: not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::setTransitionTime: not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::status not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::transitionTime not bound !missing-selector! MTRSetupPayload::commissioningFlow not bound !missing-selector! MTRSetupPayload::discoveryCapabilities not bound !missing-selector! MTRSetupPayload::discriminator not bound @@ -9053,7 +8807,6 @@ !missing-type! MTRBaseClusterPressureMeasurement not bound !missing-type! MTRBaseClusterPumpConfigurationAndControl not bound !missing-type! MTRBaseClusterRelativeHumidityMeasurement not bound -!missing-type! MTRBaseClusterScenes not bound !missing-type! MTRBaseClusterSoftwareDiagnostics not bound !missing-type! MTRBaseClusterSwitch not bound !missing-type! MTRBaseClusterTargetNavigator not bound @@ -9142,7 +8895,6 @@ !missing-type! MTRClusterPressureMeasurement not bound !missing-type! MTRClusterPumpConfigurationAndControl not bound !missing-type! MTRClusterRelativeHumidityMeasurement not bound -!missing-type! MTRClusterScenes not bound !missing-type! MTRClusterSoftwareDiagnostics not bound !missing-type! MTRClusterStateCacheContainer not bound !missing-type! MTRClusterSwitch not bound @@ -9375,27 +9127,6 @@ !missing-type! MTRPumpConfigurationAndControlClusterSystemPressureLowEvent not bound !missing-type! MTRPumpConfigurationAndControlClusterTurbineOperationEvent not bound !missing-type! MTRReadParams not bound -!missing-type! MTRScenesClusterAddSceneParams not bound -!missing-type! MTRScenesClusterAddSceneResponseParams not bound -!missing-type! MTRScenesClusterAttributeValuePair not bound -!missing-type! MTRScenesClusterCopySceneParams not bound -!missing-type! MTRScenesClusterCopySceneResponseParams not bound -!missing-type! MTRScenesClusterEnhancedAddSceneParams not bound -!missing-type! MTRScenesClusterEnhancedAddSceneResponseParams not bound -!missing-type! MTRScenesClusterEnhancedViewSceneParams not bound -!missing-type! MTRScenesClusterEnhancedViewSceneResponseParams not bound -!missing-type! MTRScenesClusterExtensionFieldSet not bound -!missing-type! MTRScenesClusterGetSceneMembershipParams not bound -!missing-type! MTRScenesClusterGetSceneMembershipResponseParams not bound -!missing-type! MTRScenesClusterRecallSceneParams not bound -!missing-type! MTRScenesClusterRemoveAllScenesParams not bound -!missing-type! MTRScenesClusterRemoveAllScenesResponseParams not bound -!missing-type! MTRScenesClusterRemoveSceneParams not bound -!missing-type! MTRScenesClusterRemoveSceneResponseParams not bound -!missing-type! MTRScenesClusterStoreSceneParams not bound -!missing-type! MTRScenesClusterStoreSceneResponseParams not bound -!missing-type! MTRScenesClusterViewSceneParams not bound -!missing-type! MTRScenesClusterViewSceneResponseParams not bound !missing-type! MTRSetupPayload not bound !missing-type! MTRSoftwareDiagnosticsClusterResetWatermarksParams not bound !missing-type! MTRSoftwareDiagnosticsClusterSoftwareFaultEvent not bound @@ -9517,7 +9248,6 @@ !missing-enum! MTRRVCRunModeFeature not bound !missing-enum! MTRRVCRunModeModeTag not bound !missing-enum! MTRRVCRunModeStatusCode not bound -!missing-enum! MTRScenesCopyModeBitmap not bound !missing-enum! MTRThermostatControlSequenceOfOperation not bound !missing-enum! MTRThermostatScheduleDayOfWeekBitmap not bound !missing-enum! MTRThermostatScheduleModeBitmap not bound @@ -9882,3 +9612,102 @@ !missing-type! MTRRVCRunModeClusterModeOptionStruct not bound !missing-type! MTRRVCRunModeClusterModeTagStruct not bound !missing-type! MTRThermostatClusterWeeklyScheduleTransitionStruct not bound +!missing-enum! MTRDiagnosticLogType not bound +!missing-enum! MTRFanControlAirflowDirection not bound +!missing-enum! MTRFanControlStepDirection not bound +!missing-enum! MTRStorageSecurityLevel not bound +!missing-enum! MTRStorageSharingType not bound +!missing-field! MTRDataVersionKey not bound +!missing-field! MTRPreviousDataKey not bound +!missing-pinvoke! MTRAttributeNameForID is not bound +!missing-pinvoke! MTRClusterNameForID is not bound +!missing-pinvoke! MTRDeviceControllerStorageClasses is not bound +!missing-pinvoke! MTRSetMessageReliabilityParameters is not bound +!missing-protocol! MTRDeviceControllerStorageDelegate not bound +!missing-selector! +MTRAccessGrant::accessGrantForAllNodesWithPrivilege: not bound +!missing-selector! +MTRAccessGrant::accessGrantForCASEAuthenticatedTag:privilege: not bound +!missing-selector! +MTRAccessGrant::accessGrantForGroupID:privilege: not bound +!missing-selector! +MTRAccessGrant::accessGrantForNodeID:privilege: not bound +!missing-selector! +MTRBaseClusterFanControl::readAttributeAirflowDirectionWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRServerCluster::newDescriptorCluster not bound +!missing-selector! MTRAccessGrant::authenticationMode not bound +!missing-selector! MTRAccessGrant::grantedPrivilege not bound +!missing-selector! MTRAccessGrant::subjectID not bound +!missing-selector! MTRBaseClusterFanControl::readAttributeAirflowDirectionWithCompletion: not bound +!missing-selector! MTRBaseClusterFanControl::stepWithParams:completion: not bound +!missing-selector! MTRBaseClusterFanControl::subscribeAttributeAirflowDirectionWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterFanControl::writeAttributeAirflowDirectionWithValue:completion: not bound +!missing-selector! MTRBaseClusterFanControl::writeAttributeAirflowDirectionWithValue:params:completion: not bound +!missing-selector! MTRBaseDevice::downloadLogOfType:timeout:queue:completion: not bound +!missing-selector! MTRClusterFanControl::readAttributeAirflowDirectionWithParams: not bound +!missing-selector! MTRClusterFanControl::stepWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterFanControl::writeAttributeAirflowDirectionWithValue:expectedValueInterval: not bound +!missing-selector! MTRClusterFanControl::writeAttributeAirflowDirectionWithValue:expectedValueInterval:params: not bound +!missing-selector! MTRDevice::deviceCachePrimed not bound +!missing-selector! MTRDevice::downloadLogOfType:timeout:queue:completion: not bound +!missing-selector! MTRDeviceController::addServerEndpoint: not bound +!missing-selector! MTRDeviceController::initWithParameters:error: not bound +!missing-selector! MTRDeviceController::removeServerEndpoint: not bound +!missing-selector! MTRDeviceController::removeServerEndpoint:queue:completion: not bound +!missing-selector! MTRDeviceController::uniqueIdentifier not bound +!missing-selector! MTRDeviceControllerExternalCertificateParameters::initWithStorageDelegate:storageDelegateQueue:uniqueIdentifier:ipk:vendorID:operationalKeypair:operationalCertificate:intermediateCertificate:rootCertificate: not bound +!missing-selector! MTRDeviceControllerParameters::certificationDeclarationCertificates not bound +!missing-selector! MTRDeviceControllerParameters::productAttestationAuthorityCertificates not bound +!missing-selector! MTRDeviceControllerParameters::setCertificationDeclarationCertificates: not bound +!missing-selector! MTRDeviceControllerParameters::setOperationalCertificateIssuer:queue: not bound +!missing-selector! MTRDeviceControllerParameters::setOTAProviderDelegate:queue: not bound +!missing-selector! MTRDeviceControllerParameters::setProductAttestationAuthorityCertificates: not bound +!missing-selector! MTRDeviceControllerParameters::setShouldAdvertiseOperational: not bound +!missing-selector! MTRDeviceControllerParameters::shouldAdvertiseOperational not bound +!missing-selector! MTRDeviceTypeRevision::deviceTypeID not bound +!missing-selector! MTRDeviceTypeRevision::deviceTypeRevision not bound +!missing-selector! MTRDeviceTypeRevision::initWithDeviceTypeID:revision: not bound +!missing-selector! MTRFanControlClusterStepParams::direction not bound +!missing-selector! MTRFanControlClusterStepParams::lowestOff not bound +!missing-selector! MTRFanControlClusterStepParams::serverSideProcessingTimeout not bound +!missing-selector! MTRFanControlClusterStepParams::setDirection: not bound +!missing-selector! MTRFanControlClusterStepParams::setLowestOff: not bound +!missing-selector! MTRFanControlClusterStepParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTRFanControlClusterStepParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTRFanControlClusterStepParams::setWrap: not bound +!missing-selector! MTRFanControlClusterStepParams::timedInvokeTimeoutMs not bound +!missing-selector! MTRFanControlClusterStepParams::wrap not bound +!missing-selector! MTRMetricData::duration not bound +!missing-selector! MTRMetricData::errorCode not bound +!missing-selector! MTRMetricData::value not bound +!missing-selector! MTRMetrics::allKeys not bound +!missing-selector! MTRMetrics::metricDataForKey: not bound +!missing-selector! MTRMetrics::uniqueIdentifier not bound +!missing-selector! MTRServerAttribute::attributeID not bound +!missing-selector! MTRServerAttribute::initReadonlyAttributeWithID:initialValue:requiredPrivilege: not bound +!missing-selector! MTRServerAttribute::isWritable not bound +!missing-selector! MTRServerAttribute::requiredReadPrivilege not bound +!missing-selector! MTRServerAttribute::setValue: not bound +!missing-selector! MTRServerAttribute::value not bound +!missing-selector! MTRServerCluster::accessGrants not bound +!missing-selector! MTRServerCluster::addAccessGrant: not bound +!missing-selector! MTRServerCluster::addAttribute: not bound +!missing-selector! MTRServerCluster::attributes not bound +!missing-selector! MTRServerCluster::clusterID not bound +!missing-selector! MTRServerCluster::clusterRevision not bound +!missing-selector! MTRServerCluster::initWithClusterID:revision: not bound +!missing-selector! MTRServerCluster::removeAccessGrant: not bound +!missing-selector! MTRServerEndpoint::accessGrants not bound +!missing-selector! MTRServerEndpoint::addAccessGrant: not bound +!missing-selector! MTRServerEndpoint::addServerCluster: not bound +!missing-selector! MTRServerEndpoint::deviceTypes not bound +!missing-selector! MTRServerEndpoint::endpointID not bound +!missing-selector! MTRServerEndpoint::initWithEndpointID:deviceTypes: not bound +!missing-selector! MTRServerEndpoint::removeAccessGrant: not bound +!missing-selector! MTRServerEndpoint::serverClusters not bound +!missing-type! MTRAccessGrant not bound +!missing-type! MTRDeviceControllerAbstractParameters not bound +!missing-type! MTRDeviceControllerExternalCertificateParameters not bound +!missing-type! MTRDeviceControllerParameters not bound +!missing-type! MTRDeviceTypeRevision not bound +!missing-type! MTRFanControlClusterStepParams not bound +!missing-type! MTRMetricData not bound +!missing-type! MTRMetrics not bound +!missing-type! MTRServerAttribute not bound +!missing-type! MTRServerCluster not bound +!missing-type! MTRServerEndpoint not bound diff --git a/tests/xtro-sharpie/tvOS-BrowserEngineKit.todo b/tests/xtro-sharpie/tvOS-BrowserEngineKit.todo index 79ad97e0f803..fb8925e5c742 100644 --- a/tests/xtro-sharpie/tvOS-BrowserEngineKit.todo +++ b/tests/xtro-sharpie/tvOS-BrowserEngineKit.todo @@ -72,3 +72,7 @@ !missing-type! BETextDocumentRequest not bound !missing-type! BETextInteraction not bound !missing-type! BETextSuggestion not bound +!missing-selector! BEWebAppManifest::initWithJSONData:manifestURL: not bound +!missing-selector! BEWebAppManifest::jsonData not bound +!missing-selector! BEWebAppManifest::manifestURL not bound +!missing-type! BEWebAppManifest not bound diff --git a/tests/xtro-sharpie/tvOS-Matter.ignore b/tests/xtro-sharpie/tvOS-Matter.ignore index 21498983956b..74993acf7914 100644 --- a/tests/xtro-sharpie/tvOS-Matter.ignore +++ b/tests/xtro-sharpie/tvOS-Matter.ignore @@ -1202,80 +1202,6 @@ !missing-selector! MTROptionalQRCodeInfo::setTag: not bound !missing-selector! MTROptionalQRCodeInfo::stringValue not bound !missing-selector! MTROptionalQRCodeInfo::tag not bound -!missing-selector! MTRScenesClusterAddSceneParams::extensionFieldSets not bound -!missing-selector! MTRScenesClusterAddSceneParams::sceneName not bound -!missing-selector! MTRScenesClusterAddSceneParams::setExtensionFieldSets: not bound -!missing-selector! MTRScenesClusterAddSceneParams::setSceneName: not bound -!missing-selector! MTRScenesClusterAddSceneParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterAddSceneParams::setTransitionTime: not bound -!missing-selector! MTRScenesClusterAddSceneParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterAddSceneParams::transitionTime not bound -!missing-selector! MTRScenesClusterAddSceneResponseParams::setStatus: not bound -!missing-selector! MTRScenesClusterAddSceneResponseParams::status not bound -!missing-selector! MTRScenesClusterAttributeValuePair::attributeValue not bound -!missing-selector! MTRScenesClusterAttributeValuePair::setAttributeValue: not bound -!missing-selector! MTRScenesClusterCopySceneParams::mode not bound -!missing-selector! MTRScenesClusterCopySceneParams::setMode: not bound -!missing-selector! MTRScenesClusterCopySceneParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterCopySceneParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterCopySceneResponseParams::setStatus: not bound -!missing-selector! MTRScenesClusterCopySceneResponseParams::status not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::extensionFieldSets not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::sceneName not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::setExtensionFieldSets: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::setSceneName: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::setTransitionTime: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::transitionTime not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneResponseParams::setStatus: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneResponseParams::status not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::extensionFieldSets not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::sceneName not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::setExtensionFieldSets: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::setSceneName: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::setStatus: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::setTransitionTime: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::status not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::transitionTime not bound -!missing-selector! MTRScenesClusterExtensionFieldSet::attributeValueList not bound -!missing-selector! MTRScenesClusterExtensionFieldSet::setAttributeValueList: not bound -!missing-selector! MTRScenesClusterGetSceneMembershipParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterGetSceneMembershipParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterGetSceneMembershipResponseParams::capacity not bound -!missing-selector! MTRScenesClusterGetSceneMembershipResponseParams::sceneList not bound -!missing-selector! MTRScenesClusterGetSceneMembershipResponseParams::setCapacity: not bound -!missing-selector! MTRScenesClusterGetSceneMembershipResponseParams::setSceneList: not bound -!missing-selector! MTRScenesClusterGetSceneMembershipResponseParams::setStatus: not bound -!missing-selector! MTRScenesClusterGetSceneMembershipResponseParams::status not bound -!missing-selector! MTRScenesClusterRecallSceneParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterRecallSceneParams::setTransitionTime: not bound -!missing-selector! MTRScenesClusterRecallSceneParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterRecallSceneParams::transitionTime not bound -!missing-selector! MTRScenesClusterRemoveAllScenesParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterRemoveAllScenesParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterRemoveAllScenesResponseParams::setStatus: not bound -!missing-selector! MTRScenesClusterRemoveAllScenesResponseParams::status not bound -!missing-selector! MTRScenesClusterRemoveSceneParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterRemoveSceneParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterRemoveSceneResponseParams::setStatus: not bound -!missing-selector! MTRScenesClusterRemoveSceneResponseParams::status not bound -!missing-selector! MTRScenesClusterStoreSceneParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterStoreSceneParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterStoreSceneResponseParams::setStatus: not bound -!missing-selector! MTRScenesClusterStoreSceneResponseParams::status not bound -!missing-selector! MTRScenesClusterViewSceneParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterViewSceneParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::extensionFieldSets not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::sceneName not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::setExtensionFieldSets: not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::setSceneName: not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::setStatus: not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::setTransitionTime: not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::status not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::transitionTime not bound !missing-selector! MTRSetupPayload::commissioningFlow not bound !missing-selector! MTRSetupPayload::discriminator not bound !missing-selector! MTRSetupPayload::getAllOptionalVendorData: not bound @@ -1495,7 +1421,6 @@ !missing-type! MTRBaseClusterPressureMeasurement not bound !missing-type! MTRBaseClusterPumpConfigurationAndControl not bound !missing-type! MTRBaseClusterRelativeHumidityMeasurement not bound -!missing-type! MTRBaseClusterScenes not bound !missing-type! MTRBaseClusterSoftwareDiagnostics not bound !missing-type! MTRBaseClusterSwitch not bound !missing-type! MTRBaseClusterTargetNavigator not bound @@ -1690,27 +1615,6 @@ !missing-type! MTRPumpConfigurationAndControlClusterSystemPressureLowEvent not bound !missing-type! MTRPumpConfigurationAndControlClusterTurbineOperationEvent not bound !missing-type! MTRReadParams not bound -!missing-type! MTRScenesClusterAddSceneParams not bound -!missing-type! MTRScenesClusterAddSceneResponseParams not bound -!missing-type! MTRScenesClusterAttributeValuePair not bound -!missing-type! MTRScenesClusterCopySceneParams not bound -!missing-type! MTRScenesClusterCopySceneResponseParams not bound -!missing-type! MTRScenesClusterEnhancedAddSceneParams not bound -!missing-type! MTRScenesClusterEnhancedAddSceneResponseParams not bound -!missing-type! MTRScenesClusterEnhancedViewSceneParams not bound -!missing-type! MTRScenesClusterEnhancedViewSceneResponseParams not bound -!missing-type! MTRScenesClusterExtensionFieldSet not bound -!missing-type! MTRScenesClusterGetSceneMembershipParams not bound -!missing-type! MTRScenesClusterGetSceneMembershipResponseParams not bound -!missing-type! MTRScenesClusterRecallSceneParams not bound -!missing-type! MTRScenesClusterRemoveAllScenesParams not bound -!missing-type! MTRScenesClusterRemoveAllScenesResponseParams not bound -!missing-type! MTRScenesClusterRemoveSceneParams not bound -!missing-type! MTRScenesClusterRemoveSceneResponseParams not bound -!missing-type! MTRScenesClusterStoreSceneParams not bound -!missing-type! MTRScenesClusterStoreSceneResponseParams not bound -!missing-type! MTRScenesClusterViewSceneParams not bound -!missing-type! MTRScenesClusterViewSceneResponseParams not bound !missing-type! MTRSetupPayload not bound !missing-type! MTRSoftwareDiagnosticsClusterResetWatermarksParams not bound !missing-type! MTRSoftwareDiagnosticsClusterSoftwareFaultEvent not bound @@ -2766,17 +2670,6 @@ !missing-selector! MTRClusterRelativeHumidityMeasurement::readAttributeMeasuredValueWithParams: not bound !missing-selector! MTRClusterRelativeHumidityMeasurement::readAttributeMinMeasuredValueWithParams: not bound !missing-selector! MTRClusterRelativeHumidityMeasurement::readAttributeToleranceWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeAcceptedCommandListWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeAttributeListWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeClusterRevisionWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeCurrentGroupWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeCurrentSceneWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeFeatureMapWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeGeneratedCommandListWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeLastConfiguredByWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeNameSupportWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeSceneCountWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeSceneValidWithParams: not bound !missing-selector! MTRClusterSoftwareDiagnostics::readAttributeAcceptedCommandListWithParams: not bound !missing-selector! MTRClusterSoftwareDiagnostics::readAttributeAttributeListWithParams: not bound !missing-selector! MTRClusterSoftwareDiagnostics::readAttributeClusterRevisionWithParams: not bound @@ -3209,7 +3102,6 @@ !missing-type! MTRClusterPressureMeasurement not bound !missing-type! MTRClusterPumpConfigurationAndControl not bound !missing-type! MTRClusterRelativeHumidityMeasurement not bound -!missing-type! MTRClusterScenes not bound !missing-type! MTRClusterSoftwareDiagnostics not bound !missing-type! MTRClusterSwitch not bound !missing-type! MTRClusterTargetNavigator not bound @@ -4026,17 +3918,6 @@ !missing-selector! +MTRBaseClusterRelativeHumidityMeasurement::readAttributeMeasuredValueWithClusterStateCache:endpoint:queue:completion: not bound !missing-selector! +MTRBaseClusterRelativeHumidityMeasurement::readAttributeMinMeasuredValueWithClusterStateCache:endpoint:queue:completion: not bound !missing-selector! +MTRBaseClusterRelativeHumidityMeasurement::readAttributeToleranceWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeAcceptedCommandListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeAttributeListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeClusterRevisionWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeCurrentGroupWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeCurrentSceneWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeFeatureMapWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeGeneratedCommandListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeLastConfiguredByWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeNameSupportWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeSceneCountWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeSceneValidWithClusterStateCache:endpoint:queue:completion: not bound !missing-selector! +MTRBaseClusterSoftwareDiagnostics::readAttributeAcceptedCommandListWithClusterStateCache:endpoint:queue:completion: not bound !missing-selector! +MTRBaseClusterSoftwareDiagnostics::readAttributeAttributeListWithClusterStateCache:endpoint:queue:completion: not bound !missing-selector! +MTRBaseClusterSoftwareDiagnostics::readAttributeClusterRevisionWithClusterStateCache:endpoint:queue:completion: not bound @@ -6394,39 +6275,6 @@ !missing-selector! MTRBaseClusterRelativeHumidityMeasurement::subscribeAttributeMeasuredValueWithParams:subscriptionEstablished:reportHandler: not bound !missing-selector! MTRBaseClusterRelativeHumidityMeasurement::subscribeAttributeMinMeasuredValueWithParams:subscriptionEstablished:reportHandler: not bound !missing-selector! MTRBaseClusterRelativeHumidityMeasurement::subscribeAttributeToleranceWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::addSceneWithParams:completion: not bound -!missing-selector! MTRBaseClusterScenes::copySceneWithParams:completion: not bound -!missing-selector! MTRBaseClusterScenes::enhancedAddSceneWithParams:completion: not bound -!missing-selector! MTRBaseClusterScenes::enhancedViewSceneWithParams:completion: not bound -!missing-selector! MTRBaseClusterScenes::getSceneMembershipWithParams:completion: not bound -!missing-selector! MTRBaseClusterScenes::initWithDevice:endpointID:queue: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeAcceptedCommandListWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeAttributeListWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeClusterRevisionWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeCurrentGroupWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeCurrentSceneWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeFeatureMapWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeGeneratedCommandListWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeLastConfiguredByWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeNameSupportWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeSceneCountWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeSceneValidWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::recallSceneWithParams:completion: not bound -!missing-selector! MTRBaseClusterScenes::removeAllScenesWithParams:completion: not bound -!missing-selector! MTRBaseClusterScenes::removeSceneWithParams:completion: not bound -!missing-selector! MTRBaseClusterScenes::storeSceneWithParams:completion: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeAcceptedCommandListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeAttributeListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeClusterRevisionWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeCurrentGroupWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeCurrentSceneWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeFeatureMapWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeGeneratedCommandListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeLastConfiguredByWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeNameSupportWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeSceneCountWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeSceneValidWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::viewSceneWithParams:completion: not bound !missing-selector! MTRBaseClusterSoftwareDiagnostics::initWithDevice:endpointID:queue: not bound !missing-selector! MTRBaseClusterSoftwareDiagnostics::readAttributeAcceptedCommandListWithCompletion: not bound !missing-selector! MTRBaseClusterSoftwareDiagnostics::readAttributeAttributeListWithCompletion: not bound @@ -7717,17 +7565,6 @@ !missing-selector! MTRClusterPressureMeasurement::initWithDevice:endpointID:queue: not bound !missing-selector! MTRClusterPumpConfigurationAndControl::initWithDevice:endpointID:queue: not bound !missing-selector! MTRClusterRelativeHumidityMeasurement::initWithDevice:endpointID:queue: not bound -!missing-selector! MTRClusterScenes::addSceneWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterScenes::copySceneWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterScenes::enhancedAddSceneWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterScenes::enhancedViewSceneWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterScenes::getSceneMembershipWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterScenes::initWithDevice:endpointID:queue: not bound -!missing-selector! MTRClusterScenes::recallSceneWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterScenes::removeAllScenesWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterScenes::removeSceneWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterScenes::storeSceneWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterScenes::viewSceneWithParams:expectedValues:expectedValueInterval:completion: not bound !missing-selector! MTRClusterSoftwareDiagnostics::initWithDevice:endpointID:queue: not bound !missing-selector! MTRClusterSoftwareDiagnostics::resetWatermarksWithExpectedValues:expectedValueInterval:completion: not bound !missing-selector! MTRClusterSoftwareDiagnostics::resetWatermarksWithParams:expectedValues:expectedValueInterval:completion: not bound @@ -8571,102 +8408,6 @@ !missing-selector! MTRReadParams::setFilterByFabric: not bound !missing-selector! MTRReadParams::setMinEventNumber: not bound !missing-selector! MTRReadParams::shouldFilterByFabric not bound -!missing-selector! MTRScenesClusterAddSceneParams::groupID not bound -!missing-selector! MTRScenesClusterAddSceneParams::sceneID not bound -!missing-selector! MTRScenesClusterAddSceneParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterAddSceneParams::setGroupID: not bound -!missing-selector! MTRScenesClusterAddSceneParams::setSceneID: not bound -!missing-selector! MTRScenesClusterAddSceneParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterAddSceneResponseParams::groupID not bound -!missing-selector! MTRScenesClusterAddSceneResponseParams::sceneID not bound -!missing-selector! MTRScenesClusterAddSceneResponseParams::setGroupID: not bound -!missing-selector! MTRScenesClusterAddSceneResponseParams::setSceneID: not bound -!missing-selector! MTRScenesClusterAttributeValuePair::attributeID not bound -!missing-selector! MTRScenesClusterAttributeValuePair::setAttributeID: not bound -!missing-selector! MTRScenesClusterCopySceneParams::groupIdentifierFrom not bound -!missing-selector! MTRScenesClusterCopySceneParams::groupIdentifierTo not bound -!missing-selector! MTRScenesClusterCopySceneParams::sceneIdentifierFrom not bound -!missing-selector! MTRScenesClusterCopySceneParams::sceneIdentifierTo not bound -!missing-selector! MTRScenesClusterCopySceneParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterCopySceneParams::setGroupIdentifierFrom: not bound -!missing-selector! MTRScenesClusterCopySceneParams::setGroupIdentifierTo: not bound -!missing-selector! MTRScenesClusterCopySceneParams::setSceneIdentifierFrom: not bound -!missing-selector! MTRScenesClusterCopySceneParams::setSceneIdentifierTo: not bound -!missing-selector! MTRScenesClusterCopySceneParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterCopySceneResponseParams::groupIdentifierFrom not bound -!missing-selector! MTRScenesClusterCopySceneResponseParams::sceneIdentifierFrom not bound -!missing-selector! MTRScenesClusterCopySceneResponseParams::setGroupIdentifierFrom: not bound -!missing-selector! MTRScenesClusterCopySceneResponseParams::setSceneIdentifierFrom: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::groupID not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::sceneID not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::setGroupID: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::setSceneID: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneResponseParams::groupID not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneResponseParams::sceneID not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneResponseParams::setGroupID: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneResponseParams::setSceneID: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneParams::groupID not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneParams::sceneID not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneParams::setGroupID: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneParams::setSceneID: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::groupID not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::sceneID not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::setGroupID: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::setSceneID: not bound -!missing-selector! MTRScenesClusterExtensionFieldSet::clusterID not bound -!missing-selector! MTRScenesClusterExtensionFieldSet::setClusterID: not bound -!missing-selector! MTRScenesClusterGetSceneMembershipParams::groupID not bound -!missing-selector! MTRScenesClusterGetSceneMembershipParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterGetSceneMembershipParams::setGroupID: not bound -!missing-selector! MTRScenesClusterGetSceneMembershipParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterGetSceneMembershipResponseParams::groupID not bound -!missing-selector! MTRScenesClusterGetSceneMembershipResponseParams::setGroupID: not bound -!missing-selector! MTRScenesClusterRecallSceneParams::groupID not bound -!missing-selector! MTRScenesClusterRecallSceneParams::sceneID not bound -!missing-selector! MTRScenesClusterRecallSceneParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterRecallSceneParams::setGroupID: not bound -!missing-selector! MTRScenesClusterRecallSceneParams::setSceneID: not bound -!missing-selector! MTRScenesClusterRecallSceneParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterRemoveAllScenesParams::groupID not bound -!missing-selector! MTRScenesClusterRemoveAllScenesParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterRemoveAllScenesParams::setGroupID: not bound -!missing-selector! MTRScenesClusterRemoveAllScenesParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterRemoveAllScenesResponseParams::groupID not bound -!missing-selector! MTRScenesClusterRemoveAllScenesResponseParams::setGroupID: not bound -!missing-selector! MTRScenesClusterRemoveSceneParams::groupID not bound -!missing-selector! MTRScenesClusterRemoveSceneParams::sceneID not bound -!missing-selector! MTRScenesClusterRemoveSceneParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterRemoveSceneParams::setGroupID: not bound -!missing-selector! MTRScenesClusterRemoveSceneParams::setSceneID: not bound -!missing-selector! MTRScenesClusterRemoveSceneParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterRemoveSceneResponseParams::groupID not bound -!missing-selector! MTRScenesClusterRemoveSceneResponseParams::sceneID not bound -!missing-selector! MTRScenesClusterRemoveSceneResponseParams::setGroupID: not bound -!missing-selector! MTRScenesClusterRemoveSceneResponseParams::setSceneID: not bound -!missing-selector! MTRScenesClusterStoreSceneParams::groupID not bound -!missing-selector! MTRScenesClusterStoreSceneParams::sceneID not bound -!missing-selector! MTRScenesClusterStoreSceneParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterStoreSceneParams::setGroupID: not bound -!missing-selector! MTRScenesClusterStoreSceneParams::setSceneID: not bound -!missing-selector! MTRScenesClusterStoreSceneParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterStoreSceneResponseParams::groupID not bound -!missing-selector! MTRScenesClusterStoreSceneResponseParams::sceneID not bound -!missing-selector! MTRScenesClusterStoreSceneResponseParams::setGroupID: not bound -!missing-selector! MTRScenesClusterStoreSceneResponseParams::setSceneID: not bound -!missing-selector! MTRScenesClusterViewSceneParams::groupID not bound -!missing-selector! MTRScenesClusterViewSceneParams::sceneID not bound -!missing-selector! MTRScenesClusterViewSceneParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterViewSceneParams::setGroupID: not bound -!missing-selector! MTRScenesClusterViewSceneParams::setSceneID: not bound -!missing-selector! MTRScenesClusterViewSceneParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::groupID not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::sceneID not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::setGroupID: not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::setSceneID: not bound !missing-selector! MTRSetupPayload::discoveryCapabilities not bound !missing-selector! MTRSetupPayload::initWithSetupPasscode:discriminator: not bound !missing-selector! MTRSetupPayload::qrCodeString: not bound @@ -9199,3 +8940,774 @@ !missing-type! MTRUnitTestingClusterTestStructArrayArgumentResponseParams not bound !missing-type! MTRUnitTestingClusterTestUnknownCommandParams not bound !missing-type! MTRUnitTestingClusterTimedInvokeRequestParams not bound +!missing-enum! MTRBasicInformationColor not bound +!missing-enum! MTRBasicInformationProductFinish not bound +!missing-enum! MTRBridgedDeviceBasicInformationColor not bound +!missing-enum! MTRBridgedDeviceBasicInformationProductFinish not bound +!missing-enum! MTRDiagnosticLogsIntent not bound +!missing-enum! MTRDiagnosticLogsStatus not bound +!missing-enum! MTRDiagnosticLogsTransferProtocol not bound +!missing-enum! MTREventPriority not bound +!missing-enum! MTREventTimeType not bound +!missing-enum! MTRGroupsFeature not bound +!missing-enum! MTRGroupsNameSupportBitmap not bound +!missing-enum! MTRNetworkCommissioningWiFiSecurityBitmap not bound +!missing-enum! MTROccupancySensingOccupancyBitmap not bound +!missing-enum! MTROccupancySensingOccupancySensorType not bound +!missing-enum! MTROccupancySensingOccupancySensorTypeBitmap not bound +!missing-enum! MTRPowerSourceBatApprovedChemistry not bound +!missing-enum! MTRPowerSourceBatCommonDesignation not bound +!missing-enum! MTRPressureMeasurementFeature not bound +!missing-enum! MTRPumpConfigurationAndControlControlMode not bound +!missing-enum! MTRPumpConfigurationAndControlFeature not bound +!missing-enum! MTRPumpConfigurationAndControlOperationMode not bound +!missing-enum! MTRPumpConfigurationAndControlPumpStatusBitmap not bound +!missing-enum! MTRWiFiNetworkDiagnosticsConnectionStatus not bound +!missing-enum! MTRWiFiNetworkDiagnosticsWiFiVersion not bound +!missing-field! MTREventNumberKey not bound +!missing-field! MTREventPriorityKey not bound +!missing-field! MTREventSystemUpTimeKey not bound +!missing-field! MTREventTimestampDateKey not bound +!missing-field! MTREventTimeTypeKey not bound +!missing-selector! +MTRAttributeRequestPath::requestPathWithEndpointID:clusterID:attributeID: not bound +!missing-selector! +MTRBaseClusterBasicInformation::readAttributeProductAppearanceWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterBridgedDeviceBasicInformation::readAttributeProductAppearanceWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRCertificates::createIntermediateCertificate:rootCertificate:intermediatePublicKey:issuerID:fabricID:validityPeriod:error: not bound +!missing-selector! +MTRCertificates::createOperationalCertificate:signingCertificate:operationalPublicKey:fabricID:nodeID:caseAuthenticatedTags:validityPeriod:error: not bound +!missing-selector! +MTRCertificates::createRootCertificate:issuerID:fabricID:validityPeriod:error: not bound +!missing-selector! +MTRDeviceController::xpcInterfaceForClientProtocol not bound +!missing-selector! +MTRDeviceController::xpcInterfaceForServerProtocol not bound +!missing-selector! +MTREventRequestPath::requestPathWithEndpointID:clusterID:eventID: not bound +!missing-selector! MTRAccessControlClusterAccessControlTargetStruct::cluster not bound +!missing-selector! MTRAccessControlClusterAccessControlTargetStruct::deviceType not bound +!missing-selector! MTRAccessControlClusterAccessControlTargetStruct::endpoint not bound +!missing-selector! MTRAccessControlClusterAccessControlTargetStruct::setCluster: not bound +!missing-selector! MTRAccessControlClusterAccessControlTargetStruct::setDeviceType: not bound +!missing-selector! MTRAccessControlClusterAccessControlTargetStruct::setEndpoint: not bound +!missing-selector! MTRAccountLoginClusterGetSetupPINResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRApplicationLauncherClusterLauncherResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRAttributeReport::initWithResponseValue:error: not bound +!missing-selector! MTRAttributeRequestPath::attribute not bound +!missing-selector! MTRAttributeRequestPath::cluster not bound +!missing-selector! MTRAttributeRequestPath::endpoint not bound +!missing-selector! MTRBaseClusterBasicInformation::readAttributeProductAppearanceWithCompletion: not bound +!missing-selector! MTRBaseClusterBasicInformation::subscribeAttributeProductAppearanceWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterBridgedDeviceBasicInformation::readAttributeProductAppearanceWithCompletion: not bound +!missing-selector! MTRBaseClusterBridgedDeviceBasicInformation::subscribeAttributeProductAppearanceWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterGroupKeyManagement::keySetReadAllIndicesWithCompletion: not bound +!missing-selector! MTRBaseDevice::openCommissioningWindowWithDiscriminator:duration:queue:completion: not bound +!missing-selector! MTRBaseDevice::readAttributePaths:eventPaths:params:queue:completion: not bound +!missing-selector! MTRBaseDevice::subscribeToAttributePaths:eventPaths:params:queue:reportHandler:subscriptionEstablished:resubscriptionScheduled: not bound +!missing-selector! MTRBasicInformationClusterProductAppearanceStruct::finish not bound +!missing-selector! MTRBasicInformationClusterProductAppearanceStruct::primaryColor not bound +!missing-selector! MTRBasicInformationClusterProductAppearanceStruct::setFinish: not bound +!missing-selector! MTRBasicInformationClusterProductAppearanceStruct::setPrimaryColor: not bound +!missing-selector! MTRBridgedDeviceBasicInformationClusterProductAppearanceStruct::finish not bound +!missing-selector! MTRBridgedDeviceBasicInformationClusterProductAppearanceStruct::primaryColor not bound +!missing-selector! MTRBridgedDeviceBasicInformationClusterProductAppearanceStruct::setFinish: not bound +!missing-selector! MTRBridgedDeviceBasicInformationClusterProductAppearanceStruct::setPrimaryColor: not bound +!missing-selector! MTRChannelClusterChangeChannelResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRClusterBasicInformation::readAttributeProductAppearanceWithParams: not bound +!missing-selector! MTRClusterBridgedDeviceBasicInformation::readAttributeProductAppearanceWithParams: not bound +!missing-selector! MTRClusterGroupKeyManagement::keySetReadAllIndicesWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRCommissioningParameters::countryCode not bound +!missing-selector! MTRCommissioningParameters::setCountryCode: not bound +!missing-selector! MTRCommissioningParameters::setSkipCommissioningComplete: not bound +!missing-selector! MTRCommissioningParameters::skipCommissioningComplete not bound +!missing-selector! MTRContentLauncherClusterLauncherResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRDevice::estimatedStartTime not bound +!missing-selector! MTRDevice::openCommissioningWindowWithDiscriminator:duration:queue:completion: not bound +!missing-selector! MTRDeviceAttestationDeviceInfo::basicInformationProductID not bound +!missing-selector! MTRDeviceAttestationDeviceInfo::basicInformationVendorID not bound +!missing-selector! MTRDeviceControllerFactory::knownFabrics not bound +!missing-selector! MTRDeviceControllerStartupParams::caseAuthenticatedTags not bound +!missing-selector! MTRDeviceControllerStartupParams::setCaseAuthenticatedTags: not bound +!missing-selector! MTRDiagnosticLogsClusterRetrieveLogsResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRDoorLockClusterGetCredentialStatusResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRDoorLockClusterGetHolidayScheduleResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRDoorLockClusterGetUserResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRDoorLockClusterGetWeekDayScheduleResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRDoorLockClusterGetYearDayScheduleResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRDoorLockClusterSetCredentialResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRElectricalMeasurementClusterGetMeasurementProfileResponseCommandParams::initWithResponseValue:error: not bound +!missing-selector! MTRElectricalMeasurementClusterGetProfileInfoResponseCommandParams::initWithResponseValue:error: not bound +!missing-selector! MTREventReport::eventTimeType not bound +!missing-selector! MTREventReport::initWithResponseValue:error: not bound +!missing-selector! MTREventReport::systemUpTime not bound +!missing-selector! MTREventReport::timestampDate not bound +!missing-selector! MTREventRequestPath::cluster not bound +!missing-selector! MTREventRequestPath::endpoint not bound +!missing-selector! MTREventRequestPath::event not bound +!missing-selector! MTRFabricInfo::fabricID not bound +!missing-selector! MTRFabricInfo::fabricIndex not bound +!missing-selector! MTRFabricInfo::intermediateCertificate not bound +!missing-selector! MTRFabricInfo::intermediateCertificateTLV not bound +!missing-selector! MTRFabricInfo::label not bound +!missing-selector! MTRFabricInfo::nodeID not bound +!missing-selector! MTRFabricInfo::operationalCertificate not bound +!missing-selector! MTRFabricInfo::operationalCertificateTLV not bound +!missing-selector! MTRFabricInfo::rootCertificate not bound +!missing-selector! MTRFabricInfo::rootCertificateTLV not bound +!missing-selector! MTRFabricInfo::rootPublicKey not bound +!missing-selector! MTRFabricInfo::vendorID not bound +!missing-selector! MTRGeneralCommissioningClusterArmFailSafeResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRGeneralCommissioningClusterCommissioningCompleteResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRGeneralCommissioningClusterSetRegulatoryConfigResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRGroupKeyManagementClusterKeySetReadAllIndicesResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRGroupKeyManagementClusterKeySetReadResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRGroupsClusterAddGroupResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRGroupsClusterGetGroupMembershipResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRGroupsClusterRemoveGroupResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRGroupsClusterViewGroupResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRKeypadInputClusterSendKeyResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRMediaPlaybackClusterPlaybackResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRNetworkCommissioningClusterConnectNetworkResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRNetworkCommissioningClusterNetworkConfigResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRNetworkCommissioningClusterNetworkInfoStruct::connected not bound +!missing-selector! MTRNetworkCommissioningClusterNetworkInfoStruct::networkID not bound +!missing-selector! MTRNetworkCommissioningClusterNetworkInfoStruct::setConnected: not bound +!missing-selector! MTRNetworkCommissioningClusterNetworkInfoStruct::setNetworkID: not bound +!missing-selector! MTRNetworkCommissioningClusterScanNetworksResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::channel not bound +!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::extendedAddress not bound +!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::extendedPanId not bound +!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::lqi not bound +!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::networkName not bound +!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::panId not bound +!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::rssi not bound +!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::setChannel: not bound +!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::setExtendedAddress: not bound +!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::setExtendedPanId: not bound +!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::setLqi: not bound +!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::setNetworkName: not bound +!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::setPanId: not bound +!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::setRssi: not bound +!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::setVersion: not bound +!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::version not bound +!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::bssid not bound +!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::channel not bound +!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::rssi not bound +!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::security not bound +!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::setBssid: not bound +!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::setChannel: not bound +!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::setRssi: not bound +!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::setSecurity: not bound +!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::setSsid: not bound +!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::setWiFiBand: not bound +!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::ssid not bound +!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::wiFiBand not bound +!missing-selector! MTROperationalCredentialsClusterAttestationResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTROperationalCredentialsClusterCertificateChainResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTROperationalCredentialsClusterCSRResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTROperationalCredentialsClusterNOCResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTROperationalCSRInfo::initWithCSRElementsTLV:attestationSignature: not bound +!missing-selector! MTROperationalCSRInfo::initWithCSRNonce:csrElementsTLV:attestationSignature: not bound +!missing-selector! MTROperationalCSRInfo::initWithCSRResponseParams: not bound +!missing-selector! MTROTASoftwareUpdateProviderClusterApplyUpdateResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTROTASoftwareUpdateProviderClusterQueryImageResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRProductIdentity::initWithVendorID:productID: not bound +!missing-selector! MTRProductIdentity::productID not bound +!missing-selector! MTRProductIdentity::vendorID not bound +!missing-selector! MTRTargetNavigatorClusterNavigateTargetResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRThermostatClusterGetWeeklyScheduleResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::age not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::averageRssi not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::extAddress not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::frameErrorRate not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::fullNetworkData not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::fullThreadDevice not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::isChild not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::lastRssi not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::linkFrameCounter not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::lqi not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::messageErrorRate not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::mleFrameCounter not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::rloc16 not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::rxOnWhenIdle not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setAge: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setAverageRssi: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setExtAddress: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setFrameErrorRate: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setFullNetworkData: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setFullThreadDevice: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setIsChild: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setLastRssi: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setLinkFrameCounter: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setLqi: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setMessageErrorRate: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setMleFrameCounter: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setRloc16: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setRxOnWhenIdle: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::age not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::allocated not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::extAddress not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::linkEstablished not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::lqiIn not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::lqiOut not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::nextHop not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::pathCost not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::rloc16 not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::routerId not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::setAge: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::setAllocated: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::setExtAddress: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::setLinkEstablished: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::setLqiIn: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::setLqiOut: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::setNextHop: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::setPathCost: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::setRloc16: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::setRouterId: not bound +!missing-selector! MTRTimeSynchronizationClusterDSTOffsetStruct::offset not bound +!missing-selector! MTRTimeSynchronizationClusterDSTOffsetStruct::setOffset: not bound +!missing-selector! MTRTimeSynchronizationClusterDSTOffsetStruct::setValidStarting: not bound +!missing-selector! MTRTimeSynchronizationClusterDSTOffsetStruct::setValidUntil: not bound +!missing-selector! MTRTimeSynchronizationClusterDSTOffsetStruct::validStarting not bound +!missing-selector! MTRTimeSynchronizationClusterDSTOffsetStruct::validUntil not bound +!missing-selector! MTRTimeSynchronizationClusterTimeZoneStruct::name not bound +!missing-selector! MTRTimeSynchronizationClusterTimeZoneStruct::offset not bound +!missing-selector! MTRTimeSynchronizationClusterTimeZoneStruct::setName: not bound +!missing-selector! MTRTimeSynchronizationClusterTimeZoneStruct::setOffset: not bound +!missing-selector! MTRTimeSynchronizationClusterTimeZoneStruct::setValidAt: not bound +!missing-selector! MTRTimeSynchronizationClusterTimeZoneStruct::validAt not bound +!missing-selector! MTRUnitTestingClusterBooleanResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRUnitTestingClusterSimpleStructResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRUnitTestingClusterTestAddArgumentsResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRUnitTestingClusterTestComplexNullableOptionalResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRUnitTestingClusterTestEmitTestEventResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRUnitTestingClusterTestEmitTestFabricScopedEventResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRUnitTestingClusterTestEnumsResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRUnitTestingClusterTestListInt8UReverseResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRUnitTestingClusterTestNullableOptionalResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRUnitTestingClusterTestSimpleArgumentResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRUnitTestingClusterTestSpecificResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRUnitTestingClusterTestStructArrayArgumentResponseParams::initWithResponseValue:error: not bound +!missing-type! MTRAccessControlClusterAccessControlTargetStruct not bound +!missing-type! MTRAttributeRequestPath not bound +!missing-type! MTRBasicInformationClusterProductAppearanceStruct not bound +!missing-type! MTRBridgedDeviceBasicInformationClusterProductAppearanceStruct not bound +!missing-type! MTREventRequestPath not bound +!missing-type! MTRFabricInfo not bound +!missing-type! MTRNetworkCommissioningClusterNetworkInfoStruct not bound +!missing-type! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct not bound +!missing-type! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct not bound +!missing-type! MTRProductIdentity not bound +!missing-type! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct not bound +!missing-type! MTRThreadNetworkDiagnosticsClusterRouteTableStruct not bound +!missing-type! MTRTimeSynchronizationClusterDSTOffsetStruct not bound +!missing-type! MTRTimeSynchronizationClusterTimeZoneStruct not bound +!missing-enum! MTRFanControlFanMode not bound +!missing-enum! MTRFanControlFanModeSequence not bound +!missing-enum! MTRFanControlRockBitmap not bound +!missing-enum! MTRFanControlWindBitmap not bound +!missing-protocol! MTRCommissionableBrowserDelegate not bound +!missing-selector! MTRCommissionableBrowserResult::commissioningMode not bound +!missing-selector! MTRCommissionableBrowserResult::discriminator not bound +!missing-selector! MTRCommissionableBrowserResult::instanceName not bound +!missing-selector! MTRCommissionableBrowserResult::productID not bound +!missing-selector! MTRCommissionableBrowserResult::vendorID not bound +!missing-selector! MTRDeviceController::setupCommissioningSessionWithDiscoveredDevice:payload:newNodeID:error: not bound +!missing-selector! MTRDeviceController::startBrowseForCommissionables:queue: not bound +!missing-selector! MTRDeviceController::stopBrowseForCommissionables not bound +!missing-selector! MTRModeSelectClusterSemanticTagStruct::mfgCode not bound +!missing-selector! MTRModeSelectClusterSemanticTagStruct::setMfgCode: not bound +!missing-selector! MTRModeSelectClusterSemanticTagStruct::setValue: not bound +!missing-selector! MTRModeSelectClusterSemanticTagStruct::value not bound +!missing-type! MTRCommissionableBrowserResult not bound +!missing-enum! MTROnOffControlBitmap not bound +!missing-enum! MTROTASoftwareUpdateProviderApplyUpdateAction not bound +!missing-enum! MTROTASoftwareUpdateProviderDownloadProtocol not bound +!missing-enum! MTROTASoftwareUpdateProviderStatus not bound +!missing-enum! MTROTASoftwareUpdateRequestorAnnouncementReason not bound +!missing-enum! MTROTASoftwareUpdateRequestorChangeReason not bound +!missing-enum! MTROTASoftwareUpdateRequestorUpdateState not bound +!missing-enum! MTRTimeFormatLocalizationFeature not bound +!missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::granularity not bound +!missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::serverSideProcessingTimeout not bound +!missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::setGranularity: not bound +!missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::setTimeSource: not bound +!missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::setUtcTime: not bound +!missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::timedInvokeTimeoutMs not bound +!missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::timeSource not bound +!missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::utcTime not bound +!missing-type! MTRTimeSynchronizationClusterSetUTCTimeParams not bound +!missing-enum! MTRAdministratorCommissioningFeature not bound +!missing-enum! MTRContentLauncherStatus not bound +!missing-enum! MTRContentLauncherSupportedProtocolsBitmap not bound +!missing-enum! MTRKeypadInputCECKeyCode not bound +!missing-enum! MTRLevelControlOptionsBitmap not bound +!missing-enum! MTROperationalState not bound +!missing-enum! MTROperationalStateErrorState not bound +!missing-enum! MTRRVCCleanModeFeature not bound +!missing-enum! MTRRVCCleanModeModeTag not bound +!missing-enum! MTRRVCCleanModeStatusCode not bound +!missing-enum! MTRRVCOperationalStateErrorState not bound +!missing-enum! MTRRVCOperationalStateOperationalState not bound +!missing-enum! MTRRVCRunModeFeature not bound +!missing-enum! MTRRVCRunModeModeTag not bound +!missing-enum! MTRRVCRunModeStatusCode not bound +!missing-enum! MTRThermostatControlSequenceOfOperation not bound +!missing-enum! MTRThermostatScheduleDayOfWeekBitmap not bound +!missing-enum! MTRThermostatScheduleModeBitmap not bound +!missing-enum! MTRThermostatSetpointRaiseLowerMode not bound +!missing-enum! MTRThermostatUserInterfaceConfigurationKeypadLockout not bound +!missing-enum! MTRThermostatUserInterfaceConfigurationScheduleProgrammingVisibility not bound +!missing-enum! MTRThermostatUserInterfaceConfigurationTemperatureDisplayMode not bound +!missing-field! MTREventIsHistoricalKey not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeAcceptedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeAttributeListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeClusterRevisionWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeCountdownTimeWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeCurrentPhaseWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeFeatureMapWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeGeneratedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeOperationalErrorWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeOperationalStateListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeOperationalStateWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributePhaseListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterPowerSource::readAttributeEndpointListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeAcceptedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeAttributeListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeClusterRevisionWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeCurrentModeWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeFeatureMapWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeGeneratedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeSupportedModesWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeAcceptedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeAttributeListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeClusterRevisionWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeCountdownTimeWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeCurrentPhaseWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeFeatureMapWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeGeneratedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeOperationalErrorWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeOperationalStateListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeOperationalStateWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributePhaseListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeAcceptedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeAttributeListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeClusterRevisionWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeCurrentModeWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeFeatureMapWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeGeneratedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeSupportedModesWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! MTRBaseClusterApplicationLauncher::hideAppWithCompletion: not bound +!missing-selector! MTRBaseClusterApplicationLauncher::launchAppWithCompletion: not bound +!missing-selector! MTRBaseClusterApplicationLauncher::stopAppWithCompletion: not bound +!missing-selector! MTRBaseClusterDoorLock::lockDoorWithCompletion: not bound +!missing-selector! MTRBaseClusterDoorLock::unlockDoorWithCompletion: not bound +!missing-selector! MTRBaseClusterNetworkCommissioning::scanNetworksWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRBaseClusterOperationalState::pauseWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::pauseWithParams:completion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeAcceptedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeAttributeListWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeClusterRevisionWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeCountdownTimeWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeCurrentPhaseWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeFeatureMapWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeGeneratedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeOperationalErrorWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeOperationalStateListWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeOperationalStateWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributePhaseListWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::resumeWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::resumeWithParams:completion: not bound +!missing-selector! MTRBaseClusterOperationalState::startWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::startWithParams:completion: not bound +!missing-selector! MTRBaseClusterOperationalState::stopWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::stopWithParams:completion: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeAcceptedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeAttributeListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeClusterRevisionWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeCountdownTimeWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeCurrentPhaseWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeFeatureMapWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeGeneratedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeOperationalErrorWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeOperationalStateListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeOperationalStateWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributePhaseListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterPowerSource::readAttributeEndpointListWithCompletion: not bound +!missing-selector! MTRBaseClusterPowerSource::subscribeAttributeEndpointListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::changeToModeWithParams:completion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeAcceptedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeAttributeListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeClusterRevisionWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeCurrentModeWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeFeatureMapWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeGeneratedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeSupportedModesWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeAcceptedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeAttributeListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeClusterRevisionWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeCurrentModeWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeFeatureMapWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeGeneratedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeSupportedModesWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::pauseWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::pauseWithParams:completion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeAcceptedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeAttributeListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeClusterRevisionWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeCountdownTimeWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeCurrentPhaseWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeFeatureMapWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeGeneratedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeOperationalErrorWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeOperationalStateListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeOperationalStateWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributePhaseListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::resumeWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::resumeWithParams:completion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeAcceptedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeAttributeListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeClusterRevisionWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeCountdownTimeWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeCurrentPhaseWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeFeatureMapWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeGeneratedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeOperationalErrorWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeOperationalStateListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeOperationalStateWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributePhaseListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::changeToModeWithParams:completion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeAcceptedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeAttributeListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeClusterRevisionWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeCurrentModeWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeFeatureMapWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeGeneratedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeSupportedModesWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeAcceptedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeAttributeListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeClusterRevisionWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeCurrentModeWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeFeatureMapWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeGeneratedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeSupportedModesWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterUnitTesting::testNullableOptionalRequestWithCompletion: not bound +!missing-selector! MTRBaseClusterUnitTesting::testSimpleOptionalArgumentRequestWithCompletion: not bound +!missing-selector! MTRCluster::endpointID not bound +!missing-selector! MTRClusterApplicationLauncher::hideAppWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterApplicationLauncher::launchAppWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterApplicationLauncher::stopAppWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterDoorLock::lockDoorWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterDoorLock::unlockDoorWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterNetworkCommissioning::scanNetworksWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRClusterOperationalState::pauseWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::pauseWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::readAttributeAcceptedCommandListWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeAttributeListWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeClusterRevisionWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeCountdownTimeWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeCurrentPhaseWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeFeatureMapWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeGeneratedCommandListWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeOperationalErrorWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeOperationalStateListWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeOperationalStateWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributePhaseListWithParams: not bound +!missing-selector! MTRClusterOperationalState::resumeWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::resumeWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::startWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::startWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::stopWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::stopWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterPowerSource::readAttributeEndpointListWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::changeToModeWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterRVCCleanMode::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeAcceptedCommandListWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeAttributeListWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeClusterRevisionWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeCurrentModeWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeFeatureMapWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeGeneratedCommandListWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeSupportedModesWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRClusterRVCOperationalState::pauseWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterRVCOperationalState::pauseWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeAcceptedCommandListWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeAttributeListWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeClusterRevisionWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeCountdownTimeWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeCurrentPhaseWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeFeatureMapWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeGeneratedCommandListWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeOperationalErrorWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeOperationalStateListWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeOperationalStateWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributePhaseListWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::resumeWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterRVCOperationalState::resumeWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterRVCRunMode::changeToModeWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterRVCRunMode::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeAcceptedCommandListWithParams: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeAttributeListWithParams: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeClusterRevisionWithParams: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeCurrentModeWithParams: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeFeatureMapWithParams: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeGeneratedCommandListWithParams: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeSupportedModesWithParams: not bound +!missing-selector! MTRClusterUnitTesting::testNullableOptionalRequestWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterUnitTesting::testSimpleOptionalArgumentRequestWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRDevice::deviceController not bound +!missing-selector! MTRDevice::invokeCommandWithEndpointID:clusterID:commandID:commandFields:expectedValues:expectedValueInterval:queue:completion: not bound +!missing-selector! MTRDevice::nodeID not bound +!missing-selector! MTRGenericCluster::device not bound +!missing-selector! MTROperationalStateClusterErrorStateStruct::errorStateDetails not bound +!missing-selector! MTROperationalStateClusterErrorStateStruct::errorStateID not bound +!missing-selector! MTROperationalStateClusterErrorStateStruct::errorStateLabel not bound +!missing-selector! MTROperationalStateClusterErrorStateStruct::setErrorStateDetails: not bound +!missing-selector! MTROperationalStateClusterErrorStateStruct::setErrorStateID: not bound +!missing-selector! MTROperationalStateClusterErrorStateStruct::setErrorStateLabel: not bound +!missing-selector! MTROperationalStateClusterOperationalCommandResponseParams::commandResponseState not bound +!missing-selector! MTROperationalStateClusterOperationalCommandResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTROperationalStateClusterOperationalCommandResponseParams::setCommandResponseState: not bound +!missing-selector! MTROperationalStateClusterOperationalErrorEvent::errorState not bound +!missing-selector! MTROperationalStateClusterOperationalErrorEvent::setErrorState: not bound +!missing-selector! MTROperationalStateClusterOperationalStateStruct::operationalStateID not bound +!missing-selector! MTROperationalStateClusterOperationalStateStruct::operationalStateLabel not bound +!missing-selector! MTROperationalStateClusterOperationalStateStruct::setOperationalStateID: not bound +!missing-selector! MTROperationalStateClusterOperationalStateStruct::setOperationalStateLabel: not bound +!missing-selector! MTROperationalStateClusterOperationCompletionEvent::completionErrorCode not bound +!missing-selector! MTROperationalStateClusterOperationCompletionEvent::pausedTime not bound +!missing-selector! MTROperationalStateClusterOperationCompletionEvent::setCompletionErrorCode: not bound +!missing-selector! MTROperationalStateClusterOperationCompletionEvent::setPausedTime: not bound +!missing-selector! MTROperationalStateClusterOperationCompletionEvent::setTotalOperationalTime: not bound +!missing-selector! MTROperationalStateClusterOperationCompletionEvent::totalOperationalTime not bound +!missing-selector! MTROperationalStateClusterPauseParams::serverSideProcessingTimeout not bound +!missing-selector! MTROperationalStateClusterPauseParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTROperationalStateClusterPauseParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTROperationalStateClusterPauseParams::timedInvokeTimeoutMs not bound +!missing-selector! MTROperationalStateClusterResumeParams::serverSideProcessingTimeout not bound +!missing-selector! MTROperationalStateClusterResumeParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTROperationalStateClusterResumeParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTROperationalStateClusterResumeParams::timedInvokeTimeoutMs not bound +!missing-selector! MTROperationalStateClusterStartParams::serverSideProcessingTimeout not bound +!missing-selector! MTROperationalStateClusterStartParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTROperationalStateClusterStartParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTROperationalStateClusterStartParams::timedInvokeTimeoutMs not bound +!missing-selector! MTROperationalStateClusterStopParams::serverSideProcessingTimeout not bound +!missing-selector! MTROperationalStateClusterStopParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTROperationalStateClusterStopParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTROperationalStateClusterStopParams::timedInvokeTimeoutMs not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::getNewMode not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::serverSideProcessingTimeout not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::setNewMode: not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::timedInvokeTimeoutMs not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeResponseParams::setStatus: not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeResponseParams::setStatusText: not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeResponseParams::status not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeResponseParams::statusText not bound +!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::label not bound +!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::mode not bound +!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::modeTags not bound +!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::setLabel: not bound +!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::setMode: not bound +!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::setModeTags: not bound +!missing-selector! MTRRVCCleanModeClusterModeTagStruct::mfgCode not bound +!missing-selector! MTRRVCCleanModeClusterModeTagStruct::setMfgCode: not bound +!missing-selector! MTRRVCCleanModeClusterModeTagStruct::setValue: not bound +!missing-selector! MTRRVCCleanModeClusterModeTagStruct::value not bound +!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::errorStateDetails not bound +!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::errorStateID not bound +!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::errorStateLabel not bound +!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::setErrorStateDetails: not bound +!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::setErrorStateID: not bound +!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::setErrorStateLabel: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalCommandResponseParams::commandResponseState not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalCommandResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalCommandResponseParams::setCommandResponseState: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalErrorEvent::errorState not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalErrorEvent::setErrorState: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalStateStruct::operationalStateID not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalStateStruct::operationalStateLabel not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalStateStruct::setOperationalStateID: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalStateStruct::setOperationalStateLabel: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::completionErrorCode not bound +!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::pausedTime not bound +!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::setCompletionErrorCode: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::setPausedTime: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::setTotalOperationalTime: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::totalOperationalTime not bound +!missing-selector! MTRRVCOperationalStateClusterPauseParams::serverSideProcessingTimeout not bound +!missing-selector! MTRRVCOperationalStateClusterPauseParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTRRVCOperationalStateClusterPauseParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTRRVCOperationalStateClusterPauseParams::timedInvokeTimeoutMs not bound +!missing-selector! MTRRVCOperationalStateClusterResumeParams::serverSideProcessingTimeout not bound +!missing-selector! MTRRVCOperationalStateClusterResumeParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTRRVCOperationalStateClusterResumeParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTRRVCOperationalStateClusterResumeParams::timedInvokeTimeoutMs not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeParams::getNewMode not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeParams::serverSideProcessingTimeout not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeParams::setNewMode: not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeParams::timedInvokeTimeoutMs not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeResponseParams::setStatus: not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeResponseParams::setStatusText: not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeResponseParams::status not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeResponseParams::statusText not bound +!missing-selector! MTRRVCRunModeClusterModeOptionStruct::label not bound +!missing-selector! MTRRVCRunModeClusterModeOptionStruct::mode not bound +!missing-selector! MTRRVCRunModeClusterModeOptionStruct::modeTags not bound +!missing-selector! MTRRVCRunModeClusterModeOptionStruct::setLabel: not bound +!missing-selector! MTRRVCRunModeClusterModeOptionStruct::setMode: not bound +!missing-selector! MTRRVCRunModeClusterModeOptionStruct::setModeTags: not bound +!missing-selector! MTRRVCRunModeClusterModeTagStruct::mfgCode not bound +!missing-selector! MTRRVCRunModeClusterModeTagStruct::setMfgCode: not bound +!missing-selector! MTRRVCRunModeClusterModeTagStruct::setValue: not bound +!missing-selector! MTRRVCRunModeClusterModeTagStruct::value not bound +!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::coolSetpoint not bound +!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::heatSetpoint not bound +!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::setCoolSetpoint: not bound +!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::setHeatSetpoint: not bound +!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::setTransitionTime: not bound +!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::transitionTime not bound +!missing-selector! MTRWiFiNetworkDiagnosticsClusterAssociationFailureEvent::associationFailureCause not bound +!missing-selector! MTRWiFiNetworkDiagnosticsClusterAssociationFailureEvent::setAssociationFailureCause: not bound +!missing-type! MTRBaseClusterOperationalState not bound +!missing-type! MTRBaseClusterRVCCleanMode not bound +!missing-type! MTRBaseClusterRVCOperationalState not bound +!missing-type! MTRBaseClusterRVCRunMode not bound +!missing-type! MTRClusterOperationalState not bound +!missing-type! MTRClusterRVCCleanMode not bound +!missing-type! MTRClusterRVCOperationalState not bound +!missing-type! MTRClusterRVCRunMode not bound +!missing-type! MTRGenericBaseCluster not bound +!missing-type! MTRGenericCluster not bound +!missing-type! MTROperationalStateClusterErrorStateStruct not bound +!missing-type! MTROperationalStateClusterOperationalCommandResponseParams not bound +!missing-type! MTROperationalStateClusterOperationalErrorEvent not bound +!missing-type! MTROperationalStateClusterOperationalStateStruct not bound +!missing-type! MTROperationalStateClusterOperationCompletionEvent not bound +!missing-type! MTROperationalStateClusterPauseParams not bound +!missing-type! MTROperationalStateClusterResumeParams not bound +!missing-type! MTROperationalStateClusterStartParams not bound +!missing-type! MTROperationalStateClusterStopParams not bound +!missing-type! MTRRVCCleanModeClusterChangeToModeParams not bound +!missing-type! MTRRVCCleanModeClusterChangeToModeResponseParams not bound +!missing-type! MTRRVCCleanModeClusterModeOptionStruct not bound +!missing-type! MTRRVCCleanModeClusterModeTagStruct not bound +!missing-type! MTRRVCOperationalStateClusterErrorStateStruct not bound +!missing-type! MTRRVCOperationalStateClusterOperationalCommandResponseParams not bound +!missing-type! MTRRVCOperationalStateClusterOperationalErrorEvent not bound +!missing-type! MTRRVCOperationalStateClusterOperationalStateStruct not bound +!missing-type! MTRRVCOperationalStateClusterOperationCompletionEvent not bound +!missing-type! MTRRVCOperationalStateClusterPauseParams not bound +!missing-type! MTRRVCOperationalStateClusterResumeParams not bound +!missing-type! MTRRVCRunModeClusterChangeToModeParams not bound +!missing-type! MTRRVCRunModeClusterChangeToModeResponseParams not bound +!missing-type! MTRRVCRunModeClusterModeOptionStruct not bound +!missing-type! MTRRVCRunModeClusterModeTagStruct not bound +!missing-type! MTRThermostatClusterWeeklyScheduleTransitionStruct not bound +!missing-enum! MTRDiagnosticLogType not bound +!missing-enum! MTRFanControlAirflowDirection not bound +!missing-enum! MTRFanControlStepDirection not bound +!missing-enum! MTRStorageSecurityLevel not bound +!missing-enum! MTRStorageSharingType not bound +!missing-field! MTRDataVersionKey not bound +!missing-field! MTRPreviousDataKey not bound +!missing-pinvoke! MTRAttributeNameForID is not bound +!missing-pinvoke! MTRClusterNameForID is not bound +!missing-pinvoke! MTRDeviceControllerStorageClasses is not bound +!missing-pinvoke! MTRSetMessageReliabilityParameters is not bound +!missing-protocol! MTRDeviceControllerStorageDelegate not bound +!missing-selector! +MTRAccessGrant::accessGrantForAllNodesWithPrivilege: not bound +!missing-selector! +MTRAccessGrant::accessGrantForCASEAuthenticatedTag:privilege: not bound +!missing-selector! +MTRAccessGrant::accessGrantForGroupID:privilege: not bound +!missing-selector! +MTRAccessGrant::accessGrantForNodeID:privilege: not bound +!missing-selector! +MTRBaseClusterFanControl::readAttributeAirflowDirectionWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRServerCluster::newDescriptorCluster not bound +!missing-selector! MTRAccessGrant::authenticationMode not bound +!missing-selector! MTRAccessGrant::grantedPrivilege not bound +!missing-selector! MTRAccessGrant::subjectID not bound +!missing-selector! MTRBaseClusterFanControl::readAttributeAirflowDirectionWithCompletion: not bound +!missing-selector! MTRBaseClusterFanControl::stepWithParams:completion: not bound +!missing-selector! MTRBaseClusterFanControl::subscribeAttributeAirflowDirectionWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterFanControl::writeAttributeAirflowDirectionWithValue:completion: not bound +!missing-selector! MTRBaseClusterFanControl::writeAttributeAirflowDirectionWithValue:params:completion: not bound +!missing-selector! MTRBaseDevice::downloadLogOfType:timeout:queue:completion: not bound +!missing-selector! MTRClusterFanControl::readAttributeAirflowDirectionWithParams: not bound +!missing-selector! MTRClusterFanControl::stepWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterFanControl::writeAttributeAirflowDirectionWithValue:expectedValueInterval: not bound +!missing-selector! MTRClusterFanControl::writeAttributeAirflowDirectionWithValue:expectedValueInterval:params: not bound +!missing-selector! MTRDevice::deviceCachePrimed not bound +!missing-selector! MTRDevice::downloadLogOfType:timeout:queue:completion: not bound +!missing-selector! MTRDeviceController::addServerEndpoint: not bound +!missing-selector! MTRDeviceController::initWithParameters:error: not bound +!missing-selector! MTRDeviceController::removeServerEndpoint: not bound +!missing-selector! MTRDeviceController::removeServerEndpoint:queue:completion: not bound +!missing-selector! MTRDeviceController::uniqueIdentifier not bound +!missing-selector! MTRDeviceControllerExternalCertificateParameters::initWithStorageDelegate:storageDelegateQueue:uniqueIdentifier:ipk:vendorID:operationalKeypair:operationalCertificate:intermediateCertificate:rootCertificate: not bound +!missing-selector! MTRDeviceControllerParameters::certificationDeclarationCertificates not bound +!missing-selector! MTRDeviceControllerParameters::productAttestationAuthorityCertificates not bound +!missing-selector! MTRDeviceControllerParameters::setCertificationDeclarationCertificates: not bound +!missing-selector! MTRDeviceControllerParameters::setOperationalCertificateIssuer:queue: not bound +!missing-selector! MTRDeviceControllerParameters::setOTAProviderDelegate:queue: not bound +!missing-selector! MTRDeviceControllerParameters::setProductAttestationAuthorityCertificates: not bound +!missing-selector! MTRDeviceControllerParameters::setShouldAdvertiseOperational: not bound +!missing-selector! MTRDeviceControllerParameters::shouldAdvertiseOperational not bound +!missing-selector! MTRDeviceTypeRevision::deviceTypeID not bound +!missing-selector! MTRDeviceTypeRevision::deviceTypeRevision not bound +!missing-selector! MTRDeviceTypeRevision::initWithDeviceTypeID:revision: not bound +!missing-selector! MTRFanControlClusterStepParams::direction not bound +!missing-selector! MTRFanControlClusterStepParams::lowestOff not bound +!missing-selector! MTRFanControlClusterStepParams::serverSideProcessingTimeout not bound +!missing-selector! MTRFanControlClusterStepParams::setDirection: not bound +!missing-selector! MTRFanControlClusterStepParams::setLowestOff: not bound +!missing-selector! MTRFanControlClusterStepParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTRFanControlClusterStepParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTRFanControlClusterStepParams::setWrap: not bound +!missing-selector! MTRFanControlClusterStepParams::timedInvokeTimeoutMs not bound +!missing-selector! MTRFanControlClusterStepParams::wrap not bound +!missing-selector! MTRMetricData::duration not bound +!missing-selector! MTRMetricData::errorCode not bound +!missing-selector! MTRMetricData::value not bound +!missing-selector! MTRMetrics::allKeys not bound +!missing-selector! MTRMetrics::metricDataForKey: not bound +!missing-selector! MTRMetrics::uniqueIdentifier not bound +!missing-selector! MTRServerAttribute::attributeID not bound +!missing-selector! MTRServerAttribute::initReadonlyAttributeWithID:initialValue:requiredPrivilege: not bound +!missing-selector! MTRServerAttribute::isWritable not bound +!missing-selector! MTRServerAttribute::requiredReadPrivilege not bound +!missing-selector! MTRServerAttribute::setValue: not bound +!missing-selector! MTRServerAttribute::value not bound +!missing-selector! MTRServerCluster::accessGrants not bound +!missing-selector! MTRServerCluster::addAccessGrant: not bound +!missing-selector! MTRServerCluster::addAttribute: not bound +!missing-selector! MTRServerCluster::attributes not bound +!missing-selector! MTRServerCluster::clusterID not bound +!missing-selector! MTRServerCluster::clusterRevision not bound +!missing-selector! MTRServerCluster::initWithClusterID:revision: not bound +!missing-selector! MTRServerCluster::removeAccessGrant: not bound +!missing-selector! MTRServerEndpoint::accessGrants not bound +!missing-selector! MTRServerEndpoint::addAccessGrant: not bound +!missing-selector! MTRServerEndpoint::addServerCluster: not bound +!missing-selector! MTRServerEndpoint::deviceTypes not bound +!missing-selector! MTRServerEndpoint::endpointID not bound +!missing-selector! MTRServerEndpoint::initWithEndpointID:deviceTypes: not bound +!missing-selector! MTRServerEndpoint::removeAccessGrant: not bound +!missing-selector! MTRServerEndpoint::serverClusters not bound +!missing-type! MTRAccessGrant not bound +!missing-type! MTRDeviceControllerAbstractParameters not bound +!missing-type! MTRDeviceControllerExternalCertificateParameters not bound +!missing-type! MTRDeviceControllerParameters not bound +!missing-type! MTRDeviceTypeRevision not bound +!missing-type! MTRFanControlClusterStepParams not bound +!missing-type! MTRMetricData not bound +!missing-type! MTRMetrics not bound +!missing-type! MTRServerAttribute not bound +!missing-type! MTRServerCluster not bound +!missing-type! MTRServerEndpoint not bound diff --git a/tests/xtro-sharpie/tvOS-Matter.todo b/tests/xtro-sharpie/tvOS-Matter.todo deleted file mode 100644 index 60406a5077b9..000000000000 --- a/tests/xtro-sharpie/tvOS-Matter.todo +++ /dev/null @@ -1,683 +0,0 @@ -!missing-enum! MTRBasicInformationColor not bound -!missing-enum! MTRBasicInformationProductFinish not bound -!missing-enum! MTRBridgedDeviceBasicInformationColor not bound -!missing-enum! MTRBridgedDeviceBasicInformationProductFinish not bound -!missing-enum! MTRDiagnosticLogsIntent not bound -!missing-enum! MTRDiagnosticLogsStatus not bound -!missing-enum! MTRDiagnosticLogsTransferProtocol not bound -!missing-enum! MTREventPriority not bound -!missing-enum! MTREventTimeType not bound -!missing-enum! MTRGroupsFeature not bound -!missing-enum! MTRGroupsNameSupportBitmap not bound -!missing-enum! MTRNetworkCommissioningWiFiSecurityBitmap not bound -!missing-enum! MTROccupancySensingOccupancyBitmap not bound -!missing-enum! MTROccupancySensingOccupancySensorType not bound -!missing-enum! MTROccupancySensingOccupancySensorTypeBitmap not bound -!missing-enum! MTRPowerSourceBatApprovedChemistry not bound -!missing-enum! MTRPowerSourceBatCommonDesignation not bound -!missing-enum! MTRPressureMeasurementFeature not bound -!missing-enum! MTRPumpConfigurationAndControlControlMode not bound -!missing-enum! MTRPumpConfigurationAndControlFeature not bound -!missing-enum! MTRPumpConfigurationAndControlOperationMode not bound -!missing-enum! MTRPumpConfigurationAndControlPumpStatusBitmap not bound -!missing-enum! MTRScenesFeature not bound -!missing-enum! MTRWiFiNetworkDiagnosticsConnectionStatus not bound -!missing-enum! MTRWiFiNetworkDiagnosticsWiFiVersion not bound -!missing-field! MTREventNumberKey not bound -!missing-field! MTREventPriorityKey not bound -!missing-field! MTREventSystemUpTimeKey not bound -!missing-field! MTREventTimestampDateKey not bound -!missing-field! MTREventTimeTypeKey not bound -!missing-selector! +MTRAttributeRequestPath::requestPathWithEndpointID:clusterID:attributeID: not bound -!missing-selector! +MTRBaseClusterBasicInformation::readAttributeProductAppearanceWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterBridgedDeviceBasicInformation::readAttributeProductAppearanceWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRCertificates::createIntermediateCertificate:rootCertificate:intermediatePublicKey:issuerID:fabricID:validityPeriod:error: not bound -!missing-selector! +MTRCertificates::createOperationalCertificate:signingCertificate:operationalPublicKey:fabricID:nodeID:caseAuthenticatedTags:validityPeriod:error: not bound -!missing-selector! +MTRCertificates::createRootCertificate:issuerID:fabricID:validityPeriod:error: not bound -!missing-selector! +MTRDeviceController::xpcInterfaceForClientProtocol not bound -!missing-selector! +MTRDeviceController::xpcInterfaceForServerProtocol not bound -!missing-selector! +MTREventRequestPath::requestPathWithEndpointID:clusterID:eventID: not bound -!missing-selector! MTRAccessControlClusterAccessControlTargetStruct::cluster not bound -!missing-selector! MTRAccessControlClusterAccessControlTargetStruct::deviceType not bound -!missing-selector! MTRAccessControlClusterAccessControlTargetStruct::endpoint not bound -!missing-selector! MTRAccessControlClusterAccessControlTargetStruct::setCluster: not bound -!missing-selector! MTRAccessControlClusterAccessControlTargetStruct::setDeviceType: not bound -!missing-selector! MTRAccessControlClusterAccessControlTargetStruct::setEndpoint: not bound -!missing-selector! MTRAccountLoginClusterGetSetupPINResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRApplicationLauncherClusterLauncherResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRAttributeReport::initWithResponseValue:error: not bound -!missing-selector! MTRAttributeRequestPath::attribute not bound -!missing-selector! MTRAttributeRequestPath::cluster not bound -!missing-selector! MTRAttributeRequestPath::endpoint not bound -!missing-selector! MTRBaseClusterBasicInformation::readAttributeProductAppearanceWithCompletion: not bound -!missing-selector! MTRBaseClusterBasicInformation::subscribeAttributeProductAppearanceWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterBridgedDeviceBasicInformation::readAttributeProductAppearanceWithCompletion: not bound -!missing-selector! MTRBaseClusterBridgedDeviceBasicInformation::subscribeAttributeProductAppearanceWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterGroupKeyManagement::keySetReadAllIndicesWithCompletion: not bound -!missing-selector! MTRBaseDevice::openCommissioningWindowWithDiscriminator:duration:queue:completion: not bound -!missing-selector! MTRBaseDevice::readAttributePaths:eventPaths:params:queue:completion: not bound -!missing-selector! MTRBaseDevice::subscribeToAttributePaths:eventPaths:params:queue:reportHandler:subscriptionEstablished:resubscriptionScheduled: not bound -!missing-selector! MTRBasicInformationClusterProductAppearanceStruct::finish not bound -!missing-selector! MTRBasicInformationClusterProductAppearanceStruct::primaryColor not bound -!missing-selector! MTRBasicInformationClusterProductAppearanceStruct::setFinish: not bound -!missing-selector! MTRBasicInformationClusterProductAppearanceStruct::setPrimaryColor: not bound -!missing-selector! MTRBridgedDeviceBasicInformationClusterProductAppearanceStruct::finish not bound -!missing-selector! MTRBridgedDeviceBasicInformationClusterProductAppearanceStruct::primaryColor not bound -!missing-selector! MTRBridgedDeviceBasicInformationClusterProductAppearanceStruct::setFinish: not bound -!missing-selector! MTRBridgedDeviceBasicInformationClusterProductAppearanceStruct::setPrimaryColor: not bound -!missing-selector! MTRChannelClusterChangeChannelResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRClusterBasicInformation::readAttributeProductAppearanceWithParams: not bound -!missing-selector! MTRClusterBridgedDeviceBasicInformation::readAttributeProductAppearanceWithParams: not bound -!missing-selector! MTRClusterGroupKeyManagement::keySetReadAllIndicesWithExpectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRCommissioningParameters::countryCode not bound -!missing-selector! MTRCommissioningParameters::setCountryCode: not bound -!missing-selector! MTRCommissioningParameters::setSkipCommissioningComplete: not bound -!missing-selector! MTRCommissioningParameters::skipCommissioningComplete not bound -!missing-selector! MTRContentLauncherClusterLauncherResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRDevice::estimatedStartTime not bound -!missing-selector! MTRDevice::openCommissioningWindowWithDiscriminator:duration:queue:completion: not bound -!missing-selector! MTRDeviceAttestationDeviceInfo::basicInformationProductID not bound -!missing-selector! MTRDeviceAttestationDeviceInfo::basicInformationVendorID not bound -!missing-selector! MTRDeviceControllerFactory::knownFabrics not bound -!missing-selector! MTRDeviceControllerStartupParams::caseAuthenticatedTags not bound -!missing-selector! MTRDeviceControllerStartupParams::setCaseAuthenticatedTags: not bound -!missing-selector! MTRDiagnosticLogsClusterRetrieveLogsResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRDoorLockClusterGetCredentialStatusResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRDoorLockClusterGetHolidayScheduleResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRDoorLockClusterGetUserResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRDoorLockClusterGetWeekDayScheduleResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRDoorLockClusterGetYearDayScheduleResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRDoorLockClusterSetCredentialResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRElectricalMeasurementClusterGetMeasurementProfileResponseCommandParams::initWithResponseValue:error: not bound -!missing-selector! MTRElectricalMeasurementClusterGetProfileInfoResponseCommandParams::initWithResponseValue:error: not bound -!missing-selector! MTREventReport::eventTimeType not bound -!missing-selector! MTREventReport::initWithResponseValue:error: not bound -!missing-selector! MTREventReport::systemUpTime not bound -!missing-selector! MTREventReport::timestampDate not bound -!missing-selector! MTREventRequestPath::cluster not bound -!missing-selector! MTREventRequestPath::endpoint not bound -!missing-selector! MTREventRequestPath::event not bound -!missing-selector! MTRFabricInfo::fabricID not bound -!missing-selector! MTRFabricInfo::fabricIndex not bound -!missing-selector! MTRFabricInfo::intermediateCertificate not bound -!missing-selector! MTRFabricInfo::intermediateCertificateTLV not bound -!missing-selector! MTRFabricInfo::label not bound -!missing-selector! MTRFabricInfo::nodeID not bound -!missing-selector! MTRFabricInfo::operationalCertificate not bound -!missing-selector! MTRFabricInfo::operationalCertificateTLV not bound -!missing-selector! MTRFabricInfo::rootCertificate not bound -!missing-selector! MTRFabricInfo::rootCertificateTLV not bound -!missing-selector! MTRFabricInfo::rootPublicKey not bound -!missing-selector! MTRFabricInfo::vendorID not bound -!missing-selector! MTRGeneralCommissioningClusterArmFailSafeResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRGeneralCommissioningClusterCommissioningCompleteResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRGeneralCommissioningClusterSetRegulatoryConfigResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRGroupKeyManagementClusterKeySetReadAllIndicesResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRGroupKeyManagementClusterKeySetReadResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRGroupsClusterAddGroupResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRGroupsClusterGetGroupMembershipResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRGroupsClusterRemoveGroupResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRGroupsClusterViewGroupResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRKeypadInputClusterSendKeyResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRMediaPlaybackClusterPlaybackResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRNetworkCommissioningClusterConnectNetworkResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRNetworkCommissioningClusterNetworkConfigResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRNetworkCommissioningClusterNetworkInfoStruct::connected not bound -!missing-selector! MTRNetworkCommissioningClusterNetworkInfoStruct::networkID not bound -!missing-selector! MTRNetworkCommissioningClusterNetworkInfoStruct::setConnected: not bound -!missing-selector! MTRNetworkCommissioningClusterNetworkInfoStruct::setNetworkID: not bound -!missing-selector! MTRNetworkCommissioningClusterScanNetworksResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::channel not bound -!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::extendedAddress not bound -!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::extendedPanId not bound -!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::lqi not bound -!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::networkName not bound -!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::panId not bound -!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::rssi not bound -!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::setChannel: not bound -!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::setExtendedAddress: not bound -!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::setExtendedPanId: not bound -!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::setLqi: not bound -!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::setNetworkName: not bound -!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::setPanId: not bound -!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::setRssi: not bound -!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::setVersion: not bound -!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::version not bound -!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::bssid not bound -!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::channel not bound -!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::rssi not bound -!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::security not bound -!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::setBssid: not bound -!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::setChannel: not bound -!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::setRssi: not bound -!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::setSecurity: not bound -!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::setSsid: not bound -!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::setWiFiBand: not bound -!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::ssid not bound -!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::wiFiBand not bound -!missing-selector! MTROperationalCredentialsClusterAttestationResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTROperationalCredentialsClusterCertificateChainResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTROperationalCredentialsClusterCSRResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTROperationalCredentialsClusterNOCResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTROperationalCSRInfo::initWithCSRElementsTLV:attestationSignature: not bound -!missing-selector! MTROperationalCSRInfo::initWithCSRNonce:csrElementsTLV:attestationSignature: not bound -!missing-selector! MTROperationalCSRInfo::initWithCSRResponseParams: not bound -!missing-selector! MTROTASoftwareUpdateProviderClusterApplyUpdateResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTROTASoftwareUpdateProviderClusterQueryImageResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRProductIdentity::initWithVendorID:productID: not bound -!missing-selector! MTRProductIdentity::productID not bound -!missing-selector! MTRProductIdentity::vendorID not bound -!missing-selector! MTRScenesClusterAddSceneResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRScenesClusterCopySceneResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRScenesClusterGetSceneMembershipResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRScenesClusterRemoveAllScenesResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRScenesClusterRemoveSceneResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRScenesClusterStoreSceneResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRTargetNavigatorClusterNavigateTargetResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRThermostatClusterGetWeeklyScheduleResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::age not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::averageRssi not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::extAddress not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::frameErrorRate not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::fullNetworkData not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::fullThreadDevice not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::isChild not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::lastRssi not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::linkFrameCounter not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::lqi not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::messageErrorRate not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::mleFrameCounter not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::rloc16 not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::rxOnWhenIdle not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setAge: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setAverageRssi: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setExtAddress: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setFrameErrorRate: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setFullNetworkData: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setFullThreadDevice: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setIsChild: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setLastRssi: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setLinkFrameCounter: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setLqi: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setMessageErrorRate: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setMleFrameCounter: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setRloc16: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setRxOnWhenIdle: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::age not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::allocated not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::extAddress not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::linkEstablished not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::lqiIn not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::lqiOut not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::nextHop not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::pathCost not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::rloc16 not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::routerId not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::setAge: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::setAllocated: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::setExtAddress: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::setLinkEstablished: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::setLqiIn: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::setLqiOut: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::setNextHop: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::setPathCost: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::setRloc16: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::setRouterId: not bound -!missing-selector! MTRTimeSynchronizationClusterDSTOffsetStruct::offset not bound -!missing-selector! MTRTimeSynchronizationClusterDSTOffsetStruct::setOffset: not bound -!missing-selector! MTRTimeSynchronizationClusterDSTOffsetStruct::setValidStarting: not bound -!missing-selector! MTRTimeSynchronizationClusterDSTOffsetStruct::setValidUntil: not bound -!missing-selector! MTRTimeSynchronizationClusterDSTOffsetStruct::validStarting not bound -!missing-selector! MTRTimeSynchronizationClusterDSTOffsetStruct::validUntil not bound -!missing-selector! MTRTimeSynchronizationClusterTimeZoneStruct::name not bound -!missing-selector! MTRTimeSynchronizationClusterTimeZoneStruct::offset not bound -!missing-selector! MTRTimeSynchronizationClusterTimeZoneStruct::setName: not bound -!missing-selector! MTRTimeSynchronizationClusterTimeZoneStruct::setOffset: not bound -!missing-selector! MTRTimeSynchronizationClusterTimeZoneStruct::setValidAt: not bound -!missing-selector! MTRTimeSynchronizationClusterTimeZoneStruct::validAt not bound -!missing-selector! MTRUnitTestingClusterBooleanResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRUnitTestingClusterSimpleStructResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRUnitTestingClusterTestAddArgumentsResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRUnitTestingClusterTestComplexNullableOptionalResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRUnitTestingClusterTestEmitTestEventResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRUnitTestingClusterTestEmitTestFabricScopedEventResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRUnitTestingClusterTestEnumsResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRUnitTestingClusterTestListInt8UReverseResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRUnitTestingClusterTestNullableOptionalResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRUnitTestingClusterTestSimpleArgumentResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRUnitTestingClusterTestSpecificResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRUnitTestingClusterTestStructArrayArgumentResponseParams::initWithResponseValue:error: not bound -!missing-type! MTRAccessControlClusterAccessControlTargetStruct not bound -!missing-type! MTRAttributeRequestPath not bound -!missing-type! MTRBasicInformationClusterProductAppearanceStruct not bound -!missing-type! MTRBridgedDeviceBasicInformationClusterProductAppearanceStruct not bound -!missing-type! MTREventRequestPath not bound -!missing-type! MTRFabricInfo not bound -!missing-type! MTRNetworkCommissioningClusterNetworkInfoStruct not bound -!missing-type! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct not bound -!missing-type! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct not bound -!missing-type! MTRProductIdentity not bound -!missing-type! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct not bound -!missing-type! MTRThreadNetworkDiagnosticsClusterRouteTableStruct not bound -!missing-type! MTRTimeSynchronizationClusterDSTOffsetStruct not bound -!missing-type! MTRTimeSynchronizationClusterTimeZoneStruct not bound -!missing-enum! MTRFanControlFanMode not bound -!missing-enum! MTRFanControlFanModeSequence not bound -!missing-enum! MTRFanControlRockBitmap not bound -!missing-enum! MTRFanControlWindBitmap not bound -!missing-protocol! MTRCommissionableBrowserDelegate not bound -!missing-selector! MTRCommissionableBrowserResult::commissioningMode not bound -!missing-selector! MTRCommissionableBrowserResult::discriminator not bound -!missing-selector! MTRCommissionableBrowserResult::instanceName not bound -!missing-selector! MTRCommissionableBrowserResult::productID not bound -!missing-selector! MTRCommissionableBrowserResult::vendorID not bound -!missing-selector! MTRDeviceController::setupCommissioningSessionWithDiscoveredDevice:payload:newNodeID:error: not bound -!missing-selector! MTRDeviceController::startBrowseForCommissionables:queue: not bound -!missing-selector! MTRDeviceController::stopBrowseForCommissionables not bound -!missing-selector! MTRModeSelectClusterSemanticTagStruct::mfgCode not bound -!missing-selector! MTRModeSelectClusterSemanticTagStruct::setMfgCode: not bound -!missing-selector! MTRModeSelectClusterSemanticTagStruct::setValue: not bound -!missing-selector! MTRModeSelectClusterSemanticTagStruct::value not bound -!missing-type! MTRCommissionableBrowserResult not bound -!missing-enum! MTROnOffControlBitmap not bound -!missing-enum! MTROTASoftwareUpdateProviderApplyUpdateAction not bound -!missing-enum! MTROTASoftwareUpdateProviderDownloadProtocol not bound -!missing-enum! MTROTASoftwareUpdateProviderStatus not bound -!missing-enum! MTROTASoftwareUpdateRequestorAnnouncementReason not bound -!missing-enum! MTROTASoftwareUpdateRequestorChangeReason not bound -!missing-enum! MTROTASoftwareUpdateRequestorUpdateState not bound -!missing-enum! MTRTimeFormatLocalizationFeature not bound -!missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::granularity not bound -!missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::serverSideProcessingTimeout not bound -!missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::setGranularity: not bound -!missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::setTimeSource: not bound -!missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::setUtcTime: not bound -!missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::timeSource not bound -!missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::utcTime not bound -!missing-type! MTRTimeSynchronizationClusterSetUTCTimeParams not bound -!missing-enum! MTRAdministratorCommissioningFeature not bound -!missing-enum! MTRContentLauncherStatus not bound -!missing-enum! MTRContentLauncherSupportedProtocolsBitmap not bound -!missing-enum! MTRKeypadInputCECKeyCode not bound -!missing-enum! MTRLevelControlOptionsBitmap not bound -!missing-enum! MTROperationalState not bound -!missing-enum! MTROperationalStateErrorState not bound -!missing-enum! MTRRVCCleanModeFeature not bound -!missing-enum! MTRRVCCleanModeModeTag not bound -!missing-enum! MTRRVCCleanModeStatusCode not bound -!missing-enum! MTRRVCOperationalStateErrorState not bound -!missing-enum! MTRRVCOperationalStateOperationalState not bound -!missing-enum! MTRRVCRunModeFeature not bound -!missing-enum! MTRRVCRunModeModeTag not bound -!missing-enum! MTRRVCRunModeStatusCode not bound -!missing-enum! MTRScenesCopyModeBitmap not bound -!missing-enum! MTRThermostatControlSequenceOfOperation not bound -!missing-enum! MTRThermostatScheduleDayOfWeekBitmap not bound -!missing-enum! MTRThermostatScheduleModeBitmap not bound -!missing-enum! MTRThermostatSetpointRaiseLowerMode not bound -!missing-enum! MTRThermostatUserInterfaceConfigurationKeypadLockout not bound -!missing-enum! MTRThermostatUserInterfaceConfigurationScheduleProgrammingVisibility not bound -!missing-enum! MTRThermostatUserInterfaceConfigurationTemperatureDisplayMode not bound -!missing-field! MTREventIsHistoricalKey not bound -!missing-selector! +MTRBaseClusterOperationalState::readAttributeAcceptedCommandListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterOperationalState::readAttributeAttributeListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterOperationalState::readAttributeClusterRevisionWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterOperationalState::readAttributeCountdownTimeWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterOperationalState::readAttributeCurrentPhaseWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterOperationalState::readAttributeFeatureMapWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterOperationalState::readAttributeGeneratedCommandListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterOperationalState::readAttributeOperationalErrorWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterOperationalState::readAttributeOperationalStateListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterOperationalState::readAttributeOperationalStateWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterOperationalState::readAttributePhaseListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterPowerSource::readAttributeEndpointListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeAcceptedCommandListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeAttributeListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeClusterRevisionWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeCurrentModeWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeFeatureMapWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeGeneratedCommandListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeSupportedModesWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeAcceptedCommandListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeAttributeListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeClusterRevisionWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeCountdownTimeWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeCurrentPhaseWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeFeatureMapWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeGeneratedCommandListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeOperationalErrorWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeOperationalStateListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeOperationalStateWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributePhaseListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeAcceptedCommandListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeAttributeListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeClusterRevisionWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeCurrentModeWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeFeatureMapWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeGeneratedCommandListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeSupportedModesWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! MTRBaseClusterApplicationLauncher::hideAppWithCompletion: not bound -!missing-selector! MTRBaseClusterApplicationLauncher::launchAppWithCompletion: not bound -!missing-selector! MTRBaseClusterApplicationLauncher::stopAppWithCompletion: not bound -!missing-selector! MTRBaseClusterDoorLock::lockDoorWithCompletion: not bound -!missing-selector! MTRBaseClusterDoorLock::unlockDoorWithCompletion: not bound -!missing-selector! MTRBaseClusterNetworkCommissioning::scanNetworksWithCompletion: not bound -!missing-selector! MTRBaseClusterOperationalState::initWithDevice:endpointID:queue: not bound -!missing-selector! MTRBaseClusterOperationalState::pauseWithCompletion: not bound -!missing-selector! MTRBaseClusterOperationalState::pauseWithParams:completion: not bound -!missing-selector! MTRBaseClusterOperationalState::readAttributeAcceptedCommandListWithCompletion: not bound -!missing-selector! MTRBaseClusterOperationalState::readAttributeAttributeListWithCompletion: not bound -!missing-selector! MTRBaseClusterOperationalState::readAttributeClusterRevisionWithCompletion: not bound -!missing-selector! MTRBaseClusterOperationalState::readAttributeCountdownTimeWithCompletion: not bound -!missing-selector! MTRBaseClusterOperationalState::readAttributeCurrentPhaseWithCompletion: not bound -!missing-selector! MTRBaseClusterOperationalState::readAttributeFeatureMapWithCompletion: not bound -!missing-selector! MTRBaseClusterOperationalState::readAttributeGeneratedCommandListWithCompletion: not bound -!missing-selector! MTRBaseClusterOperationalState::readAttributeOperationalErrorWithCompletion: not bound -!missing-selector! MTRBaseClusterOperationalState::readAttributeOperationalStateListWithCompletion: not bound -!missing-selector! MTRBaseClusterOperationalState::readAttributeOperationalStateWithCompletion: not bound -!missing-selector! MTRBaseClusterOperationalState::readAttributePhaseListWithCompletion: not bound -!missing-selector! MTRBaseClusterOperationalState::resumeWithCompletion: not bound -!missing-selector! MTRBaseClusterOperationalState::resumeWithParams:completion: not bound -!missing-selector! MTRBaseClusterOperationalState::startWithCompletion: not bound -!missing-selector! MTRBaseClusterOperationalState::startWithParams:completion: not bound -!missing-selector! MTRBaseClusterOperationalState::stopWithCompletion: not bound -!missing-selector! MTRBaseClusterOperationalState::stopWithParams:completion: not bound -!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeAcceptedCommandListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeAttributeListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeClusterRevisionWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeCountdownTimeWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeCurrentPhaseWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeFeatureMapWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeGeneratedCommandListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeOperationalErrorWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeOperationalStateListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeOperationalStateWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterOperationalState::subscribeAttributePhaseListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterPowerSource::readAttributeEndpointListWithCompletion: not bound -!missing-selector! MTRBaseClusterPowerSource::subscribeAttributeEndpointListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCCleanMode::changeToModeWithParams:completion: not bound -!missing-selector! MTRBaseClusterRVCCleanMode::initWithDevice:endpointID:queue: not bound -!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeAcceptedCommandListWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeAttributeListWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeClusterRevisionWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeCurrentModeWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeFeatureMapWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeGeneratedCommandListWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeSupportedModesWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeAcceptedCommandListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeAttributeListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeClusterRevisionWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeCurrentModeWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeFeatureMapWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeGeneratedCommandListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeSupportedModesWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::initWithDevice:endpointID:queue: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::pauseWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::pauseWithParams:completion: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeAcceptedCommandListWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeAttributeListWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeClusterRevisionWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeCountdownTimeWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeCurrentPhaseWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeFeatureMapWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeGeneratedCommandListWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeOperationalErrorWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeOperationalStateListWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeOperationalStateWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::readAttributePhaseListWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::resumeWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::resumeWithParams:completion: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeAcceptedCommandListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeAttributeListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeClusterRevisionWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeCountdownTimeWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeCurrentPhaseWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeFeatureMapWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeGeneratedCommandListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeOperationalErrorWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeOperationalStateListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeOperationalStateWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributePhaseListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCRunMode::changeToModeWithParams:completion: not bound -!missing-selector! MTRBaseClusterRVCRunMode::initWithDevice:endpointID:queue: not bound -!missing-selector! MTRBaseClusterRVCRunMode::readAttributeAcceptedCommandListWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCRunMode::readAttributeAttributeListWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCRunMode::readAttributeClusterRevisionWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCRunMode::readAttributeCurrentModeWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCRunMode::readAttributeFeatureMapWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCRunMode::readAttributeGeneratedCommandListWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCRunMode::readAttributeSupportedModesWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeAcceptedCommandListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeAttributeListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeClusterRevisionWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeCurrentModeWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeFeatureMapWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeGeneratedCommandListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeSupportedModesWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterUnitTesting::testNullableOptionalRequestWithCompletion: not bound -!missing-selector! MTRBaseClusterUnitTesting::testSimpleOptionalArgumentRequestWithCompletion: not bound -!missing-selector! MTRCluster::endpointID not bound -!missing-selector! MTRClusterApplicationLauncher::hideAppWithExpectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterApplicationLauncher::launchAppWithExpectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterApplicationLauncher::stopAppWithExpectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterDoorLock::lockDoorWithExpectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterDoorLock::unlockDoorWithExpectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterNetworkCommissioning::scanNetworksWithExpectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterOperationalState::initWithDevice:endpointID:queue: not bound -!missing-selector! MTRClusterOperationalState::pauseWithExpectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterOperationalState::pauseWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterOperationalState::readAttributeAcceptedCommandListWithParams: not bound -!missing-selector! MTRClusterOperationalState::readAttributeAttributeListWithParams: not bound -!missing-selector! MTRClusterOperationalState::readAttributeClusterRevisionWithParams: not bound -!missing-selector! MTRClusterOperationalState::readAttributeCountdownTimeWithParams: not bound -!missing-selector! MTRClusterOperationalState::readAttributeCurrentPhaseWithParams: not bound -!missing-selector! MTRClusterOperationalState::readAttributeFeatureMapWithParams: not bound -!missing-selector! MTRClusterOperationalState::readAttributeGeneratedCommandListWithParams: not bound -!missing-selector! MTRClusterOperationalState::readAttributeOperationalErrorWithParams: not bound -!missing-selector! MTRClusterOperationalState::readAttributeOperationalStateListWithParams: not bound -!missing-selector! MTRClusterOperationalState::readAttributeOperationalStateWithParams: not bound -!missing-selector! MTRClusterOperationalState::readAttributePhaseListWithParams: not bound -!missing-selector! MTRClusterOperationalState::resumeWithExpectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterOperationalState::resumeWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterOperationalState::startWithExpectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterOperationalState::startWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterOperationalState::stopWithExpectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterOperationalState::stopWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterPowerSource::readAttributeEndpointListWithParams: not bound -!missing-selector! MTRClusterRVCCleanMode::changeToModeWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterRVCCleanMode::initWithDevice:endpointID:queue: not bound -!missing-selector! MTRClusterRVCCleanMode::readAttributeAcceptedCommandListWithParams: not bound -!missing-selector! MTRClusterRVCCleanMode::readAttributeAttributeListWithParams: not bound -!missing-selector! MTRClusterRVCCleanMode::readAttributeClusterRevisionWithParams: not bound -!missing-selector! MTRClusterRVCCleanMode::readAttributeCurrentModeWithParams: not bound -!missing-selector! MTRClusterRVCCleanMode::readAttributeFeatureMapWithParams: not bound -!missing-selector! MTRClusterRVCCleanMode::readAttributeGeneratedCommandListWithParams: not bound -!missing-selector! MTRClusterRVCCleanMode::readAttributeSupportedModesWithParams: not bound -!missing-selector! MTRClusterRVCOperationalState::initWithDevice:endpointID:queue: not bound -!missing-selector! MTRClusterRVCOperationalState::pauseWithExpectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterRVCOperationalState::pauseWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterRVCOperationalState::readAttributeAcceptedCommandListWithParams: not bound -!missing-selector! MTRClusterRVCOperationalState::readAttributeAttributeListWithParams: not bound -!missing-selector! MTRClusterRVCOperationalState::readAttributeClusterRevisionWithParams: not bound -!missing-selector! MTRClusterRVCOperationalState::readAttributeCountdownTimeWithParams: not bound -!missing-selector! MTRClusterRVCOperationalState::readAttributeCurrentPhaseWithParams: not bound -!missing-selector! MTRClusterRVCOperationalState::readAttributeFeatureMapWithParams: not bound -!missing-selector! MTRClusterRVCOperationalState::readAttributeGeneratedCommandListWithParams: not bound -!missing-selector! MTRClusterRVCOperationalState::readAttributeOperationalErrorWithParams: not bound -!missing-selector! MTRClusterRVCOperationalState::readAttributeOperationalStateListWithParams: not bound -!missing-selector! MTRClusterRVCOperationalState::readAttributeOperationalStateWithParams: not bound -!missing-selector! MTRClusterRVCOperationalState::readAttributePhaseListWithParams: not bound -!missing-selector! MTRClusterRVCOperationalState::resumeWithExpectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterRVCOperationalState::resumeWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterRVCRunMode::changeToModeWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterRVCRunMode::initWithDevice:endpointID:queue: not bound -!missing-selector! MTRClusterRVCRunMode::readAttributeAcceptedCommandListWithParams: not bound -!missing-selector! MTRClusterRVCRunMode::readAttributeAttributeListWithParams: not bound -!missing-selector! MTRClusterRVCRunMode::readAttributeClusterRevisionWithParams: not bound -!missing-selector! MTRClusterRVCRunMode::readAttributeCurrentModeWithParams: not bound -!missing-selector! MTRClusterRVCRunMode::readAttributeFeatureMapWithParams: not bound -!missing-selector! MTRClusterRVCRunMode::readAttributeGeneratedCommandListWithParams: not bound -!missing-selector! MTRClusterRVCRunMode::readAttributeSupportedModesWithParams: not bound -!missing-selector! MTRClusterUnitTesting::testNullableOptionalRequestWithExpectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterUnitTesting::testSimpleOptionalArgumentRequestWithExpectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRDevice::deviceController not bound -!missing-selector! MTRDevice::invokeCommandWithEndpointID:clusterID:commandID:commandFields:expectedValues:expectedValueInterval:queue:completion: not bound -!missing-selector! MTRDevice::nodeID not bound -!missing-selector! MTRGenericCluster::device not bound -!missing-selector! MTROperationalStateClusterErrorStateStruct::errorStateDetails not bound -!missing-selector! MTROperationalStateClusterErrorStateStruct::errorStateID not bound -!missing-selector! MTROperationalStateClusterErrorStateStruct::errorStateLabel not bound -!missing-selector! MTROperationalStateClusterErrorStateStruct::setErrorStateDetails: not bound -!missing-selector! MTROperationalStateClusterErrorStateStruct::setErrorStateID: not bound -!missing-selector! MTROperationalStateClusterErrorStateStruct::setErrorStateLabel: not bound -!missing-selector! MTROperationalStateClusterOperationalCommandResponseParams::commandResponseState not bound -!missing-selector! MTROperationalStateClusterOperationalCommandResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTROperationalStateClusterOperationalCommandResponseParams::setCommandResponseState: not bound -!missing-selector! MTROperationalStateClusterOperationalErrorEvent::errorState not bound -!missing-selector! MTROperationalStateClusterOperationalErrorEvent::setErrorState: not bound -!missing-selector! MTROperationalStateClusterOperationalStateStruct::operationalStateID not bound -!missing-selector! MTROperationalStateClusterOperationalStateStruct::operationalStateLabel not bound -!missing-selector! MTROperationalStateClusterOperationalStateStruct::setOperationalStateID: not bound -!missing-selector! MTROperationalStateClusterOperationalStateStruct::setOperationalStateLabel: not bound -!missing-selector! MTROperationalStateClusterOperationCompletionEvent::completionErrorCode not bound -!missing-selector! MTROperationalStateClusterOperationCompletionEvent::pausedTime not bound -!missing-selector! MTROperationalStateClusterOperationCompletionEvent::setCompletionErrorCode: not bound -!missing-selector! MTROperationalStateClusterOperationCompletionEvent::setPausedTime: not bound -!missing-selector! MTROperationalStateClusterOperationCompletionEvent::setTotalOperationalTime: not bound -!missing-selector! MTROperationalStateClusterOperationCompletionEvent::totalOperationalTime not bound -!missing-selector! MTROperationalStateClusterPauseParams::serverSideProcessingTimeout not bound -!missing-selector! MTROperationalStateClusterPauseParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTROperationalStateClusterPauseParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTROperationalStateClusterPauseParams::timedInvokeTimeoutMs not bound -!missing-selector! MTROperationalStateClusterResumeParams::serverSideProcessingTimeout not bound -!missing-selector! MTROperationalStateClusterResumeParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTROperationalStateClusterResumeParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTROperationalStateClusterResumeParams::timedInvokeTimeoutMs not bound -!missing-selector! MTROperationalStateClusterStartParams::serverSideProcessingTimeout not bound -!missing-selector! MTROperationalStateClusterStartParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTROperationalStateClusterStartParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTROperationalStateClusterStartParams::timedInvokeTimeoutMs not bound -!missing-selector! MTROperationalStateClusterStopParams::serverSideProcessingTimeout not bound -!missing-selector! MTROperationalStateClusterStopParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTROperationalStateClusterStopParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTROperationalStateClusterStopParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::getNewMode not bound -!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::serverSideProcessingTimeout not bound -!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::setNewMode: not bound -!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRRVCCleanModeClusterChangeToModeResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRRVCCleanModeClusterChangeToModeResponseParams::setStatus: not bound -!missing-selector! MTRRVCCleanModeClusterChangeToModeResponseParams::setStatusText: not bound -!missing-selector! MTRRVCCleanModeClusterChangeToModeResponseParams::status not bound -!missing-selector! MTRRVCCleanModeClusterChangeToModeResponseParams::statusText not bound -!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::label not bound -!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::mode not bound -!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::modeTags not bound -!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::setLabel: not bound -!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::setMode: not bound -!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::setModeTags: not bound -!missing-selector! MTRRVCCleanModeClusterModeTagStruct::mfgCode not bound -!missing-selector! MTRRVCCleanModeClusterModeTagStruct::setMfgCode: not bound -!missing-selector! MTRRVCCleanModeClusterModeTagStruct::setValue: not bound -!missing-selector! MTRRVCCleanModeClusterModeTagStruct::value not bound -!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::errorStateDetails not bound -!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::errorStateID not bound -!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::errorStateLabel not bound -!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::setErrorStateDetails: not bound -!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::setErrorStateID: not bound -!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::setErrorStateLabel: not bound -!missing-selector! MTRRVCOperationalStateClusterOperationalCommandResponseParams::commandResponseState not bound -!missing-selector! MTRRVCOperationalStateClusterOperationalCommandResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRRVCOperationalStateClusterOperationalCommandResponseParams::setCommandResponseState: not bound -!missing-selector! MTRRVCOperationalStateClusterOperationalErrorEvent::errorState not bound -!missing-selector! MTRRVCOperationalStateClusterOperationalErrorEvent::setErrorState: not bound -!missing-selector! MTRRVCOperationalStateClusterOperationalStateStruct::operationalStateID not bound -!missing-selector! MTRRVCOperationalStateClusterOperationalStateStruct::operationalStateLabel not bound -!missing-selector! MTRRVCOperationalStateClusterOperationalStateStruct::setOperationalStateID: not bound -!missing-selector! MTRRVCOperationalStateClusterOperationalStateStruct::setOperationalStateLabel: not bound -!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::completionErrorCode not bound -!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::pausedTime not bound -!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::setCompletionErrorCode: not bound -!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::setPausedTime: not bound -!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::setTotalOperationalTime: not bound -!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::totalOperationalTime not bound -!missing-selector! MTRRVCOperationalStateClusterPauseParams::serverSideProcessingTimeout not bound -!missing-selector! MTRRVCOperationalStateClusterPauseParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRRVCOperationalStateClusterPauseParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRRVCOperationalStateClusterPauseParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRRVCOperationalStateClusterResumeParams::serverSideProcessingTimeout not bound -!missing-selector! MTRRVCOperationalStateClusterResumeParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRRVCOperationalStateClusterResumeParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRRVCOperationalStateClusterResumeParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRRVCRunModeClusterChangeToModeParams::getNewMode not bound -!missing-selector! MTRRVCRunModeClusterChangeToModeParams::serverSideProcessingTimeout not bound -!missing-selector! MTRRVCRunModeClusterChangeToModeParams::setNewMode: not bound -!missing-selector! MTRRVCRunModeClusterChangeToModeParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRRVCRunModeClusterChangeToModeParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRRVCRunModeClusterChangeToModeParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRRVCRunModeClusterChangeToModeResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRRVCRunModeClusterChangeToModeResponseParams::setStatus: not bound -!missing-selector! MTRRVCRunModeClusterChangeToModeResponseParams::setStatusText: not bound -!missing-selector! MTRRVCRunModeClusterChangeToModeResponseParams::status not bound -!missing-selector! MTRRVCRunModeClusterChangeToModeResponseParams::statusText not bound -!missing-selector! MTRRVCRunModeClusterModeOptionStruct::label not bound -!missing-selector! MTRRVCRunModeClusterModeOptionStruct::mode not bound -!missing-selector! MTRRVCRunModeClusterModeOptionStruct::modeTags not bound -!missing-selector! MTRRVCRunModeClusterModeOptionStruct::setLabel: not bound -!missing-selector! MTRRVCRunModeClusterModeOptionStruct::setMode: not bound -!missing-selector! MTRRVCRunModeClusterModeOptionStruct::setModeTags: not bound -!missing-selector! MTRRVCRunModeClusterModeTagStruct::mfgCode not bound -!missing-selector! MTRRVCRunModeClusterModeTagStruct::setMfgCode: not bound -!missing-selector! MTRRVCRunModeClusterModeTagStruct::setValue: not bound -!missing-selector! MTRRVCRunModeClusterModeTagStruct::value not bound -!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::coolSetpoint not bound -!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::heatSetpoint not bound -!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::setCoolSetpoint: not bound -!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::setHeatSetpoint: not bound -!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::setTransitionTime: not bound -!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::transitionTime not bound -!missing-selector! MTRWiFiNetworkDiagnosticsClusterAssociationFailureEvent::associationFailureCause not bound -!missing-selector! MTRWiFiNetworkDiagnosticsClusterAssociationFailureEvent::setAssociationFailureCause: not bound -!missing-type! MTRBaseClusterOperationalState not bound -!missing-type! MTRBaseClusterRVCCleanMode not bound -!missing-type! MTRBaseClusterRVCOperationalState not bound -!missing-type! MTRBaseClusterRVCRunMode not bound -!missing-type! MTRClusterOperationalState not bound -!missing-type! MTRClusterRVCCleanMode not bound -!missing-type! MTRClusterRVCOperationalState not bound -!missing-type! MTRClusterRVCRunMode not bound -!missing-type! MTRGenericBaseCluster not bound -!missing-type! MTRGenericCluster not bound -!missing-type! MTROperationalStateClusterErrorStateStruct not bound -!missing-type! MTROperationalStateClusterOperationalCommandResponseParams not bound -!missing-type! MTROperationalStateClusterOperationalErrorEvent not bound -!missing-type! MTROperationalStateClusterOperationalStateStruct not bound -!missing-type! MTROperationalStateClusterOperationCompletionEvent not bound -!missing-type! MTROperationalStateClusterPauseParams not bound -!missing-type! MTROperationalStateClusterResumeParams not bound -!missing-type! MTROperationalStateClusterStartParams not bound -!missing-type! MTROperationalStateClusterStopParams not bound -!missing-type! MTRRVCCleanModeClusterChangeToModeParams not bound -!missing-type! MTRRVCCleanModeClusterChangeToModeResponseParams not bound -!missing-type! MTRRVCCleanModeClusterModeOptionStruct not bound -!missing-type! MTRRVCCleanModeClusterModeTagStruct not bound -!missing-type! MTRRVCOperationalStateClusterErrorStateStruct not bound -!missing-type! MTRRVCOperationalStateClusterOperationalCommandResponseParams not bound -!missing-type! MTRRVCOperationalStateClusterOperationalErrorEvent not bound -!missing-type! MTRRVCOperationalStateClusterOperationalStateStruct not bound -!missing-type! MTRRVCOperationalStateClusterOperationCompletionEvent not bound -!missing-type! MTRRVCOperationalStateClusterPauseParams not bound -!missing-type! MTRRVCOperationalStateClusterResumeParams not bound -!missing-type! MTRRVCRunModeClusterChangeToModeParams not bound -!missing-type! MTRRVCRunModeClusterChangeToModeResponseParams not bound -!missing-type! MTRRVCRunModeClusterModeOptionStruct not bound -!missing-type! MTRRVCRunModeClusterModeTagStruct not bound -!missing-type! MTRThermostatClusterWeeklyScheduleTransitionStruct not bound diff --git a/tests/xtro-sharpie/tvOS-UIKit.ignore b/tests/xtro-sharpie/tvOS-UIKit.ignore index 6247f0057f16..cf47582b812d 100644 --- a/tests/xtro-sharpie/tvOS-UIKit.ignore +++ b/tests/xtro-sharpie/tvOS-UIKit.ignore @@ -571,7 +571,6 @@ !incorrect-protocol-member! UITraitChangeObservable::registerForTraitChanges:withHandler: is REQUIRED and should be abstract !incorrect-protocol-member! UITraitChangeObservable::registerForTraitChanges:withTarget:action: is REQUIRED and should be abstract -!missing-selector! NSItemProvider::_availableTypes not bound !missing-protocol! UIItemProviderReadingAugmentationDesignating not bound # Will be removed in XAMCORE_5 diff --git a/tests/xtro-sharpie/watchOS-Matter.ignore b/tests/xtro-sharpie/watchOS-Matter.ignore index 21498983956b..74993acf7914 100644 --- a/tests/xtro-sharpie/watchOS-Matter.ignore +++ b/tests/xtro-sharpie/watchOS-Matter.ignore @@ -1202,80 +1202,6 @@ !missing-selector! MTROptionalQRCodeInfo::setTag: not bound !missing-selector! MTROptionalQRCodeInfo::stringValue not bound !missing-selector! MTROptionalQRCodeInfo::tag not bound -!missing-selector! MTRScenesClusterAddSceneParams::extensionFieldSets not bound -!missing-selector! MTRScenesClusterAddSceneParams::sceneName not bound -!missing-selector! MTRScenesClusterAddSceneParams::setExtensionFieldSets: not bound -!missing-selector! MTRScenesClusterAddSceneParams::setSceneName: not bound -!missing-selector! MTRScenesClusterAddSceneParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterAddSceneParams::setTransitionTime: not bound -!missing-selector! MTRScenesClusterAddSceneParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterAddSceneParams::transitionTime not bound -!missing-selector! MTRScenesClusterAddSceneResponseParams::setStatus: not bound -!missing-selector! MTRScenesClusterAddSceneResponseParams::status not bound -!missing-selector! MTRScenesClusterAttributeValuePair::attributeValue not bound -!missing-selector! MTRScenesClusterAttributeValuePair::setAttributeValue: not bound -!missing-selector! MTRScenesClusterCopySceneParams::mode not bound -!missing-selector! MTRScenesClusterCopySceneParams::setMode: not bound -!missing-selector! MTRScenesClusterCopySceneParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterCopySceneParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterCopySceneResponseParams::setStatus: not bound -!missing-selector! MTRScenesClusterCopySceneResponseParams::status not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::extensionFieldSets not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::sceneName not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::setExtensionFieldSets: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::setSceneName: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::setTransitionTime: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::transitionTime not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneResponseParams::setStatus: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneResponseParams::status not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::extensionFieldSets not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::sceneName not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::setExtensionFieldSets: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::setSceneName: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::setStatus: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::setTransitionTime: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::status not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::transitionTime not bound -!missing-selector! MTRScenesClusterExtensionFieldSet::attributeValueList not bound -!missing-selector! MTRScenesClusterExtensionFieldSet::setAttributeValueList: not bound -!missing-selector! MTRScenesClusterGetSceneMembershipParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterGetSceneMembershipParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterGetSceneMembershipResponseParams::capacity not bound -!missing-selector! MTRScenesClusterGetSceneMembershipResponseParams::sceneList not bound -!missing-selector! MTRScenesClusterGetSceneMembershipResponseParams::setCapacity: not bound -!missing-selector! MTRScenesClusterGetSceneMembershipResponseParams::setSceneList: not bound -!missing-selector! MTRScenesClusterGetSceneMembershipResponseParams::setStatus: not bound -!missing-selector! MTRScenesClusterGetSceneMembershipResponseParams::status not bound -!missing-selector! MTRScenesClusterRecallSceneParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterRecallSceneParams::setTransitionTime: not bound -!missing-selector! MTRScenesClusterRecallSceneParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterRecallSceneParams::transitionTime not bound -!missing-selector! MTRScenesClusterRemoveAllScenesParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterRemoveAllScenesParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterRemoveAllScenesResponseParams::setStatus: not bound -!missing-selector! MTRScenesClusterRemoveAllScenesResponseParams::status not bound -!missing-selector! MTRScenesClusterRemoveSceneParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterRemoveSceneParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterRemoveSceneResponseParams::setStatus: not bound -!missing-selector! MTRScenesClusterRemoveSceneResponseParams::status not bound -!missing-selector! MTRScenesClusterStoreSceneParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterStoreSceneParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterStoreSceneResponseParams::setStatus: not bound -!missing-selector! MTRScenesClusterStoreSceneResponseParams::status not bound -!missing-selector! MTRScenesClusterViewSceneParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRScenesClusterViewSceneParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::extensionFieldSets not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::sceneName not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::setExtensionFieldSets: not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::setSceneName: not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::setStatus: not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::setTransitionTime: not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::status not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::transitionTime not bound !missing-selector! MTRSetupPayload::commissioningFlow not bound !missing-selector! MTRSetupPayload::discriminator not bound !missing-selector! MTRSetupPayload::getAllOptionalVendorData: not bound @@ -1495,7 +1421,6 @@ !missing-type! MTRBaseClusterPressureMeasurement not bound !missing-type! MTRBaseClusterPumpConfigurationAndControl not bound !missing-type! MTRBaseClusterRelativeHumidityMeasurement not bound -!missing-type! MTRBaseClusterScenes not bound !missing-type! MTRBaseClusterSoftwareDiagnostics not bound !missing-type! MTRBaseClusterSwitch not bound !missing-type! MTRBaseClusterTargetNavigator not bound @@ -1690,27 +1615,6 @@ !missing-type! MTRPumpConfigurationAndControlClusterSystemPressureLowEvent not bound !missing-type! MTRPumpConfigurationAndControlClusterTurbineOperationEvent not bound !missing-type! MTRReadParams not bound -!missing-type! MTRScenesClusterAddSceneParams not bound -!missing-type! MTRScenesClusterAddSceneResponseParams not bound -!missing-type! MTRScenesClusterAttributeValuePair not bound -!missing-type! MTRScenesClusterCopySceneParams not bound -!missing-type! MTRScenesClusterCopySceneResponseParams not bound -!missing-type! MTRScenesClusterEnhancedAddSceneParams not bound -!missing-type! MTRScenesClusterEnhancedAddSceneResponseParams not bound -!missing-type! MTRScenesClusterEnhancedViewSceneParams not bound -!missing-type! MTRScenesClusterEnhancedViewSceneResponseParams not bound -!missing-type! MTRScenesClusterExtensionFieldSet not bound -!missing-type! MTRScenesClusterGetSceneMembershipParams not bound -!missing-type! MTRScenesClusterGetSceneMembershipResponseParams not bound -!missing-type! MTRScenesClusterRecallSceneParams not bound -!missing-type! MTRScenesClusterRemoveAllScenesParams not bound -!missing-type! MTRScenesClusterRemoveAllScenesResponseParams not bound -!missing-type! MTRScenesClusterRemoveSceneParams not bound -!missing-type! MTRScenesClusterRemoveSceneResponseParams not bound -!missing-type! MTRScenesClusterStoreSceneParams not bound -!missing-type! MTRScenesClusterStoreSceneResponseParams not bound -!missing-type! MTRScenesClusterViewSceneParams not bound -!missing-type! MTRScenesClusterViewSceneResponseParams not bound !missing-type! MTRSetupPayload not bound !missing-type! MTRSoftwareDiagnosticsClusterResetWatermarksParams not bound !missing-type! MTRSoftwareDiagnosticsClusterSoftwareFaultEvent not bound @@ -2766,17 +2670,6 @@ !missing-selector! MTRClusterRelativeHumidityMeasurement::readAttributeMeasuredValueWithParams: not bound !missing-selector! MTRClusterRelativeHumidityMeasurement::readAttributeMinMeasuredValueWithParams: not bound !missing-selector! MTRClusterRelativeHumidityMeasurement::readAttributeToleranceWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeAcceptedCommandListWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeAttributeListWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeClusterRevisionWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeCurrentGroupWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeCurrentSceneWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeFeatureMapWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeGeneratedCommandListWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeLastConfiguredByWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeNameSupportWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeSceneCountWithParams: not bound -!missing-selector! MTRClusterScenes::readAttributeSceneValidWithParams: not bound !missing-selector! MTRClusterSoftwareDiagnostics::readAttributeAcceptedCommandListWithParams: not bound !missing-selector! MTRClusterSoftwareDiagnostics::readAttributeAttributeListWithParams: not bound !missing-selector! MTRClusterSoftwareDiagnostics::readAttributeClusterRevisionWithParams: not bound @@ -3209,7 +3102,6 @@ !missing-type! MTRClusterPressureMeasurement not bound !missing-type! MTRClusterPumpConfigurationAndControl not bound !missing-type! MTRClusterRelativeHumidityMeasurement not bound -!missing-type! MTRClusterScenes not bound !missing-type! MTRClusterSoftwareDiagnostics not bound !missing-type! MTRClusterSwitch not bound !missing-type! MTRClusterTargetNavigator not bound @@ -4026,17 +3918,6 @@ !missing-selector! +MTRBaseClusterRelativeHumidityMeasurement::readAttributeMeasuredValueWithClusterStateCache:endpoint:queue:completion: not bound !missing-selector! +MTRBaseClusterRelativeHumidityMeasurement::readAttributeMinMeasuredValueWithClusterStateCache:endpoint:queue:completion: not bound !missing-selector! +MTRBaseClusterRelativeHumidityMeasurement::readAttributeToleranceWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeAcceptedCommandListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeAttributeListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeClusterRevisionWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeCurrentGroupWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeCurrentSceneWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeFeatureMapWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeGeneratedCommandListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeLastConfiguredByWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeNameSupportWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeSceneCountWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterScenes::readAttributeSceneValidWithClusterStateCache:endpoint:queue:completion: not bound !missing-selector! +MTRBaseClusterSoftwareDiagnostics::readAttributeAcceptedCommandListWithClusterStateCache:endpoint:queue:completion: not bound !missing-selector! +MTRBaseClusterSoftwareDiagnostics::readAttributeAttributeListWithClusterStateCache:endpoint:queue:completion: not bound !missing-selector! +MTRBaseClusterSoftwareDiagnostics::readAttributeClusterRevisionWithClusterStateCache:endpoint:queue:completion: not bound @@ -6394,39 +6275,6 @@ !missing-selector! MTRBaseClusterRelativeHumidityMeasurement::subscribeAttributeMeasuredValueWithParams:subscriptionEstablished:reportHandler: not bound !missing-selector! MTRBaseClusterRelativeHumidityMeasurement::subscribeAttributeMinMeasuredValueWithParams:subscriptionEstablished:reportHandler: not bound !missing-selector! MTRBaseClusterRelativeHumidityMeasurement::subscribeAttributeToleranceWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::addSceneWithParams:completion: not bound -!missing-selector! MTRBaseClusterScenes::copySceneWithParams:completion: not bound -!missing-selector! MTRBaseClusterScenes::enhancedAddSceneWithParams:completion: not bound -!missing-selector! MTRBaseClusterScenes::enhancedViewSceneWithParams:completion: not bound -!missing-selector! MTRBaseClusterScenes::getSceneMembershipWithParams:completion: not bound -!missing-selector! MTRBaseClusterScenes::initWithDevice:endpointID:queue: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeAcceptedCommandListWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeAttributeListWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeClusterRevisionWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeCurrentGroupWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeCurrentSceneWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeFeatureMapWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeGeneratedCommandListWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeLastConfiguredByWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeNameSupportWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeSceneCountWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::readAttributeSceneValidWithCompletion: not bound -!missing-selector! MTRBaseClusterScenes::recallSceneWithParams:completion: not bound -!missing-selector! MTRBaseClusterScenes::removeAllScenesWithParams:completion: not bound -!missing-selector! MTRBaseClusterScenes::removeSceneWithParams:completion: not bound -!missing-selector! MTRBaseClusterScenes::storeSceneWithParams:completion: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeAcceptedCommandListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeAttributeListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeClusterRevisionWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeCurrentGroupWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeCurrentSceneWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeFeatureMapWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeGeneratedCommandListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeLastConfiguredByWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeNameSupportWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeSceneCountWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::subscribeAttributeSceneValidWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterScenes::viewSceneWithParams:completion: not bound !missing-selector! MTRBaseClusterSoftwareDiagnostics::initWithDevice:endpointID:queue: not bound !missing-selector! MTRBaseClusterSoftwareDiagnostics::readAttributeAcceptedCommandListWithCompletion: not bound !missing-selector! MTRBaseClusterSoftwareDiagnostics::readAttributeAttributeListWithCompletion: not bound @@ -7717,17 +7565,6 @@ !missing-selector! MTRClusterPressureMeasurement::initWithDevice:endpointID:queue: not bound !missing-selector! MTRClusterPumpConfigurationAndControl::initWithDevice:endpointID:queue: not bound !missing-selector! MTRClusterRelativeHumidityMeasurement::initWithDevice:endpointID:queue: not bound -!missing-selector! MTRClusterScenes::addSceneWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterScenes::copySceneWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterScenes::enhancedAddSceneWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterScenes::enhancedViewSceneWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterScenes::getSceneMembershipWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterScenes::initWithDevice:endpointID:queue: not bound -!missing-selector! MTRClusterScenes::recallSceneWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterScenes::removeAllScenesWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterScenes::removeSceneWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterScenes::storeSceneWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterScenes::viewSceneWithParams:expectedValues:expectedValueInterval:completion: not bound !missing-selector! MTRClusterSoftwareDiagnostics::initWithDevice:endpointID:queue: not bound !missing-selector! MTRClusterSoftwareDiagnostics::resetWatermarksWithExpectedValues:expectedValueInterval:completion: not bound !missing-selector! MTRClusterSoftwareDiagnostics::resetWatermarksWithParams:expectedValues:expectedValueInterval:completion: not bound @@ -8571,102 +8408,6 @@ !missing-selector! MTRReadParams::setFilterByFabric: not bound !missing-selector! MTRReadParams::setMinEventNumber: not bound !missing-selector! MTRReadParams::shouldFilterByFabric not bound -!missing-selector! MTRScenesClusterAddSceneParams::groupID not bound -!missing-selector! MTRScenesClusterAddSceneParams::sceneID not bound -!missing-selector! MTRScenesClusterAddSceneParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterAddSceneParams::setGroupID: not bound -!missing-selector! MTRScenesClusterAddSceneParams::setSceneID: not bound -!missing-selector! MTRScenesClusterAddSceneParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterAddSceneResponseParams::groupID not bound -!missing-selector! MTRScenesClusterAddSceneResponseParams::sceneID not bound -!missing-selector! MTRScenesClusterAddSceneResponseParams::setGroupID: not bound -!missing-selector! MTRScenesClusterAddSceneResponseParams::setSceneID: not bound -!missing-selector! MTRScenesClusterAttributeValuePair::attributeID not bound -!missing-selector! MTRScenesClusterAttributeValuePair::setAttributeID: not bound -!missing-selector! MTRScenesClusterCopySceneParams::groupIdentifierFrom not bound -!missing-selector! MTRScenesClusterCopySceneParams::groupIdentifierTo not bound -!missing-selector! MTRScenesClusterCopySceneParams::sceneIdentifierFrom not bound -!missing-selector! MTRScenesClusterCopySceneParams::sceneIdentifierTo not bound -!missing-selector! MTRScenesClusterCopySceneParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterCopySceneParams::setGroupIdentifierFrom: not bound -!missing-selector! MTRScenesClusterCopySceneParams::setGroupIdentifierTo: not bound -!missing-selector! MTRScenesClusterCopySceneParams::setSceneIdentifierFrom: not bound -!missing-selector! MTRScenesClusterCopySceneParams::setSceneIdentifierTo: not bound -!missing-selector! MTRScenesClusterCopySceneParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterCopySceneResponseParams::groupIdentifierFrom not bound -!missing-selector! MTRScenesClusterCopySceneResponseParams::sceneIdentifierFrom not bound -!missing-selector! MTRScenesClusterCopySceneResponseParams::setGroupIdentifierFrom: not bound -!missing-selector! MTRScenesClusterCopySceneResponseParams::setSceneIdentifierFrom: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::groupID not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::sceneID not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::setGroupID: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::setSceneID: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneResponseParams::groupID not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneResponseParams::sceneID not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneResponseParams::setGroupID: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneResponseParams::setSceneID: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneParams::groupID not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneParams::sceneID not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneParams::setGroupID: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneParams::setSceneID: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::groupID not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::sceneID not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::setGroupID: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::setSceneID: not bound -!missing-selector! MTRScenesClusterExtensionFieldSet::clusterID not bound -!missing-selector! MTRScenesClusterExtensionFieldSet::setClusterID: not bound -!missing-selector! MTRScenesClusterGetSceneMembershipParams::groupID not bound -!missing-selector! MTRScenesClusterGetSceneMembershipParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterGetSceneMembershipParams::setGroupID: not bound -!missing-selector! MTRScenesClusterGetSceneMembershipParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterGetSceneMembershipResponseParams::groupID not bound -!missing-selector! MTRScenesClusterGetSceneMembershipResponseParams::setGroupID: not bound -!missing-selector! MTRScenesClusterRecallSceneParams::groupID not bound -!missing-selector! MTRScenesClusterRecallSceneParams::sceneID not bound -!missing-selector! MTRScenesClusterRecallSceneParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterRecallSceneParams::setGroupID: not bound -!missing-selector! MTRScenesClusterRecallSceneParams::setSceneID: not bound -!missing-selector! MTRScenesClusterRecallSceneParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterRemoveAllScenesParams::groupID not bound -!missing-selector! MTRScenesClusterRemoveAllScenesParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterRemoveAllScenesParams::setGroupID: not bound -!missing-selector! MTRScenesClusterRemoveAllScenesParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterRemoveAllScenesResponseParams::groupID not bound -!missing-selector! MTRScenesClusterRemoveAllScenesResponseParams::setGroupID: not bound -!missing-selector! MTRScenesClusterRemoveSceneParams::groupID not bound -!missing-selector! MTRScenesClusterRemoveSceneParams::sceneID not bound -!missing-selector! MTRScenesClusterRemoveSceneParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterRemoveSceneParams::setGroupID: not bound -!missing-selector! MTRScenesClusterRemoveSceneParams::setSceneID: not bound -!missing-selector! MTRScenesClusterRemoveSceneParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterRemoveSceneResponseParams::groupID not bound -!missing-selector! MTRScenesClusterRemoveSceneResponseParams::sceneID not bound -!missing-selector! MTRScenesClusterRemoveSceneResponseParams::setGroupID: not bound -!missing-selector! MTRScenesClusterRemoveSceneResponseParams::setSceneID: not bound -!missing-selector! MTRScenesClusterStoreSceneParams::groupID not bound -!missing-selector! MTRScenesClusterStoreSceneParams::sceneID not bound -!missing-selector! MTRScenesClusterStoreSceneParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterStoreSceneParams::setGroupID: not bound -!missing-selector! MTRScenesClusterStoreSceneParams::setSceneID: not bound -!missing-selector! MTRScenesClusterStoreSceneParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterStoreSceneResponseParams::groupID not bound -!missing-selector! MTRScenesClusterStoreSceneResponseParams::sceneID not bound -!missing-selector! MTRScenesClusterStoreSceneResponseParams::setGroupID: not bound -!missing-selector! MTRScenesClusterStoreSceneResponseParams::setSceneID: not bound -!missing-selector! MTRScenesClusterViewSceneParams::groupID not bound -!missing-selector! MTRScenesClusterViewSceneParams::sceneID not bound -!missing-selector! MTRScenesClusterViewSceneParams::serverSideProcessingTimeout not bound -!missing-selector! MTRScenesClusterViewSceneParams::setGroupID: not bound -!missing-selector! MTRScenesClusterViewSceneParams::setSceneID: not bound -!missing-selector! MTRScenesClusterViewSceneParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::groupID not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::sceneID not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::setGroupID: not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::setSceneID: not bound !missing-selector! MTRSetupPayload::discoveryCapabilities not bound !missing-selector! MTRSetupPayload::initWithSetupPasscode:discriminator: not bound !missing-selector! MTRSetupPayload::qrCodeString: not bound @@ -9199,3 +8940,774 @@ !missing-type! MTRUnitTestingClusterTestStructArrayArgumentResponseParams not bound !missing-type! MTRUnitTestingClusterTestUnknownCommandParams not bound !missing-type! MTRUnitTestingClusterTimedInvokeRequestParams not bound +!missing-enum! MTRBasicInformationColor not bound +!missing-enum! MTRBasicInformationProductFinish not bound +!missing-enum! MTRBridgedDeviceBasicInformationColor not bound +!missing-enum! MTRBridgedDeviceBasicInformationProductFinish not bound +!missing-enum! MTRDiagnosticLogsIntent not bound +!missing-enum! MTRDiagnosticLogsStatus not bound +!missing-enum! MTRDiagnosticLogsTransferProtocol not bound +!missing-enum! MTREventPriority not bound +!missing-enum! MTREventTimeType not bound +!missing-enum! MTRGroupsFeature not bound +!missing-enum! MTRGroupsNameSupportBitmap not bound +!missing-enum! MTRNetworkCommissioningWiFiSecurityBitmap not bound +!missing-enum! MTROccupancySensingOccupancyBitmap not bound +!missing-enum! MTROccupancySensingOccupancySensorType not bound +!missing-enum! MTROccupancySensingOccupancySensorTypeBitmap not bound +!missing-enum! MTRPowerSourceBatApprovedChemistry not bound +!missing-enum! MTRPowerSourceBatCommonDesignation not bound +!missing-enum! MTRPressureMeasurementFeature not bound +!missing-enum! MTRPumpConfigurationAndControlControlMode not bound +!missing-enum! MTRPumpConfigurationAndControlFeature not bound +!missing-enum! MTRPumpConfigurationAndControlOperationMode not bound +!missing-enum! MTRPumpConfigurationAndControlPumpStatusBitmap not bound +!missing-enum! MTRWiFiNetworkDiagnosticsConnectionStatus not bound +!missing-enum! MTRWiFiNetworkDiagnosticsWiFiVersion not bound +!missing-field! MTREventNumberKey not bound +!missing-field! MTREventPriorityKey not bound +!missing-field! MTREventSystemUpTimeKey not bound +!missing-field! MTREventTimestampDateKey not bound +!missing-field! MTREventTimeTypeKey not bound +!missing-selector! +MTRAttributeRequestPath::requestPathWithEndpointID:clusterID:attributeID: not bound +!missing-selector! +MTRBaseClusterBasicInformation::readAttributeProductAppearanceWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterBridgedDeviceBasicInformation::readAttributeProductAppearanceWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRCertificates::createIntermediateCertificate:rootCertificate:intermediatePublicKey:issuerID:fabricID:validityPeriod:error: not bound +!missing-selector! +MTRCertificates::createOperationalCertificate:signingCertificate:operationalPublicKey:fabricID:nodeID:caseAuthenticatedTags:validityPeriod:error: not bound +!missing-selector! +MTRCertificates::createRootCertificate:issuerID:fabricID:validityPeriod:error: not bound +!missing-selector! +MTRDeviceController::xpcInterfaceForClientProtocol not bound +!missing-selector! +MTRDeviceController::xpcInterfaceForServerProtocol not bound +!missing-selector! +MTREventRequestPath::requestPathWithEndpointID:clusterID:eventID: not bound +!missing-selector! MTRAccessControlClusterAccessControlTargetStruct::cluster not bound +!missing-selector! MTRAccessControlClusterAccessControlTargetStruct::deviceType not bound +!missing-selector! MTRAccessControlClusterAccessControlTargetStruct::endpoint not bound +!missing-selector! MTRAccessControlClusterAccessControlTargetStruct::setCluster: not bound +!missing-selector! MTRAccessControlClusterAccessControlTargetStruct::setDeviceType: not bound +!missing-selector! MTRAccessControlClusterAccessControlTargetStruct::setEndpoint: not bound +!missing-selector! MTRAccountLoginClusterGetSetupPINResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRApplicationLauncherClusterLauncherResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRAttributeReport::initWithResponseValue:error: not bound +!missing-selector! MTRAttributeRequestPath::attribute not bound +!missing-selector! MTRAttributeRequestPath::cluster not bound +!missing-selector! MTRAttributeRequestPath::endpoint not bound +!missing-selector! MTRBaseClusterBasicInformation::readAttributeProductAppearanceWithCompletion: not bound +!missing-selector! MTRBaseClusterBasicInformation::subscribeAttributeProductAppearanceWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterBridgedDeviceBasicInformation::readAttributeProductAppearanceWithCompletion: not bound +!missing-selector! MTRBaseClusterBridgedDeviceBasicInformation::subscribeAttributeProductAppearanceWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterGroupKeyManagement::keySetReadAllIndicesWithCompletion: not bound +!missing-selector! MTRBaseDevice::openCommissioningWindowWithDiscriminator:duration:queue:completion: not bound +!missing-selector! MTRBaseDevice::readAttributePaths:eventPaths:params:queue:completion: not bound +!missing-selector! MTRBaseDevice::subscribeToAttributePaths:eventPaths:params:queue:reportHandler:subscriptionEstablished:resubscriptionScheduled: not bound +!missing-selector! MTRBasicInformationClusterProductAppearanceStruct::finish not bound +!missing-selector! MTRBasicInformationClusterProductAppearanceStruct::primaryColor not bound +!missing-selector! MTRBasicInformationClusterProductAppearanceStruct::setFinish: not bound +!missing-selector! MTRBasicInformationClusterProductAppearanceStruct::setPrimaryColor: not bound +!missing-selector! MTRBridgedDeviceBasicInformationClusterProductAppearanceStruct::finish not bound +!missing-selector! MTRBridgedDeviceBasicInformationClusterProductAppearanceStruct::primaryColor not bound +!missing-selector! MTRBridgedDeviceBasicInformationClusterProductAppearanceStruct::setFinish: not bound +!missing-selector! MTRBridgedDeviceBasicInformationClusterProductAppearanceStruct::setPrimaryColor: not bound +!missing-selector! MTRChannelClusterChangeChannelResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRClusterBasicInformation::readAttributeProductAppearanceWithParams: not bound +!missing-selector! MTRClusterBridgedDeviceBasicInformation::readAttributeProductAppearanceWithParams: not bound +!missing-selector! MTRClusterGroupKeyManagement::keySetReadAllIndicesWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRCommissioningParameters::countryCode not bound +!missing-selector! MTRCommissioningParameters::setCountryCode: not bound +!missing-selector! MTRCommissioningParameters::setSkipCommissioningComplete: not bound +!missing-selector! MTRCommissioningParameters::skipCommissioningComplete not bound +!missing-selector! MTRContentLauncherClusterLauncherResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRDevice::estimatedStartTime not bound +!missing-selector! MTRDevice::openCommissioningWindowWithDiscriminator:duration:queue:completion: not bound +!missing-selector! MTRDeviceAttestationDeviceInfo::basicInformationProductID not bound +!missing-selector! MTRDeviceAttestationDeviceInfo::basicInformationVendorID not bound +!missing-selector! MTRDeviceControllerFactory::knownFabrics not bound +!missing-selector! MTRDeviceControllerStartupParams::caseAuthenticatedTags not bound +!missing-selector! MTRDeviceControllerStartupParams::setCaseAuthenticatedTags: not bound +!missing-selector! MTRDiagnosticLogsClusterRetrieveLogsResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRDoorLockClusterGetCredentialStatusResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRDoorLockClusterGetHolidayScheduleResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRDoorLockClusterGetUserResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRDoorLockClusterGetWeekDayScheduleResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRDoorLockClusterGetYearDayScheduleResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRDoorLockClusterSetCredentialResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRElectricalMeasurementClusterGetMeasurementProfileResponseCommandParams::initWithResponseValue:error: not bound +!missing-selector! MTRElectricalMeasurementClusterGetProfileInfoResponseCommandParams::initWithResponseValue:error: not bound +!missing-selector! MTREventReport::eventTimeType not bound +!missing-selector! MTREventReport::initWithResponseValue:error: not bound +!missing-selector! MTREventReport::systemUpTime not bound +!missing-selector! MTREventReport::timestampDate not bound +!missing-selector! MTREventRequestPath::cluster not bound +!missing-selector! MTREventRequestPath::endpoint not bound +!missing-selector! MTREventRequestPath::event not bound +!missing-selector! MTRFabricInfo::fabricID not bound +!missing-selector! MTRFabricInfo::fabricIndex not bound +!missing-selector! MTRFabricInfo::intermediateCertificate not bound +!missing-selector! MTRFabricInfo::intermediateCertificateTLV not bound +!missing-selector! MTRFabricInfo::label not bound +!missing-selector! MTRFabricInfo::nodeID not bound +!missing-selector! MTRFabricInfo::operationalCertificate not bound +!missing-selector! MTRFabricInfo::operationalCertificateTLV not bound +!missing-selector! MTRFabricInfo::rootCertificate not bound +!missing-selector! MTRFabricInfo::rootCertificateTLV not bound +!missing-selector! MTRFabricInfo::rootPublicKey not bound +!missing-selector! MTRFabricInfo::vendorID not bound +!missing-selector! MTRGeneralCommissioningClusterArmFailSafeResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRGeneralCommissioningClusterCommissioningCompleteResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRGeneralCommissioningClusterSetRegulatoryConfigResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRGroupKeyManagementClusterKeySetReadAllIndicesResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRGroupKeyManagementClusterKeySetReadResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRGroupsClusterAddGroupResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRGroupsClusterGetGroupMembershipResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRGroupsClusterRemoveGroupResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRGroupsClusterViewGroupResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRKeypadInputClusterSendKeyResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRMediaPlaybackClusterPlaybackResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRNetworkCommissioningClusterConnectNetworkResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRNetworkCommissioningClusterNetworkConfigResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRNetworkCommissioningClusterNetworkInfoStruct::connected not bound +!missing-selector! MTRNetworkCommissioningClusterNetworkInfoStruct::networkID not bound +!missing-selector! MTRNetworkCommissioningClusterNetworkInfoStruct::setConnected: not bound +!missing-selector! MTRNetworkCommissioningClusterNetworkInfoStruct::setNetworkID: not bound +!missing-selector! MTRNetworkCommissioningClusterScanNetworksResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::channel not bound +!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::extendedAddress not bound +!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::extendedPanId not bound +!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::lqi not bound +!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::networkName not bound +!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::panId not bound +!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::rssi not bound +!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::setChannel: not bound +!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::setExtendedAddress: not bound +!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::setExtendedPanId: not bound +!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::setLqi: not bound +!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::setNetworkName: not bound +!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::setPanId: not bound +!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::setRssi: not bound +!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::setVersion: not bound +!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::version not bound +!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::bssid not bound +!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::channel not bound +!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::rssi not bound +!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::security not bound +!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::setBssid: not bound +!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::setChannel: not bound +!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::setRssi: not bound +!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::setSecurity: not bound +!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::setSsid: not bound +!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::setWiFiBand: not bound +!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::ssid not bound +!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::wiFiBand not bound +!missing-selector! MTROperationalCredentialsClusterAttestationResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTROperationalCredentialsClusterCertificateChainResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTROperationalCredentialsClusterCSRResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTROperationalCredentialsClusterNOCResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTROperationalCSRInfo::initWithCSRElementsTLV:attestationSignature: not bound +!missing-selector! MTROperationalCSRInfo::initWithCSRNonce:csrElementsTLV:attestationSignature: not bound +!missing-selector! MTROperationalCSRInfo::initWithCSRResponseParams: not bound +!missing-selector! MTROTASoftwareUpdateProviderClusterApplyUpdateResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTROTASoftwareUpdateProviderClusterQueryImageResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRProductIdentity::initWithVendorID:productID: not bound +!missing-selector! MTRProductIdentity::productID not bound +!missing-selector! MTRProductIdentity::vendorID not bound +!missing-selector! MTRTargetNavigatorClusterNavigateTargetResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRThermostatClusterGetWeeklyScheduleResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::age not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::averageRssi not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::extAddress not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::frameErrorRate not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::fullNetworkData not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::fullThreadDevice not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::isChild not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::lastRssi not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::linkFrameCounter not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::lqi not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::messageErrorRate not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::mleFrameCounter not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::rloc16 not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::rxOnWhenIdle not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setAge: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setAverageRssi: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setExtAddress: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setFrameErrorRate: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setFullNetworkData: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setFullThreadDevice: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setIsChild: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setLastRssi: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setLinkFrameCounter: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setLqi: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setMessageErrorRate: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setMleFrameCounter: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setRloc16: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setRxOnWhenIdle: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::age not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::allocated not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::extAddress not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::linkEstablished not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::lqiIn not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::lqiOut not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::nextHop not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::pathCost not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::rloc16 not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::routerId not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::setAge: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::setAllocated: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::setExtAddress: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::setLinkEstablished: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::setLqiIn: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::setLqiOut: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::setNextHop: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::setPathCost: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::setRloc16: not bound +!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::setRouterId: not bound +!missing-selector! MTRTimeSynchronizationClusterDSTOffsetStruct::offset not bound +!missing-selector! MTRTimeSynchronizationClusterDSTOffsetStruct::setOffset: not bound +!missing-selector! MTRTimeSynchronizationClusterDSTOffsetStruct::setValidStarting: not bound +!missing-selector! MTRTimeSynchronizationClusterDSTOffsetStruct::setValidUntil: not bound +!missing-selector! MTRTimeSynchronizationClusterDSTOffsetStruct::validStarting not bound +!missing-selector! MTRTimeSynchronizationClusterDSTOffsetStruct::validUntil not bound +!missing-selector! MTRTimeSynchronizationClusterTimeZoneStruct::name not bound +!missing-selector! MTRTimeSynchronizationClusterTimeZoneStruct::offset not bound +!missing-selector! MTRTimeSynchronizationClusterTimeZoneStruct::setName: not bound +!missing-selector! MTRTimeSynchronizationClusterTimeZoneStruct::setOffset: not bound +!missing-selector! MTRTimeSynchronizationClusterTimeZoneStruct::setValidAt: not bound +!missing-selector! MTRTimeSynchronizationClusterTimeZoneStruct::validAt not bound +!missing-selector! MTRUnitTestingClusterBooleanResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRUnitTestingClusterSimpleStructResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRUnitTestingClusterTestAddArgumentsResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRUnitTestingClusterTestComplexNullableOptionalResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRUnitTestingClusterTestEmitTestEventResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRUnitTestingClusterTestEmitTestFabricScopedEventResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRUnitTestingClusterTestEnumsResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRUnitTestingClusterTestListInt8UReverseResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRUnitTestingClusterTestNullableOptionalResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRUnitTestingClusterTestSimpleArgumentResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRUnitTestingClusterTestSpecificResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRUnitTestingClusterTestStructArrayArgumentResponseParams::initWithResponseValue:error: not bound +!missing-type! MTRAccessControlClusterAccessControlTargetStruct not bound +!missing-type! MTRAttributeRequestPath not bound +!missing-type! MTRBasicInformationClusterProductAppearanceStruct not bound +!missing-type! MTRBridgedDeviceBasicInformationClusterProductAppearanceStruct not bound +!missing-type! MTREventRequestPath not bound +!missing-type! MTRFabricInfo not bound +!missing-type! MTRNetworkCommissioningClusterNetworkInfoStruct not bound +!missing-type! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct not bound +!missing-type! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct not bound +!missing-type! MTRProductIdentity not bound +!missing-type! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct not bound +!missing-type! MTRThreadNetworkDiagnosticsClusterRouteTableStruct not bound +!missing-type! MTRTimeSynchronizationClusterDSTOffsetStruct not bound +!missing-type! MTRTimeSynchronizationClusterTimeZoneStruct not bound +!missing-enum! MTRFanControlFanMode not bound +!missing-enum! MTRFanControlFanModeSequence not bound +!missing-enum! MTRFanControlRockBitmap not bound +!missing-enum! MTRFanControlWindBitmap not bound +!missing-protocol! MTRCommissionableBrowserDelegate not bound +!missing-selector! MTRCommissionableBrowserResult::commissioningMode not bound +!missing-selector! MTRCommissionableBrowserResult::discriminator not bound +!missing-selector! MTRCommissionableBrowserResult::instanceName not bound +!missing-selector! MTRCommissionableBrowserResult::productID not bound +!missing-selector! MTRCommissionableBrowserResult::vendorID not bound +!missing-selector! MTRDeviceController::setupCommissioningSessionWithDiscoveredDevice:payload:newNodeID:error: not bound +!missing-selector! MTRDeviceController::startBrowseForCommissionables:queue: not bound +!missing-selector! MTRDeviceController::stopBrowseForCommissionables not bound +!missing-selector! MTRModeSelectClusterSemanticTagStruct::mfgCode not bound +!missing-selector! MTRModeSelectClusterSemanticTagStruct::setMfgCode: not bound +!missing-selector! MTRModeSelectClusterSemanticTagStruct::setValue: not bound +!missing-selector! MTRModeSelectClusterSemanticTagStruct::value not bound +!missing-type! MTRCommissionableBrowserResult not bound +!missing-enum! MTROnOffControlBitmap not bound +!missing-enum! MTROTASoftwareUpdateProviderApplyUpdateAction not bound +!missing-enum! MTROTASoftwareUpdateProviderDownloadProtocol not bound +!missing-enum! MTROTASoftwareUpdateProviderStatus not bound +!missing-enum! MTROTASoftwareUpdateRequestorAnnouncementReason not bound +!missing-enum! MTROTASoftwareUpdateRequestorChangeReason not bound +!missing-enum! MTROTASoftwareUpdateRequestorUpdateState not bound +!missing-enum! MTRTimeFormatLocalizationFeature not bound +!missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::granularity not bound +!missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::serverSideProcessingTimeout not bound +!missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::setGranularity: not bound +!missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::setTimeSource: not bound +!missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::setUtcTime: not bound +!missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::timedInvokeTimeoutMs not bound +!missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::timeSource not bound +!missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::utcTime not bound +!missing-type! MTRTimeSynchronizationClusterSetUTCTimeParams not bound +!missing-enum! MTRAdministratorCommissioningFeature not bound +!missing-enum! MTRContentLauncherStatus not bound +!missing-enum! MTRContentLauncherSupportedProtocolsBitmap not bound +!missing-enum! MTRKeypadInputCECKeyCode not bound +!missing-enum! MTRLevelControlOptionsBitmap not bound +!missing-enum! MTROperationalState not bound +!missing-enum! MTROperationalStateErrorState not bound +!missing-enum! MTRRVCCleanModeFeature not bound +!missing-enum! MTRRVCCleanModeModeTag not bound +!missing-enum! MTRRVCCleanModeStatusCode not bound +!missing-enum! MTRRVCOperationalStateErrorState not bound +!missing-enum! MTRRVCOperationalStateOperationalState not bound +!missing-enum! MTRRVCRunModeFeature not bound +!missing-enum! MTRRVCRunModeModeTag not bound +!missing-enum! MTRRVCRunModeStatusCode not bound +!missing-enum! MTRThermostatControlSequenceOfOperation not bound +!missing-enum! MTRThermostatScheduleDayOfWeekBitmap not bound +!missing-enum! MTRThermostatScheduleModeBitmap not bound +!missing-enum! MTRThermostatSetpointRaiseLowerMode not bound +!missing-enum! MTRThermostatUserInterfaceConfigurationKeypadLockout not bound +!missing-enum! MTRThermostatUserInterfaceConfigurationScheduleProgrammingVisibility not bound +!missing-enum! MTRThermostatUserInterfaceConfigurationTemperatureDisplayMode not bound +!missing-field! MTREventIsHistoricalKey not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeAcceptedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeAttributeListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeClusterRevisionWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeCountdownTimeWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeCurrentPhaseWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeFeatureMapWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeGeneratedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeOperationalErrorWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeOperationalStateListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributeOperationalStateWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterOperationalState::readAttributePhaseListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterPowerSource::readAttributeEndpointListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeAcceptedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeAttributeListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeClusterRevisionWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeCurrentModeWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeFeatureMapWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeGeneratedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeSupportedModesWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeAcceptedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeAttributeListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeClusterRevisionWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeCountdownTimeWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeCurrentPhaseWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeFeatureMapWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeGeneratedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeOperationalErrorWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeOperationalStateListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeOperationalStateWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributePhaseListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeAcceptedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeAttributeListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeClusterRevisionWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeCurrentModeWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeFeatureMapWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeGeneratedCommandListWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeSupportedModesWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! MTRBaseClusterApplicationLauncher::hideAppWithCompletion: not bound +!missing-selector! MTRBaseClusterApplicationLauncher::launchAppWithCompletion: not bound +!missing-selector! MTRBaseClusterApplicationLauncher::stopAppWithCompletion: not bound +!missing-selector! MTRBaseClusterDoorLock::lockDoorWithCompletion: not bound +!missing-selector! MTRBaseClusterDoorLock::unlockDoorWithCompletion: not bound +!missing-selector! MTRBaseClusterNetworkCommissioning::scanNetworksWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRBaseClusterOperationalState::pauseWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::pauseWithParams:completion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeAcceptedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeAttributeListWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeClusterRevisionWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeCountdownTimeWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeCurrentPhaseWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeFeatureMapWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeGeneratedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeOperationalErrorWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeOperationalStateListWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributeOperationalStateWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::readAttributePhaseListWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::resumeWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::resumeWithParams:completion: not bound +!missing-selector! MTRBaseClusterOperationalState::startWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::startWithParams:completion: not bound +!missing-selector! MTRBaseClusterOperationalState::stopWithCompletion: not bound +!missing-selector! MTRBaseClusterOperationalState::stopWithParams:completion: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeAcceptedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeAttributeListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeClusterRevisionWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeCountdownTimeWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeCurrentPhaseWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeFeatureMapWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeGeneratedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeOperationalErrorWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeOperationalStateListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeOperationalStateWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterOperationalState::subscribeAttributePhaseListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterPowerSource::readAttributeEndpointListWithCompletion: not bound +!missing-selector! MTRBaseClusterPowerSource::subscribeAttributeEndpointListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::changeToModeWithParams:completion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeAcceptedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeAttributeListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeClusterRevisionWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeCurrentModeWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeFeatureMapWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeGeneratedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeSupportedModesWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeAcceptedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeAttributeListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeClusterRevisionWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeCurrentModeWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeFeatureMapWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeGeneratedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeSupportedModesWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::pauseWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::pauseWithParams:completion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeAcceptedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeAttributeListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeClusterRevisionWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeCountdownTimeWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeCurrentPhaseWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeFeatureMapWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeGeneratedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeOperationalErrorWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeOperationalStateListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeOperationalStateWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::readAttributePhaseListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::resumeWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::resumeWithParams:completion: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeAcceptedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeAttributeListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeClusterRevisionWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeCountdownTimeWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeCurrentPhaseWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeFeatureMapWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeGeneratedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeOperationalErrorWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeOperationalStateListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeOperationalStateWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributePhaseListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::changeToModeWithParams:completion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeAcceptedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeAttributeListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeClusterRevisionWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeCurrentModeWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeFeatureMapWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeGeneratedCommandListWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::readAttributeSupportedModesWithCompletion: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeAcceptedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeAttributeListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeClusterRevisionWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeCurrentModeWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeFeatureMapWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeGeneratedCommandListWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeSupportedModesWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterUnitTesting::testNullableOptionalRequestWithCompletion: not bound +!missing-selector! MTRBaseClusterUnitTesting::testSimpleOptionalArgumentRequestWithCompletion: not bound +!missing-selector! MTRCluster::endpointID not bound +!missing-selector! MTRClusterApplicationLauncher::hideAppWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterApplicationLauncher::launchAppWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterApplicationLauncher::stopAppWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterDoorLock::lockDoorWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterDoorLock::unlockDoorWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterNetworkCommissioning::scanNetworksWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRClusterOperationalState::pauseWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::pauseWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::readAttributeAcceptedCommandListWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeAttributeListWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeClusterRevisionWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeCountdownTimeWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeCurrentPhaseWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeFeatureMapWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeGeneratedCommandListWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeOperationalErrorWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeOperationalStateListWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributeOperationalStateWithParams: not bound +!missing-selector! MTRClusterOperationalState::readAttributePhaseListWithParams: not bound +!missing-selector! MTRClusterOperationalState::resumeWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::resumeWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::startWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::startWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::stopWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterOperationalState::stopWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterPowerSource::readAttributeEndpointListWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::changeToModeWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterRVCCleanMode::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeAcceptedCommandListWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeAttributeListWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeClusterRevisionWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeCurrentModeWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeFeatureMapWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeGeneratedCommandListWithParams: not bound +!missing-selector! MTRClusterRVCCleanMode::readAttributeSupportedModesWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRClusterRVCOperationalState::pauseWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterRVCOperationalState::pauseWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeAcceptedCommandListWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeAttributeListWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeClusterRevisionWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeCountdownTimeWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeCurrentPhaseWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeFeatureMapWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeGeneratedCommandListWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeOperationalErrorWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeOperationalStateListWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributeOperationalStateWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::readAttributePhaseListWithParams: not bound +!missing-selector! MTRClusterRVCOperationalState::resumeWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterRVCOperationalState::resumeWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterRVCRunMode::changeToModeWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterRVCRunMode::initWithDevice:endpointID:queue: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeAcceptedCommandListWithParams: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeAttributeListWithParams: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeClusterRevisionWithParams: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeCurrentModeWithParams: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeFeatureMapWithParams: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeGeneratedCommandListWithParams: not bound +!missing-selector! MTRClusterRVCRunMode::readAttributeSupportedModesWithParams: not bound +!missing-selector! MTRClusterUnitTesting::testNullableOptionalRequestWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterUnitTesting::testSimpleOptionalArgumentRequestWithExpectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRDevice::deviceController not bound +!missing-selector! MTRDevice::invokeCommandWithEndpointID:clusterID:commandID:commandFields:expectedValues:expectedValueInterval:queue:completion: not bound +!missing-selector! MTRDevice::nodeID not bound +!missing-selector! MTRGenericCluster::device not bound +!missing-selector! MTROperationalStateClusterErrorStateStruct::errorStateDetails not bound +!missing-selector! MTROperationalStateClusterErrorStateStruct::errorStateID not bound +!missing-selector! MTROperationalStateClusterErrorStateStruct::errorStateLabel not bound +!missing-selector! MTROperationalStateClusterErrorStateStruct::setErrorStateDetails: not bound +!missing-selector! MTROperationalStateClusterErrorStateStruct::setErrorStateID: not bound +!missing-selector! MTROperationalStateClusterErrorStateStruct::setErrorStateLabel: not bound +!missing-selector! MTROperationalStateClusterOperationalCommandResponseParams::commandResponseState not bound +!missing-selector! MTROperationalStateClusterOperationalCommandResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTROperationalStateClusterOperationalCommandResponseParams::setCommandResponseState: not bound +!missing-selector! MTROperationalStateClusterOperationalErrorEvent::errorState not bound +!missing-selector! MTROperationalStateClusterOperationalErrorEvent::setErrorState: not bound +!missing-selector! MTROperationalStateClusterOperationalStateStruct::operationalStateID not bound +!missing-selector! MTROperationalStateClusterOperationalStateStruct::operationalStateLabel not bound +!missing-selector! MTROperationalStateClusterOperationalStateStruct::setOperationalStateID: not bound +!missing-selector! MTROperationalStateClusterOperationalStateStruct::setOperationalStateLabel: not bound +!missing-selector! MTROperationalStateClusterOperationCompletionEvent::completionErrorCode not bound +!missing-selector! MTROperationalStateClusterOperationCompletionEvent::pausedTime not bound +!missing-selector! MTROperationalStateClusterOperationCompletionEvent::setCompletionErrorCode: not bound +!missing-selector! MTROperationalStateClusterOperationCompletionEvent::setPausedTime: not bound +!missing-selector! MTROperationalStateClusterOperationCompletionEvent::setTotalOperationalTime: not bound +!missing-selector! MTROperationalStateClusterOperationCompletionEvent::totalOperationalTime not bound +!missing-selector! MTROperationalStateClusterPauseParams::serverSideProcessingTimeout not bound +!missing-selector! MTROperationalStateClusterPauseParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTROperationalStateClusterPauseParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTROperationalStateClusterPauseParams::timedInvokeTimeoutMs not bound +!missing-selector! MTROperationalStateClusterResumeParams::serverSideProcessingTimeout not bound +!missing-selector! MTROperationalStateClusterResumeParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTROperationalStateClusterResumeParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTROperationalStateClusterResumeParams::timedInvokeTimeoutMs not bound +!missing-selector! MTROperationalStateClusterStartParams::serverSideProcessingTimeout not bound +!missing-selector! MTROperationalStateClusterStartParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTROperationalStateClusterStartParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTROperationalStateClusterStartParams::timedInvokeTimeoutMs not bound +!missing-selector! MTROperationalStateClusterStopParams::serverSideProcessingTimeout not bound +!missing-selector! MTROperationalStateClusterStopParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTROperationalStateClusterStopParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTROperationalStateClusterStopParams::timedInvokeTimeoutMs not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::getNewMode not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::serverSideProcessingTimeout not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::setNewMode: not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::timedInvokeTimeoutMs not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeResponseParams::setStatus: not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeResponseParams::setStatusText: not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeResponseParams::status not bound +!missing-selector! MTRRVCCleanModeClusterChangeToModeResponseParams::statusText not bound +!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::label not bound +!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::mode not bound +!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::modeTags not bound +!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::setLabel: not bound +!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::setMode: not bound +!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::setModeTags: not bound +!missing-selector! MTRRVCCleanModeClusterModeTagStruct::mfgCode not bound +!missing-selector! MTRRVCCleanModeClusterModeTagStruct::setMfgCode: not bound +!missing-selector! MTRRVCCleanModeClusterModeTagStruct::setValue: not bound +!missing-selector! MTRRVCCleanModeClusterModeTagStruct::value not bound +!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::errorStateDetails not bound +!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::errorStateID not bound +!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::errorStateLabel not bound +!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::setErrorStateDetails: not bound +!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::setErrorStateID: not bound +!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::setErrorStateLabel: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalCommandResponseParams::commandResponseState not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalCommandResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalCommandResponseParams::setCommandResponseState: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalErrorEvent::errorState not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalErrorEvent::setErrorState: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalStateStruct::operationalStateID not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalStateStruct::operationalStateLabel not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalStateStruct::setOperationalStateID: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationalStateStruct::setOperationalStateLabel: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::completionErrorCode not bound +!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::pausedTime not bound +!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::setCompletionErrorCode: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::setPausedTime: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::setTotalOperationalTime: not bound +!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::totalOperationalTime not bound +!missing-selector! MTRRVCOperationalStateClusterPauseParams::serverSideProcessingTimeout not bound +!missing-selector! MTRRVCOperationalStateClusterPauseParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTRRVCOperationalStateClusterPauseParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTRRVCOperationalStateClusterPauseParams::timedInvokeTimeoutMs not bound +!missing-selector! MTRRVCOperationalStateClusterResumeParams::serverSideProcessingTimeout not bound +!missing-selector! MTRRVCOperationalStateClusterResumeParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTRRVCOperationalStateClusterResumeParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTRRVCOperationalStateClusterResumeParams::timedInvokeTimeoutMs not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeParams::getNewMode not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeParams::serverSideProcessingTimeout not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeParams::setNewMode: not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeParams::timedInvokeTimeoutMs not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeResponseParams::initWithResponseValue:error: not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeResponseParams::setStatus: not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeResponseParams::setStatusText: not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeResponseParams::status not bound +!missing-selector! MTRRVCRunModeClusterChangeToModeResponseParams::statusText not bound +!missing-selector! MTRRVCRunModeClusterModeOptionStruct::label not bound +!missing-selector! MTRRVCRunModeClusterModeOptionStruct::mode not bound +!missing-selector! MTRRVCRunModeClusterModeOptionStruct::modeTags not bound +!missing-selector! MTRRVCRunModeClusterModeOptionStruct::setLabel: not bound +!missing-selector! MTRRVCRunModeClusterModeOptionStruct::setMode: not bound +!missing-selector! MTRRVCRunModeClusterModeOptionStruct::setModeTags: not bound +!missing-selector! MTRRVCRunModeClusterModeTagStruct::mfgCode not bound +!missing-selector! MTRRVCRunModeClusterModeTagStruct::setMfgCode: not bound +!missing-selector! MTRRVCRunModeClusterModeTagStruct::setValue: not bound +!missing-selector! MTRRVCRunModeClusterModeTagStruct::value not bound +!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::coolSetpoint not bound +!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::heatSetpoint not bound +!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::setCoolSetpoint: not bound +!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::setHeatSetpoint: not bound +!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::setTransitionTime: not bound +!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::transitionTime not bound +!missing-selector! MTRWiFiNetworkDiagnosticsClusterAssociationFailureEvent::associationFailureCause not bound +!missing-selector! MTRWiFiNetworkDiagnosticsClusterAssociationFailureEvent::setAssociationFailureCause: not bound +!missing-type! MTRBaseClusterOperationalState not bound +!missing-type! MTRBaseClusterRVCCleanMode not bound +!missing-type! MTRBaseClusterRVCOperationalState not bound +!missing-type! MTRBaseClusterRVCRunMode not bound +!missing-type! MTRClusterOperationalState not bound +!missing-type! MTRClusterRVCCleanMode not bound +!missing-type! MTRClusterRVCOperationalState not bound +!missing-type! MTRClusterRVCRunMode not bound +!missing-type! MTRGenericBaseCluster not bound +!missing-type! MTRGenericCluster not bound +!missing-type! MTROperationalStateClusterErrorStateStruct not bound +!missing-type! MTROperationalStateClusterOperationalCommandResponseParams not bound +!missing-type! MTROperationalStateClusterOperationalErrorEvent not bound +!missing-type! MTROperationalStateClusterOperationalStateStruct not bound +!missing-type! MTROperationalStateClusterOperationCompletionEvent not bound +!missing-type! MTROperationalStateClusterPauseParams not bound +!missing-type! MTROperationalStateClusterResumeParams not bound +!missing-type! MTROperationalStateClusterStartParams not bound +!missing-type! MTROperationalStateClusterStopParams not bound +!missing-type! MTRRVCCleanModeClusterChangeToModeParams not bound +!missing-type! MTRRVCCleanModeClusterChangeToModeResponseParams not bound +!missing-type! MTRRVCCleanModeClusterModeOptionStruct not bound +!missing-type! MTRRVCCleanModeClusterModeTagStruct not bound +!missing-type! MTRRVCOperationalStateClusterErrorStateStruct not bound +!missing-type! MTRRVCOperationalStateClusterOperationalCommandResponseParams not bound +!missing-type! MTRRVCOperationalStateClusterOperationalErrorEvent not bound +!missing-type! MTRRVCOperationalStateClusterOperationalStateStruct not bound +!missing-type! MTRRVCOperationalStateClusterOperationCompletionEvent not bound +!missing-type! MTRRVCOperationalStateClusterPauseParams not bound +!missing-type! MTRRVCOperationalStateClusterResumeParams not bound +!missing-type! MTRRVCRunModeClusterChangeToModeParams not bound +!missing-type! MTRRVCRunModeClusterChangeToModeResponseParams not bound +!missing-type! MTRRVCRunModeClusterModeOptionStruct not bound +!missing-type! MTRRVCRunModeClusterModeTagStruct not bound +!missing-type! MTRThermostatClusterWeeklyScheduleTransitionStruct not bound +!missing-enum! MTRDiagnosticLogType not bound +!missing-enum! MTRFanControlAirflowDirection not bound +!missing-enum! MTRFanControlStepDirection not bound +!missing-enum! MTRStorageSecurityLevel not bound +!missing-enum! MTRStorageSharingType not bound +!missing-field! MTRDataVersionKey not bound +!missing-field! MTRPreviousDataKey not bound +!missing-pinvoke! MTRAttributeNameForID is not bound +!missing-pinvoke! MTRClusterNameForID is not bound +!missing-pinvoke! MTRDeviceControllerStorageClasses is not bound +!missing-pinvoke! MTRSetMessageReliabilityParameters is not bound +!missing-protocol! MTRDeviceControllerStorageDelegate not bound +!missing-selector! +MTRAccessGrant::accessGrantForAllNodesWithPrivilege: not bound +!missing-selector! +MTRAccessGrant::accessGrantForCASEAuthenticatedTag:privilege: not bound +!missing-selector! +MTRAccessGrant::accessGrantForGroupID:privilege: not bound +!missing-selector! +MTRAccessGrant::accessGrantForNodeID:privilege: not bound +!missing-selector! +MTRBaseClusterFanControl::readAttributeAirflowDirectionWithClusterStateCache:endpoint:queue:completion: not bound +!missing-selector! +MTRServerCluster::newDescriptorCluster not bound +!missing-selector! MTRAccessGrant::authenticationMode not bound +!missing-selector! MTRAccessGrant::grantedPrivilege not bound +!missing-selector! MTRAccessGrant::subjectID not bound +!missing-selector! MTRBaseClusterFanControl::readAttributeAirflowDirectionWithCompletion: not bound +!missing-selector! MTRBaseClusterFanControl::stepWithParams:completion: not bound +!missing-selector! MTRBaseClusterFanControl::subscribeAttributeAirflowDirectionWithParams:subscriptionEstablished:reportHandler: not bound +!missing-selector! MTRBaseClusterFanControl::writeAttributeAirflowDirectionWithValue:completion: not bound +!missing-selector! MTRBaseClusterFanControl::writeAttributeAirflowDirectionWithValue:params:completion: not bound +!missing-selector! MTRBaseDevice::downloadLogOfType:timeout:queue:completion: not bound +!missing-selector! MTRClusterFanControl::readAttributeAirflowDirectionWithParams: not bound +!missing-selector! MTRClusterFanControl::stepWithParams:expectedValues:expectedValueInterval:completion: not bound +!missing-selector! MTRClusterFanControl::writeAttributeAirflowDirectionWithValue:expectedValueInterval: not bound +!missing-selector! MTRClusterFanControl::writeAttributeAirflowDirectionWithValue:expectedValueInterval:params: not bound +!missing-selector! MTRDevice::deviceCachePrimed not bound +!missing-selector! MTRDevice::downloadLogOfType:timeout:queue:completion: not bound +!missing-selector! MTRDeviceController::addServerEndpoint: not bound +!missing-selector! MTRDeviceController::initWithParameters:error: not bound +!missing-selector! MTRDeviceController::removeServerEndpoint: not bound +!missing-selector! MTRDeviceController::removeServerEndpoint:queue:completion: not bound +!missing-selector! MTRDeviceController::uniqueIdentifier not bound +!missing-selector! MTRDeviceControllerExternalCertificateParameters::initWithStorageDelegate:storageDelegateQueue:uniqueIdentifier:ipk:vendorID:operationalKeypair:operationalCertificate:intermediateCertificate:rootCertificate: not bound +!missing-selector! MTRDeviceControllerParameters::certificationDeclarationCertificates not bound +!missing-selector! MTRDeviceControllerParameters::productAttestationAuthorityCertificates not bound +!missing-selector! MTRDeviceControllerParameters::setCertificationDeclarationCertificates: not bound +!missing-selector! MTRDeviceControllerParameters::setOperationalCertificateIssuer:queue: not bound +!missing-selector! MTRDeviceControllerParameters::setOTAProviderDelegate:queue: not bound +!missing-selector! MTRDeviceControllerParameters::setProductAttestationAuthorityCertificates: not bound +!missing-selector! MTRDeviceControllerParameters::setShouldAdvertiseOperational: not bound +!missing-selector! MTRDeviceControllerParameters::shouldAdvertiseOperational not bound +!missing-selector! MTRDeviceTypeRevision::deviceTypeID not bound +!missing-selector! MTRDeviceTypeRevision::deviceTypeRevision not bound +!missing-selector! MTRDeviceTypeRevision::initWithDeviceTypeID:revision: not bound +!missing-selector! MTRFanControlClusterStepParams::direction not bound +!missing-selector! MTRFanControlClusterStepParams::lowestOff not bound +!missing-selector! MTRFanControlClusterStepParams::serverSideProcessingTimeout not bound +!missing-selector! MTRFanControlClusterStepParams::setDirection: not bound +!missing-selector! MTRFanControlClusterStepParams::setLowestOff: not bound +!missing-selector! MTRFanControlClusterStepParams::setServerSideProcessingTimeout: not bound +!missing-selector! MTRFanControlClusterStepParams::setTimedInvokeTimeoutMs: not bound +!missing-selector! MTRFanControlClusterStepParams::setWrap: not bound +!missing-selector! MTRFanControlClusterStepParams::timedInvokeTimeoutMs not bound +!missing-selector! MTRFanControlClusterStepParams::wrap not bound +!missing-selector! MTRMetricData::duration not bound +!missing-selector! MTRMetricData::errorCode not bound +!missing-selector! MTRMetricData::value not bound +!missing-selector! MTRMetrics::allKeys not bound +!missing-selector! MTRMetrics::metricDataForKey: not bound +!missing-selector! MTRMetrics::uniqueIdentifier not bound +!missing-selector! MTRServerAttribute::attributeID not bound +!missing-selector! MTRServerAttribute::initReadonlyAttributeWithID:initialValue:requiredPrivilege: not bound +!missing-selector! MTRServerAttribute::isWritable not bound +!missing-selector! MTRServerAttribute::requiredReadPrivilege not bound +!missing-selector! MTRServerAttribute::setValue: not bound +!missing-selector! MTRServerAttribute::value not bound +!missing-selector! MTRServerCluster::accessGrants not bound +!missing-selector! MTRServerCluster::addAccessGrant: not bound +!missing-selector! MTRServerCluster::addAttribute: not bound +!missing-selector! MTRServerCluster::attributes not bound +!missing-selector! MTRServerCluster::clusterID not bound +!missing-selector! MTRServerCluster::clusterRevision not bound +!missing-selector! MTRServerCluster::initWithClusterID:revision: not bound +!missing-selector! MTRServerCluster::removeAccessGrant: not bound +!missing-selector! MTRServerEndpoint::accessGrants not bound +!missing-selector! MTRServerEndpoint::addAccessGrant: not bound +!missing-selector! MTRServerEndpoint::addServerCluster: not bound +!missing-selector! MTRServerEndpoint::deviceTypes not bound +!missing-selector! MTRServerEndpoint::endpointID not bound +!missing-selector! MTRServerEndpoint::initWithEndpointID:deviceTypes: not bound +!missing-selector! MTRServerEndpoint::removeAccessGrant: not bound +!missing-selector! MTRServerEndpoint::serverClusters not bound +!missing-type! MTRAccessGrant not bound +!missing-type! MTRDeviceControllerAbstractParameters not bound +!missing-type! MTRDeviceControllerExternalCertificateParameters not bound +!missing-type! MTRDeviceControllerParameters not bound +!missing-type! MTRDeviceTypeRevision not bound +!missing-type! MTRFanControlClusterStepParams not bound +!missing-type! MTRMetricData not bound +!missing-type! MTRMetrics not bound +!missing-type! MTRServerAttribute not bound +!missing-type! MTRServerCluster not bound +!missing-type! MTRServerEndpoint not bound diff --git a/tests/xtro-sharpie/watchOS-Matter.todo b/tests/xtro-sharpie/watchOS-Matter.todo deleted file mode 100644 index 60406a5077b9..000000000000 --- a/tests/xtro-sharpie/watchOS-Matter.todo +++ /dev/null @@ -1,683 +0,0 @@ -!missing-enum! MTRBasicInformationColor not bound -!missing-enum! MTRBasicInformationProductFinish not bound -!missing-enum! MTRBridgedDeviceBasicInformationColor not bound -!missing-enum! MTRBridgedDeviceBasicInformationProductFinish not bound -!missing-enum! MTRDiagnosticLogsIntent not bound -!missing-enum! MTRDiagnosticLogsStatus not bound -!missing-enum! MTRDiagnosticLogsTransferProtocol not bound -!missing-enum! MTREventPriority not bound -!missing-enum! MTREventTimeType not bound -!missing-enum! MTRGroupsFeature not bound -!missing-enum! MTRGroupsNameSupportBitmap not bound -!missing-enum! MTRNetworkCommissioningWiFiSecurityBitmap not bound -!missing-enum! MTROccupancySensingOccupancyBitmap not bound -!missing-enum! MTROccupancySensingOccupancySensorType not bound -!missing-enum! MTROccupancySensingOccupancySensorTypeBitmap not bound -!missing-enum! MTRPowerSourceBatApprovedChemistry not bound -!missing-enum! MTRPowerSourceBatCommonDesignation not bound -!missing-enum! MTRPressureMeasurementFeature not bound -!missing-enum! MTRPumpConfigurationAndControlControlMode not bound -!missing-enum! MTRPumpConfigurationAndControlFeature not bound -!missing-enum! MTRPumpConfigurationAndControlOperationMode not bound -!missing-enum! MTRPumpConfigurationAndControlPumpStatusBitmap not bound -!missing-enum! MTRScenesFeature not bound -!missing-enum! MTRWiFiNetworkDiagnosticsConnectionStatus not bound -!missing-enum! MTRWiFiNetworkDiagnosticsWiFiVersion not bound -!missing-field! MTREventNumberKey not bound -!missing-field! MTREventPriorityKey not bound -!missing-field! MTREventSystemUpTimeKey not bound -!missing-field! MTREventTimestampDateKey not bound -!missing-field! MTREventTimeTypeKey not bound -!missing-selector! +MTRAttributeRequestPath::requestPathWithEndpointID:clusterID:attributeID: not bound -!missing-selector! +MTRBaseClusterBasicInformation::readAttributeProductAppearanceWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterBridgedDeviceBasicInformation::readAttributeProductAppearanceWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRCertificates::createIntermediateCertificate:rootCertificate:intermediatePublicKey:issuerID:fabricID:validityPeriod:error: not bound -!missing-selector! +MTRCertificates::createOperationalCertificate:signingCertificate:operationalPublicKey:fabricID:nodeID:caseAuthenticatedTags:validityPeriod:error: not bound -!missing-selector! +MTRCertificates::createRootCertificate:issuerID:fabricID:validityPeriod:error: not bound -!missing-selector! +MTRDeviceController::xpcInterfaceForClientProtocol not bound -!missing-selector! +MTRDeviceController::xpcInterfaceForServerProtocol not bound -!missing-selector! +MTREventRequestPath::requestPathWithEndpointID:clusterID:eventID: not bound -!missing-selector! MTRAccessControlClusterAccessControlTargetStruct::cluster not bound -!missing-selector! MTRAccessControlClusterAccessControlTargetStruct::deviceType not bound -!missing-selector! MTRAccessControlClusterAccessControlTargetStruct::endpoint not bound -!missing-selector! MTRAccessControlClusterAccessControlTargetStruct::setCluster: not bound -!missing-selector! MTRAccessControlClusterAccessControlTargetStruct::setDeviceType: not bound -!missing-selector! MTRAccessControlClusterAccessControlTargetStruct::setEndpoint: not bound -!missing-selector! MTRAccountLoginClusterGetSetupPINResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRApplicationLauncherClusterLauncherResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRAttributeReport::initWithResponseValue:error: not bound -!missing-selector! MTRAttributeRequestPath::attribute not bound -!missing-selector! MTRAttributeRequestPath::cluster not bound -!missing-selector! MTRAttributeRequestPath::endpoint not bound -!missing-selector! MTRBaseClusterBasicInformation::readAttributeProductAppearanceWithCompletion: not bound -!missing-selector! MTRBaseClusterBasicInformation::subscribeAttributeProductAppearanceWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterBridgedDeviceBasicInformation::readAttributeProductAppearanceWithCompletion: not bound -!missing-selector! MTRBaseClusterBridgedDeviceBasicInformation::subscribeAttributeProductAppearanceWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterGroupKeyManagement::keySetReadAllIndicesWithCompletion: not bound -!missing-selector! MTRBaseDevice::openCommissioningWindowWithDiscriminator:duration:queue:completion: not bound -!missing-selector! MTRBaseDevice::readAttributePaths:eventPaths:params:queue:completion: not bound -!missing-selector! MTRBaseDevice::subscribeToAttributePaths:eventPaths:params:queue:reportHandler:subscriptionEstablished:resubscriptionScheduled: not bound -!missing-selector! MTRBasicInformationClusterProductAppearanceStruct::finish not bound -!missing-selector! MTRBasicInformationClusterProductAppearanceStruct::primaryColor not bound -!missing-selector! MTRBasicInformationClusterProductAppearanceStruct::setFinish: not bound -!missing-selector! MTRBasicInformationClusterProductAppearanceStruct::setPrimaryColor: not bound -!missing-selector! MTRBridgedDeviceBasicInformationClusterProductAppearanceStruct::finish not bound -!missing-selector! MTRBridgedDeviceBasicInformationClusterProductAppearanceStruct::primaryColor not bound -!missing-selector! MTRBridgedDeviceBasicInformationClusterProductAppearanceStruct::setFinish: not bound -!missing-selector! MTRBridgedDeviceBasicInformationClusterProductAppearanceStruct::setPrimaryColor: not bound -!missing-selector! MTRChannelClusterChangeChannelResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRClusterBasicInformation::readAttributeProductAppearanceWithParams: not bound -!missing-selector! MTRClusterBridgedDeviceBasicInformation::readAttributeProductAppearanceWithParams: not bound -!missing-selector! MTRClusterGroupKeyManagement::keySetReadAllIndicesWithExpectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRCommissioningParameters::countryCode not bound -!missing-selector! MTRCommissioningParameters::setCountryCode: not bound -!missing-selector! MTRCommissioningParameters::setSkipCommissioningComplete: not bound -!missing-selector! MTRCommissioningParameters::skipCommissioningComplete not bound -!missing-selector! MTRContentLauncherClusterLauncherResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRDevice::estimatedStartTime not bound -!missing-selector! MTRDevice::openCommissioningWindowWithDiscriminator:duration:queue:completion: not bound -!missing-selector! MTRDeviceAttestationDeviceInfo::basicInformationProductID not bound -!missing-selector! MTRDeviceAttestationDeviceInfo::basicInformationVendorID not bound -!missing-selector! MTRDeviceControllerFactory::knownFabrics not bound -!missing-selector! MTRDeviceControllerStartupParams::caseAuthenticatedTags not bound -!missing-selector! MTRDeviceControllerStartupParams::setCaseAuthenticatedTags: not bound -!missing-selector! MTRDiagnosticLogsClusterRetrieveLogsResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRDoorLockClusterGetCredentialStatusResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRDoorLockClusterGetHolidayScheduleResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRDoorLockClusterGetUserResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRDoorLockClusterGetWeekDayScheduleResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRDoorLockClusterGetYearDayScheduleResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRDoorLockClusterSetCredentialResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRElectricalMeasurementClusterGetMeasurementProfileResponseCommandParams::initWithResponseValue:error: not bound -!missing-selector! MTRElectricalMeasurementClusterGetProfileInfoResponseCommandParams::initWithResponseValue:error: not bound -!missing-selector! MTREventReport::eventTimeType not bound -!missing-selector! MTREventReport::initWithResponseValue:error: not bound -!missing-selector! MTREventReport::systemUpTime not bound -!missing-selector! MTREventReport::timestampDate not bound -!missing-selector! MTREventRequestPath::cluster not bound -!missing-selector! MTREventRequestPath::endpoint not bound -!missing-selector! MTREventRequestPath::event not bound -!missing-selector! MTRFabricInfo::fabricID not bound -!missing-selector! MTRFabricInfo::fabricIndex not bound -!missing-selector! MTRFabricInfo::intermediateCertificate not bound -!missing-selector! MTRFabricInfo::intermediateCertificateTLV not bound -!missing-selector! MTRFabricInfo::label not bound -!missing-selector! MTRFabricInfo::nodeID not bound -!missing-selector! MTRFabricInfo::operationalCertificate not bound -!missing-selector! MTRFabricInfo::operationalCertificateTLV not bound -!missing-selector! MTRFabricInfo::rootCertificate not bound -!missing-selector! MTRFabricInfo::rootCertificateTLV not bound -!missing-selector! MTRFabricInfo::rootPublicKey not bound -!missing-selector! MTRFabricInfo::vendorID not bound -!missing-selector! MTRGeneralCommissioningClusterArmFailSafeResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRGeneralCommissioningClusterCommissioningCompleteResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRGeneralCommissioningClusterSetRegulatoryConfigResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRGroupKeyManagementClusterKeySetReadAllIndicesResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRGroupKeyManagementClusterKeySetReadResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRGroupsClusterAddGroupResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRGroupsClusterGetGroupMembershipResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRGroupsClusterRemoveGroupResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRGroupsClusterViewGroupResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRKeypadInputClusterSendKeyResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRMediaPlaybackClusterPlaybackResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRNetworkCommissioningClusterConnectNetworkResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRNetworkCommissioningClusterNetworkConfigResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRNetworkCommissioningClusterNetworkInfoStruct::connected not bound -!missing-selector! MTRNetworkCommissioningClusterNetworkInfoStruct::networkID not bound -!missing-selector! MTRNetworkCommissioningClusterNetworkInfoStruct::setConnected: not bound -!missing-selector! MTRNetworkCommissioningClusterNetworkInfoStruct::setNetworkID: not bound -!missing-selector! MTRNetworkCommissioningClusterScanNetworksResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::channel not bound -!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::extendedAddress not bound -!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::extendedPanId not bound -!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::lqi not bound -!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::networkName not bound -!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::panId not bound -!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::rssi not bound -!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::setChannel: not bound -!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::setExtendedAddress: not bound -!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::setExtendedPanId: not bound -!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::setLqi: not bound -!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::setNetworkName: not bound -!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::setPanId: not bound -!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::setRssi: not bound -!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::setVersion: not bound -!missing-selector! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct::version not bound -!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::bssid not bound -!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::channel not bound -!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::rssi not bound -!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::security not bound -!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::setBssid: not bound -!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::setChannel: not bound -!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::setRssi: not bound -!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::setSecurity: not bound -!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::setSsid: not bound -!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::setWiFiBand: not bound -!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::ssid not bound -!missing-selector! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct::wiFiBand not bound -!missing-selector! MTROperationalCredentialsClusterAttestationResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTROperationalCredentialsClusterCertificateChainResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTROperationalCredentialsClusterCSRResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTROperationalCredentialsClusterNOCResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTROperationalCSRInfo::initWithCSRElementsTLV:attestationSignature: not bound -!missing-selector! MTROperationalCSRInfo::initWithCSRNonce:csrElementsTLV:attestationSignature: not bound -!missing-selector! MTROperationalCSRInfo::initWithCSRResponseParams: not bound -!missing-selector! MTROTASoftwareUpdateProviderClusterApplyUpdateResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTROTASoftwareUpdateProviderClusterQueryImageResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRProductIdentity::initWithVendorID:productID: not bound -!missing-selector! MTRProductIdentity::productID not bound -!missing-selector! MTRProductIdentity::vendorID not bound -!missing-selector! MTRScenesClusterAddSceneResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRScenesClusterCopySceneResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRScenesClusterEnhancedAddSceneResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRScenesClusterEnhancedViewSceneResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRScenesClusterGetSceneMembershipResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRScenesClusterRemoveAllScenesResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRScenesClusterRemoveSceneResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRScenesClusterStoreSceneResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRScenesClusterViewSceneResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRTargetNavigatorClusterNavigateTargetResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRThermostatClusterGetWeeklyScheduleResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::age not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::averageRssi not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::extAddress not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::frameErrorRate not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::fullNetworkData not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::fullThreadDevice not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::isChild not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::lastRssi not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::linkFrameCounter not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::lqi not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::messageErrorRate not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::mleFrameCounter not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::rloc16 not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::rxOnWhenIdle not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setAge: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setAverageRssi: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setExtAddress: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setFrameErrorRate: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setFullNetworkData: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setFullThreadDevice: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setIsChild: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setLastRssi: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setLinkFrameCounter: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setLqi: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setMessageErrorRate: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setMleFrameCounter: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setRloc16: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct::setRxOnWhenIdle: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::age not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::allocated not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::extAddress not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::linkEstablished not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::lqiIn not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::lqiOut not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::nextHop not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::pathCost not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::rloc16 not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::routerId not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::setAge: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::setAllocated: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::setExtAddress: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::setLinkEstablished: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::setLqiIn: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::setLqiOut: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::setNextHop: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::setPathCost: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::setRloc16: not bound -!missing-selector! MTRThreadNetworkDiagnosticsClusterRouteTableStruct::setRouterId: not bound -!missing-selector! MTRTimeSynchronizationClusterDSTOffsetStruct::offset not bound -!missing-selector! MTRTimeSynchronizationClusterDSTOffsetStruct::setOffset: not bound -!missing-selector! MTRTimeSynchronizationClusterDSTOffsetStruct::setValidStarting: not bound -!missing-selector! MTRTimeSynchronizationClusterDSTOffsetStruct::setValidUntil: not bound -!missing-selector! MTRTimeSynchronizationClusterDSTOffsetStruct::validStarting not bound -!missing-selector! MTRTimeSynchronizationClusterDSTOffsetStruct::validUntil not bound -!missing-selector! MTRTimeSynchronizationClusterTimeZoneStruct::name not bound -!missing-selector! MTRTimeSynchronizationClusterTimeZoneStruct::offset not bound -!missing-selector! MTRTimeSynchronizationClusterTimeZoneStruct::setName: not bound -!missing-selector! MTRTimeSynchronizationClusterTimeZoneStruct::setOffset: not bound -!missing-selector! MTRTimeSynchronizationClusterTimeZoneStruct::setValidAt: not bound -!missing-selector! MTRTimeSynchronizationClusterTimeZoneStruct::validAt not bound -!missing-selector! MTRUnitTestingClusterBooleanResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRUnitTestingClusterSimpleStructResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRUnitTestingClusterTestAddArgumentsResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRUnitTestingClusterTestComplexNullableOptionalResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRUnitTestingClusterTestEmitTestEventResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRUnitTestingClusterTestEmitTestFabricScopedEventResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRUnitTestingClusterTestEnumsResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRUnitTestingClusterTestListInt8UReverseResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRUnitTestingClusterTestNullableOptionalResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRUnitTestingClusterTestSimpleArgumentResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRUnitTestingClusterTestSpecificResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRUnitTestingClusterTestStructArrayArgumentResponseParams::initWithResponseValue:error: not bound -!missing-type! MTRAccessControlClusterAccessControlTargetStruct not bound -!missing-type! MTRAttributeRequestPath not bound -!missing-type! MTRBasicInformationClusterProductAppearanceStruct not bound -!missing-type! MTRBridgedDeviceBasicInformationClusterProductAppearanceStruct not bound -!missing-type! MTREventRequestPath not bound -!missing-type! MTRFabricInfo not bound -!missing-type! MTRNetworkCommissioningClusterNetworkInfoStruct not bound -!missing-type! MTRNetworkCommissioningClusterThreadInterfaceScanResultStruct not bound -!missing-type! MTRNetworkCommissioningClusterWiFiInterfaceScanResultStruct not bound -!missing-type! MTRProductIdentity not bound -!missing-type! MTRThreadNetworkDiagnosticsClusterNeighborTableStruct not bound -!missing-type! MTRThreadNetworkDiagnosticsClusterRouteTableStruct not bound -!missing-type! MTRTimeSynchronizationClusterDSTOffsetStruct not bound -!missing-type! MTRTimeSynchronizationClusterTimeZoneStruct not bound -!missing-enum! MTRFanControlFanMode not bound -!missing-enum! MTRFanControlFanModeSequence not bound -!missing-enum! MTRFanControlRockBitmap not bound -!missing-enum! MTRFanControlWindBitmap not bound -!missing-protocol! MTRCommissionableBrowserDelegate not bound -!missing-selector! MTRCommissionableBrowserResult::commissioningMode not bound -!missing-selector! MTRCommissionableBrowserResult::discriminator not bound -!missing-selector! MTRCommissionableBrowserResult::instanceName not bound -!missing-selector! MTRCommissionableBrowserResult::productID not bound -!missing-selector! MTRCommissionableBrowserResult::vendorID not bound -!missing-selector! MTRDeviceController::setupCommissioningSessionWithDiscoveredDevice:payload:newNodeID:error: not bound -!missing-selector! MTRDeviceController::startBrowseForCommissionables:queue: not bound -!missing-selector! MTRDeviceController::stopBrowseForCommissionables not bound -!missing-selector! MTRModeSelectClusterSemanticTagStruct::mfgCode not bound -!missing-selector! MTRModeSelectClusterSemanticTagStruct::setMfgCode: not bound -!missing-selector! MTRModeSelectClusterSemanticTagStruct::setValue: not bound -!missing-selector! MTRModeSelectClusterSemanticTagStruct::value not bound -!missing-type! MTRCommissionableBrowserResult not bound -!missing-enum! MTROnOffControlBitmap not bound -!missing-enum! MTROTASoftwareUpdateProviderApplyUpdateAction not bound -!missing-enum! MTROTASoftwareUpdateProviderDownloadProtocol not bound -!missing-enum! MTROTASoftwareUpdateProviderStatus not bound -!missing-enum! MTROTASoftwareUpdateRequestorAnnouncementReason not bound -!missing-enum! MTROTASoftwareUpdateRequestorChangeReason not bound -!missing-enum! MTROTASoftwareUpdateRequestorUpdateState not bound -!missing-enum! MTRTimeFormatLocalizationFeature not bound -!missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::granularity not bound -!missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::serverSideProcessingTimeout not bound -!missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::setGranularity: not bound -!missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::setTimeSource: not bound -!missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::setUtcTime: not bound -!missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::timeSource not bound -!missing-selector! MTRTimeSynchronizationClusterSetUTCTimeParams::utcTime not bound -!missing-type! MTRTimeSynchronizationClusterSetUTCTimeParams not bound -!missing-enum! MTRAdministratorCommissioningFeature not bound -!missing-enum! MTRContentLauncherStatus not bound -!missing-enum! MTRContentLauncherSupportedProtocolsBitmap not bound -!missing-enum! MTRKeypadInputCECKeyCode not bound -!missing-enum! MTRLevelControlOptionsBitmap not bound -!missing-enum! MTROperationalState not bound -!missing-enum! MTROperationalStateErrorState not bound -!missing-enum! MTRRVCCleanModeFeature not bound -!missing-enum! MTRRVCCleanModeModeTag not bound -!missing-enum! MTRRVCCleanModeStatusCode not bound -!missing-enum! MTRRVCOperationalStateErrorState not bound -!missing-enum! MTRRVCOperationalStateOperationalState not bound -!missing-enum! MTRRVCRunModeFeature not bound -!missing-enum! MTRRVCRunModeModeTag not bound -!missing-enum! MTRRVCRunModeStatusCode not bound -!missing-enum! MTRScenesCopyModeBitmap not bound -!missing-enum! MTRThermostatControlSequenceOfOperation not bound -!missing-enum! MTRThermostatScheduleDayOfWeekBitmap not bound -!missing-enum! MTRThermostatScheduleModeBitmap not bound -!missing-enum! MTRThermostatSetpointRaiseLowerMode not bound -!missing-enum! MTRThermostatUserInterfaceConfigurationKeypadLockout not bound -!missing-enum! MTRThermostatUserInterfaceConfigurationScheduleProgrammingVisibility not bound -!missing-enum! MTRThermostatUserInterfaceConfigurationTemperatureDisplayMode not bound -!missing-field! MTREventIsHistoricalKey not bound -!missing-selector! +MTRBaseClusterOperationalState::readAttributeAcceptedCommandListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterOperationalState::readAttributeAttributeListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterOperationalState::readAttributeClusterRevisionWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterOperationalState::readAttributeCountdownTimeWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterOperationalState::readAttributeCurrentPhaseWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterOperationalState::readAttributeFeatureMapWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterOperationalState::readAttributeGeneratedCommandListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterOperationalState::readAttributeOperationalErrorWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterOperationalState::readAttributeOperationalStateListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterOperationalState::readAttributeOperationalStateWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterOperationalState::readAttributePhaseListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterPowerSource::readAttributeEndpointListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeAcceptedCommandListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeAttributeListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeClusterRevisionWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeCurrentModeWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeFeatureMapWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeGeneratedCommandListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCCleanMode::readAttributeSupportedModesWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeAcceptedCommandListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeAttributeListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeClusterRevisionWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeCountdownTimeWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeCurrentPhaseWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeFeatureMapWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeGeneratedCommandListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeOperationalErrorWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeOperationalStateListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributeOperationalStateWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCOperationalState::readAttributePhaseListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeAcceptedCommandListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeAttributeListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeClusterRevisionWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeCurrentModeWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeFeatureMapWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeGeneratedCommandListWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! +MTRBaseClusterRVCRunMode::readAttributeSupportedModesWithClusterStateCache:endpoint:queue:completion: not bound -!missing-selector! MTRBaseClusterApplicationLauncher::hideAppWithCompletion: not bound -!missing-selector! MTRBaseClusterApplicationLauncher::launchAppWithCompletion: not bound -!missing-selector! MTRBaseClusterApplicationLauncher::stopAppWithCompletion: not bound -!missing-selector! MTRBaseClusterDoorLock::lockDoorWithCompletion: not bound -!missing-selector! MTRBaseClusterDoorLock::unlockDoorWithCompletion: not bound -!missing-selector! MTRBaseClusterNetworkCommissioning::scanNetworksWithCompletion: not bound -!missing-selector! MTRBaseClusterOperationalState::initWithDevice:endpointID:queue: not bound -!missing-selector! MTRBaseClusterOperationalState::pauseWithCompletion: not bound -!missing-selector! MTRBaseClusterOperationalState::pauseWithParams:completion: not bound -!missing-selector! MTRBaseClusterOperationalState::readAttributeAcceptedCommandListWithCompletion: not bound -!missing-selector! MTRBaseClusterOperationalState::readAttributeAttributeListWithCompletion: not bound -!missing-selector! MTRBaseClusterOperationalState::readAttributeClusterRevisionWithCompletion: not bound -!missing-selector! MTRBaseClusterOperationalState::readAttributeCountdownTimeWithCompletion: not bound -!missing-selector! MTRBaseClusterOperationalState::readAttributeCurrentPhaseWithCompletion: not bound -!missing-selector! MTRBaseClusterOperationalState::readAttributeFeatureMapWithCompletion: not bound -!missing-selector! MTRBaseClusterOperationalState::readAttributeGeneratedCommandListWithCompletion: not bound -!missing-selector! MTRBaseClusterOperationalState::readAttributeOperationalErrorWithCompletion: not bound -!missing-selector! MTRBaseClusterOperationalState::readAttributeOperationalStateListWithCompletion: not bound -!missing-selector! MTRBaseClusterOperationalState::readAttributeOperationalStateWithCompletion: not bound -!missing-selector! MTRBaseClusterOperationalState::readAttributePhaseListWithCompletion: not bound -!missing-selector! MTRBaseClusterOperationalState::resumeWithCompletion: not bound -!missing-selector! MTRBaseClusterOperationalState::resumeWithParams:completion: not bound -!missing-selector! MTRBaseClusterOperationalState::startWithCompletion: not bound -!missing-selector! MTRBaseClusterOperationalState::startWithParams:completion: not bound -!missing-selector! MTRBaseClusterOperationalState::stopWithCompletion: not bound -!missing-selector! MTRBaseClusterOperationalState::stopWithParams:completion: not bound -!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeAcceptedCommandListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeAttributeListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeClusterRevisionWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeCountdownTimeWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeCurrentPhaseWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeFeatureMapWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeGeneratedCommandListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeOperationalErrorWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeOperationalStateListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterOperationalState::subscribeAttributeOperationalStateWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterOperationalState::subscribeAttributePhaseListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterPowerSource::readAttributeEndpointListWithCompletion: not bound -!missing-selector! MTRBaseClusterPowerSource::subscribeAttributeEndpointListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCCleanMode::changeToModeWithParams:completion: not bound -!missing-selector! MTRBaseClusterRVCCleanMode::initWithDevice:endpointID:queue: not bound -!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeAcceptedCommandListWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeAttributeListWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeClusterRevisionWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeCurrentModeWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeFeatureMapWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeGeneratedCommandListWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCCleanMode::readAttributeSupportedModesWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeAcceptedCommandListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeAttributeListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeClusterRevisionWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeCurrentModeWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeFeatureMapWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeGeneratedCommandListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCCleanMode::subscribeAttributeSupportedModesWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::initWithDevice:endpointID:queue: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::pauseWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::pauseWithParams:completion: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeAcceptedCommandListWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeAttributeListWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeClusterRevisionWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeCountdownTimeWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeCurrentPhaseWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeFeatureMapWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeGeneratedCommandListWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeOperationalErrorWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeOperationalStateListWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::readAttributeOperationalStateWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::readAttributePhaseListWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::resumeWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::resumeWithParams:completion: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeAcceptedCommandListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeAttributeListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeClusterRevisionWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeCountdownTimeWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeCurrentPhaseWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeFeatureMapWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeGeneratedCommandListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeOperationalErrorWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeOperationalStateListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributeOperationalStateWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCOperationalState::subscribeAttributePhaseListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCRunMode::changeToModeWithParams:completion: not bound -!missing-selector! MTRBaseClusterRVCRunMode::initWithDevice:endpointID:queue: not bound -!missing-selector! MTRBaseClusterRVCRunMode::readAttributeAcceptedCommandListWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCRunMode::readAttributeAttributeListWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCRunMode::readAttributeClusterRevisionWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCRunMode::readAttributeCurrentModeWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCRunMode::readAttributeFeatureMapWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCRunMode::readAttributeGeneratedCommandListWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCRunMode::readAttributeSupportedModesWithCompletion: not bound -!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeAcceptedCommandListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeAttributeListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeClusterRevisionWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeCurrentModeWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeFeatureMapWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeGeneratedCommandListWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterRVCRunMode::subscribeAttributeSupportedModesWithParams:subscriptionEstablished:reportHandler: not bound -!missing-selector! MTRBaseClusterUnitTesting::testNullableOptionalRequestWithCompletion: not bound -!missing-selector! MTRBaseClusterUnitTesting::testSimpleOptionalArgumentRequestWithCompletion: not bound -!missing-selector! MTRCluster::endpointID not bound -!missing-selector! MTRClusterApplicationLauncher::hideAppWithExpectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterApplicationLauncher::launchAppWithExpectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterApplicationLauncher::stopAppWithExpectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterDoorLock::lockDoorWithExpectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterDoorLock::unlockDoorWithExpectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterNetworkCommissioning::scanNetworksWithExpectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterOperationalState::initWithDevice:endpointID:queue: not bound -!missing-selector! MTRClusterOperationalState::pauseWithExpectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterOperationalState::pauseWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterOperationalState::readAttributeAcceptedCommandListWithParams: not bound -!missing-selector! MTRClusterOperationalState::readAttributeAttributeListWithParams: not bound -!missing-selector! MTRClusterOperationalState::readAttributeClusterRevisionWithParams: not bound -!missing-selector! MTRClusterOperationalState::readAttributeCountdownTimeWithParams: not bound -!missing-selector! MTRClusterOperationalState::readAttributeCurrentPhaseWithParams: not bound -!missing-selector! MTRClusterOperationalState::readAttributeFeatureMapWithParams: not bound -!missing-selector! MTRClusterOperationalState::readAttributeGeneratedCommandListWithParams: not bound -!missing-selector! MTRClusterOperationalState::readAttributeOperationalErrorWithParams: not bound -!missing-selector! MTRClusterOperationalState::readAttributeOperationalStateListWithParams: not bound -!missing-selector! MTRClusterOperationalState::readAttributeOperationalStateWithParams: not bound -!missing-selector! MTRClusterOperationalState::readAttributePhaseListWithParams: not bound -!missing-selector! MTRClusterOperationalState::resumeWithExpectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterOperationalState::resumeWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterOperationalState::startWithExpectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterOperationalState::startWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterOperationalState::stopWithExpectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterOperationalState::stopWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterPowerSource::readAttributeEndpointListWithParams: not bound -!missing-selector! MTRClusterRVCCleanMode::changeToModeWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterRVCCleanMode::initWithDevice:endpointID:queue: not bound -!missing-selector! MTRClusterRVCCleanMode::readAttributeAcceptedCommandListWithParams: not bound -!missing-selector! MTRClusterRVCCleanMode::readAttributeAttributeListWithParams: not bound -!missing-selector! MTRClusterRVCCleanMode::readAttributeClusterRevisionWithParams: not bound -!missing-selector! MTRClusterRVCCleanMode::readAttributeCurrentModeWithParams: not bound -!missing-selector! MTRClusterRVCCleanMode::readAttributeFeatureMapWithParams: not bound -!missing-selector! MTRClusterRVCCleanMode::readAttributeGeneratedCommandListWithParams: not bound -!missing-selector! MTRClusterRVCCleanMode::readAttributeSupportedModesWithParams: not bound -!missing-selector! MTRClusterRVCOperationalState::initWithDevice:endpointID:queue: not bound -!missing-selector! MTRClusterRVCOperationalState::pauseWithExpectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterRVCOperationalState::pauseWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterRVCOperationalState::readAttributeAcceptedCommandListWithParams: not bound -!missing-selector! MTRClusterRVCOperationalState::readAttributeAttributeListWithParams: not bound -!missing-selector! MTRClusterRVCOperationalState::readAttributeClusterRevisionWithParams: not bound -!missing-selector! MTRClusterRVCOperationalState::readAttributeCountdownTimeWithParams: not bound -!missing-selector! MTRClusterRVCOperationalState::readAttributeCurrentPhaseWithParams: not bound -!missing-selector! MTRClusterRVCOperationalState::readAttributeFeatureMapWithParams: not bound -!missing-selector! MTRClusterRVCOperationalState::readAttributeGeneratedCommandListWithParams: not bound -!missing-selector! MTRClusterRVCOperationalState::readAttributeOperationalErrorWithParams: not bound -!missing-selector! MTRClusterRVCOperationalState::readAttributeOperationalStateListWithParams: not bound -!missing-selector! MTRClusterRVCOperationalState::readAttributeOperationalStateWithParams: not bound -!missing-selector! MTRClusterRVCOperationalState::readAttributePhaseListWithParams: not bound -!missing-selector! MTRClusterRVCOperationalState::resumeWithExpectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterRVCOperationalState::resumeWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterRVCRunMode::changeToModeWithParams:expectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterRVCRunMode::initWithDevice:endpointID:queue: not bound -!missing-selector! MTRClusterRVCRunMode::readAttributeAcceptedCommandListWithParams: not bound -!missing-selector! MTRClusterRVCRunMode::readAttributeAttributeListWithParams: not bound -!missing-selector! MTRClusterRVCRunMode::readAttributeClusterRevisionWithParams: not bound -!missing-selector! MTRClusterRVCRunMode::readAttributeCurrentModeWithParams: not bound -!missing-selector! MTRClusterRVCRunMode::readAttributeFeatureMapWithParams: not bound -!missing-selector! MTRClusterRVCRunMode::readAttributeGeneratedCommandListWithParams: not bound -!missing-selector! MTRClusterRVCRunMode::readAttributeSupportedModesWithParams: not bound -!missing-selector! MTRClusterUnitTesting::testNullableOptionalRequestWithExpectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRClusterUnitTesting::testSimpleOptionalArgumentRequestWithExpectedValues:expectedValueInterval:completion: not bound -!missing-selector! MTRDevice::deviceController not bound -!missing-selector! MTRDevice::invokeCommandWithEndpointID:clusterID:commandID:commandFields:expectedValues:expectedValueInterval:queue:completion: not bound -!missing-selector! MTRDevice::nodeID not bound -!missing-selector! MTRGenericCluster::device not bound -!missing-selector! MTROperationalStateClusterErrorStateStruct::errorStateDetails not bound -!missing-selector! MTROperationalStateClusterErrorStateStruct::errorStateID not bound -!missing-selector! MTROperationalStateClusterErrorStateStruct::errorStateLabel not bound -!missing-selector! MTROperationalStateClusterErrorStateStruct::setErrorStateDetails: not bound -!missing-selector! MTROperationalStateClusterErrorStateStruct::setErrorStateID: not bound -!missing-selector! MTROperationalStateClusterErrorStateStruct::setErrorStateLabel: not bound -!missing-selector! MTROperationalStateClusterOperationalCommandResponseParams::commandResponseState not bound -!missing-selector! MTROperationalStateClusterOperationalCommandResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTROperationalStateClusterOperationalCommandResponseParams::setCommandResponseState: not bound -!missing-selector! MTROperationalStateClusterOperationalErrorEvent::errorState not bound -!missing-selector! MTROperationalStateClusterOperationalErrorEvent::setErrorState: not bound -!missing-selector! MTROperationalStateClusterOperationalStateStruct::operationalStateID not bound -!missing-selector! MTROperationalStateClusterOperationalStateStruct::operationalStateLabel not bound -!missing-selector! MTROperationalStateClusterOperationalStateStruct::setOperationalStateID: not bound -!missing-selector! MTROperationalStateClusterOperationalStateStruct::setOperationalStateLabel: not bound -!missing-selector! MTROperationalStateClusterOperationCompletionEvent::completionErrorCode not bound -!missing-selector! MTROperationalStateClusterOperationCompletionEvent::pausedTime not bound -!missing-selector! MTROperationalStateClusterOperationCompletionEvent::setCompletionErrorCode: not bound -!missing-selector! MTROperationalStateClusterOperationCompletionEvent::setPausedTime: not bound -!missing-selector! MTROperationalStateClusterOperationCompletionEvent::setTotalOperationalTime: not bound -!missing-selector! MTROperationalStateClusterOperationCompletionEvent::totalOperationalTime not bound -!missing-selector! MTROperationalStateClusterPauseParams::serverSideProcessingTimeout not bound -!missing-selector! MTROperationalStateClusterPauseParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTROperationalStateClusterPauseParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTROperationalStateClusterPauseParams::timedInvokeTimeoutMs not bound -!missing-selector! MTROperationalStateClusterResumeParams::serverSideProcessingTimeout not bound -!missing-selector! MTROperationalStateClusterResumeParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTROperationalStateClusterResumeParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTROperationalStateClusterResumeParams::timedInvokeTimeoutMs not bound -!missing-selector! MTROperationalStateClusterStartParams::serverSideProcessingTimeout not bound -!missing-selector! MTROperationalStateClusterStartParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTROperationalStateClusterStartParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTROperationalStateClusterStartParams::timedInvokeTimeoutMs not bound -!missing-selector! MTROperationalStateClusterStopParams::serverSideProcessingTimeout not bound -!missing-selector! MTROperationalStateClusterStopParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTROperationalStateClusterStopParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTROperationalStateClusterStopParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::getNewMode not bound -!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::serverSideProcessingTimeout not bound -!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::setNewMode: not bound -!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRRVCCleanModeClusterChangeToModeParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRRVCCleanModeClusterChangeToModeResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRRVCCleanModeClusterChangeToModeResponseParams::setStatus: not bound -!missing-selector! MTRRVCCleanModeClusterChangeToModeResponseParams::setStatusText: not bound -!missing-selector! MTRRVCCleanModeClusterChangeToModeResponseParams::status not bound -!missing-selector! MTRRVCCleanModeClusterChangeToModeResponseParams::statusText not bound -!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::label not bound -!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::mode not bound -!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::modeTags not bound -!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::setLabel: not bound -!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::setMode: not bound -!missing-selector! MTRRVCCleanModeClusterModeOptionStruct::setModeTags: not bound -!missing-selector! MTRRVCCleanModeClusterModeTagStruct::mfgCode not bound -!missing-selector! MTRRVCCleanModeClusterModeTagStruct::setMfgCode: not bound -!missing-selector! MTRRVCCleanModeClusterModeTagStruct::setValue: not bound -!missing-selector! MTRRVCCleanModeClusterModeTagStruct::value not bound -!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::errorStateDetails not bound -!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::errorStateID not bound -!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::errorStateLabel not bound -!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::setErrorStateDetails: not bound -!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::setErrorStateID: not bound -!missing-selector! MTRRVCOperationalStateClusterErrorStateStruct::setErrorStateLabel: not bound -!missing-selector! MTRRVCOperationalStateClusterOperationalCommandResponseParams::commandResponseState not bound -!missing-selector! MTRRVCOperationalStateClusterOperationalCommandResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRRVCOperationalStateClusterOperationalCommandResponseParams::setCommandResponseState: not bound -!missing-selector! MTRRVCOperationalStateClusterOperationalErrorEvent::errorState not bound -!missing-selector! MTRRVCOperationalStateClusterOperationalErrorEvent::setErrorState: not bound -!missing-selector! MTRRVCOperationalStateClusterOperationalStateStruct::operationalStateID not bound -!missing-selector! MTRRVCOperationalStateClusterOperationalStateStruct::operationalStateLabel not bound -!missing-selector! MTRRVCOperationalStateClusterOperationalStateStruct::setOperationalStateID: not bound -!missing-selector! MTRRVCOperationalStateClusterOperationalStateStruct::setOperationalStateLabel: not bound -!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::completionErrorCode not bound -!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::pausedTime not bound -!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::setCompletionErrorCode: not bound -!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::setPausedTime: not bound -!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::setTotalOperationalTime: not bound -!missing-selector! MTRRVCOperationalStateClusterOperationCompletionEvent::totalOperationalTime not bound -!missing-selector! MTRRVCOperationalStateClusterPauseParams::serverSideProcessingTimeout not bound -!missing-selector! MTRRVCOperationalStateClusterPauseParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRRVCOperationalStateClusterPauseParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRRVCOperationalStateClusterPauseParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRRVCOperationalStateClusterResumeParams::serverSideProcessingTimeout not bound -!missing-selector! MTRRVCOperationalStateClusterResumeParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRRVCOperationalStateClusterResumeParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRRVCOperationalStateClusterResumeParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRRVCRunModeClusterChangeToModeParams::getNewMode not bound -!missing-selector! MTRRVCRunModeClusterChangeToModeParams::serverSideProcessingTimeout not bound -!missing-selector! MTRRVCRunModeClusterChangeToModeParams::setNewMode: not bound -!missing-selector! MTRRVCRunModeClusterChangeToModeParams::setServerSideProcessingTimeout: not bound -!missing-selector! MTRRVCRunModeClusterChangeToModeParams::setTimedInvokeTimeoutMs: not bound -!missing-selector! MTRRVCRunModeClusterChangeToModeParams::timedInvokeTimeoutMs not bound -!missing-selector! MTRRVCRunModeClusterChangeToModeResponseParams::initWithResponseValue:error: not bound -!missing-selector! MTRRVCRunModeClusterChangeToModeResponseParams::setStatus: not bound -!missing-selector! MTRRVCRunModeClusterChangeToModeResponseParams::setStatusText: not bound -!missing-selector! MTRRVCRunModeClusterChangeToModeResponseParams::status not bound -!missing-selector! MTRRVCRunModeClusterChangeToModeResponseParams::statusText not bound -!missing-selector! MTRRVCRunModeClusterModeOptionStruct::label not bound -!missing-selector! MTRRVCRunModeClusterModeOptionStruct::mode not bound -!missing-selector! MTRRVCRunModeClusterModeOptionStruct::modeTags not bound -!missing-selector! MTRRVCRunModeClusterModeOptionStruct::setLabel: not bound -!missing-selector! MTRRVCRunModeClusterModeOptionStruct::setMode: not bound -!missing-selector! MTRRVCRunModeClusterModeOptionStruct::setModeTags: not bound -!missing-selector! MTRRVCRunModeClusterModeTagStruct::mfgCode not bound -!missing-selector! MTRRVCRunModeClusterModeTagStruct::setMfgCode: not bound -!missing-selector! MTRRVCRunModeClusterModeTagStruct::setValue: not bound -!missing-selector! MTRRVCRunModeClusterModeTagStruct::value not bound -!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::coolSetpoint not bound -!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::heatSetpoint not bound -!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::setCoolSetpoint: not bound -!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::setHeatSetpoint: not bound -!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::setTransitionTime: not bound -!missing-selector! MTRThermostatClusterWeeklyScheduleTransitionStruct::transitionTime not bound -!missing-selector! MTRWiFiNetworkDiagnosticsClusterAssociationFailureEvent::associationFailureCause not bound -!missing-selector! MTRWiFiNetworkDiagnosticsClusterAssociationFailureEvent::setAssociationFailureCause: not bound -!missing-type! MTRBaseClusterOperationalState not bound -!missing-type! MTRBaseClusterRVCCleanMode not bound -!missing-type! MTRBaseClusterRVCOperationalState not bound -!missing-type! MTRBaseClusterRVCRunMode not bound -!missing-type! MTRClusterOperationalState not bound -!missing-type! MTRClusterRVCCleanMode not bound -!missing-type! MTRClusterRVCOperationalState not bound -!missing-type! MTRClusterRVCRunMode not bound -!missing-type! MTRGenericBaseCluster not bound -!missing-type! MTRGenericCluster not bound -!missing-type! MTROperationalStateClusterErrorStateStruct not bound -!missing-type! MTROperationalStateClusterOperationalCommandResponseParams not bound -!missing-type! MTROperationalStateClusterOperationalErrorEvent not bound -!missing-type! MTROperationalStateClusterOperationalStateStruct not bound -!missing-type! MTROperationalStateClusterOperationCompletionEvent not bound -!missing-type! MTROperationalStateClusterPauseParams not bound -!missing-type! MTROperationalStateClusterResumeParams not bound -!missing-type! MTROperationalStateClusterStartParams not bound -!missing-type! MTROperationalStateClusterStopParams not bound -!missing-type! MTRRVCCleanModeClusterChangeToModeParams not bound -!missing-type! MTRRVCCleanModeClusterChangeToModeResponseParams not bound -!missing-type! MTRRVCCleanModeClusterModeOptionStruct not bound -!missing-type! MTRRVCCleanModeClusterModeTagStruct not bound -!missing-type! MTRRVCOperationalStateClusterErrorStateStruct not bound -!missing-type! MTRRVCOperationalStateClusterOperationalCommandResponseParams not bound -!missing-type! MTRRVCOperationalStateClusterOperationalErrorEvent not bound -!missing-type! MTRRVCOperationalStateClusterOperationalStateStruct not bound -!missing-type! MTRRVCOperationalStateClusterOperationCompletionEvent not bound -!missing-type! MTRRVCOperationalStateClusterPauseParams not bound -!missing-type! MTRRVCOperationalStateClusterResumeParams not bound -!missing-type! MTRRVCRunModeClusterChangeToModeParams not bound -!missing-type! MTRRVCRunModeClusterChangeToModeResponseParams not bound -!missing-type! MTRRVCRunModeClusterModeOptionStruct not bound -!missing-type! MTRRVCRunModeClusterModeTagStruct not bound -!missing-type! MTRThermostatClusterWeeklyScheduleTransitionStruct not bound diff --git a/tests/xtro-sharpie/watchOS-UIKit.ignore b/tests/xtro-sharpie/watchOS-UIKit.ignore index 51c4738d8b2e..e262dad0ba3a 100644 --- a/tests/xtro-sharpie/watchOS-UIKit.ignore +++ b/tests/xtro-sharpie/watchOS-UIKit.ignore @@ -32,5 +32,4 @@ !missing-null-allowed! 'UIKit.UIFontDescriptor UIKit.UIFontDescriptor::CreateWithTraits(UIKit.UIFontDescriptorSymbolicTraits)' is missing an [NullAllowed] on return type !unknown-field! UIUserNotificationActionResponseTypedTextKey bound -!missing-selector! NSItemProvider::_availableTypes not bound !missing-protocol! UIItemProviderReadingAugmentationDesignating not bound diff --git a/tools/common/SdkVersions.cs b/tools/common/SdkVersions.cs index 7d7c9062ec95..522fd870c839 100644 --- a/tools/common/SdkVersions.cs +++ b/tools/common/SdkVersions.cs @@ -14,12 +14,12 @@ namespace Xamarin { static class SdkVersions { - public const string Xcode = "15.3"; - public const string OSX = "14.4"; - public const string iOS = "17.4"; - public const string WatchOS = "10.4"; - public const string TVOS = "17.4"; - public const string MacCatalyst = "17.4"; + public const string Xcode = "15.4"; + public const string OSX = "14.5"; + public const string iOS = "17.5"; + public const string WatchOS = "10.5"; + public const string TVOS = "17.5"; + public const string MacCatalyst = "17.5"; #if NET public const string MinOSX = "10.15"; @@ -48,19 +48,19 @@ static class SdkVersions { public const string MinWatchOSCompanionSimulator = "14.5"; public const string MinTVOSSimulator = "14.0"; - public const string MaxiOSSimulator = "17.4"; - public const string MaxWatchOSSimulator = "10.4"; - public const string MaxWatchOSCompanionSimulator = "17.4"; - public const string MaxTVOSSimulator = "17.4"; + public const string MaxiOSSimulator = "17.5"; + public const string MaxWatchOSSimulator = "10.5"; + public const string MaxWatchOSCompanionSimulator = "17.5"; + public const string MaxTVOSSimulator = "17.5"; - public const string MaxiOSDeploymentTarget = "17.4"; + public const string MaxiOSDeploymentTarget = "17.5"; public const string MaxWatchDeploymentTarget = "10.4"; - public const string MaxTVOSDeploymentTarget = "17.4"; + public const string MaxTVOSDeploymentTarget = "17.5"; - public const string TargetPlatformVersioniOS = "17.4"; - public const string TargetPlatformVersiontvOS = "17.4"; - public const string TargetPlatformVersionmacOS = "14.4"; - public const string TargetPlatformVersionMacCatalyst = "17.4"; + public const string TargetPlatformVersioniOS = "17.5"; + public const string TargetPlatformVersiontvOS = "17.5"; + public const string TargetPlatformVersionmacOS = "14.5"; + public const string TargetPlatformVersionMacCatalyst = "17.5"; public static Version OSXVersion { get { return new Version (OSX); } } public static Version iOSVersion { get { return new Version (iOS); } } From 0a899695fcc2c7077d01dd862dd08fd99f1e87b3 Mon Sep 17 00:00:00 2001 From: GitHub Actions Autoformatter Date: Tue, 9 Jul 2024 22:35:01 +0000 Subject: [PATCH 66/73] Auto-format source code --- src/authenticationservices.cs | 2 +- src/automaticassessmentconfiguration.cs | 4 ++-- src/uikit.cs | 9 ++++----- 3 files changed, 7 insertions(+), 8 deletions(-) diff --git a/src/authenticationservices.cs b/src/authenticationservices.cs index 982c9092eee3..d9d5f905d9dd 100644 --- a/src/authenticationservices.cs +++ b/src/authenticationservices.cs @@ -1679,7 +1679,7 @@ interface ASAuthorizationPlatformPublicKeyCredentialRegistrationRequest : ASAuth [BaseType (typeof (NSObject))] interface ASAuthorizationSecurityKeyPublicKeyCredentialAssertion : ASAuthorizationPublicKeyCredentialAssertion { - [Mac (14, 5), iOS (17, 5), MacCatalyst (17, 5)] + [Mac (14, 5), iOS (17, 5), MacCatalyst (17, 5)] [Export ("appID")] bool AppId { get; } } diff --git a/src/automaticassessmentconfiguration.cs b/src/automaticassessmentconfiguration.cs index c77783635daa..ad917a07fffd 100644 --- a/src/automaticassessmentconfiguration.cs +++ b/src/automaticassessmentconfiguration.cs @@ -173,11 +173,11 @@ interface AEAssessmentSessionDelegate { [Export ("assessmentSessionDidEnd:")] void DidEnd (AEAssessmentSession session); - [iOS (17,5), Mac (12, 0), MacCatalyst (15, 0)] + [iOS (17, 5), Mac (12, 0), MacCatalyst (15, 0)] [Export ("assessmentSessionDidUpdate:")] void DidUpdate (AEAssessmentSession session); - [iOS (17,5), Mac (12, 0), MacCatalyst (15, 0)] + [iOS (17, 5), Mac (12, 0), MacCatalyst (15, 0)] [Export ("assessmentSession:failedToUpdateToConfiguration:error:")] void FailedToUpdate (AEAssessmentSession session, AEAssessmentConfiguration configuration, NSError error); } diff --git a/src/uikit.cs b/src/uikit.cs index b0b2ed8df493..87f9fbad47cf 100644 --- a/src/uikit.cs +++ b/src/uikit.cs @@ -358,7 +358,7 @@ interface UIImpactFeedbackGenerator { [Static] [Export ("feedbackGeneratorWithStyle:forView:")] UIImpactFeedbackGenerator GetFeedbackGenerator (UIImpactFeedbackStyle style, UIView view); - + [Deprecated (PlatformName.iOS, 17, 5, message: "Use 'GetFeedbackGenerator' method instead.")] [Deprecated (PlatformName.MacCatalyst, 17, 5, message: "Use 'GetFeedbackGenerator' method instead.")] [Export ("initWithStyle:")] @@ -16621,7 +16621,7 @@ interface UITouch { [Export ("estimatedPropertiesExpectingUpdates")] UITouchProperties EstimatedPropertiesExpectingUpdates { get; } - [NoWatch, NoTV, iOS (17, 5), MacCatalyst (17 ,5)] + [NoWatch, NoTV, iOS (17, 5), MacCatalyst (17, 5)] [Export ("rollAngle")] nfloat RollAngle { get; } } @@ -23514,8 +23514,7 @@ public enum UIPencilPreferredAction : long { [NoWatch, NoTV, iOS (17, 5), MacCatalyst (17, 5)] [Native] - public enum UIPencilInteractionPhase : ulong - { + public enum UIPencilInteractionPhase : ulong { Began, Changed, Ended, @@ -23548,7 +23547,7 @@ interface UIPencilInteraction : UIInteraction { [Export ("prefersHoverToolPreview")] bool PrefersHoverToolPreview { get; } - [iOS (17,5)] + [iOS (17, 5)] [Export ("initWithDelegate:")] NativeHandle Constructor (IUIPencilInteractionDelegate @delegate); From 67bc50025e6a2cc07a69ff0270009575b5475611 Mon Sep 17 00:00:00 2001 From: Alex Soto Date: Wed, 10 Jul 2024 08:27:39 -0400 Subject: [PATCH 67/73] Apply suggestions from code review Co-authored-by: Rolf Bjarne Kvinge --- src/UIKit/UIEnums.cs | 2 +- src/authenticationservices.cs | 2 +- src/metal.cs | 4 ---- src/metalfx.cs | 4 ---- src/sensorkit.cs | 6 +++--- src/uikit.cs | 2 +- src/videosubscriberaccount.cs | 2 +- 7 files changed, 7 insertions(+), 15 deletions(-) diff --git a/src/UIKit/UIEnums.cs b/src/UIKit/UIEnums.cs index aa1e4b5fa947..1c3e3eeae82a 100644 --- a/src/UIKit/UIEnums.cs +++ b/src/UIKit/UIEnums.cs @@ -3356,7 +3356,7 @@ public enum UIPageControlBackgroundStyle : long { } #if XAMCORE_5_0 - [iOS (14, 0), TV (14, 0), NoWatch, NoMacCatalyst] + [iOS (14, 0), TV (14, 0), NoWatch, NoMacCatalyst] #else [iOS (14, 0), TV (14, 0), NoWatch] [MacCatalyst (14, 0)] diff --git a/src/authenticationservices.cs b/src/authenticationservices.cs index 408be727a1ed..aed36ee833a6 100644 --- a/src/authenticationservices.cs +++ b/src/authenticationservices.cs @@ -192,7 +192,7 @@ public enum ASAuthorizationProviderExtensionUserSecureEnclaveKeyBiometricPolicy TouchIdOrWatchCurrentSet = 1uL << 0, TouchIdOrWatchAny = 1uL << 1, ReuseDuringUnlock = 1uL << 2, - PasswordFallback = 1uL << 3 + PasswordFallback = 1uL << 3, } /// Delegate used in callbacks by . diff --git a/src/metal.cs b/src/metal.cs index 4e7da41d3f62..8992c5aa844d 100644 --- a/src/metal.cs +++ b/src/metal.cs @@ -5259,9 +5259,7 @@ partial interface MTLResource { bool IsAliasable { get; } [Watch (10, 4), TV (17, 4), Mac (14, 4), iOS (17, 4), MacCatalyst (17, 4)] -#if XAMCORE_5_0 [Abstract] -#endif [Export ("setOwnerWithIdentity:")] int SetOwnerWithIdentity (uint taskIdToken); @@ -5972,9 +5970,7 @@ interface MTLSharedEvent : MTLEvent { ulong SignaledValue { get; set; } [Mac (14, 4), iOS (17, 4), TV (17, 4), MacCatalyst (17, 4)] -#if XAMCORE_5_0 [Abstract] -#endif [Export ("waitUntilSignaledValue:timeoutMS:")] bool WaitUntilSignaledValue (ulong value, ulong milliseconds); } diff --git a/src/metalfx.cs b/src/metalfx.cs index a6eac2a098c4..03cf26c5d142 100644 --- a/src/metalfx.cs +++ b/src/metalfx.cs @@ -105,9 +105,7 @@ interface MTLFXTemporalScaler { MTLTextureUsage MotionTextureUsage { get; } [Mac (14, 4), iOS (17, 4), MacCatalyst (17, 4)] -#if XAMCORE_5_0 [Abstract] -#endif [Export ("reactiveTextureUsage")] MTLTextureUsage ReactiveTextureUsage { get; } @@ -144,9 +142,7 @@ interface MTLFXTemporalScaler { IMTLTexture ExposureTexture { get; set; } [Mac (14, 4), iOS (17, 4), MacCatalyst (17, 4)] -#if XAMCORE_5_0 [Abstract] -#endif [NullAllowed, Export ("reactiveMaskTexture", ArgumentSemantic.Retain)] IMTLTexture ReactiveMaskTexture { get; set; } diff --git a/src/sensorkit.cs b/src/sensorkit.cs index 682f95bb3672..4cb173b529fa 100644 --- a/src/sensorkit.cs +++ b/src/sensorkit.cs @@ -198,14 +198,14 @@ public enum SRElectrocardiogramSessionGuidance : long { [Native] public enum SRFaceMetricsContext : ulong { DeviceUnlock = 1uL << 0, - MessagingAppUsage = 1uL << 1 + MessagingAppUsage = 1uL << 1, } [Flags, NoWatch, NoTV, NoMac, iOS (17, 0), MacCatalyst (17, 0)] [Native] public enum SRSpeechMetricsSessionFlags : ulong { Default = 0x0, - BypassVoiceProcessing = (1uL << 0) + BypassVoiceProcessing = (1uL << 0), } [Flags, NoWatch, NoTV, NoMac, iOS (17, 0), MacCatalyst (17, 0)] @@ -214,7 +214,7 @@ public enum SRWristTemperatureCondition : ulong { None = 0x0, OffWrist = 1uL << 0, OnCharger = 1uL << 1, - InMotion = 1uL << 2 + InMotion = 1uL << 2, } [NoWatch, NoTV, NoMac] diff --git a/src/uikit.cs b/src/uikit.cs index 38d00ff64f42..c987af1e89b4 100644 --- a/src/uikit.cs +++ b/src/uikit.cs @@ -13127,7 +13127,7 @@ UIEdgeInsets ScrollIndicatorInsets { [TV (17, 4), iOS (17, 4), MacCatalyst (17, 4)] [Export ("withScrollIndicatorsShownForContentOffsetChanges:")] - void WithScrollIndicatorsShownForContentOffsetChanges (Action changes); + void WithScrollIndicatorsShown (Action forContentOffsetChanges); [Export ("delaysContentTouches")] bool DelaysContentTouches { get; set; } diff --git a/src/videosubscriberaccount.cs b/src/videosubscriberaccount.cs index 4beb5a5a5ec4..2e317d71efe4 100644 --- a/src/videosubscriberaccount.cs +++ b/src/videosubscriberaccount.cs @@ -449,7 +449,7 @@ interface VSUserAccount { interface VSAppleSubscription { [Export ("customerID", ArgumentSemantic.Strong)] - string CustomerID { get; set; } + string CustomerId { get; set; } [Export ("productCodes", ArgumentSemantic.Strong)] string [] ProductCodes { get; set; } From 380cd6c5df95fe4f11ec67adce232a27ba8921a5 Mon Sep 17 00:00:00 2001 From: Alex Soto Date: Wed, 10 Jul 2024 12:59:22 -0400 Subject: [PATCH 68/73] Fix tests --- src/uikit.cs | 6 +----- tests/common/TestRuntime.cs | 12 ++++++++++++ tests/introspection/ApiProtocolTest.cs | 7 +++++++ 3 files changed, 20 insertions(+), 5 deletions(-) diff --git a/src/uikit.cs b/src/uikit.cs index 078c67d9d4e3..8868096508e2 100644 --- a/src/uikit.cs +++ b/src/uikit.cs @@ -331,11 +331,7 @@ interface NSAttributedStringAttachmentConveniences { [DisableDefaultCtor] [Abstract] // abstract class that should not be used directly [BaseType (typeof (NSObject))] -#if IOS && IOS17_5_OR_GREATER interface UIFeedbackGenerator : UIInteraction { -#else - interface UIFeedbackGenerator { -#endif // intancetype -> UIFeedbackGenerator, inlined as subclasses should return the same type as the instance [iOS (17, 5), MacCatalyst (17, 5)] [Static] @@ -23547,7 +23543,7 @@ interface UIPencilInteraction : UIInteraction { [Export ("prefersHoverToolPreview")] bool PrefersHoverToolPreview { get; } - [iOS (17, 5)] + [iOS (17, 5), MacCatalyst (17, 5)] [Export ("initWithDelegate:")] NativeHandle Constructor (IUIPencilInteractionDelegate @delegate); diff --git a/tests/common/TestRuntime.cs b/tests/common/TestRuntime.cs index e150a0254294..56a62208dcbd 100644 --- a/tests/common/TestRuntime.cs +++ b/tests/common/TestRuntime.cs @@ -441,6 +441,18 @@ public static bool CheckXcodeVersion (int major, int minor, int build = 0) return CheckMacSystemVersion (14, 4); #else throw new NotImplementedException ($"Missing platform case for Xcode {major}.{minor}"); +#endif + case 4: +#if __WATCHOS__ + return CheckWatchOSSystemVersion (10, 5); +#elif __TVOS__ + return ChecktvOSSystemVersion (17, 5); +#elif __IOS__ + return CheckiOSSystemVersion (17, 5); +#elif MONOMAC + return CheckMacSystemVersion (14, 5); +#else + throw new NotImplementedException ($"Missing platform case for Xcode {major}.{minor}"); #endif default: throw new NotImplementedException ($"Missing version logic for checking for Xcode {major}.{minor}"); diff --git a/tests/introspection/ApiProtocolTest.cs b/tests/introspection/ApiProtocolTest.cs index 5c3721d1fb7a..163b04faf3bb 100644 --- a/tests/introspection/ApiProtocolTest.cs +++ b/tests/introspection/ApiProtocolTest.cs @@ -645,6 +645,13 @@ protected virtual bool Skip (Type type, string protocolName) if (type.Name == "NSUrl") return true; break; + case "UIInteraction": + switch (type.Name) { + case "UIFeedbackGenerator": + if (!TestRuntime.CheckXcodeVersion (15, 4)) + return true; + } + break; } return false; } From 5070398e9cdfb12c735a3599b77a00838e1a93e8 Mon Sep 17 00:00:00 2001 From: Alex Soto Date: Wed, 10 Jul 2024 14:25:29 -0400 Subject: [PATCH 69/73] Address Feedback --- src/sensorkit.cs | 5 +++++ tests/cecil-tests/Documentation.KnownFailures.txt | 7 +------ tests/xtro-sharpie/api-annotations-dotnet/iOS-Metal.ignore | 2 -- .../xtro-sharpie/api-annotations-dotnet/iOS-MetalFX.ignore | 3 --- .../xtro-sharpie/api-annotations-dotnet/macOS-Metal.ignore | 2 -- .../api-annotations-dotnet/macOS-MetalFX.ignore | 3 --- .../xtro-sharpie/api-annotations-dotnet/tvOS-Metal.ignore | 2 -- tests/xtro-sharpie/iOS-Metal.ignore | 2 -- tests/xtro-sharpie/iOS-MetalFX.ignore | 3 --- tests/xtro-sharpie/macOS-Metal.ignore | 2 -- tests/xtro-sharpie/macOS-MetalFX.ignore | 3 --- tests/xtro-sharpie/tvOS-Metal.ignore | 2 -- 12 files changed, 6 insertions(+), 30 deletions(-) diff --git a/src/sensorkit.cs b/src/sensorkit.cs index 4cb173b529fa..3bd885801def 100644 --- a/src/sensorkit.cs +++ b/src/sensorkit.cs @@ -1302,22 +1302,27 @@ interface SRPhotoplethysmogramOpticalSample : NSCopying, NSSecureCoding { long NanosecondsSinceStart { get; } [NullAllowed] + [BindAs (typeof (double?))] [Export ("normalizedReflectance", ArgumentSemantic.Strong)] NSNumber NormalizedReflectance { get; } [NullAllowed] + [BindAs (typeof (double?))] [Export ("whiteNoise", ArgumentSemantic.Strong)] NSNumber WhiteNoise { get; } [NullAllowed] + [BindAs (typeof (double?))] [Export ("pinkNoise", ArgumentSemantic.Strong)] NSNumber PinkNoise { get; } [NullAllowed] + [BindAs (typeof (double?))] [Export ("backgroundNoise", ArgumentSemantic.Strong)] NSNumber BackgroundNoise { get; } [NullAllowed] + [BindAs (typeof (double?))] [Export ("backgroundNoiseOffset", ArgumentSemantic.Strong)] NSNumber BackgroundNoiseOffset { get; } diff --git a/tests/cecil-tests/Documentation.KnownFailures.txt b/tests/cecil-tests/Documentation.KnownFailures.txt index ff7a42ce950a..502be714df34 100644 --- a/tests/cecil-tests/Documentation.KnownFailures.txt +++ b/tests/cecil-tests/Documentation.KnownFailures.txt @@ -39618,7 +39618,6 @@ M:Metal.MTLRenderPipelineState_Extensions.GetObjectThreadExecutionWidth(Metal.IM M:Metal.MTLRenderPipelineState_Extensions.NewIntersectionFunctionTableWithDescriptor(Metal.IMTLRenderPipelineState,Metal.MTLIntersectionFunctionTableDescriptor,Metal.MTLRenderStages) M:Metal.MTLRenderPipelineState_Extensions.NewRenderPipelineStateWithAdditionalBinaryFunctions(Metal.IMTLRenderPipelineState,Metal.MTLRenderPipelineFunctionsDescriptor,Foundation.NSError@) M:Metal.MTLRenderPipelineState_Extensions.NewVisibleFunctionTableWithDescriptor(Metal.IMTLRenderPipelineState,Metal.MTLVisibleFunctionTableDescriptor,Metal.MTLRenderStages) -M:Metal.MTLResource_Extensions.SetOwnerWithIdentity(Metal.IMTLResource,System.UInt32) M:Metal.MTLResourceStateCommandEncoder_Extensions.MoveTextureMappings(Metal.IMTLResourceStateCommandEncoder,Metal.IMTLTexture,System.UIntPtr,System.UIntPtr,Metal.MTLOrigin,Metal.MTLSize,Metal.IMTLTexture,System.UIntPtr,System.UIntPtr,Metal.MTLOrigin) M:Metal.MTLResourceStateCommandEncoder_Extensions.Update(Metal.IMTLResourceStateCommandEncoder,Metal.IMTLFence) M:Metal.MTLResourceStateCommandEncoder_Extensions.Update(Metal.IMTLResourceStateCommandEncoder,Metal.IMTLTexture,Metal.MTLSparseTextureMappingMode,Metal.IMTLBuffer,System.UIntPtr) @@ -39633,7 +39632,6 @@ M:Metal.MTLSamplerDescriptor.Copy(Foundation.NSZone) M:Metal.MTLSamplerState_Extensions.GetGpuResourceId(Metal.IMTLSamplerState) M:Metal.MTLScissorRect.#ctor(System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr) M:Metal.MTLScissorRect.ToString -M:Metal.MTLSharedEvent_Extensions.WaitUntilSignaledValue(Metal.IMTLSharedEvent,System.UInt64,System.UInt64) M:Metal.MTLSharedEventHandle.EncodeTo(Foundation.NSCoder) M:Metal.MTLSharedTextureHandle.EncodeTo(Foundation.NSCoder) M:Metal.MTLSize.#ctor(System.IntPtr,System.IntPtr,System.IntPtr) @@ -39664,9 +39662,6 @@ M:MetalFX.IMTLFXSpatialScaler.Encode(Metal.IMTLCommandBuffer) M:MetalFX.IMTLFXTemporalScaler.Encode(Metal.IMTLCommandBuffer) M:MetalFX.MTLFXSpatialScalerDescriptor.Create(Metal.IMTLDevice) M:MetalFX.MTLFXSpatialScalerDescriptor.SupportsDevice(Metal.IMTLDevice) -M:MetalFX.MTLFXTemporalScaler_Extensions.GetReactiveMaskTexture(MetalFX.IMTLFXTemporalScaler) -M:MetalFX.MTLFXTemporalScaler_Extensions.GetReactiveTextureUsage(MetalFX.IMTLFXTemporalScaler) -M:MetalFX.MTLFXTemporalScaler_Extensions.SetReactiveMaskTexture(MetalFX.IMTLFXTemporalScaler,Metal.IMTLTexture) M:MetalFX.MTLFXTemporalScalerDescriptor.Create(Metal.IMTLDevice) M:MetalFX.MTLFXTemporalScalerDescriptor.GetSupportedInputContentMaxScale(Metal.IMTLDevice) M:MetalFX.MTLFXTemporalScalerDescriptor.GetSupportedInputContentMinScale(Metal.IMTLDevice) @@ -74580,7 +74575,7 @@ P:VideoSubscriberAccount.VSAccountProviderResponse.AuthenticationScheme P:VideoSubscriberAccount.VSAccountProviderResponse.AuthenticationSchemeString P:VideoSubscriberAccount.VSAccountProviderResponse.Body P:VideoSubscriberAccount.VSAccountProviderResponse.Status -P:VideoSubscriberAccount.VSAppleSubscription.CustomerID +P:VideoSubscriberAccount.VSAppleSubscription.CustomerId P:VideoSubscriberAccount.VSAppleSubscription.ProductCodes P:VideoSubscriberAccount.VSErrorInfo.AccountProviderResponse P:VideoSubscriberAccount.VSErrorInfo.SamlResponse diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-Metal.ignore b/tests/xtro-sharpie/api-annotations-dotnet/iOS-Metal.ignore index c064b3a293e1..f6b3d5615be6 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/iOS-Metal.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-Metal.ignore @@ -43,8 +43,6 @@ !incorrect-protocol-member! MTLRenderCommandEncoder::setVertexBufferOffset:attributeStride:atIndex: is REQUIRED and should be abstract !incorrect-protocol-member! MTLRenderCommandEncoder::setVertexBuffers:offsets:attributeStrides:withRange: is REQUIRED and should be abstract !incorrect-protocol-member! MTLRenderCommandEncoder::setVertexBytes:length:attributeStride:atIndex: is REQUIRED and should be abstract -!incorrect-protocol-member! MTLResource::setOwnerWithIdentity: is REQUIRED and should be abstract -!incorrect-protocol-member! MTLSharedEvent::waitUntilSignaledValue:timeoutMS: is REQUIRED and should be abstract # deprecated but cannot be removed !unknown-native-enum! MTLArgumentAccess bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-MetalFX.ignore b/tests/xtro-sharpie/api-annotations-dotnet/iOS-MetalFX.ignore index cb6c8cc4cb08..2fa1d6bbacee 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/iOS-MetalFX.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-MetalFX.ignore @@ -1,5 +1,2 @@ !missing-protocol-conformance! MTLFXSpatialScalerDescriptor should conform to NSCopying !missing-protocol-conformance! MTLFXTemporalScalerDescriptor should conform to NSCopying -!incorrect-protocol-member! MTLFXTemporalScaler::reactiveMaskTexture is REQUIRED and should be abstract -!incorrect-protocol-member! MTLFXTemporalScaler::reactiveTextureUsage is REQUIRED and should be abstract -!incorrect-protocol-member! MTLFXTemporalScaler::setReactiveMaskTexture: is REQUIRED and should be abstract diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-Metal.ignore b/tests/xtro-sharpie/api-annotations-dotnet/macOS-Metal.ignore index 418b8f2bf907..e90578cb7d85 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/macOS-Metal.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/macOS-Metal.ignore @@ -46,8 +46,6 @@ !incorrect-protocol-member! MTLRenderCommandEncoder::setVertexBufferOffset:attributeStride:atIndex: is REQUIRED and should be abstract !incorrect-protocol-member! MTLRenderCommandEncoder::setVertexBuffers:offsets:attributeStrides:withRange: is REQUIRED and should be abstract !incorrect-protocol-member! MTLRenderCommandEncoder::setVertexBytes:length:attributeStride:atIndex: is REQUIRED and should be abstract -!incorrect-protocol-member! MTLResource::setOwnerWithIdentity: is REQUIRED and should be abstract -!incorrect-protocol-member! MTLSharedEvent::waitUntilSignaledValue:timeoutMS: is REQUIRED and should be abstract # deprecated but cannot be removed !unknown-native-enum! MTLArgumentAccess bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-MetalFX.ignore b/tests/xtro-sharpie/api-annotations-dotnet/macOS-MetalFX.ignore index cb6c8cc4cb08..2fa1d6bbacee 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/macOS-MetalFX.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/macOS-MetalFX.ignore @@ -1,5 +1,2 @@ !missing-protocol-conformance! MTLFXSpatialScalerDescriptor should conform to NSCopying !missing-protocol-conformance! MTLFXTemporalScalerDescriptor should conform to NSCopying -!incorrect-protocol-member! MTLFXTemporalScaler::reactiveMaskTexture is REQUIRED and should be abstract -!incorrect-protocol-member! MTLFXTemporalScaler::reactiveTextureUsage is REQUIRED and should be abstract -!incorrect-protocol-member! MTLFXTemporalScaler::setReactiveMaskTexture: is REQUIRED and should be abstract diff --git a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-Metal.ignore b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-Metal.ignore index 42875b819206..17f39e163b8f 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-Metal.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-Metal.ignore @@ -103,8 +103,6 @@ !incorrect-protocol-member! MTLRenderCommandEncoder::setVertexBufferOffset:attributeStride:atIndex: is REQUIRED and should be abstract !incorrect-protocol-member! MTLRenderCommandEncoder::setVertexBuffers:offsets:attributeStrides:withRange: is REQUIRED and should be abstract !incorrect-protocol-member! MTLRenderCommandEncoder::setVertexBytes:length:attributeStride:atIndex: is REQUIRED and should be abstract -!incorrect-protocol-member! MTLResource::setOwnerWithIdentity: is REQUIRED and should be abstract -!incorrect-protocol-member! MTLSharedEvent::waitUntilSignaledValue:timeoutMS: is REQUIRED and should be abstract # deprecated but cannot be removed !unknown-native-enum! MTLArgumentAccess bound diff --git a/tests/xtro-sharpie/iOS-Metal.ignore b/tests/xtro-sharpie/iOS-Metal.ignore index f0c5e39d25b4..7aa8fa80a80f 100644 --- a/tests/xtro-sharpie/iOS-Metal.ignore +++ b/tests/xtro-sharpie/iOS-Metal.ignore @@ -183,8 +183,6 @@ !incorrect-protocol-member! MTLIndirectCommandBuffer::gpuResourceID is REQUIRED and should be abstract !incorrect-protocol-member! MTLTexture::gpuResourceID is REQUIRED and should be abstract !incorrect-protocol-member! MTLBuffer::gpuAddress is REQUIRED and should be abstract -!incorrect-protocol-member! MTLResource::setOwnerWithIdentity: is REQUIRED and should be abstract -!incorrect-protocol-member! MTLSharedEvent::waitUntilSignaledValue:timeoutMS: is REQUIRED and should be abstract # deprecated but cannot be removed !unknown-native-enum! MTLArgumentAccess bound diff --git a/tests/xtro-sharpie/iOS-MetalFX.ignore b/tests/xtro-sharpie/iOS-MetalFX.ignore index cb6c8cc4cb08..2fa1d6bbacee 100644 --- a/tests/xtro-sharpie/iOS-MetalFX.ignore +++ b/tests/xtro-sharpie/iOS-MetalFX.ignore @@ -1,5 +1,2 @@ !missing-protocol-conformance! MTLFXSpatialScalerDescriptor should conform to NSCopying !missing-protocol-conformance! MTLFXTemporalScalerDescriptor should conform to NSCopying -!incorrect-protocol-member! MTLFXTemporalScaler::reactiveMaskTexture is REQUIRED and should be abstract -!incorrect-protocol-member! MTLFXTemporalScaler::reactiveTextureUsage is REQUIRED and should be abstract -!incorrect-protocol-member! MTLFXTemporalScaler::setReactiveMaskTexture: is REQUIRED and should be abstract diff --git a/tests/xtro-sharpie/macOS-Metal.ignore b/tests/xtro-sharpie/macOS-Metal.ignore index ba4f0f7821ff..57e444f928b3 100644 --- a/tests/xtro-sharpie/macOS-Metal.ignore +++ b/tests/xtro-sharpie/macOS-Metal.ignore @@ -192,8 +192,6 @@ !incorrect-protocol-member! MTLDevice::shouldMaximizeConcurrentCompilation is REQUIRED and should be abstract !incorrect-protocol-member! MTLTexture::compressionType is REQUIRED and should be abstract !incorrect-protocol-member! MTLBuffer::gpuAddress is REQUIRED and should be abstract -!incorrect-protocol-member! MTLResource::setOwnerWithIdentity: is REQUIRED and should be abstract -!incorrect-protocol-member! MTLSharedEvent::waitUntilSignaledValue:timeoutMS: is REQUIRED and should be abstract # deprecated but cannot be removed !unknown-native-enum! MTLArgumentAccess bound diff --git a/tests/xtro-sharpie/macOS-MetalFX.ignore b/tests/xtro-sharpie/macOS-MetalFX.ignore index cb6c8cc4cb08..2fa1d6bbacee 100644 --- a/tests/xtro-sharpie/macOS-MetalFX.ignore +++ b/tests/xtro-sharpie/macOS-MetalFX.ignore @@ -1,5 +1,2 @@ !missing-protocol-conformance! MTLFXSpatialScalerDescriptor should conform to NSCopying !missing-protocol-conformance! MTLFXTemporalScalerDescriptor should conform to NSCopying -!incorrect-protocol-member! MTLFXTemporalScaler::reactiveMaskTexture is REQUIRED and should be abstract -!incorrect-protocol-member! MTLFXTemporalScaler::reactiveTextureUsage is REQUIRED and should be abstract -!incorrect-protocol-member! MTLFXTemporalScaler::setReactiveMaskTexture: is REQUIRED and should be abstract diff --git a/tests/xtro-sharpie/tvOS-Metal.ignore b/tests/xtro-sharpie/tvOS-Metal.ignore index cdaf2bb13279..b7f3ce9c5d74 100644 --- a/tests/xtro-sharpie/tvOS-Metal.ignore +++ b/tests/xtro-sharpie/tvOS-Metal.ignore @@ -174,8 +174,6 @@ !incorrect-protocol-member! MTLFunction::options is REQUIRED and should be abstract !incorrect-protocol-member! MTLHeap::newAccelerationStructureWithDescriptor: is REQUIRED and should be abstract !incorrect-protocol-member! MTLBuffer::gpuAddress is REQUIRED and should be abstract -!incorrect-protocol-member! MTLResource::setOwnerWithIdentity: is REQUIRED and should be abstract -!incorrect-protocol-member! MTLSharedEvent::waitUntilSignaledValue:timeoutMS: is REQUIRED and should be abstract # deprecated but cannot be removed !unknown-native-enum! MTLArgumentAccess bound From 8edc6b58c31674f8323a94a080683e06e68bcbf7 Mon Sep 17 00:00:00 2001 From: Alex Soto Date: Wed, 10 Jul 2024 15:08:50 -0400 Subject: [PATCH 70/73] Fix breaking changes in legacy --- src/metal.cs | 4 ++++ tests/xtro-sharpie/iOS-Metal.ignore | 2 ++ tests/xtro-sharpie/macOS-Metal.ignore | 2 ++ tests/xtro-sharpie/tvOS-Metal.ignore | 2 ++ 4 files changed, 10 insertions(+) diff --git a/src/metal.cs b/src/metal.cs index 8992c5aa844d..f9d5a9b8d244 100644 --- a/src/metal.cs +++ b/src/metal.cs @@ -5259,7 +5259,9 @@ partial interface MTLResource { bool IsAliasable { get; } [Watch (10, 4), TV (17, 4), Mac (14, 4), iOS (17, 4), MacCatalyst (17, 4)] +#if NET [Abstract] +#endif [Export ("setOwnerWithIdentity:")] int SetOwnerWithIdentity (uint taskIdToken); @@ -5970,7 +5972,9 @@ interface MTLSharedEvent : MTLEvent { ulong SignaledValue { get; set; } [Mac (14, 4), iOS (17, 4), TV (17, 4), MacCatalyst (17, 4)] +#if NET [Abstract] +#endif [Export ("waitUntilSignaledValue:timeoutMS:")] bool WaitUntilSignaledValue (ulong value, ulong milliseconds); } diff --git a/tests/xtro-sharpie/iOS-Metal.ignore b/tests/xtro-sharpie/iOS-Metal.ignore index 7aa8fa80a80f..9e03cdeee667 100644 --- a/tests/xtro-sharpie/iOS-Metal.ignore +++ b/tests/xtro-sharpie/iOS-Metal.ignore @@ -46,6 +46,8 @@ !incorrect-protocol-member! MTLDevice::newSharedTextureWithDescriptor: is REQUIRED and should be abstract !incorrect-protocol-member! MTLArgumentEncoder::setComputePipelineState:atIndex: is REQUIRED and should be abstract !incorrect-protocol-member! MTLArgumentEncoder::setComputePipelineStates:withRange: is REQUIRED and should be abstract +!incorrect-protocol-member! MTLResource::setOwnerWithIdentity: is REQUIRED and should be abstract +!incorrect-protocol-member! MTLSharedEvent::waitUntilSignaledValue:timeoutMS: is REQUIRED and should be abstract # Selectors missing reported by introspection: https://github.com/xamarin/maccore/issues/1978 diff --git a/tests/xtro-sharpie/macOS-Metal.ignore b/tests/xtro-sharpie/macOS-Metal.ignore index 57e444f928b3..1619afd00187 100644 --- a/tests/xtro-sharpie/macOS-Metal.ignore +++ b/tests/xtro-sharpie/macOS-Metal.ignore @@ -70,6 +70,8 @@ !incorrect-protocol-member! MTLDevice::supportsRasterizationRateMapWithLayerCount: is REQUIRED and should be abstract !incorrect-protocol-member! MTLDevice::supportsVertexAmplificationCount: is REQUIRED and should be abstract !incorrect-protocol-member! MTLRenderCommandEncoder::setVertexAmplificationCount:viewMappings: is REQUIRED and should be abstract +!incorrect-protocol-member! MTLResource::setOwnerWithIdentity: is REQUIRED and should be abstract +!incorrect-protocol-member! MTLSharedEvent::waitUntilSignaledValue:timeoutMS: is REQUIRED and should be abstract # Selectors missing reported by introspection: https://github.com/xamarin/maccore/issues/1978 diff --git a/tests/xtro-sharpie/tvOS-Metal.ignore b/tests/xtro-sharpie/tvOS-Metal.ignore index b7f3ce9c5d74..b5fe73d9800f 100644 --- a/tests/xtro-sharpie/tvOS-Metal.ignore +++ b/tests/xtro-sharpie/tvOS-Metal.ignore @@ -34,6 +34,8 @@ !incorrect-protocol-member! MTLRenderCommandEncoder::executeCommandsInBuffer:indirectBuffer:indirectBufferOffset: is REQUIRED and should be abstract !incorrect-protocol-member! MTLTexture::isShareable is REQUIRED and should be abstract !incorrect-protocol-member! MTLTexture::newSharedTextureHandle is REQUIRED and should be abstract +!incorrect-protocol-member! MTLResource::setOwnerWithIdentity: is REQUIRED and should be abstract +!incorrect-protocol-member! MTLSharedEvent::waitUntilSignaledValue:timeoutMS: is REQUIRED and should be abstract # Selectors missing reported by introspection: https://github.com/xamarin/maccore/issues/1978 From 419f38208f41bcda5c77d0672a51346aa6ffaf8a Mon Sep 17 00:00:00 2001 From: Alex Soto Date: Wed, 10 Jul 2024 15:48:37 -0400 Subject: [PATCH 71/73] Apply feedback --- src/uikit.cs | 21 +++++++++---------- .../Documentation.KnownFailures.txt | 4 ++++ tests/introspection/ApiProtocolTest.cs | 1 + 3 files changed, 15 insertions(+), 11 deletions(-) diff --git a/src/uikit.cs b/src/uikit.cs index 8868096508e2..a02638ab8c4a 100644 --- a/src/uikit.cs +++ b/src/uikit.cs @@ -332,12 +332,11 @@ interface NSAttributedStringAttachmentConveniences { [Abstract] // abstract class that should not be used directly [BaseType (typeof (NSObject))] interface UIFeedbackGenerator : UIInteraction { - // intancetype -> UIFeedbackGenerator, inlined as subclasses should return the same type as the instance + [iOS (17, 5), MacCatalyst (17, 5)] [Static] - [Internal] [Export ("feedbackGeneratorForView:")] - NativeHandle _GetFeedbackGenerator (UIView forView); + UIFeedbackGenerator GetFeedbackGenerator (UIView forView); [Export ("prepare")] void Prepare (); @@ -376,10 +375,10 @@ interface UIImpactFeedbackGenerator { [Export ("impactOccurredWithIntensity:atLocation:")] void ImpactOccurred (nfloat intensity, CGPoint location); - // Inlined from parent class [iOS (17, 5), MacCatalyst (17, 5)] + [New] // kind of overloading a static member, make it return 'instancetype' [Static] - [Wrap ("Runtime.GetNSObject (UIFeedbackGenerator._GetFeedbackGenerator (forView))!")] + [Export ("feedbackGeneratorForView:")] UIImpactFeedbackGenerator GetFeedbackGenerator (UIView forView); } @@ -396,10 +395,10 @@ interface UINotificationFeedbackGenerator { [Export ("notificationOccurred:atLocation:")] void NotificationOccurred (UINotificationFeedbackType notificationType, CGPoint location); - // Inlined from parent class [iOS (17, 5), MacCatalyst (17, 5)] + [New] // kind of overloading a static member, make it return 'instancetype' [Static] - [Wrap ("Runtime.GetNSObject (UIFeedbackGenerator._GetFeedbackGenerator (forView))!")] + [Export ("feedbackGeneratorForView:")] UINotificationFeedbackGenerator GetFeedbackGenerator (UIView forView); } @@ -416,10 +415,10 @@ interface UISelectionFeedbackGenerator { [Export ("selectionChangedAtLocation:")] void SelectionChanged (CGPoint location); - // Inlined from parent class [iOS (17, 5), MacCatalyst (17, 5)] + [New] // kind of overloading a static member, make it return 'instancetype' [Static] - [Wrap ("Runtime.GetNSObject (UIFeedbackGenerator._GetFeedbackGenerator (forView))!")] + [Export ("feedbackGeneratorForView:")] UISelectionFeedbackGenerator GetFeedbackGenerator (UIView forView); } @@ -29398,10 +29397,10 @@ interface UICanvasFeedbackGenerator { [Export ("pathCompletedAtLocation:")] void PathCompleted (CGPoint atLocation); - // Inlined from parent class [iOS (17, 5), MacCatalyst (17, 5)] + [New] // kind of overloading a static member, make it return 'instancetype' [Static] - [Wrap ("Runtime.GetNSObject (UIFeedbackGenerator._GetFeedbackGenerator (forView))!")] + [Export ("feedbackGeneratorForView:")] UICanvasFeedbackGenerator GetFeedbackGenerator (UIView forView); } diff --git a/tests/cecil-tests/Documentation.KnownFailures.txt b/tests/cecil-tests/Documentation.KnownFailures.txt index c0ee1b6ea489..72f9e2975083 100644 --- a/tests/cecil-tests/Documentation.KnownFailures.txt +++ b/tests/cecil-tests/Documentation.KnownFailures.txt @@ -48373,6 +48373,9 @@ M:UIKit.UIEventAttribution.Copy(Foundation.NSZone) M:UIKit.UIEventAttributionView.#ctor(CoreGraphics.CGRect) M:UIKit.UIEventAttributionView.UIEventAttributionViewAppearance.#ctor(System.IntPtr) M:UIKit.UIEventButtonMaskExtensions.Convert(System.IntPtr) +M:UIKit.UIFeedbackGenerator.DidMoveToView(UIKit.UIView) +M:UIKit.UIFeedbackGenerator.Dispose(System.Boolean) +M:UIKit.UIFeedbackGenerator.WillMoveToView(UIKit.UIView) M:UIKit.UIFindInteraction.DidMoveToView(UIKit.UIView) M:UIKit.UIFindInteraction.Dispose(System.Boolean) M:UIKit.UIFindInteraction.WillMoveToView(UIKit.UIView) @@ -74017,6 +74020,7 @@ P:UIKit.UIDynamicItemGroup.Transform P:UIKit.UIEditMenuInteraction.Delegate P:UIKit.UIEditMenuInteraction.View P:UIKit.UIExtensionPointIdentifier.Keyboard +P:UIKit.UIFeedbackGenerator.View P:UIKit.UIFindInteraction.Delegate P:UIKit.UIFindInteraction.FindNavigatorVisible P:UIKit.UIFindInteraction.View diff --git a/tests/introspection/ApiProtocolTest.cs b/tests/introspection/ApiProtocolTest.cs index 163b04faf3bb..e1f5a8a8b010 100644 --- a/tests/introspection/ApiProtocolTest.cs +++ b/tests/introspection/ApiProtocolTest.cs @@ -650,6 +650,7 @@ protected virtual bool Skip (Type type, string protocolName) case "UIFeedbackGenerator": if (!TestRuntime.CheckXcodeVersion (15, 4)) return true; + break; } break; } From f8ab680c37f7a8f2df9777005aa892de8448239f Mon Sep 17 00:00:00 2001 From: Alex Soto Date: Wed, 10 Jul 2024 16:54:22 -0400 Subject: [PATCH 72/73] Fix build --- tools/common/SdkVersions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/common/SdkVersions.cs b/tools/common/SdkVersions.cs index 522fd870c839..f07037680b4f 100644 --- a/tools/common/SdkVersions.cs +++ b/tools/common/SdkVersions.cs @@ -54,7 +54,7 @@ static class SdkVersions { public const string MaxTVOSSimulator = "17.5"; public const string MaxiOSDeploymentTarget = "17.5"; - public const string MaxWatchDeploymentTarget = "10.4"; + public const string MaxWatchDeploymentTarget = "10.5"; public const string MaxTVOSDeploymentTarget = "17.5"; public const string TargetPlatformVersioniOS = "17.5"; From b2c3e8f8bb05f2c19762fc259fe6989e1ae4b032 Mon Sep 17 00:00:00 2001 From: Alex Soto Date: Wed, 10 Jul 2024 21:14:11 -0400 Subject: [PATCH 73/73] Fix intro --- tests/introspection/ApiProtocolTest.cs | 3 +++ tests/introspection/ApiSelectorTest.cs | 9 +++++++++ 2 files changed, 12 insertions(+) diff --git a/tests/introspection/ApiProtocolTest.cs b/tests/introspection/ApiProtocolTest.cs index e1f5a8a8b010..d54769561d16 100644 --- a/tests/introspection/ApiProtocolTest.cs +++ b/tests/introspection/ApiProtocolTest.cs @@ -648,6 +648,9 @@ protected virtual bool Skip (Type type, string protocolName) case "UIInteraction": switch (type.Name) { case "UIFeedbackGenerator": + case "UIImpactFeedbackGenerator": + case "UINotificationFeedbackGenerator": + case "UISelectionFeedbackGenerator": if (!TestRuntime.CheckXcodeVersion (15, 4)) return true; break; diff --git a/tests/introspection/ApiSelectorTest.cs b/tests/introspection/ApiSelectorTest.cs index c816500658ed..7f99651ee64b 100644 --- a/tests/introspection/ApiSelectorTest.cs +++ b/tests/introspection/ApiSelectorTest.cs @@ -1004,6 +1004,15 @@ protected virtual bool Skip (Type type, string selectorName) break; } break; + case "UIFeedbackGenerator": + switch (selectorName) { + case "didMoveToView:": + case "willMoveToView:": + case "view": + return !TestRuntime.CheckXcodeVersion (15, 4); + break; + } + break; } // old binding mistake